﻿@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500&display=swap');
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {padding: 0;margin: 0;}
a{text-decoration:none; outline:none!important;}
table {border-spacing: 0;}
fieldset,img {border: 0;}
html,body,div,article,section,nav,header,footer,input,textarea {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
address,caption,cite,code,dfn,em,strong,th,var {font-weight: normal;font-style: normal;}
div,article,section{display:block; overflow:hidden;}
strong{font-weight: bold;}
ol,ul {list-style: none;margin:0;padding:0;}
caption,th {text-align: left;}
h1,h2,h3,h4,h5,h6 {font-weight: normal;font-size: 100%;margin:0;padding:0;}
q:before,q:after {content:'';}
abbr,acronym { border: 0;}

:root {
  --pinkc: #f19888;
  --greenc: #65c1c2;
  --orangec: #f5ad6a;
}

html{
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: -webkit-fill-available;
  font-size: 80%;
}
@media screen and (min-width: 900px){
  html{
    font-size: 62.5%;
  }
}
html,body{
  position:relative;
  height:100%;
  min-height:100%;
}
body{
  color: #fff;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .1rem;
  line-height: 2;
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

a{color:#333; text-decoration:none;}
@media screen and (min-width: 900px){
  a:hover{
    opacity: .8;
    transition: .2s;
  }
}

img{max-width:100%; vertical-align:bottom;}

.pc{
  display: none;
}
@media screen and (min-width: 900px){
  .sp{
    display: none!important;
  }
  .pc{
    display: block;
  }
}


/* -------------------------------------------- */
/* ----------------- menu  -------------------- */
/* -------------------------------------------- */
header{
  padding: 1rem 3rem;
  clear: both;
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  z-index: 100;
}
#logo{
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 1rem;
  z-index: 1000;
}
@media screen and (min-width: 900px){
  #logo{
    top: 3rem;
    left: 3rem;
  }
}
@media screen and (min-width: 1200px){
  #logo{
    top: 4.5rem;
    left: 4.5rem;
  }
}
#logo img{
  width: 20rem;
  height: auto;
}
header nav {
  transform: translateY(-100%);
  opacity: 0;
  filter: blur(1rem);
  transition:
    filter 2s cubic-bezier(0.22, 1, 0.36, 1),
    transform .3s ease, opacity .3s ease;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
header.on nav {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0rem);
  pointer-events: auto;
  color: #fff;
}
header .wrap{
  width: min(93rem, 90svw);
  margin: 0 auto;
  transition: opacity 3s ease;
  opacity: 0;
}
header.on .wrap{
  opacity: 1;
}
header nav li{
  margin: 0 auto;
  vertical-align: middle;
  text-align: center;
}
header nav li a{
  color: #fff;
  font-size: 2.3rem;
  padding: 1.6rem;
  display: block;
  line-height: 1;
}
header nav li a:hover{
  opacity: 1;
  color: #f19888;
}
header nav .hfoot{
  width: 100%;
  border-top: 0.05rem solid #fff;
  margin-top: 6rem;
  padding: 2rem 0;
}
@media screen and (min-width: 900px){
  header nav .hfoot{
    text-align: left;
  }
}
header nav .hfoot li{
  display: inline-block;
}
header nav .hfoot li a{
  font-size: 1.3rem;
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 1rem 0;
  display: inline-block;
}
@media screen and (min-width: 900px){
header nav .hfoot li a{
    margin-left: 0;
    margin-right: 4rem;
  }
}
header nav .hfoot li a:after{
  content: ">";
  display: inline-block;
  vertical-align: bottom;
  margin-left: 1.5rem;
}
header nav .hfoot li:last-child{
  font-size: 1.1rem;
  text-align: right;
  float: right;
}
@media screen and (max-width: 899px){
  header nav .hfoot li:last-child{
    text-align: center;
    float: none;
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
  }
}
#glmenu{
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
@media screen and (min-width: 900px){
  #glmenu{
    top: 6rem;
    right: 6rem;
  }
}
#glmenu img{
  width: 6rem;
  height: 5.2rem;
  background: url(../img/ico-menu.svg) center center no-repeat;
  background-size: contain;
}
.on #glmenu img{
  background: url(../img/ico-close.svg) center center no-repeat;
  background-size: contain;
}

