@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
.pc_only {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
  background: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.w_base {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

p {
  color: #62535B;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.88em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** google font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: 0.3s;
}

.hd {
  height: 90px;
  padding: 10px 5%;
}

.hd_con {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%; /*120px*/
  display: flex;
  align-items: center;
}
.hd_con a.site-title {
  height: 100%;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
}
.hd_con a.site-title img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 5px;
}
.hd_con a.site-title strong {
  font-size: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #444b4f;
  font-weight: 400;
  display: block;
  font-style: italic;
  font-weight: 450;
}

/*=============================
#humburger
=============================*/
.hamburger {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.hamburger section {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  counter-increment: section;
}
.hamburger .btn-trigger {
  position: relative;
  width: 33px;
  height: 30px;
  cursor: pointer;
}
.hamburger .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f36299;
  border-radius: 4px;
}
.hamburger .btn-trigger,
.hamburger .btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.hamburger .btn-trigger span:nth-of-type(1) {
  top: 0;
}
.hamburger .btn-trigger span:nth-of-type(2) {
  top: 48%;
}
.hamburger .btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
.hamburger #btn02.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(45deg);
}
.hamburger #btn02.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger #btn02.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(-45deg);
}

nav.nav_bg {
  position: absolute;
  width: 100%;
  height: 100svh;
  background-color: rgba(255, 255, 255, 0.9411764706);
  top: 0;
  right: 0;
  z-index: -1;
  padding: 140px 5% 0;
  display: flex;
  justify-content: center;
  transform: translateX(100%);
  transition: 0.3s;
}
nav.nav_bg div.global-nav ul {
  display: flex;
  flex-direction: column;
  gap: 29px;
  text-align: center;
}
nav.nav_bg div.global-nav ul li.menu-item {
  position: relative;
}
nav.nav_bg div.global-nav ul li.menu-item a {
  text-decoration: none;
  color: #62535B;
  font-weight: bold;
}
nav.nav_bg div.global-nav ul li.menu-btn a {
  display: flex;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  background: #77656e;
  color: white;
  border-radius: 100vh;
  justify-content: space-between;
  gap: 0 10px;
}
nav.nav_bg div.global-nav ul li.menu-btn a:before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url(../images/reserve.png);
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
nav.nav_bg div.global-nav ul li.menu-btn a:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a {
  display: grid;
  grid-template-columns: 1fr 4.6fr 1fr;
  grid-template-rows: 1.5fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 1.1em;
  color: #77656e;
  text-decoration: none;
  background: white;
  border: solid 2px #77656e;
  color: #77656e;
  border-radius: 100vh;
  justify-content: space-between;
  text-align: right;
  line-height: 1;
  padding-top: 5px;
  font-size: 1.5rem;
  min-height: 65px;
  min-width: 255px;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a small {
  width: 100%;
  grid-area: 2/2/3/3;
  font-size: 0.8rem;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a:before {
  content: "";
  display: block;
  grid-area: 1/1/3/2;
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url(../images/menu-tel-icon.png);
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 10px;
  margin-right: 3px;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a:after {
  content: ">";
  aspect-ratio: 1/1;
  display: grid;
  align-items: center;
  grid-area: 1/3/3/4;
  font-size: 1rem;
}

nav.nav_bg.active {
  transform: translateX(0);
}

.hd_contact {
  display: flex;
  justify-content: space-between;
}

.hd_logo img {
  max-width: 354px;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.mv-content {
  margin-bottom: 50px;
  padding-top: 90px;
  background: linear-gradient(#FFECF7, #fff);
}
.mv-content .mv-wrap {
  position: relative;
}
.mv-content .mv-wrap .mv-metaslider {
  overflow: visible;
  width: 90%;
  max-width: 1600px;
  aspect-ratio: 2/3;
  margin: auto;
  display: flex;
  align-items: center;
}
.mv-content .mv-wrap .mv-metaslider .metaslider .flex-viewport {
  overflow: hidden;
  border-radius: 10vw 0 10vw 0;
}

/*-------------------------------
.mv-metaslider{
  &::before,&::after{
    content: "";
    position: absolute;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  &::before{
    width: 60px;
    aspect-ratio: 117 / 142;
    background-image: url(../images/sakura5.png);
    top: 0;
    left: 0px;
    z-index: 2;
  }
  &::after{
    width: 100px;
    aspect-ratio: 182 / 224;
    background-image: url(../images/sakura6.png);
    bottom: -70px;
    right: -25px;
  }
}
  ---------------------------*/
.metaslider .flexslider {
  margin-bottom: 0 !important;
}

.metaslider .flex-control-nav {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: -moz-max-content !important;
  width: max-content !important;
  bottom: -22px !important;
}

#metaslider-id-90 .flexslider .flex-control-nav li a {
  background-color: #F2F2F2 !important;
}

#metaslider-id-90 .flexslider .flex-control-nav li a.flex-active {
  background-color: #f36299 !important;
}

section[class^=index-] {
  margin: 50px auto;
}
section[class^=index-] h2 {
  font-size: 1.9em;
  color: #62535B;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
section[class^=index-] h2 span {
  color: #f36299;
  display: block;
  font-size: 0.5em;
  font-style: italic;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}
section[class^=index-] h2._white {
  color: white;
}
section[class^=index-] h2._white span {
  color: white;
}
section[class^=index-] h3 {
  color: #62535B;
}

.index-news .news-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.index-news .news-wrap h2 {
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.index-news .news-wrap ul.news-list {
  width: 100%;
}
.index-news .news-wrap ul.news-list li {
  display: flex;
  flex-direction: column;
  border-bottom: solid 2px rgba(119, 101, 110, 0.2588235294);
  padding-bottom: 10px;
}
.index-news .news-wrap ul.news-list li time {
  font-size: 0.8em;
  font-weight: bold;
  color: #82878A;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.index-news .news-wrap ul.news-list li time.new::after {
  content: "";
  position: absolute;
  width: 0.8em;
  top: 50.7%;
  right: -1.2em;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  border-radius: 100vh;
  background: #77656e;
}
.index-news .news-wrap ul.news-list li a.link-none {
  color: #62535B;
  text-decoration: none;
}

.news-archive-btn {
  width: 100%;
  display: flex;
  justify-content: end;
}
.news-archive-btn a {
  margin-top: 30px;
  display: block;
  background-color: white;
  border-radius: 100vh;
  border: solid 1px #77656e;
  padding: 5px 30px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  color: #62535B;
  text-decoration: none;
}

section.index-access {
  position: relative;
  margin-bottom: 20px;
}
section.index-access .access-box {
  width: 100%;
  text-align: left;
  position: relative;
  display: flex;
  gap: 5.7px;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.index-access .access-box h2 {
  margin-bottom: 1em;
  width: 100%;
}
section.index-access .access-box .googlemap {
  width: 100%;
}
section.index-access .access-box .googlemap iframe {
  width: 100%;
  height: 376px;
}
section.index-access .access-box .access-item img {
  width: 100%;
}
section.index-access .access-box .access-item p.access-tel {
  margin-bottom: 0.2em;
  font-size: 1.4em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
section.index-access .access-box .access-item p.access-tel a {
  font-weight: bold;
  text-decoration: none;
  color: #62535B;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 0.5em;
}
section.index-access .access-box .access-item {
  width: 100%;
}

.common_btn {
  display: block;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding: 1em;
  display: flex;
  padding: 15px 43px;
  font-weight: bold;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  background: #F36299;
  color: white;
  border-radius: 100vh;
  justify-content: space-between;
  gap: 0 10px;
}
.common_btn:before {
  content: "";
  width: 1em;
  height: 1em;
  width: 30px;
  height: 30px;
  background-image: url(../images/reserve.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.common_btn:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  line-height: 1.6em;
  font-family: "Noto Sans JP";
}

.common_btn_2 {
  display: block;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding: 1em;
  display: flex;
  padding: 15px 43px;
  font-weight: bold;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  background: #20B2AA;
  color: white;
  border-radius: 100vh;
  justify-content: space-between;
  gap: 0 10px;
}
.common_btn_2:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  line-height: 1.6em;
  font-family: "Noto Sans JP";
}

._fukidashi span {
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  color: #444B4F;
  background: white;
  border: solid 2px #F36299;
  border-radius: 100vw;
  font-size: 0.8em;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 2em;
}
._fukidashi span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #ffffff;
  border-bottom: 0;
}

.access-reservebtn {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

section.index-course {
  margin-top: 96px;
}
section.index-course h2 {
  margin-bottom: 35px;
}

.index-course .course-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.index-course .course-box .course-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-course .course-box .course-item figure {
  width: 100%;
  margin-bottom: 1em;
}
.index-course .course-box .course-item figure img {
  display: block;
  width: 100%;
  margin: auto;
}
.index-course .course-box .course-item .course-text {
  width: 100%;
}
.index-course .course-box .course-detail {
  width: 100%;
}
.index-course .course-box .course-detail-title {
  margin-top: 1.1em;
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.5em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.index-course .course-box .course-detail-name {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 500;
}
.index-course .course-box .course-detail-name:before {
  content: "";
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/arrow.png) center center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.index-course .course-box .course-detail-exp {
  display: none;
}
.index-course .course-box .course-detail-item {
  padding: 0 0 20px;
  margin: 0 auto 20px;
  border-bottom: solid 2px rgba(119, 101, 110, 0.2588235294);
}
.index-course .course-box .course-detail-item.active .course-detail-name:before {
  transform: translateY(-50%);
}
.index-course .course-box .course-detail-item.active .course-detail-exp {
  display: block;
}

.index-feature {
  background: linear-gradient(#FFECF7, #FBF9FA);
  margin-bottom: 0 !important;
}
.index-feature .feature-wrap {
  padding: 60px 0 100px;
}
.index-feature h2 {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 34px;
}
.index-feature .feature-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 70px;
}
.index-feature .feature-box .feature-item {
  width: 100%;
  background-color: white;
  position: relative;
  padding: 1.8em;
}
.index-feature .feature-box .feature-item_title {
  font-weight: 500;
  text-align: left;
  min-height: 3em;
  line-height: 1.5em;
  margin-bottom: 1em;
  font-size: 1em;
  display: flex;
  align-items: baseline;
  justify-content: left;
}
.index-feature .feature-box .feature-item_title span {
  color: #F36299;
  opacity: 0.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.2em;
  margin-right: 9px;
  transform: translateY(3px);
}
.index-feature .feature-box figure {
  margin-bottom: 1em;
}
.index-column h2,
.archive-special h2 {
  text-align: center;
  margin-bottom: 30px;
}
.index-column .column-item a,
.archive-special .column-item a {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 2px 5px 7px #e5e5e5;
  border-radius: 0 0 10px 10px;
}
.index-column .column-item a img,
.archive-special .column-item a img {
  width: 100%;
  aspect-ratio: 16/9;
}
.index-column .column-item a .column-item-text,
.archive-special .column-item a .column-item-text {
  width: 100%;
  padding: 0.5em;
}
.index-column .column-item a .column-item-text h4,
.archive-special .column-item a .column-item-text h4 {
  color: #62535B;
  margin-bottom: 5px;
  font-size: clamp(1.2em, 1.1vw, 1.5em);
  font-weight: 500;
}
.index-column .column-item a .column-item-text p,
.archive-special .column-item a .column-item-text p {
  font-size: 0.9em;
  line-height: 2em;
  letter-spacing: 1px;
}
.index-column .column-item a .column-item-img,
.archive-special .column-item a .column-item-img {
  position: relative;
}
.index-column .column-item a .column-item-img span[class^=cat-],
.archive-special .column-item a .column-item-img span[class^=cat-] {
  position: absolute;
  right: 0;
  top: 0;
  background: #06c755;
  color: white;
  font-size: 0.8em;
  display: flex;
  gap: 4px;
  padding: 1px 4px;
  border-radius: 0 0 0 4px;
}
.index-column .column-item a .column-item-img span[class^=cat-]:before,
.archive-special .column-item a .column-item-img span[class^=cat-]:before {
  content: "";
  width: 15px;
  display: block;
  aspect-ratio: 1/1;
  background: url(../images/cat-img.png) center center/contain no-repeat;
}

.column-item a .column-item-img .cat-hifu, .column-item a .column-item-img .cat-nmn-tenteki, .column-item a .column-item-img .cat-aqua-peel, .column-item a .column-item-img .cat-dermajet, .column-item a .column-item-img .cat-ninniku-chusha, .column-item a .column-item-img .cat-vitamin-c, .column-item a .column-item-img .cat-peptide, .column-item a .column-item-img .cat-myers-cocktail, .column-item a .column-item-img .cat-regenin, .column-item a .column-item-img .cat-sejyutsu, .column-item a .column-item-img .cat-beauty-drip-shiratama, .column-item a .column-item-img .cat-beauty-drip {
  background: #5bc8ac !important;
}
.column-item a .column-item-img .cat-tarumi, .column-item a .column-item-img .cat-anti-aging, .column-item a .column-item-img .cat-aging-care, .column-item a .column-item-img .cat-immune-care, .column-item a .column-item-img .cat-kogao, .column-item a .column-item-img .cat-keana, .column-item a .column-item-img .cat-bihaku, .column-item a .column-item-img .cat-shibou-bunkai, .column-item a .column-item-img .cat-wakamie {
  background: #e6d72a !important;
}
.column-item a .column-item-img .cat-downtime, .column-item a .column-item-img .cat-make, .column-item a .column-item-img .cat-kenkou, .column-item a .column-item-img .cat-kouka, .column-item a .column-item-img .cat-latest-beauty, .column-item a .column-item-img .cat-korean-beauty {
  background: #f18d9e !important;
}

.archive-special {
  margin: 40px auto;
}

.index-greeting {
  background: linear-gradient(#FFECF7, #FBF9FA);
  margin-top: 0 !important;
  position: relative;
}
.index-greeting .greeting-wrap {
  padding: 70px 0 28px;
  position: relative;
  z-index: 2;
}
.index-greeting h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.index-greeting h3 {
  font-size: clamp(1.2em, 1.7vw, 1.5em);
  margin-bottom: 25px;
  font-weight: 500;
}
.index-greeting img {
  border-radius: 20px;
}
.index-greeting .supervising-doctor_box {
  display: flex;
  justify-content: space-between;
  align-items: left;
  gap: 2%;
  flex-direction: column;
  gap: 50px;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item {
  width: 100%;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item dl {
  font-size: 1.1em;
  display: flex;
  flex-wrap: wrap;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  align-items: baseline;
  color: #62535B;
  margin-bottom: 35px;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item dl dt {
  width: 5em;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item dl dd {
  width: -moz-max-content;
  width: max-content;
  font-size: 1.6em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
.index-greeting .supervising-doctor_box h3 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
  max-width: 300px;
  width: 90%;
  margin: 0 auto 7px;
  padding-bottom: 15px;
  border-bottom: solid 1px #C5C0C3;
  font-weight: medium;
}

.index-line h2 {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.index-line h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #77656e;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.index-line .line {
  font-size: 1.2em;
}
.index-line .line p {
  display: flex;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  margin: 0 auto 30px;
  width: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 0.8em;
  font-weight: bold;
  justify-content: left;
  align-items: center;
}
.index-line .line p::before {
  content: "";
  display: block;
  width: 44px;
  aspect-ratio: 1/1;
  background: url(../images/LINE_Brand_icon.png) center center/contain no-repeat;
  margin-right: 5px;
}
.index-line .line a {
  display: block;
  color: white;
  font-weight: bold;
  background-color: #06c755;
  padding: 24px 50px;
  text-align: center;
  margin: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 100vh;
  text-decoration: none;
}

.float_left_bnr {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 193px;
  aspect-ratio: 1200/388;
  z-index: 9999;
}

.link_control {
  display: block;
  width: 100%;
}

.link_control img {
  width: 100%;
  height: auto;
}

.toggle_cb {
  position: absolute;
  top: -8px;
  right: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #000;
  font-size: 18px;
  border-radius: 100vw;
  box-shadow: 0 0 3px 1px #c5c5c5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.ds_none {
  display: none !important;
}

@media (max-width: 214px) {
  .float_left_bnr {
    width: 90vw;
    right: 5vw;
    bottom: 10px;
  }
  .toggle_cb {
    right: 0;
    top: -6px;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.bottom_reservation {
  color: white;
  background: #77656e;
  padding: 100px 0;
}
.bottom_reservation h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  text-align: center;
  font-size: 1.9em;
}
.bottom_reservation p {
  color: white;
  text-align: center;
}
.bottom_reservation a.tel_btn {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.6em 3em;
  border-radius: 100vh;
  border: solid 1px white;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: #62535B;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom_reservation a.tel_btn .tel_textarea p.telnum {
  font-size: 1.5em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1em;
}
.bottom_reservation a.tel_btn .tel_textarea p.time {
  font-size: 1.07em;
}
.bottom_reservation a.tel_btn:before {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  background: url(../images/Layer_1.png) center center/contain no-repeat;
  margin-right: 6px;
}
.bottom_reservation a.rsv_btn {
  color: #62535B;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 1em 2em 1em 2em;
  border-radius: 100vh;
  background: white;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: #62535B;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  min-width: 294.53px;
}
.bottom_reservation a.rsv_btn:before {
  content: "";
  display: block;
  width: 48px;
  height: 45px;
  background: url(../images/res-img.png) center center/contain no-repeat;
  margin-right: 3px;
}

footer.ft_bg {
  background: white;
  border-top: solid 1px #e5e5e5;
}

footer.ft_bg .ft_con {
  display: flex;
  flex-direction: column;
  padding: 70px 0;
}
footer.ft_bg .ft_con .ft_tel_titlearea a {
  display: block;
  margin: auto;
}
footer.ft_bg .ft_con .ft_tel_titlearea a img {
  max-width: 306px;
  display: block;
  margin: auto;
  width: 100%;
}

footer.ft_bg a.line-icon {
  color: #06c755;
  display: flex;
  text-align: center;
  width: 100%;
  padding: 10px 5%;
  line-height: 50px;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}
footer.ft_bg a.line-icon img {
  width: 50px;
  aspect-ratio: 1/1;
  margin-right: 1em;
}

.ft_copy {
  background-color: #FFF9FB;
  text-align: center;
  padding: 10px 0;
  display: block;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_title {
  width: 100%;
  min-height: 60px;
  margin-top: 90px;
  background-color: #77656e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_title .page_title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_title .page_title-wrap h1.page_title-text {
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: clamp(1.2em, 2vw, 1.7em);
}

.main.page {
  margin: 30px auto;
}
.main.page h2 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(1.4em, 2vw, 3em);
  font-weight: normal;
  position: relative;
  margin-bottom: 1em;
}
.main.page h2::before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: #77656e;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main.page h3 {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  margin-bottom: 1em;
}
.main.page h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #77656e;
}
.main.page p {
  margin-bottom: 1em;
}
.main.page figure.price-table table tr {
  background-image: linear-gradient(to right, #77656e 7px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 0.9em;
}
.main.page figure.price-table table tr td {
  border: initial;
  display: block;
}
.main.page figure.price-table table tr td:nth-child(1) {
  padding-bottom: 0;
}
.main.page .link-btn a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: #77656e;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: white;
  text-decoration: none;
}

.link-btn a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: #77656e;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: white;
  text-decoration: none;
}

.link-btn-2 a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 21px 1em;
  min-width: 257px;
  background: white;
  border: solid 1px #77656e;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: #62535B;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s;
}
.link-btn-2 a:hover {
  background: #F36299;
  border: solid 1px #F36299;
  color: white;
}
.link-btn-2 a .__left {
  margin-left: 0;
}

.link-btn-2 a:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  margin-top: -2px;
}

.link-btn-3 a {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: white;
  border: solid 2px #77656e;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: #62535B;
  text-decoration: none;
  gap: 10px;
}
.link-btn-3 a .__left {
  margin-left: 0;
}

.link-btn-3 a:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  margin-top: -2px;
}

.frame-background {
  position: relative;
  background-color: transparent;
  /* 元の要素自体は透明 */
  padding: 5%;
  /* フレーム内余白 */
  z-index: 1;
}

/* 疑似要素で背景を広げる */
.frame-background::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104%;
  height: 104%;
  transform: translate(-50%, -50%);
  /* 中央合わせ */
  background: url(../images/bg-frame-sp.png) 100% 100%/contain no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

/*--
.frame-background::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 104%;
  aspect-ratio: 1040/ 162;
  transform: translateX(-50%);
  background: url(../images/bg-frame-sp-bottom.png) center center / contain no-repeat;
  z-index: 1;
}
*/
/*----------------------------------------------------------------------------
******************************************************************************
** single
******************************************************************************
----------------------------------------------------------------------------*/
.single_title {
  width: 100%;
  min-height: 150px;
  background-color: #77656e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single_title .single_title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single_title .single_title-wrap h1.single_title-text {
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: clamp(1.2em, 2vw, 1.7em);
}

.main.single {
  margin: 80px auto;
}
.main.single h2 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  position: relative;
  margin-bottom: 2em;
}
.main.single h2::before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: #77656e;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main.single h3 {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  margin-bottom: 1em;
}
.main.single h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #77656e;
}
.main.single p {
  margin-bottom: 1em;
}
.main.single figure.price-table table tr {
  background-image: linear-gradient(to right, #77656e 7px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 0.9em;
}
.main.single figure.price-table table tr td {
  border: initial;
  display: block;
}
.main.single figure.price-table table tr td:nth-child(1) {
  padding-bottom: 0;
}
.main.single .link-btn a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: #77656e;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: white;
  text-decoration: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** single-special 特集記事
******************************************************************************
----------------------------------------------------------------------------*/
.thunbnail-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.thunbnail-box .thumbnail-figure {
  width: 100%;
}
.thunbnail-box .thumbnail-figure img {
  width: 100%;
  display: block;
  margin: auto;
  height: auto;
}
.thunbnail-box .thumbnail-text {
  width: 100%;
}
.thunbnail-box .thumbnail-text p.thumbnail-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
  display: block;
}
.thunbnail-box .thumbnail-text p span.sakura {
  font-weight: bold;
  color: #77656e;
}
.thunbnail-box .thumbnail-text p {
  font-size: 1em;
  font-weight: normal;
}
.thunbnail-box .btn-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.single-special-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  width: 90%;
  margin-top: 100px;
}
.single-special-box .single-anchor-box {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px 10px 20px;
  margin: 30px auto;
}
.single-special-box .single-anchor-box p {
  text-align: center;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 20px;
  position: relative;
  font-size: 1.1em;
}
.single-special-box .single-anchor-box p:before {
  content: "";
  filter: opacity(0.6);
  display: block;
  position: absolute;
  width: 1.5em;
  aspect-ratio: 1/1;
  background: url(../images/agenda.png) center center/contain no-repeat;
  top: 50%;
  left: -2em;
  transform: translateY(-50%);
}
.single-special-box .single-anchor-list {
  border-top: solid 1px #cdcdcd;
  padding: 20px 10px 0;
}
.single-special-box .single-anchor-list li {
  margin-bottom: 0.7em;
}
.single-special-box .single-anchor-list li a {
  color: #62535B;
}
.single-special-box .single-anchor-list li a:hover {
  opacity: 0.5;
}
.single-special-box .single-anchor-list-child {
  margin-top: 0.5rem;
  font-size: 0.9em;
  padding-left: 2rem;
}
.single-special-box span.marker {
  background: linear-gradient(transparent 64%, #ffc4da 0%);
}

.single-special-w_base {
  width: 100%;
  max-width: 860px;
  margin: auto;
}

.author-box {
  background: #f7f7f7;
  padding: 20px;
  font-size: 0.9em;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: start;
  border-radius: 10px;
  margin-top: 100px;
}
.author-box div.author-avatar {
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  width: 80px;
}
.author-box div.author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-box .author-detail {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.author-box .author-detail .author-info {
  width: calc(100% - 90px);
}
.author-box .author-info .author-name {
  margin-bottom: 0.2em;
}
.author-box .author-info .author-affi a {
  color: #62535B;
}
.author-box .author-info .author-name,
.author-box .author-info .author-jobttl,
.author-box .author-info .author-affi {
  font-weight: bold;
}
.author-box .author-info .author-bio {
  font-size: 0.8rem;
}
.author-box time {
  font-size: 0.7rem;
}

.cta-wrap {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7098039216);
  display: block;
  width: 100%;
  padding: 10px 20px;
}
.cta-wrap .cta-lead {
  text-align: center;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
.cta-wrap .cta-box {
  display: flex;
  justify-content: space-around;
}

/*----------------------------------------------------------------------------
******************************************************************************
** single-special サイドバー
******************************************************************************
----------------------------------------------------------------------------*/
aside {
  display: block;
  width: 100%;
}
aside h3 {
  text-align: center;
  margin-bottom: 20px;
}
aside a.campaign_bnr {
  display: block;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
}
aside .reservation-area {
  border: solid 1px #20B2AA;
  align-items: center;
  text-align: center;
  display: flex;
  border-radius: 5px;
  padding: 10px;
  flex-direction: column;
}
aside .reservation-area .reservation-text1 {
  text-align: center;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
aside .reservation-area .reservation-text2 {
  font-size: 0.8em;
  text-align: center;
  font-style: italic;
}
aside .reservation-area .reservation-phonenum {
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: #77656e;
  font-size: 2em;
  border-bottom: solid 2px #77656e;
  margin-left: 5px;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
aside .reservation-area .reservation-address {
  font-size: 0.8em;
  margin: 10px 0;
}
aside .reservation-area .common_btn_2 {
  font-size: 0.8em;
  padding: 7px 35px;
}
aside ul.sidebar-rec {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
aside ul.sidebar-rec li {
  box-shadow: 2px 5px 7px #e5e5e5;
  border-radius: 0 0 10px 10px;
}
aside ul.sidebar-rec li .title {
  padding: 0.5rem;
  font-size: 0.9rem;
}
aside ul.sidebar-rec li a {
  text-decoration: none;
  color: #62535B;
}
aside ul.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
}
aside ul.category-list li {
  width: 48%;
}
aside ul.category-list a {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: #62535B;
  font-size: 0.8em;
  text-decoration: none;
  background: #ededed;
}/*# sourceMappingURL=sp.css.map */