@charset "utf-8";
/* CSS Document */

/* =============================================================================
 Reset
============================================================================= */

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
*,:after,:before{box-sizing:border-box}button,input[type=button]{margin:0;padding:0;border:0;border-radius:0;background-color:transparent;outline:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}





/* =============================================================================
 variable
============================================================================= */
:root {
  --color-base: #000;
  --color-black: #000;
  --color-white: #fff;

  --gradient-01: linear-gradient(to right, var(--base-black) 0%, rgba(0,0,0) 100%);

  --fzPC-01: 1.5rem;
  --fzSP-01: 1.4rem;

  --content-width: 1220px;

  --transition-op: opacity ease .3s,visibility ease .3s;
  --transition-trf: transform ease .3s;
  --transition-all: all ease .3s;

  --icon-arrow: url(../images/common/ico_arrow.svg) no-repeat 0 0 / contain;
}





/* =============================================================================
 Fonts
============================================================================= */

html {
  font-size: 62.5%;
}
body {
  font-family: "Zen Kaku Gothic New","游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 1.3rem;
}

@media screen and (max-width: 749px) {
  body {
    font-size: 1.2rem;
  }
}

.en {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.enNum {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}




/* =============================================================================
 Elements
============================================================================= */

/* color setting */
body {
  color: #2F2D2C;
}



/* link setting */
a {
  text-decoration: none;
}
a.on {
  opacity: 1;
  transition: opacity .3s;
}
@media (hover: hover) {
a:hover {
  text-decoration: underline;
}
a.on:hover {
  text-decoration: none;
  opacity: .7;
}
}


/* image setting */
img {
  max-width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 749px) {
  img {
    width: 100%;
  }
}



/* box */
*,*:before,*:after {
  box-sizing: border-box;
}



/* cursor */
button {
  cursor: pointer;
}





/* =============================================================================
 Responsive Class
============================================================================= */

@media screen and (min-width: 750px) {
  .only-sp {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .only-pc {
    display: none;
  }
}





/* =============================================================================
 Base Layout
============================================================================= */

body {
  background-color: #F7F4F4;
}

p {
  color: #2F2D2C;
  line-height: 1.64;
  font-size: 1.4rem;
}
@media screen and (max-width: 749px) {
p {
  line-height: 1.64;
  font-size: calc(28/750*100vw);
}
}

#container {
}
#mainArea {
}

@media screen and (max-width: 749px) {
}





/* =============================================================================
 common header
============================================================================= */

#header {
}
#header .headerInner {
}

@media screen and (max-width: 749px) {
}





/* =============================================================================
 global navi
============================================================================= */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  color: #333;
  box-sizing: border-box;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.menuOn .menu {
  opacity: 1;
  pointer-events: inherit;
}
.menu .menuInner {
  width: 100%;
  background-color: #F7F4F4;
  padding: 15px 20px;
  position: relative;
  border-bottom: #EAE5E4 1px solid;
}
.menu .menuLogo {
  width: 100px;
}
.menu .snsListArea {
  position: absolute;
  top: 0;
  right: 70px;
}
ul.snsList {
  display: flex;
  height: 100%;
  border-left: #EAE5E4 1px solid;
}
ul.snsList li {
  width: 200px;
  height: 64px;
  border-right: #EAE5E4 1px solid;
  background-color: #F7F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}
ul.snsList li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
@media (hover: hover) {
ul.snsList li:hover {
  background-color: #EAE5E4;
}
ul.snsList li:hover a {
  text-decoration: none;
}
}
ul.snsList li a img {
  width: 25px;
}
@media screen and (max-width: 749px) {
.menu {
  height: 58px;
}
.menu .menuInner {
  padding: 15px 15px 9px 18px;
}
.menu .menuLogo {
  width: 100px;
}
.menu .snsListArea {
  width: 100%;
  top: auto;
  bottom: 0;
  right: 0;
}
.menu .menuInner .snsListArea {
  display: none !important;
}
ul.snsList {
  width: 100%;
  display: flex;
  height: auto;
  border-left: none;
  border-top: #EAE5E4 1px solid;
}
ul.snsList li {
  width: 50%;
  height: 50px;
  border-right: #EAE5E4 1px solid;
}
ul.snsList li:last-of-type {
  border-right: none;
}
ul.snsList li a {
  width: 100%;
  height: 100%;
  gap: 0 8px;
}
ul.snsList li a img {
  width: 20px;
}
ul.snsList li a p {
  font-size: calc(26 / 750 * 100vw);
}
.btmSns {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  opacity: 1;
  pointer-events: inherit;
  transition: opacity .3s ease;
}
.btmOff .btmSns {
  opacity: 0;
  pointer-events: none;
}
}



/* メニューが開いているとき */
.menuOpen .menu {

}

/* ボタンのスタイル */
.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}