/* -------------------------------------------- */
/* ----------------- common  ------------------ */
/* -------------------------------------------- */
#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main{
  text-align: center;
  position: relative;
  padding-bottom: 16.5rem;
}

.totop{
  right: 2.5rem;
  bottom: 3.5rem;
  position: fixed;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 600ms cubic-bezier(0.22,1,0.36,1),
    transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.totop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (min-width: 900px){
  .totop{
    right: 4.5rem;
  }
}
.totop img{
  width: auto;
  height: 3.5rem;
}
footer{
  color: #fff;
  background: #65c1c2;
  text-align: center;
  margin-top: auto;
}
#copy{
  font-size: 1.1rem;
  background: #65c1c2;
  padding: 1rem;
}
#footBar{
  font-size:1.4rem;
  width: 100%;
  background: #f19888;
  padding: .5rem;
}
#footBar a{
  color: #fff;
}
#footBar a::after{
  content: ">";
  display: inline-block;
  vertical-align: bottom;
  margin-left: 1.5rem;
}

.btn{
  display: block;
  text-align: center;
}


.ttl{
  text-align: center;
  margin-bottom: 10rem;
}
.ttl .en{
  font-size: 2.8rem;
  display: block;
  position: relative;
  letter-spacing: .2rem;
}
.ttl .en::after{
  content: "";
  width: 0.05rem;
  height: 7.1rem;
  margin: -0.4rem auto .5rem;
  background: #fff;
  display: block;
}
#p-scta .ttl .en::after,
#p-return .ttl .en::after{
  background: #000;
}
.ttl.fade .en::after{
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.ttl.fade.show .en::after{
  transform: scaleY(1);
}
.ttl .sub{
  font-size: 1.5rem;
  writing-mode: vertical-lr;
  letter-spacing: 0.09rem;
  margin-top: .8rem;
}

.ttl2{
  font-size: 1.9rem;
  padding-bottom: 6.8rem;
  text-align: left;
}

.fade{
  opacity: 0;
  filter: blur(.1rem);
  transform: translateY(16px);
  transition:
    opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.fade.show{
  opacity: 1;
  filter: blur(0rem);
  transform: translateY(0);
}


.btn a{
  color: #fff;
  background: #777;
  display: inline-block;
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem 1rem 4rem;
  border-radius: 1rem;
}
@media screen and (min-width: 900px){
  .btn a:hover{
    opacity: .8;
    transition: .3s;
  }
}
.btn a::after{
  content:"";
  display: inline-block;
  border: .5rem solid transparent;
  border-left-color: #fff;
  margin-left: 25px;
}

.img-pop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.img-pop.is-open { display: flex; }

.img-pop__dialog {
  max-width: min(92vw, 1200px);
  max-height: 92vh;
  position: relative;
  overflow: visible;
  animation: popIn .7s ease;
  outline: 3px solid #fff;
}

.img-pop__img {
  max-width: 100%;
  max-height: 92vh;
  display: block;
  border-radius: .5rem;
}

.img-pop__close {
  position: absolute;
  top: -4.5rem;
  right: -1rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes popIn { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .img-pop__dialog { animation: none; }
}

/* ----------------- top ------------------ */
#p-top{
  color: #fff;
  background: #000;
}

#fv{
  position: relative;
  width: 100%;
  height: 100svh;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

#fv .slides{
  position: absolute;
  inset: 0;
  z-index: 0;
}
#fv .slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(1rem);
  transition: all 3s ease;
}
#fv .slide.active{
  opacity: 1;
  filter: blur(0rem);
}

