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

/*----------- レスポンシブ -----------*/
/* iPad Smaller than 999px ----------- 
@media only screen and (max-width : 999px) {
  
}*/

/* Smartphones (landscape) ----------- 
@media only screen and (max-width :767px) {
  
}*/
/*-----------*/

html {
  font-size: 62.5%; /* 16px x 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;  
}
body {
  background-color: #FFF;
  color: #574845;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
}
main {
  width: 100%;
}

/* ----------- スマホのみ改行を入れる（768px以上では改行を取り消し） ----------- */
@media only screen and (min-width :768px) {
  .br__only-sp-active {
    display: none;
  }
}
/* ----------- 改行を取り消し ----------- */
.br-pc {
  display: none;
}
/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  .br-tb {
    display: none;
  }
}
/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  .br-sp {
    display: none;
  }
}

.br-active_max480px {
  display: none;
}
@media only screen and (max-width :480px) {
  .br-none_min480px {
  display: none;
  }
  .br-active_max480px {
    display: block;
  }
}

/*---------------------------- header ----------------------------*/
.header-wrapper {
  width: 100%;
  height: 100px;
  background-color: rgba(250, 250, 250, 0.95);
  color: #574845;
  box-shadow: 0 1px 3px 0 rgba(87, 72, 69, 0.2);
  margin-bottom: 20px;
  position: fixed;
  top: 0;
  z-index: 999;
}
.header-inner {
  height: 100%;
  display: flex;
}
.site-title img {
  width: auto;
  height: 100px;
  margin-left: 40px;
}

/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  .header-wrapper {
    width: 100%;
    height: 80px;
  }
  .site-title img {
    height: 70px;
    margin: 5px auto 5px 20px;
  }
}
/* ----------- */
/* // header ----------------------------*/

/* 
hamburger(ハンバーガーアイコン)
=================================== */
  .hamburger {
    display: none;
  }
.nav-wrapper {
  width: 100%;
  padding-right: 60px;
}
  .gnavi__wrap {
  width: 100%;
}
#gnavi__list {
    display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 40px;
}
.gnavi__page-title {
    height: 100px;
    position: relative;
    transition: all .3s;
}
.gnavi__page-title a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #574845;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.gnavi__page-title {
  width: 140px;
  text-align: center;
}
.gnavi__page-title a {
  position: relative;
  text-decoration: none;
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-weight: 600;
  font-size: 1.6rem;
}
.page-title__a::after {
  position: absolute;
  content: "";
  top: 75px;
  width: 50%;
  height: 3px;
  border-radius: 3px;
  background-color: #54C0C8;
  visibility: hidden;
}
.gnavi__page-title a:hover::after {
  visibility: visible;
  transition: 0.3s;
}
.gnavi__page-title #current {
  color: #54C0C8;
  background-image: linear-gradient(rgba(120, 195, 199, 0.5) 10%, transparent 0%);
}
.nav-top {
    display: none;
  }
.nav-instagram {
    display: none;
  }
.dropdown__list {
    display: none;
    width: 200px;
    position: absolute;
    top: 60px;
    left: 0;
}

.gnavi__page-title:hover .dropdown__list {
    display: block; 
    visibility: visible; 
    transition: 0.3s;
    opacity: 1;
}
.dropdown__list li {
    background-color: #fafafe;
    color: #574845;
  text-align: left;
    height: 50px;
    transition: all .3s;
    position: relative;
}
.dropdown__list li:hover {
    background-color: #D0E7E9;
}
.dropdown__list li a {
    display: flex;
    justify-content: center;
    align-items: center;
  text-align: left;
    color: #574845;
  font-size: 1.4rem;
  font-weight: 500;
    text-decoration: none;
    position: relative;
}
.dropdown__list {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    width: 200px;
    position: absolute;
    top: 80px;
    left: -30px;
}