/* バツ印に変化するスタイル */
.menuOpen .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menuOpen .hamburger span:nth-child(2) {
  opacity: 0;
}

.menuOpen .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
.menu .menuField {
  height: calc(100vh - 64px);
  list-style-type: none;
  padding: 0;
  display: none;
  background-color: #F7F4F4;
  padding: 15px 20px;
}
.menu .menuFieldInner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu ul.menuList {
  height: 360px;
  display: flex;
  flex-flow: column wrap;
  gap: 0 40px;
}
.menu ul.menuList li {
  width: 450px;
  margin-bottom: 10px;
  border-bottom: 1px solid #C6B8B8;
}
.menu ul.menuList li a {
  padding: 20px 0;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}
.menu ul.menuList li a:after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin: auto 0;
  display: block;
  border-top: #AD9898 1px solid;
  border-right: #AD9898 1px solid;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  transform: rotate(45deg) translateY(0.4em);
}
.menu ul.menuList li a .en {
  width: 50%;
  font-size: 28px;
  color: #AD9898;
  letter-spacing: 0.04em;
}
.menu ul.menuList li a .jp {
  width: 50%;
  padding-top: 0.4em;
  font-size: 14px;
  font-weight: 500;
  color: #2F2D2C;
  letter-spacing: 0.04em;
}
.menu .instaArea {
  margin-top: 90px;
}
@media screen and (max-width: 749px) {
.menu .menuField {
  height: calc(100vh - 58px);
  padding: 15px calc(70/750*100vw) 65px;
  position: relative;
}
.menu ul.menuList {
  height: auto;
  gap: 0 0;
}
.menu ul.menuList li {
  width: 100%;
  margin-bottom: 0;
}
.menu ul.menuList li:last-of-type {
  border-bottom: none;
}
.menu ul.menuList li a {
  padding: 15px 0;
}
.menu ul.menuList li a:after {
  right: 8px;
}
.menu ul.menuList li a .en {
  font-size: 18px;
}
.menu ul.menuList li a .jp {
  font-size: 10px;
}
.menu .instaArea {
  margin-top: 36px;
}
}



/* =============================================================================
 common footer
============================================================================= */

#footer .footerInner {
  padding: 40px 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#footer .menuLogo {
  width: 140px;
}
#footer .copy {
  font-size: 11px;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 749px) {
#footer .footerInner {
  padding: 20px 20px 26px;
}
#footer .menuLogo {
  width: 130px;
}
#footer .copy {
  font-size: 9px;
}
}





/* =============================================================================
 Common Block Styles
============================================================================= */

/* side navi */
#sideNavi {
}

/* pagetop */
#pagetop {
}

@media screen and (max-width: 749px) {
}


.secTitle {
  margin-bottom: 1.0em;
  font-size: 48px;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #AD9898;
  text-align: center;
}
.secTitle .slead {
  margin-top: 1.46em;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 749px) {
.secTitle {
  margin-bottom: 1.5em;
  font-size: calc(56/750*100vw);
}
.secTitle .slead {
  margin-top: 1em;
  font-size: calc(32/750*100vw);
}
}