#fv .circle{
  position: relative;
  z-index: 1;
  width: 22.6rem;
  height: 22.6rem;
  border-radius: 50%;
  background: #000000a6;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 2.8s ease;
}

#fv .circle span{
  font-size: 2rem;
  writing-mode: vertical-lr;
  letter-spacing: .2rem;
}
.scrolldown{
  position: absolute;
  top: calc(100svh - 15rem);
  left: calc(50% - 1rem);
  overflow: visible;
}
.scrolldown::after{
  content: "";
  display: block;
  background: #fff;
  height: 15.5rem;
  width: 0.05rem;
  margin: 0.5rem auto;
  animation: growLine 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.scrolldown span{
  font-size: 1rem;
  writing-mode: vertical-lr;
  display: block;
  padding-left: .3rem;
}
@keyframes growLine {
  0% {
    height: 0;
  }
  85% {
    height: 15.5rem;
  }
  100% {
    height: 15.5rem;
  }
}


#concept{
  margin: 17.8rem auto 16.7rem;
}
#concept h3{
  font-size: 1.9rem;
  margin-bottom: 3rem;
  line-height:1;
  display: inline-block;
}
#concept h3::after {
    content: "";
    display: block;
    background: #fff;
    height: 0.05rem;
    width: calc(100% - .4rem);
    margin-top: .3rem;
}
#concept .wrap p{
    line-height: 1.9;
}

#news .wrap{
  width: min(93rem, 90svw);
  margin: 0.8rem auto 18rem;
}
#news a{
  color: #fff;
  text-align: left;
  display: block;
  border-top: 0.05rem solid #fff;
  padding: 1.8rem 0 2.6rem;
}
#news a:last-child{
  border-bottom: 0.05rem solid #fff; 
}
#news .date{
  margin-bottom: 1rem;
  display: block;
}

#shop{
  padding-bottom: 6.5rem;
}
#shop section{
  padding-bottom: 10.6rem;
}
.sblock .logo{
  background: #fff;
  width: 14.2rem;
  height: 14.2rem;
  border-radius: 100%;
  margin: 5.4rem auto 5rem;
  display:block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img{height: 80%;}
#lazuly .logo img{width: 80%; height: auto}

.sblock .icon img{
  height: 3rem;
  padding: 1rem;
  margin-top: 1rem;
}

.sblock a.logo:hover{
  opacity: 1;
  background: #f19888;
}
@media screen and (max-width: 899px){
  #chatheureux h3{
    letter-spacing: 0;
  }
  #chatheureux h3 span{
    letter-spacing: -0.6rem;
  }
}

#about .wrap{
  width: min(93rem, 90svw);
  margin: 0 auto 18rem;
}
#about .logo{
  width: auto;
  height: 4.7rem;
  display: block;
  margin: 5.2rem auto 5.7rem;
}
#about p{
  color: #fff;
  display: block;
  border-top: 0.05rem solid #fff;
  padding: 1.3rem 0;
}
#about p:last-child{
  border-bottom: 0.05rem solid #fff;
}

#contact .ttl{
  margin-bottom: -3rem;
}
#contact a{
  padding: 2rem;
  display: inline-block;
}
#contact a:hover{
  opacity: 1;
  transform: translateX(10px);
  transition: all .5s ease 0s;
}
#contact a img{
  width: auto;
  height: 1.2rem;
  vertical-align: middle;
}
#contact a::before{
  content: "";
  height: 0.05rem;
  width: 22.6rem;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
}

/* ----------------- barshop ------------------ */