/* iPad Smaller than 1280px 
タブレットを横向きにした場合の最大値以下からハンバーガーメニューに切り替え----------- */
@media only screen and (max-width : 1279px) {
  .hamburger {
  display: block;
  position: absolute;
  right: 20px;
  top: 25px;
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  right: 0;
  background-color: #574845;
  transition: all 0.5s;
}
.hamburger__line--1 {
  top: 0px;
}
.hamburger__line--2 {
  top: 15px;
}
.hamburger__line--3 {
  top: 30px;
}
.hamburger__text {
  position: absolute;
  width: 100%;
  top: 35px;
  color: #574845;
  text-align: center;
  font-size: 1.2rem;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  letter-spacing: 0.01rem;
}
/* ハンバーガーがクリックされたら */
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}
  /* グローバルナビゲーション */
  .gnavi__wrap {
  position: fixed;
  margin: 0;
  right: -100%; /* ハンバーガーがクリックされる前はWindow右側に隠す */
  top: 0;
  width: 330px;
  height: 100%;
  background-color: #F8EBE0;
  box-shadow: 0 3px 10px 0 rgba(87, 72, 69, 0.4);
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
  #gnavi__list {
    display: flex;
    flex-direction: column;
  margin: 80px auto auto;
}
  .gnavi__page-title {
    width: 100%;
    height: 70px;
  }
  .gnavi__page-title a {
    border-bottom: solid 3px #FDF9F5;
  }
  .gnavi__page-title:first-child a {
    border-top: solid 3px #FDF9F5;
  }
  .gnavi__page-title a:hover::after {
  visibility: hidden;
}
  .gnavi__page-title #current {
  color: #54C0C8;
  font-size: 2.0rem;
  background-image: none;
  background-color: #D0E7E9;
}
  .nav-top {
    display: block;
  }
  .nav-instagram {
    display: block;
  }
  .nav-instagram a::before {
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("../images/common/glyph-logo_May2016@2x.png");
    background-size: contain;
    margin-right: 10px;
  }
  .dropdown__list li {
    display: none;
  }
  
/*ハンバーガーがクリックされたら右からスライド*/
.open .gnavi__wrap {
  right: 0;
}
/* 透かし背景 */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: #574845;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
/* 透かし背景 - ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
}
/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  .hamburger {
  top: 15px;
}
}

/*---------------------------- LINE QR表示モーダル ----------------------------*/
/*------------ 予約・問合せ　共通設定 ------------*/

/*モーダルのボタン*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
/*infoエリアをはじめは非表示*/
#modal__reservation {
	display: none;
}
#modal__contact {
	display: none;
}

.modal__line__wrapper {
  background-color: #F8EBE0;
  text-align: center;
  margin: -30px; /* .modaal-content-containerのpadding:30pxを打ち消し*/
  padding: 60px;
}
.modal__inner {
  background-color: #fafafe;
  padding: 100px 60px 60px;
  border-radius: 40px;
  text-align: center;
  margin: 0 auto;
  position:  relative;
  z-index: 10;
}
.modal__inner__subtitle {
  font-size: 2.0rem;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-weight: 600;
  line-height: 3.0rem;
  color: #574845;
  letter-spacing: 0.1rem;
  padding-bottom: 20px;
}
.modal__subtitle__br {
  display: none;
}
.modal__inner__description {
  display: flex; 
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  margin: 20px auto 40px;
}
.modal__description__line-qr img {
  width: 120px;
  height: 120px;
}
.modal__description__text-group {
  margin-top: 20px;
}
.modal__description__text-item {
  color: #574845;
  text-align: left;
  letter-spacing: 0.05rem;
  margin-bottom: 10px;
}
a.modal-open {
  text-decoration: none;
  color: #574845;
}

/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  .modal__line__wrapper {
    padding: 60px 40px;
  }
  .modal__inner {
    padding: 80px 40px 40px;
  }
  .modal__subtitle__br {
    display: block;
}
}

/*------------ 予約 ------------*/
.modal__reservation__main-title {
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-size: 3.2rem;
  font-weight: 600;
  background-color: #D0E7E9;
  border-radius: 40px;
  padding: 30px 0px;
  margin: 0 auto -40px;
  width: 50vw;
  max-width: 640px;
  min-width: 320px;
  text-align: center;
  position: relative;
  z-index: 50;
}
.modal__subtitle__span--reservation {
  color: #54C0C8;
  font-size: 2.2rem;
  background-image: linear-gradient(transparent 70%, rgba(120, 195, 199, 0.3) 0%);
  padding: 0 2px;
  margin: 0 2px;
}
.modal__reservation__course {
  border: solid 1px #54C0C8;
  border-radius: 30px;
  padding: 0 20px;
}
.modal__reservation__course h3 {
  color: #574845;
  margin: -0.75em auto 0;
  width: 300px;
  background-color: #fafafe;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
}
.modal__reservation__course ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  /* width: 400px; */
}
.modal__reservation__course-item {
  list-style: none;
  display: inline-block;
  box-sizing: border-box;
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-weight: 600;
  width: 100px;
  border-radius: 50%;
  background-color: #D0E7E9;
  text-align: center;
  line-height: 100px;  
  margin: 10px;
}
.modal__reservation__course--memo {
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  margin: 20px auto 40px;
}

