@charset "UTF-8";

/*================================================
 *  一般・共通設定
 ================================================*/
:root {
  --color-primary: #c2cbc4;
  --color-white: #fff;
  --color-red: #8a4836;
  --color-darkgreen: #6f8175;
  --font-ttl: "Marcellus", serif;
}

html {
  font-size: 62.5%;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  font-size: 1.6rem;
  color: var(--color-darkgreen);
  background: var(--color-primary);
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.08em;
  font-weight: normal;
}

.wrap {
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

a {
  color: var(--color-darkgreen);
  text-decoration: none;
}

a:hover {
  opacity: .7;
  transition: .3s;
}

a.underline {
  text-decoration: underline;
}

p {
  margin: 0 0 0.5em 0;
}

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

img.shadow {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

em {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin: 0;
}

ol li {
  list-style: decimal;
}

/* タイトル */
h2 {
  color: var(--color-darkgreen);
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.3rem;
}

h2 span {
  display: block;
  font-family: var(--font-ttl);
  font-size: 2.5rem;
  text-transform: uppercase;
}

h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-darkgreen);
  text-align: center;
}

@media screen and (max-width:450px) {
  html {
    font-size: 60%;
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==================================================
    loading
====================================================*/
.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 150px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

@media screen and (max-width:450px) {
  .loading__logo {
    width: 120px;
  }
}

/* =======================================================
* header
* ======================================================= */
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-darkgreen);
  transition: all 0.3s;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 9;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* ナビゲーション左側 */
#g-nav.panelactive #g-nav-list .bg_list {
  height: 100vh;
  display: flex;
  width: 50%;
  box-sizing: border-box;
}


#g-nav.panelactive #g-nav-list .bg_list div {
  margin: auto;
}

#g-nav.panelactive #g-nav-list .bg_list h1 img {
  width: 270px;
  margin-bottom: 60px;
}

/* LINEボタン */
.lineBtn a {
  background: #06C755;
  color: var(--color-white);
  padding: 15px;
  display: block;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  line-height: 2;
}

.lineBtn a span {
  display: block;
  font-size: 1.2rem;
}

.lineBtn a img {
  display: inline;
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}

/*ナビゲーション右側*/
#g-nav ul {
  display: none;
}

#g-nav.panelactive ul {
  display: block;
  width: 50%;
}

/*リストのレイアウト設定*/
#g-nav li {
  line-height: 2;
  position: relative;
}

#g-nav li a {
  padding: 10px 0;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

#g-nav li span {
  font-family: var(--font-ttl);
  font-size: 3.3rem;
  text-transform: uppercase;
  margin-right: 50px;
  position: relative;
  color: var(--color-white);
}

#g-nav li span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  bottom: 12px;
  right: -40px;
}