#p-barshop{
  background: var(--greenc);
  padding-top: 29rem;
}
#p-barshop .sblock .ph{
  width: 100%;
  height: 25rem;
  background-position: center center;
  background-size: cover;
  margin-bottom: 5rem;
}
@media screen and (min-width: 900px){
  #p-barshop .sblock .ph{
    height: 51rem;
  }
}
#p-barshop .sblock h3{
  font-size: 1.9rem;
  display: inline-block;
  border-bottom: 0.05rem solid #fff;
  margin-bottom: 3rem;
  line-height: 1.5;
}
#p-barshop .sblock .col2 {
  margin: 5rem auto 11.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 3rem;
}
@media screen and (min-width: 900px){
  #p-barshop .sblock .col2 {
    flex-direction: row;
    justify-content: center;
    grid-gap: 7rem;
  }
}
#p-barshop .sblock .col2 iframe{
  width: 93svw;
  height: 30rem;
}
@media screen and (min-width: 900px){
  #p-barshop .sblock .col2 iframe{
    width: 42.2rem;
  }
}
#p-barshop .sblock .logo{
  margin: 0 auto 2rem;
}
#p-barshop .sblock p{
  line-height: 1.9;
}
#p-barshop .sblock a{
  color: #fff;
  text-decoration: underline;
  /*border-bottom: 0.05rem solid #fff;*/
}

/* ----------------- news ------------------ */

#p-news{
  background: var(--pinkc);
  padding-top: 29rem;
}
#p-news .ttl{
  margin-bottom: 2rem;
}
#p-news .wrap{
  width: min(93rem, 90svw);
  margin: 0 auto;
}
#p-news .post{
  border-bottom: 0.05rem solid #fff;
  padding: 5rem 0;
}
#p-news .post:last-child{
  border-bottom: none;
}

#p-news .post h2{
  font-size: 1.9rem;
  display: inline-block;
  text-align: left;
  margin-bottom: 4rem;
}
#p-news .post h2 span{
  font-size: 1.5rem;
  display: block;
}
#p-news .post h3{
  font-size: 1.9rem;
  margin: 2rem 0 1rem;
}
#p-news .post h4{
  font-size: 1.7rem;
  margin: 2rem 0 1rem;
}
#p-news .post img{
  display: block;
  margin: 5.5rem auto;
  max-width: 80rem;
  height: auto;
}

@media screen and (max-width: 899px){
  #p-news .post{
    text-align:left;
  }
  #p-news .post img{
    margin-left: 0;
    max-width: 100%;
  }
}

/* ----------------- contact ------------------ */

#p-contact,
#p-thanks{
  background: var(--orangec);
  padding-top: 29rem;
}