/* modal */
.modalOpened {
  overflow: hidden;
}
.itemList .modalClose {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: -30px;
  top: -30px;
  cursor: pointer;
}
.itemList .modalClose span {
  width: 17px;
  height: 1px;
  background-color: rgba(255,255,255,.8);
  position: relative;
  display: block;
  transform: rotate(45deg);
  top: 10px;
  left: 2px;
  
}
.itemList .modalClose span:after {
  content: "";
  width: 1px;
  height: 17px;
  background-color: rgba(255,255,255,.8);
  display: block;
  position: absolute;
  left: 8px;
  top: -8px;
}
.itemModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: rgba(173, 152, 152, .7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity ease .6s,visibility ease .6s;
}
.modalOpen.itemModal {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 1000;
  backdrop-filter: blur(3px);
}
.itemModal .itemListWrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
}
@media all and (min-width: 750px) {
.itemModal .itemListWrap {
  width: 830px;
  height: 580px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.itemModal .itemListWrap .itemList {
  display: block;
  position: relative;
}
}
@media all and (max-width: 749px) {
.itemModal .itemListWrap {
  padding: calc(20/750*100vw) calc(60/750*100vw);
}
.itemList .modalClose {
  right: 10px;
  top: 10px;
}
}



/* =============================================================================
 MV Styles
============================================================================= */
.mvArea {
  width: 100%;
  height: 100vh;
  background: url(../images/bg_mv-pc.png) no-repeat;
  background-size: cover;
}
.mvArea .mv {
  width: 296px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 749px) {
.mvArea {
  background: url(../images/bg_mv-sp.png) no-repeat;
  background-size: cover;
}
.mvArea .mv {
  width: calc(556/750*100vw);
}
}

svg .svg-elem-1 {
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-1 {
}

svg .svg-elem-2 {
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-2 {
}

svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-3 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-4 {
  fill: rgb(236, 119, 87);
}

svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
}

svg.active .svg-elem-5 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-6 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
}

svg.active .svg-elem-7 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg.active .svg-elem-8 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .svg-elem-9 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
}

svg.active .svg-elem-10 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}

svg.active .svg-elem-11 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s;
}

svg.active .svg-elem-12 {
  fill: rgb(48, 45, 44);
}

svg .svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}

svg.active .svg-elem-13 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}

svg.active .svg-elem-14 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}

svg.active .svg-elem-15 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-16 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}

svg.active .svg-elem-16 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-17 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s;
}

svg.active .svg-elem-17 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-18 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}

svg.active .svg-elem-18 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-19 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}

svg.active .svg-elem-19 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-20 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}

svg.active .svg-elem-20 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-21 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}

svg.active .svg-elem-21 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-22 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s;
}

svg.active .svg-elem-22 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-23 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}

svg.active .svg-elem-23 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-24 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1000000000000005s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1000000000000005s;
}

svg.active .svg-elem-24 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-25 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
}

svg.active .svg-elem-25 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-26 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
}

svg.active .svg-elem-26 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-27 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4000000000000004s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4000000000000004s;
}

svg.active .svg-elem-27 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-28 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
}

svg.active .svg-elem-28 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-29 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6000000000000005s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6000000000000005s;
}

svg.active .svg-elem-29 {
  fill: rgb(62, 58, 57);
}

svg .svg-elem-30 {
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
          transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
}

svg.active .svg-elem-30 {
}





/* =============================================================================
 Page Styles
============================================================================= */
.anch {
  margin-top: -64px;
  padding-top: 64px;
}
@media all and (max-width: 749px) {
.anch {
  margin-top: -36px;
  padding-top: 36px;
}
}