/*========= ボタンのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 99;
  cursor: pointer;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: 30px;
  right: 30px;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 27px;
  height: 1px;
  background: var(--color-white);
  width: 40%;
}

.openbtn span:nth-of-type(1) {
  top: 23px;
}

.openbtn span:nth-of-type(2) {
  top: 31px;
}

.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn span:nth-of-type(3)::after {
  content: "MENU";
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--color-white);
  font-size: 1.2rem;
  letter-spacing: .2em;
  font-weight: bold;
  font-family: var(--font-ttl);
}

.openbtn.active span:nth-of-type(1) {
  top: 22px;
  left: 26px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
  background: #fff;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 34px;
  left: 26px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
  background: #fff;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "CLOSE";
  transform: translateY(0) rotate(-45deg);
  top: 11px;
  left: 20px;
  color: #fff;
  font-weight: bold;
  font-family: var(--font-ttl);
}

@media screen and (max-width:450px) {
  #g-nav.panelactive #g-nav-list {
    display: block;
  }

  #g-nav.panelactive #g-nav-list .bg_list {
    height: auto;
    width: 100%;
    padding: 80px 0 0;
  }

  #g-nav.panelactive #g-nav-list .bg_list h1 {
    position: absolute;
    top: 40px;
    left: 30px;
    width: 120px;
  }

  #g-nav.panelactive ul {
    width: 100%;
    padding: 60px 30px;
  }

  #g-nav li a {
    font-size: 1.2rem;
    padding: 7px 0;
  }

  #g-nav li span {
    font-size: 2rem;
  }

  /* lineBtn */
  .lineBtn a {
    display: none;
  }

  /* ボタン */
  .openbtn {
    width: 70px;
    height: 70px;
    top: 10px;
    right: 5px
  }

  .openbtn span {
    left: 21px;
  }

  .openbtn span:nth-of-type(1) {
    top: 17px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 29px;
  }

  /* OPEN */
  .openbtn span:nth-of-type(3)::after {
    top: 5px;
    left: -4px;
    font-size: 1.1rem;
  }

  /* CLOSE */
  .openbtn.active span:nth-of-type(1) {
    left: 19px;
    top: 16px;
    font-size: 1.1rem;
  }

  .openbtn.active span:nth-of-type(3) {
    left: 20px;
    top: 27px;
  }

  .openbtn.active span:nth-of-type(3)::after {
    top: 5px;
    left: 11px;
  }

  /* mainを過ぎたら色チェンジ */
  .openbtn.scrolled span {
    background: var(--color-darkgreen);
  }

  .openbtn.scrolled span:nth-of-type(3)::after {
    color: var(--color-darkgreen);
  }

  .openbtn.scrolled.active span:nth-of-type(3)::after {
    color: var(--color-white);

  }
}

/*================================================
 *  汎用クラス
 ================================================*/
#content {
  max-width: 450px;
  min-width: 280px;
  margin: 0 auto;
  background: var(--color-white);
  box-shadow: 0px 0px 15px 5px rgb(156 163 157 / 20%);
  position: relative;
}

section {
  padding-bottom: 7rem;
  position: relative;
}

.section {
  padding-top: 7rem;
}

.caption {
  color: var(--color-red);
  font-weight: bold;
}


@media screen and (max-width:450px) {
  #content {
    box-shadow: none;
  }

}

/*================================================
 * pcOnly
 ================================================*/
#pcOnly {
  position: fixed;
  height: 100vh;
  width: 100%;
}

#pcOnly h1 {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 150px;
}

/* PCのみメニュー */
#pcOnly ul {
  position: absolute;
  top: 160px;
  left: 5%;
  width: 300px;
}

#pcOnly ul li {
  margin-bottom: 10px;
}

#pcOnly ul li a {
  color: var(--color-white);
  font-size: 1.4rem;
  transition: color 0.3s;
}

#pcOnly ul li a.active {
  color: var(--color-darkgreen);
}

/* PCのみ予約ボタン */
.pcBtn {
  position: absolute;
  bottom: 20px;
  right: 3%;
  text-align: center;
  width: 250px;
}

.pcBtn div {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  box-shadow: 0px 0px 15px 5px rgb(156 163 157 / 20%);
}

.pcBtn span {
  display: block;
  font-size: 1.2rem;
}

.pcBtn_line a {
  background: #06C755;
  color: var(--color-white);
  padding: 10px;
  display: block;
  border-radius: 5px;
  line-height: 2;
}

.pcBtn_line a img {
  display: inline;
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}

.pcBtn_tel {
  background: var(--color-white);
  padding: 10px;
  display: block;
  border-radius: 5px;
  line-height: 2;
  font-size: 1.8rem;
}

/* flowTxt */
.flowTxt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: absolute;
  bottom: -70px;
  left: 0;
  z-index: -1;
}

.flowWrapper {
  display: flex;
  animation: loop-text 40s linear infinite;
}

.double-content {
  display: inline-block;
  font-size: 15rem;
  white-space: nowrap;
  margin: 0 5px;
  font-family: var(--font-ttl);
  color: rgba(255, 255, 255, 0.3);
}