#inquiry{
  width: min(93rem, 90svw);
  margin: 0 auto;
}
#inquiry .caption{
  text-align: center;
  margin-bottom: 5rem;
}
#inquiry dl{
  border-top: 0.05rem solid #fff;
}
#inquiry dt{
  text-align: left;
}
#inquiry dt small{
  color: #e33;
}
@media screen and (min-width: 900px){
  #inquiry .caption{
    text-align: left;
  }
  #inquiry dl{
    display: flex;
    padding: 2rem 0;
    margin: 0 auto;
  }
  #inquiry dt{
    width: 30rem;
    text-align: left;
    word-break: keep-all;
    padding-left: 3rem;
  }
}
#inquiry dt span{
  background: #d9374b;
  display: inline-block;
  font-size: 1.1rem;
  text-align: center;
  width: 4.25rem;
  height: 1.6rem;
  line-height: 1.6rem;
  margin-left: 1.3rem;
}
.caution{
  max-width: 60rem;
  text-align: left;
  font-size: 1.25rem;
}
.caution a{
  text-decoration: underline;
}
#inquiry a{
  color: #fff;
  border-bottom: 1px solid #fff;
}
#inquiry input[type='text'],
#inquiry input[type='tel'],
#inquiry input[type='email'],
#inquiry input[type='date'],
#inquiry input[type='number'],
#inquiry input[type='password'],
#inquiry select,
#inquiry textarea{
  background: #fff;
  width: 57rem;
  border: .1rem solid #fff;
  border-radius: .3rem;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  -webkit-appearance: none;
}
@media screen and (max-width: 899px){
  #inquiry input[type='text'],
  #inquiry input[type='tel'],
  #inquiry input[type='email'],
  #inquiry input[type='date'],
  #inquiry input[type='number'],
  #inquiry input[type='password'],
  #inquiry select,
  #inquiry textarea{
    width: 90svw;
  }
}
#inquiry .yname input[type='text']{
  width: 18rem;
  margin-right: 2rem;
}
@media screen and (min-width: 900px){
  #inquiry .yname input[type='text']{
    width: 20rem;
    margin-right: 6rem;
    margin-bottom: 0;
  }
}
input[type="date"]{position: relative;}
input[type="date"]::-webkit-inner-spin-button{-webkit-appearance: none;}
input[type="date"]::-webkit-clear-button{-webkit-appearance: none;}
input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: -2rem;
    opacity: 0;
}
.wpcf7-list-item{
  display: inline-block;
  padding: .4rem 1rem .4rem 0;
}
.wpcf7-radio label{
  margin-right: 2rem;
}
#inquiry input[type='submit']{
  color: #fff;
  background: #000000;
  font-size: 1.5rem;
  border: none;
  display: block;
  width: 14rem;
  height: 5.6rem;
  line-height: 5.6rem;
  position: relative;
  text-align: center;
  margin: 4rem auto;
  border-radius: .3rem;
  -webkit-appearance: none;
}
#inquiry input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
#inquiry input[type="submit"]:not(:disabled):hover {
  background: #d9374b;
}
.wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid #fff;
  border-radius: .3rem;
  background: #fff;
  cursor: pointer;
  vertical-align: middle;
  margin-right: .6rem;
  position: relative;
}

.wpcf7-list-item input[type="checkbox"]:checked {
  background: #fff
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><polyline points="3,8 7,12 13,4" fill="none" stroke="black" stroke-width="2"/></svg>')
    center/80% no-repeat;
}

.wpcf7-list-item-label {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
}

.wpcf7-list-item input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--fcolor3);
  outline-offset: 2px;
  border-color: var(--fcolor3);
}
.screen-reader-response,
.wpcf7-response-output{
  background: none;
  color: #e33;
}
.screen-reader-response ul{
  display: none;
}
.wpcf7-not-valid-tip{
  color: #e33;
  display: block;
  font-size: 1.1rem;
  line-height: 1.5;
  position: absolute;
}

@media screen and (min-width: 900px){
  #inquiry input[type='submit']:hover,
  form.swpm-form-builder input[type='submit']:hover{
    cursor: pointer;
  }
  #inquiry a.atel{
    pointer-events: none;
  }
}



/* ----------------- privacy ------------------ */

#p-privacy{
  background: #000;
  padding-top: 29rem;
}

#p-scta{
  color: #000;
  padding-top: 29rem;
}
#p-scta #logo,
#p-scta #glmenu,
#p-return #logo,
#p-return #glmenu{
  filter: invert(1);
}
#p-scta .on #logo,
#p-scta .on #glmenu,
#p-return .on #logo,
#p-return .on #glmenu{
  filter: invert(0);
}

#p-return{
  color: #000;
  padding-top: 29rem;
}

.btxt{
  width: min(93rem, 90svw);
  margin: 0 auto;
  text-align: left;
}
.btxt h2{
  font-size: 1.9rem;
  margin-top: 6rem;
}
.btxt h3{
  margin-top: 3.2rem;
  margin-left: -1rem;
}
.btxt a{
  text-decoration: underline;
}


/* -------------------------------------------- */
/* -----------------  404  -------------------- */
/* -------------------------------------------- */
#not-found{
  width: min(93rem, 90svw);
  margin: 0 auto;
  padding-top: 20rem;
  text-align: center;
}
#not-found h1,
#p-thanks h1{
  font-size: 1.9rem;
  padding-bottom: 6.8rem;
}