/* concept */
.concept {
  margin-bottom: 240px;
}
.concept .secInner {
  padding-top: 170px;
}
.concept .flexArea {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.concept .flexArea .textArea .secTitle {
  text-align: left;
}
.concept .flexArea .textArea .lead {
  margin-bottom: 1.8em;
  font-size: 2.8rem;
  line-height: 1.8;
  white-space: nowrap;
}
.concept .flexArea .textArea p {
  line-height: 2.6;
}
.concept .flexArea .imgArea img {
  position: relative;
  right: -220px;
}
@media all and (max-width: 749px) {
.concept {
  margin-bottom: calc(250/750*100vw);
}
.concept .secInner {
  padding-top: calc(160/750*100vw);
}
.concept .flexArea {
  flex-direction: column;
  gap: calc(100/750*100vw) 0;
}
.concept .flexArea .textArea {
  width: calc(590/750*100vw);
  margin: 0 auto;
}
.concept .flexArea .textArea .lead {
  margin-bottom: 1.8em;
  font-size: calc(40/750*100vw);
}
.concept .flexArea .textArea p {
  line-height: 2.6;
}
.concept .flexArea .imgArea img {
  padding-left: calc(80/750*100vw);
  right: 0;
}
}


/* about */
.about .secInner {
  padding: 140px 0 150px;
  background: url(../images/bg_about-pc.png) no-repeat;
  background-size: cover;
}
.about .text {
  text-align: center;
  line-height: 2.6;
}
@media all and (max-width: 749px) {
.about .secInner {
  padding: calc(230/750*100vw) 0 calc(200/750*100vw);
  background: url(../images/bg_about-sp.png) no-repeat;
  background-size: cover;
}
.about .text {
  width: calc(590/750*100vw);
  margin: 0 auto;
  text-align: justify;
}
}



/* accodion */
.features {
  padding: 137px 0 150px;
}
.featuresCopy {
  margin: 56px 0 33px;
  line-height: 1.5;
  font-size: 2.8rem;
  text-align: center;
}
.featuresRange {
}
.featuresRangeLabel {
  margin-bottom: 16px;
  line-height: 1.4285714285714286;
  font-size: 1.4rem;
  text-align: center;
}
.featuresRangeList {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.featuresRangeList li {
  border: 1px solid rgba(173, 152, 152, .5);
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 170px;
  height: 54px;
  line-height: 1.5;
  color: #EC7757;
  font-size: 2rem;
  font-weight: 500;
}
.featuresRangeList li .small {
  display: block;
  line-height: 1;
  font-size: 1rem;
}
.featuresRecommend {
  margin: 50px auto 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EC7757;
  width: 480px;
}
.featuresRecommendLabel {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2.5;
  color: #EC7757;
  font-size: 1.6rem;
  font-weight: 500;
}
.featuresRecommendLabel span {
  padding: 0 1em;
  display: block;
  flex-shrink: 0;
}
.featuresRecommendLabel:before,
.featuresRecommendLabel:after {
  content: '';
  display: block;
  width: 50%;
  height: 1px;
  flex-shrink: 1;
  background-color: #EC7757;
}
.featuresRecommendList {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: 375px;
}
.featuresRecommendList li {
  padding-left: 22px;
  line-height: 1.5;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAMAAAAMCGV4AAAABGdBTUEAALGPC/xhBQAAAEtQTFRF7HdW73hY9LCb7XdX7HZW7HhV////////AAAA7X9h/e7q98O1+My/9bqq7odr8qGL8JiA+dTK9LKg7X9g/OXf75B2/vb07HdX////seXZfgAAAAl0Uk5T8CCkb6BgbpIAHJ0WuAAAAGBJREFUCNdtyFkWgkAMBdFGVIIoY5L39r9SaGQI51B/t5KEnqWk99kDqUg8+tR4SXCPToIbTJ797TxTgYGLfYLlYRiZTV3HiNb/XscAKDdTDcCPh+kGYzC914v3blzFRGb9Vg+s83pcxQAAAABJRU5ErkJggg==) center left no-repeat;
  font-size: 1.6rem;
  font-weight: 500;
}
.featuresList {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}
.featureBox {
  padding: 30px;
  border-radius: 10px;
  width: 32%;
  background-color: rgba(255, 255, 255, .6);
}
.featureBox dt {
  margin-bottom: 20px;
  line-height: 1.4444444444444444;
  color: #AD9898;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.featureBox dd {
  line-height: 2;
  font-size: 1.4rem;
}
@media all and (max-width: 749px) {
  .features {
    padding: calc(140/750*100vw) 0 calc(160/750*100vw);
  }
  .featuresCopy {
    margin: calc(100/750*100vw) 0 calc(30/750*100vw);
    font-size: calc(40/750*100vw);
  }
  .featuresRange {
  }
  .featuresRangeLabel {
    margin-bottom: calc(20/750*100vw);
    font-size: calc(18/750*100vw);
  }
  .featuresRangeList {
    gap: calc(10/750*100vw);
  }
  .featuresRangeList li {
    padding: 0 calc(20/750*100vw);
    width: auto;
    height: calc(64/750*100vw);
    font-size: calc(26/750*100vw);
  }
  .featuresRangeList li .small {
    margin-top: calc(-4/750*100vw);
    font-size: calc(14/750*100vw);
  }
  .featuresRecommend {
    margin: calc(80/750*100vw) auto calc(110/750*100vw);
    width: calc(610/750*100vw);
  }
  .featuresRecommendLabel {
    margin-bottom: calc(48/750*100vw);
    line-height: 2.9166666666666665;
    font-size: calc(24/750*100vw);
  }
  .featuresRecommendList {
    gap: calc(24/750*100vw) 0;
    width: calc(580/750*100vw);
  }
  .featuresRecommendList li {
    padding-left: calc(36/750*100vw);
    background-size: calc(24/750*100vw) calc(22/750*100vw);
    font-size: calc(24/750*100vw);
    font-feature-settings: "palt";
  }
  .featuresList {
    margin: 0 calc(30/750*100vw);
    flex-direction: column;
    gap: calc(30/750*100vw);
  }
  .featureBox {
    padding: calc(50/750*100vw);
    border-radius: calc(30/750*100vw);
    width: 100%;
  }
  .featureBox dt {
    font-size: calc(32/750*100vw);
  }
  .featureBox dd {
    font-size: calc(26/750*100vw);
  }
}



/* menu */
.salonMenu {
  padding: 100px 0 150px;
  background-color: rgba(234, 229, 228, .6);
}
.salonMenuHead {
  margin: 0 auto 120px;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.salonMenuHeadBody {
  width: calc(57% - 20px);
}
.salonMenuHeadBody * {
  text-align: left !important;
}
.salonMenuHeadBody p {
  margin-top: 40px;
  line-height: 2;
  font-size: 1.6rem;
}
.salonMenuHeadImg {
  width: 53%;
}
.menuLineup {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 64px 0;
}
.menuLineupBox {
  padding: 0 0 20px;
  border-bottom: 1px solid #AD9898;
  width: 48%;
}
.menuLineupBoxTitle {
  margin-bottom: 26px;
  line-height: 1.75;
  font-size: 1.6rem;
}
.menuLineupBoxTitle span {
  padding-right: 1em;
  font-weight: 500;
}
.menuLineupBoxBody p {
  margin-top: 1em;
  color: #8E8282;
  line-height: 1.3333333333333333;
  font-size: 1.2rem;
}
.menuLineupBoxLabeled {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.menuLineupBoxLabeled dt {
  border-radius: 3px;
  border: 1px solid #8E8282;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 21px;
  color: #8E8282;
  font-size: 1.1rem;
}
.menuLineupBoxLabeled:last-child dt {
  color: #fff;
  background-color: #8E8282;
}
.menuLineupBoxPrice {
  line-height: 1.4;
  font-size: 2rem;
}
.menuLineupBoxPrice:after {
  margin-left: 5px;
  content: '(税込)';
  font-size: 1rem;
}

@media all and (max-width: 749px) {
  .salonMenu {
    padding: calc(140/750*100vw) 0;
  }
  .salonMenuHead {
    margin: 0 auto calc(80/750*100vw);
    flex-direction: column;
    gap: calc(120/750*100vw) 0;
    width: calc(670/750*100vw);
  }
  .salonMenuHeadBody {
    width: 100%;
  }
  .salonMenuHeadBody * {
    text-align: center !important;
  }
  .salonMenuHeadBody p {
    margin-top: calc(60/750*100vw);
    font-size: calc(26/750*100vw);
    text-align: center;
  }
  .salonMenuHeadImg {
    width: 100%;
  }
  .menuLineup {
    margin: 0 auto;
    width: calc(630/750*100vw);
    flex-direction: column;
    gap: calc(54/750*100vw) 0;
  }
  .menuLineupBox {
    width: 100%;
  }
  .menuLineupBox:last-child {
    border-bottom: none;
  }
  .menuLineupBoxTitle {
    margin-bottom: calc(24/750*100vw);
    font-size: calc(28/750*100vw);
  }
  .menuLineupBoxBody p {
    line-height: 1.5;
    font-size: calc(20/750*100vw);
  }
  .menuLineupBoxLabeled {
    margin-top: calc(20/750*100vw);
    gap: 0 calc(10/750*100vw);
  }
  .menuLineupBoxLabeled dt {
    width: calc(100/750*100vw);
    height: calc(30/750*100vw);
    font-size: calc(18/750*100vw);
  }
  .menuLineupBoxPrice {
    line-height: 1.4;
    font-size: calc(32/750*100vw);
  }
  .menuLineupBoxPrice:after {
    margin-left: calc(6/750*100vw);
    font-size: calc(16/750*100vw);
  }
}



/* flow */
.flow {
  padding: 137px 0 150px;
}
.flow p.text {
  margin: 40px 0 100px;
  font-size: 1.6rem;
  text-align: center;
}
.flowList {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.flowBox {
  padding: 40px 27px 30px;
  border-radius: 10px;
  position: relative;
  width: 32%;
  background-color: rgba(255, 255, 255, .6);
}
.flowBoxNum {
  position: absolute;
  top: 0;
  left: 20px;
  color: rgba(173, 152, 152, .6);
  font-size: 5rem;
  letter-spacing: 0.04em;
  transform: translateY(-50%);
}
.flowBoxTitle {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4444444444444444;
  min-height: 2.88888em;
  color: #AD9898;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.flowBoxImg {
  margin: 0 auto 30px;
  width: calc(150/266*100%);
}
.flowBox p {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
  min-height: 6em;
  text-align: center;
}
@media all and (max-width: 749px) {
  .flow {
    padding: calc(140/750*100vw) 0 calc(160/750*100vw);
  }
  .flow p.text {
    margin: calc(60/750*100vw) 0 calc(130/750*100vw);
    font-size: calc(26/750*100vw);
  }
  .flowList {
    width: calc(670/750*100vw);
    flex-direction: column;
    gap: calc(90/750*100vw) 0;
  }
  .flowBox {
    padding: calc(70/750*100vw) calc(30/750*100vw) calc(60/750*100vw);
    width: 100%;
  }
  .flowBoxNum {
    left: auto;
    right: calc(24/750*100vw);
  }
  .flowBoxTitle {
    margin-bottom: calc(34/750*100vw);
    min-height: inherit;
    font-size: calc(30/750*100vw);
  }
  .flowBoxImg {
    margin: 0 auto calc(54/750*100vw);
    width: calc(300/750*100vw);
  }
  .flowBox p {
    line-height: 2;
    min-height: inherit;
    font-size: calc(24/750*100vw);
  }
}



/* story */
.story {
  padding: 140px 0 150px;
  background-color: rgba(255, 255, 255, .5);
}
.storyBox {
  margin: 0 auto;
  padding: 30px 40px;
  position: relative;
  width: 610px;
}
.storyBox:before,
.storyBox:after {
  content: '';
  display: block;
  position: absolute;
  width: 36px;
  height: 114px;
}
.storyBox:before {
  border-top: 2px solid #EAE5E4;
  border-left: 2px solid #EAE5E4;
  top: 0;
  left: 0;
}
.storyBox:after {
  border-bottom: 2px solid #EAE5E4;
  border-right: 2px solid #EAE5E4;
  bottom: 0;
  right: 0;
}
.storyBox p {
  margin-bottom: 1em;
  line-height: 2;
  font-size: 1.4rem;
}
.signiture {
  margin-top: 1em;
  text-align: right;
  font-size: 2rem;
}

@media all and (max-width: 749px) {
  .story {
    padding: calc(145/750*100vw) 0 calc(160/750*100vw);
  }
  .storyBox {
    padding: calc(44/750*100vw) calc(50/750*100vw) calc(56/750*100vw);
    width: calc(630/750*100vw);
  }
  .storyBox:before,
  .storyBox:after {
    width: calc(65/750*100vw);
    height: calc(208/750*100vw);
  }
  .storyBox p {
    font-size: calc(24/750*100vw);
  }
  .signiture {
    margin-top: 1.5em;
    font-size: calc(26/750*100vw);
  }
}



/* faq */
.faq {
  padding: 137px 0 150px;
  border-bottom: 1px solid rgba(173, 152, 152, .3);
}
.faqList {
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.faqAccArea {
  border-radius: 5px;
  width: 100%;
  background-color: #fff;
}
.faqAccArea .faqAccCont {
  display: none;
}
.faqAccArea .faqAccLead {
  padding: 18px 30px;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
}
@media (hover: hover) {
  .faqAccArea .faqAccLead:hover {
    cursor: pointer;
  }
  .faqAccArea .faqAccLead:hover .btnIcon {
    opacity: .7;
  }
}
.faqAccArea .faqAccLead .btnIcon {
  width: 21px;
  height: 21px;
  position: absolute;
  right: 20px;
  top: calc(50% - 10.5px);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.faqAccArea .faqAccLead .btnIcon span {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.faqAccArea .faqAccLead .btnIcon span:before {
  content: "";
  width: 100%;
  height: 1px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background-color: #EC7757;
}
.faqAccArea .faqAccLead .btnIcon span:after {
  content: "";
  width: 1px;
  height: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background-color: #EC7757;
  transform: rotate(0);
  transition: all .3s;
}
.faqAccArea.open .faqAccLead .btnIcon span:after {
  transform: rotate(90deg);
}
.faqAccArea .faqAccText {
  padding: 0 30px 20px;
  font-size: 1.4rem;
  line-height: 1.4285714285714286;
}
@media all and (max-width: 749px) {
  .faq {
    padding: calc(145/750*100vw) 0 calc(160/750*100vw);
  }
  .faqList {
    width: calc(670/750*100vw);
    gap: calc(20/750*100vw) 0;
  }
  .faqAccArea {
  }
  .faqAccArea .faqAccLead {
    padding: calc(30/750*100vw) calc(40/750*100vw);
    font-size: calc(26/750*100vw);
  }
  .faqAccArea .faqAccText {
    padding: 0 calc(40/750*100vw) calc(33/750*100vw);
    font-size: calc(24/750*100vw);
    font-size: calc(24/750*100vw);
  }
}



/* precautions */
.precautions {
  padding: 145px 0 150px;
}
.precautionsBtn {
  margin-top: 50px;
  text-align: center;
}
.precautionsBtn a {
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  color: #fff;
  background-color: #AD9898;
  font-size: 1.6rem;
  transition: background-color .3s;
    text-decoration: none;
}
@media screen and (hover: hover) {
  .precautionsBtn a:hover {
    background-color: #8E8282;
  }
}
@media all and (max-width: 749px) {
  .precautions {
    padding: calc(145/750*100vw) 0 calc(160/750*100vw);
  }
  .precautionsBtn {
    margin-top: calc(80/750*100vw);
  }
  .precautionsBtn a {
    border-radius: calc(10/750*100vw);
    width: calc(480/750*100vw);
    height: calc(100/750*100vw);
    font-size: calc(26/750*100vw);
  }
}



/* contact */
.contact {
  padding: 137px 0 150px;
  background-color: rgba(234, 229, 228, .6);
}
.contact p {
  margin-top: 50px;
  line-height: 2;
  font-size: 1.6rem;
  text-align: center;
}
.contactLinks {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
.contactLink {
  width: 240px;
}
.contactLink a {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  width: 100%;
  height: 60px;
  color: #2F2D2C;
  background-color: #F8F4F4;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: background-color .3s;
}
.contactLink a img {
  width: 25px;
}
@media screen and (hover: hover) {
  .contactLink a:hover {
    background-color: #EAE5E4;
  }
}
@media all and (max-width: 749px) {
  .contact {
    padding: calc(178/750*100vw) 0 calc(200/750*100vw);
  }
  .contact p {
    margin-top: calc(60/750*100vw);
    font-size: calc(26/750*100vw);
  }
  .contactLinks {
    margin: calc(75/750*100vw) auto 0;
    flex-direction: column;
    gap: 10px;
    width: 240px;
  }
  .contactLink a {
    gap: 0 8px;
    width: 100%;
    height: 50px;
    font-size: 1.3rem;
  }
  .contactLink a img {
    width: 20px;
  }
}


@media all and (min-width: 750px) {
.sec01 .secInner {
  overflow-x: hidden;
}
}






















.itemModal {
  padding: 30px 0;
  overflow: auto;
  text-align: center;
  white-space: nowrap;
}
.modalInner {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}
.itemModal:after {
  vertical-align: middle;
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
@media all and (max-width: 749px) {
  .itemModal:after {
    display: none;
  }
}

.reservationLine {
  margin: 0 30px;
  padding: 68px 0 57px;
  border-radius: 5px;
  clear: both;
  position: relative;
  width: 480px;
  background-color: #fff;
}
.reservationLineTitle {
  line-height: 1.4444444444444444;
  font-size: 1.8rem;
  font-weight: bold;
}
.reservationLineQr {
  margin: 20px 0 28px;
}
.reservationLineText {
  line-height: 1.5;
  font-size: 1.4rem;
}
.modalCont .modalBtn {
  margin-bottom: 10px;
  float: right;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4gPHBhdGggaWQ9IuODkeOCuV81MjEiIGRhdGEtbmFtZT0i44OR44K5IDUyMSIgZD0iTS0zLjctMjEuNiw1LjUxLTMwLjgwOCw0LjcxNi0zMS42LTQuNDktMjIuNC0xMy42NjUtMzEuNmwtLjgyNS44MjVMLTUuMjg0LTIxLjYtMTQuNDktMTIuNGwuNzk0Ljc5NCw5LjIwNi05LjIwNkw0LjcxNi0xMS42LDUuNTEtMTIuNFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE0LjQ5IDMxLjYwMikiIGZpbGw9IiNmZmYiLz48L3N2Zz4=") center center no-repeat;
  cursor: pointer;
}



.precautionsGuide {
  margin: 0 30px;
  padding: 50px 60px;
  border-radius: 5px;
  clear: both;
  max-width: 860px;
  background-color: #fff;
}
.precautionsGuideTitle {
  margin-bottom: 38px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.precautionsGuide p,
.precautionsGuide li {
  margin-top: 1em;
  line-height: 1.6714285714285713;
  text-align: left;
}
.precautionsGuide li ul {
  margin-top: 5px;
  padding: 20px;
  border: 1px solid #C4C4C4;
}
.precautionsGuide li li {
  margin-top: 0;
  line-height: 1.7999999999999998;
  font-size: 1.3rem;
}
.precautionsGuide li li .small {
  font-size: 84.61538461538461%;
}
.modalCont .modalBtn.modalCloseTxt {
  margin: 40px auto 0;
  border: 1px solid #fff;
  border-radius: 5px;
  float: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  color: #fff;
  font-size: 1.6rem;
  background: none;
}
@media all and (max-width: 749px) {
  .precautionsGuide {
    margin: 0 calc(20/750*100vw);
    padding: calc(70/750*100vw) calc(50/750*100vw);
    border-radius: calc(10/750*100vw);
    max-width: inherit;
    width: calc(710/750*100vw);
  }
  .precautionsGuideTitle {
    margin-bottom: calc(36/750*100vw);
    font-size: calc(24/750*100vw);
  }
  .precautionsGuide p,
  .precautionsGuide li {
    font-size: calc(24/750*100vw);
  }
  .precautionsGuide li ul {
    margin-top: calc(10/750*100vw);
    padding: calc(30/750*100vw);
  }
  .precautionsGuide li li {
    font-size: calc(22/750*100vw);
  }
}




































































