/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  .modal__reservation__course {
    margin-top: 20px;
  }
  .modal__reservation__course--memo {
    margin: 20px auto;
}
}


/*------------ 問合せ ------------*/
.modal__contact__main-title {
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-size: 3.2rem;
  font-weight: 600;
  background-color: #F0A8B0;
  border-radius: 40px;
  padding: 30px 0px;
  margin: 0 auto -40px;
  width: 50vw;
  max-width: 640px;
  min-width: 320px;
  text-align: center;
  position: relative;
  z-index: 50;
}
.modal__subtitle__span--contact {
  color: #F0A8B0;
  font-size: 2.2rem;
  background-image: linear-gradient(transparent 70%, rgba(240, 192, 197, 0.3) 0%);
  padding: 0 2px;
  margin: 0 2px;
}
/* // モーダル ----------------------------*/

/*---------------------------- first view ----------------------------*/
.first-view__wrapper {
  width: 100%;
  max-width: 1300px;
  text-align: center;
  padding: 0 40px;
  margin: 0 auto 80px;
  position: relative;
}
.firstview-img {
  width: 100%;
  text-align: center;
  padding-top: 120px;
  box-sizing: border-box;
  margin: 0 auto;
  z-index: 500;
  position: relative;
}
.firstview-img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: bottom;
  border-radius: 40px;
  margin: 0 auto;
}
#title-bg {
  position: absolute;
  bottom: 0; 
  width: 100%;
}
#title-bg h2 {
  height: 100%;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  color: #54C0C8;
  font-size: 4.0rem;
  font-weight: 600;
  padding: 35px;
}
/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  .first-view__wrapper {
  padding: 0 20px;
}
  .firstview-img {
    padding-top: 100px;
    height: 500px;
  } 
  .firstview-img img {
    height: 100%;
    border-radius: 20px;
  }
  #title-bg h2 {
    font-size: 2.6rem;
    padding: 10px 20px 15px;
  }
}
/* ----------- */

#firstview__menu {
  position: absolute;
  width: 90px;
  height: 100%;
  padding-top: 120px;
  text-align: center;
  top: 0;
  right: 0;
  z-index: 700;
}
#firstview__tabs {
  right: -10px;
  position: fixed;
}
#firstview__tabs a {
  text-decoration: none;
  display: flex;
  justify-content: center;
}
#firstview__tab-reservation {
  writing-mode: vertical-rl;
  padding: 20px 25px 20px 10px;
  background-color: #D0E7E9;
  border: solid 2px #54C0C8;
  border-radius: 20px 0 0 20px;
  margin-bottom: 20px;
}
#firstview__tab-reservation h2 {
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
}
#firstview__tab-reservation h2:before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 20px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url("../images/common/icon-revervation-2.png");
  background-size: contain;
  margin-bottom: 10px;
}
#firstview__tab-contact {
  writing-mode: vertical-rl;
  display: flex;
  padding: 20px 25px 20px 10px;
  background-color: #F7D3D7;
  border: solid 2px #F0A8B0;
  border-radius: 20px 0 0 20px;
}
#firstview__tab-contact h2 {
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
#firstview__tab-contact h2:before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 20px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url("../images/common/icon_contact.png");
  background-size: contain;
  margin-bottom: 10px;
}
#firstview__tab-reservation:hover {
  transition: ease .3s; /*アニメーションの指定*/
  transform: translateX(10px);
}
#firstview__tab-contact:hover {
  transition: ease .3s; /*アニメーションの指定*/
  transform: translateX(10px);
}
#page-top {
  bottom: 16px;
  right: 24px;
  margin-top: auto;
  position: fixed;
  border-radius: 10px;
  background-color: rgba(254,255,255,.9);
}
#page-top h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
#page-top img {
  height: 40px;
  padding: 0 10px;
}
#page-top:hover {
  transition: ease .5s; /*アニメーションの指定*/
  transform: translateY(-10px);
}