@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width:450px) {
  #pcOnly {
    display: none;
  }
}


/*================================================
 * main
 ================================================*/
#main {
  background: url(../images/main.jpg) no-repeat center/cover;
  height: 100vh;
  height: 100dvh;
}

#main .main_logo {
  width: 70%;
  margin: 80px auto 50px;
  filter: drop-shadow(5px 5px 8px rgb(194, 203, 196, 0.9));
}


@media screen and (max-width:450px) {
  #main {
    background-position: center left 20%;
  }

  .spBtn {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    z-index: 2;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .spBtn.show {
    opacity: 1;
    transform: translateY(0);
  }

  .spBtn a {
    padding: 20px 0;
    display: block;
  }

  .spBtn .spBtn_line {
    background: #06C755;
    color: var(--color-white);
  }

  .spBtn .spBtn_line img {
    display: inline;
    width: 25px;
    vertical-align: middle;
    padding-right: 5px;
  }

  .spBtn .spBtn_tel {
    background: var(--color-white);
    border-top: 1px solid var(--color-primary);
  }
}


/*================================================
 * concept
 ================================================*/
#concept {
  padding-bottom: 4rem;
}

#concept p {
  line-height: 2.2;
  text-align: center;
  margin-bottom: 10px;
}

/* swiper */
.swiper.swiper_salon .swiper-wrapper {
  transition-timing-function: linear !important
}


/*================================================
 * menu
 ================================================*/
#menu dl {
  margin-top: 30px;
}

#menu dl dt,
#menu dl dd {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px dotted var(--color-primary);
}

#menu dl dt {
  width: 70%;
  padding-left: 10px;
}

#menu dl dd {
  width: 30%;
  text-align: right;
  padding-right: 20px;
}

#menu dl dd span {
  font-family: var(--font-ttl);
  font-size: 1.5rem;
}


/*================================================
 * hairstyles
 ================================================*/
#hairstyles ul {
  margin-top: 20px;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}


/*================================================
 * access
 ================================================*/
#access dl dt {
  border-bottom: 1px dotted var(--color-primary);
  padding: 0 0 5px 5px;
  margin-bottom: 10px;
}

#access dl dd {
  margin-bottom: 20px;
  padding-left: 15px;
}

#access iframe {
  width: 100%;
  height: 300px;
  margin: 30px auto 15px;
}

/*================================================
 * question
 ================================================*/
#question .wrap {
  padding-right: 0;
}

#question ul {
  margin-top: 30px;
  display: flex;
  overflow-x: scroll;
  padding-bottom: 30px;
}

#question ul li {
  min-width: 70%;
  background: var(--color-darkgreen);
  margin: 0 10px;
  padding: 25px 25px 15px;
  box-sizing: border-box;
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--color-white);
}

#question ul li h4 {
  border-bottom: 1px dotted;
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-weight: bold;
}

#question ul li h4 span {
  font-family: var(--font-ttl);
  font-size: 1.6rem;
  margin-right: 7px;
}


/* =======================================================
* reserve
* ======================================================= */
.reserveBtn {
  margin: 50px auto 0;
  text-align: center;
  width: 100%;
}

.reserveBtn div {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.reserveBtn span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}

.reserveBtn_line a {
  background: #06C755;
  color: var(--color-white);
  padding: 20px 10px;
  display: block;
  border-radius: 5px;
  line-height: 2;
}

.reserveBtn_line a img {
  display: inline;
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}

.reserveBtn_tel a {
  border: 2px solid var(--color-darkgreen);
  padding: 15px 10px;
  display: block;
  border-radius: 5px;
  line-height: 2;
  font-size: 2.2rem;
}


/* =======================================================
* copyright / pagetop
* ======================================================= */
/* pagetop */
#pagetop {
  text-align: center;
  font-family: var(--font-ttl);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 10px 0px;
  background: var(--color-darkgreen);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* copyright */
.copyright {
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 10rem;
  font-family: var(--font-ttl);
}