/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  #firstview__menu {
  padding-top: 120px;
}
  #firstview__tab-reservation {
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  padding: 20px 25px 20px 10px;
  margin-bottom: 20px;
}
  #firstview__tab-contact {
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  padding: 20px 25px 20px 10px;
}
  #page-top {
  width: 40px;
  bottom: 10px;
  right: 10px;
  padding: 2px;
}
  #page-top h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2rem;
  margin-bottom: 4px;
}
  #page-top img {
  height: 24px;
  padding: 0;
}
}
/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  #firstview__menu {
  width: 60px;
}
  #firstview__tabs {
  display: none;
  }
  #page-top {
  bottom: 75px;
  right: 4px;
}
}
/* // first view ----------------------------*/

/*---------------------------- ページ内リンク ----------------------------*/
.internal-link {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 100px auto;
}
.internal-link li {
  list-style: none;
}
.internal-link__list {
  list-style: none;
  margin: 0 auto;
}
a.internal-link__list {
  text-decoration: none;
}
a.internal-link__list h3 {
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-weight: 600;
  padding: 12px 40px;
  width: 270px;
  background-color: #F8EBE0;
  border-radius: 30px;
  box-shadow: 0 1px 3px 0 rgba(87, 72, 69, 0.2);
}
a.internal-link__list h3:after {
  content: "▼";
  margin-left: 12px;
}
/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  .internal-link {
  width: 100%;
  max-width: 700px;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  margin: 60px auto;
}
}
/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {

}
/* ----------- */
/* //ページ内リンク ----------------------------*/

/*------------------------------- リボン装飾のコンテンツタイトル（ブルー） -------------------------------*/
.title__ribbon-blue {
  display: inline-block;
  position: relative;
  height: 80px;/*リボンの高さ*/
  line-height: 80px;/*リボンの高さ*/
  text-align: center;
  padding: 0 50px;/*横の余白*/
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  color: #54C0C8;
  background: #D0E7E9;/*塗りつぶし色*/
  border-bottom: solid 2px rgba(87, 72, 69, 0.1);
  box-sizing: border-box;
  margin: 120px auto 60px;
}

.title__ribbon-blue:before, .title__ribbon-blue:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.title__ribbon-blue:before {
  top: 0;
  left: 0;
  border-width: 40px 0px 40px 20px;/*リボンの高さを変更したらこちらも要調整*/
  border-color: transparent transparent transparent #FDF9F5;
  border-style: solid;
}

.title__ribbon-blue:after {
  top: 0;
  right: 0;
  border-width: 40px 20px 40px 0px;
  border-color: transparent #FDF9F5 transparent transparent;
  border-style: solid;
}
/* iPad Smaller than 999px ----------- */
@media only screen and (max-width: 999px) {
.title__ribbon-blue {
  font-size: 2.4rem;
  padding: 0 50px;
  margin: 80px auto 40px;
}
}
/* ----------- */
  
/* // リボン装飾のコンテンツタイトル（ブルー） ---------------------------------*/

/*----------------------------- リボン装飾のコンテンツタイトル（ライトベージュ） -----------------------------*/
.title__ribbon-beige {
  display: inline-block;
  position: relative;
  height: 80px;/*リボンの高さ*/
  line-height: 80px;/*リボンの高さ*/
  text-align: center;
  padding: 0 50px;/*横の余白*/
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  color: #54C0C8;
  background: #FDF9F5;/*塗りつぶし色*/
  border-bottom: solid 2px rgba(87, 72, 69, 0.1);
  box-sizing: border-box;
  margin: 120px auto 60px;
}

.title__ribbon-beige:before, .title__ribbon-beige:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.title__ribbon-beige:before {
  top: 0;
  left: 0;
  border-width: 40px 0px 40px 20px;/*リボンの高さを変更したらこちらも要調整*/
  border-color: transparent transparent transparent #F8EBE0;
  border-style: solid;
}

.title__ribbon-beige:after {
  top: 0;
  right: 0;
  border-width: 40px 20px 40px 0px;/*リボンの高さを変更したらこちらも要調整*/
  border-color: transparent #F8EBE0 transparent transparent;
  border-style: solid;
}
/* iPad Smaller than 999px ----------- */
@media only screen and (max-width: 999px) {
.title__ribbon-beige {
  font-size: 2.4rem;
  padding: 0 50px;
  margin: 80px auto 40px;
}
}
/* ----------- */
/* // リボン装飾のコンテンツタイトル（ライトベージュ） ------------------------*/

/*------------------------------ リボン装飾のコンテンツタイトル（ベージュ） ------------------------------*/
.title__ribbon-beige-2 {
  display: inline-block;
  position: relative;
  height: 80px;/*リボンの高さ*/
  line-height: 80px;/*リボンの高さ*/
  text-align: center;
  padding: 0 50px;/*横の余白*/
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  color: #54C0C8;
  background: #F8EBE0;/*塗りつぶし色*/
  border-bottom: solid 2px rgba(87, 72, 69, 0.1);
  box-sizing: border-box;
  margin: 120px auto 60px;
}

.title__ribbon-beige-2:before, .title__ribbon-beige-2:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.title__ribbon-beige-2:before {
  top: 0;
  left: 0;
  border-width: 40px 0px 40px 20px;/*リボンの高さを変更したらこちらも要調整*/
  border-color: transparent transparent transparent #FDF9F5;
  border-style: solid;
}

.title__ribbon-beige-2:after {
  top: 0;
  right: 0;
  border-width: 40px 20px 40px 0px;/*リボンの高さを変更したらこちらも要調整*/
  border-color: transparent #FDF9F5 transparent transparent;
  border-style: solid;
}
/* iPad Smaller than 999px ----------- */
@media only screen and (max-width: 999px) {
.title__ribbon-beige-2 {
  font-size: 2.4rem;
  padding: 0 50px;
  margin: 80px auto 40px;
}
}
/* ----------- */
/* // リボン装飾のコンテンツタイトル（ベージュ） ------------------------*/

/*---------------------------- LINE QR ----------------------------*/
#line-wrapper {
  width: 100%;
  background-color: #F8EBE0;
  text-align: center;
  padding-bottom: 160px;
}
/* Smartphones (landscape) ----------- */
@media only screen and (max-width :767px) {
  #line-wrapper {
    display: none;
  }
}
/* ----------- */

.reservation-wrapper {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  padding: 300px 0 100px;
  background-image: url("../images/common/line-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.reservation__inner {
  width: 680px;
  text-align: center;
  margin: 60px auto;
}

#body__contact-modal a {
  text-decoration: none;
  color: #574845;
}
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  text-align: center;
  margin: 20px auto 0;
  padding: 15px 40px;
  background-color: #F0A8B0;
  border-radius: 45px;
  box-shadow: 0 4px 0 rgba(87, 72, 69, .5);
}
.contact:hover {
  transition: ease .3s;
  transform: translateY(4px);
  box-shadow: none;
}
.contact h3 {
  font-size: 2.0rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  letter-spacing: 0.1rem;
  margin-right: 20px;
}
/* // LINE QR ----------------------------*/

/*---------------------------- スマホ用固定メニューバー ----------------------------*/
#sp-fixed-menu{
  position: fixed;
  width: 100%;
  height: 72px;
  bottom: 0px;
  padding: 0;
  background-color: #fafafe;
  opacity: 0.95;
  box-shadow: 0 -1px 3px 0 rgba(87, 72, 69, 0.2);
  border-radius: 16px 16px 0 0;
  z-index: 899;
}
#sp-fixed-menu ul{
  display: flex;
  text-align: center;
  justify-content: space-around;
  align-items: flex-start;
  box-sizing: border-box;
  list-style: none;
  padding: 8px 8px 4px;
  margin: 0;
  width: 100%;
  height: 100%;
}
.sp-menu-item {
  width: 33%;
  border-right: dotted 2px rgba(87, 72, 69, 0.6);
}
.sp-menu-item:last-child {
  border-right: none;
}
.sp-menu-item a {
  display: flex;
  flex-direction: column;
  gap: 0 4px;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
.sp-menu-item img {
  width: 40px;
  opacity: 1;
}
.sp-menu-item h2 {
  display: inline-block;
  color: #574845;
  text-align: center;
  font-size: 14px;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  letter-spacing: 0.1rem;
}

/* タブレット以下では非表示 ----------- */
@media only screen and (min-width: 768px) {
  .for-sp {
    display: none;
}
}
/* // スマホ用固定メニューバー ----------------------------*/

/*---------------------------- footer ----------------------------*/
.footer-wrapper {
  width: 100%;
  background-color: #DCEDEE;
  padding-bottom: 20px;
}
.footer-inner {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.footer__logo img {
  width: 40%;
  min-width: 300px;
  padding-top: 60px;
}
.footer__instagram {
  max-width: 400px;
  display: inline-block;
  background-color: #FDF9F5;
  border-radius: 20px;
  margin: 20px auto 40px;
}
.footer__instagram a {
  display: flex;
  vertical-align: middle;
  text-decoration: none;
  padding: 20px 24px;
  gap: 12px;
}
.footer__instagram img {
  width: 50px;
  object-fit: contain;
}
.footer__instagram p {
  color: #574845;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  letter-spacing: 0.05rem;
}
.footer__instagram p strong {
  color: #54C0C8;
  font-size: 2.0rem;
  letter-spacing: 0.1rem;
  line-height: 4.0rem;
}
.footer__access {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px 16px;
}
.footer__access-inner {
  list-style: none;
  text-align: left;
  background-color: #fafafe;
  width: 300px;
  height: auto;
  border-radius: 20px;
  padding: 40px 50px 24px;
  margin: 40px auto;
  box-sizing: initial;
}
.footer__access-inner__salon-name {
  font-size: 2.0rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  letter-spacing: 0.1rem;
  padding-bottom: 20px;
}
.footer__access-inner__course {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.footer__salon-course__name {
  padding: 6px 15px;
  font-size: 1.4rem;
  text-align: center;
  color: #fafafe;
  font-weight: 500;
  background-color: #574845;
  border-radius: 25px;
}
.footer__access-inner__address,
.footer__access-inner__additional-info {
  letter-spacing: 0.075rem;
  line-height: 2.6rem;
  font-style: initial;
}
.footer__access-inner__additional-info:last-child {
  margin-top: 24px;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
}
.footer__copyright {
  width: 100%;
  font-size: 1.4rem;
  padding: 40px 20px 0;
}

/* iPad Smaller than 999px ----------- */
@media only screen and (max-width : 999px) {
  .footer-wrapper {
    padding-bottom: 100px;
}
  .footer-inner {
    padding: 0 16px;
  }
  .footer__instagram {
    width: 100%;
}
  .footer__access-inner {
    padding: 24px 20px;
    margin: 0 auto;
}
}
@media only screen and (max-width : 767px) {
  .footer__salon-course__name:first-child {
    margin-right: 10px;
}
  .footer__copyright {
    width: 100%;
}
}
/* //footer ----------------------------*/

/*---------------------------- ふりかけリンクボタン ----------------------------*/
.link-button__furikake {
  text-decoration: none;
  align-items: center;
  border-radius: 40px;
  font-family: "Zen Maru Gothic", "游ゴシック", YuGothic, 'Yu Gothic medium', 'Hiragino Sans', "メイリオ", 'sans-serif';
  font-size: 2.0rem;
  font-weight: 500;
  box-shadow: 0 4px 0 rgba(87, 72, 69, .5);
  text-align: center;
  box-sizing: initial;
  background-color: #fafafe;
  border: solid 3px #ecbe50;
  padding: 16px 24px 16px 0;
  position: relative;
  display: flex;
  max-width: 300px;
}
.link-button__furikake:hover {
  transition: ease .3s;
  transform: translateY(4px);
  box-shadow: none;
}
.link-button__furikake h4 {
  color: #574845;
  margin-left: 100px;
}
.link-button__furikake__content {
  text-decoration: none;
  color: #fafafe;
}
.point__course-list {
  display: flex;
  margin-top: 40px;
}
.link-button__furikake--img {
  width: 100px;
  position: absolute;
  margin-left: -10px;
}

@media only screen and (max-width : 999px) {
  .link-button__furikake {
    font-size: 1.8rem;
  }
}
/*// ふりかけリンクボタン ----------------------------*/

/*---------------------------- ふわっと表示 ----------------------------*/
.inview.fadeup {
	opacity: 0;
	transition-duration: .5s;
	transform: translateY(10px);
}
.inview.fadeup.active {
	opacity: 1;
	transform: translateY(0px);
}
/* // ふわっと表示 ----------------------------*/