/* // =======================================
// COMMONっぽいcss
// ======================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  color: #666666;
  box-sizing: border-box;
  font-weight: 400;
  font-style: normal;
}

html,body{
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  background-color:#fff;
  overflow-x: clip;
  font-size:17px;	
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #666666;
  line-height: 1.8;
  scroll-behavior: smooth;
}

body.fixed {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
html,body{
    font-size: 16px;
}
}

main{
  position: relative;
  z-index: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

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

h1 a{
    display: flex;
    align-items: center;
    gap: 25px;
    letter-spacing: 0.4em;
}

h1 img {
	width:15vw;
}

@media screen and (max-width: 1200px) {
h1 a{
    gap:05px;
    letter-spacing: 0.2em;
}

h1 img{
	width:auto;
	height:auto;
    transform: scale(0.8);
}
}

h2.c-ttl{
  text-align: center;
  font-size: 80px;
  line-height: .5;
}

h2.c-ttl.two-color{
  color: #dbcda6;
}

h2.c-ttl.two-color span{
  color: #84cea2;
}

h2.c-ttl.two-color span.ttl-jp{
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  color: #666666
}

h2.c-ttl.two-color.large-ttl span.ttl-jp{
  font-size: 36px;
}

.large-ttl-wrapper{
  position: relative;
  text-align: center;
}

.large-ttl-wrapper:before{
  position: absolute;
  content: "";
  background-color: #84cea2;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  bottom:70px;
  height: 1px;
}

h2.c-ttl.large-ttl{
    font-size: 180px;
    line-height: 0.6;
    position: relative;
    display: inline-block;
}

h2.c-ttl.large-ttl::before{
    position: absolute;
    content: "";
    background-image: url(../img/bg-deco-leaf-03.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 147px;
    bottom:80px;
    height: 85px;
    left: -180px;
}

h2.c-ttl.large-ttl::after {
    position: absolute;
    content: "";
    background-image: url(../img/bg-deco-leaf-04.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 147px;
    bottom: 80px;
    height: 85px;
    right: -180px;
}

@media screen and (max-width: 1200px) {
.large-ttl-wrapper:before {
    bottom: 5.8vw;
}

h2.c-ttl.large-ttl::before{
  width: 12.25vw;
  bottom:6.75vw;
  height: 7.1vw;
  left: -15vw;
}

h2.c-ttl.large-ttl::after{
  width: 12.25vw;
  bottom:6.75vw;
  height: 7.1vw;
  right: -15vw;
}

h2.c-ttl.large-ttl{
  font-size: clamp( 80px, calc(80px + (180 - 80) * ((100vw - 600px) / (1200 - 600))), 180px );
}

h2.c-ttl.two-color.large-ttl span.ttl-jp{
  font-size: clamp(22px, calc(22px + (36 - 22) * ((100vw - 600px) / (1200 - 600))), 36px);
}
}

@media screen and (max-width: 600px) {
.large-ttl-wrapper:before {
    bottom: 8vw;
}

h2.c-ttl {
    font-size: 48px;
}

h2.c-ttl.large-ttl{
  font-size: clamp( 52px, calc(52px + (80 - 52) * ((100vw - 375px) / (600 - 375))), 80px );
  line-height: 0.7;
}

h2.c-ttl.two-color.large-ttl span.ttl-jp{
  font-size: clamp(20px, calc(20px + (22 - 20) * ((100vw - 375px) / (600 - 375))), 22px);
}

h2.c-ttl.large-ttl::before{
  bottom: 9vw;
  left: -14vw;
}

h2.c-ttl.large-ttl::after{
  bottom: 9vw;
  right: -14vw;
}
}

@media screen and (max-width: 450px) {
h2.c-ttl.large-ttl::before{
  left: -4vw;
}

h2.c-ttl.large-ttl::after{
  right: -4vw;
}
}

h3.c-ttl{
  text-align: center;
  font-size: 60px;
  line-height: 0.7;
}

h3.c-ttl span.ttl-jp{
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  color: #666666
}


@media screen and (max-width: 1200px) {
h3.c-ttl{
  text-align: center;
  font-size: clamp(32px, calc(32px + (60 - 32) * ((100vw - 375px) / (1200 - 375))), 60px);
  line-height: 1;
}

h3.c-ttl span.ttl-jp{
  font-size: clamp(18px, calc(18px + (24 - 18) * ((100vw - 375px) / (1200 - 375))), 24px);
}
}

.c-inner{
  position: relative;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 600px) {
.c-inner{
  padding: 0 10px;
}
}

.c-menu-area{
  margin: auto;
  max-width: 1340px;
  padding: 20px;
}

@media screen and (max-width: 1200px) {
.c-menu-area {
    padding: 10px;
}
}

.flex-box{
 display: flex;
}

.head-text-area p{
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: center;
    margin-top: 20px;
    line-height: 2.67;
    letter-spacing: 0.05em;
}

span.orange{
  color: #f2b39b;
}

.sp{
  display: none;
}

/* // =======================================
// フォント系
// ======================================= */

.cormorant {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.shippori-mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.futura-pt{
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* // =======================================
// header
// ======================================= */
header{
    position: fixed;
    width: 100%;
    z-index: 1;
}

.sp-nav{
  display: none;
}

.header-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1vw;
    height: 80px;
    background-color: #ffffff00;
}

.header-nav .nav-right{
  gap: 1.5vw;
}

.header-nav .nav-right ul{
    gap:1.1vw;
    align-items: center;
}

.header-nav .nav-right ul li{
    flex-direction: column-reverse;
    align-items: center;
    line-height: 1.3;
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 1200px) / (1920 - 1200))), 18px);
}

.header-nav .nav-right ul li.small-font{
    font-size: 13px;
}

.header-nav .nav-right ul li span.en{
    font-size: clamp(15px, calc(15px + (17 - 15) * ((100vw - 1200px) / (1920 - 1200))), 17px);
    color: #84cea2;
}

/* ▼ドロップダウン */
/* .header-nav .nav-right ul li.has-dropdown{
  position: relative;
}

.header-nav .nav-right ul li.has-dropdown > a{
  position: relative;
}

.header-nav .nav-right ul li.has-dropdown > a:before{
    position: absolute;
    content: "";
    background-image: url(../img/top/allow02.png);
    width: 16px;
    height: 9px;
    top: 58%;
    right: -15px;
    transform: translateY(-50%);
}

.header-nav .nav-right ul li.dropdown{
    display:none;
}

.header-nav .nav-right .has-dropdown:hover > .dropdown {
  display: block;
  position: absolute;
  top: 40px; 
  left: 50%;
  transform: translateX(-50%);
  background-color: #303650;
  min-width: 200px;
  z-index: 1000;
}

.header-nav .nav-right .has-dropdown .dropdown li {
    position: relative;
    text-align: center;
}

.header-nav .nav-right .has-dropdown .dropdown li:not(:last-child):before{
    position: absolute;
    content: "";
    background-image: url(../img/top/allow02.png);
    width: 85%;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
    background:#a39b58;
}

.header-nav .nav-right .has-dropdown .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
} */

.follow-nav {
    position: fixed;
    top: 0;
    z-index: 3000;
    background-color: #fff;
    transition: transform .4s ease, opacity .2s ease;
    transform: translateY(0);
    width: 100%;
}

.follow-nav.is-hidden {
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
}

.hamburger-box{
    display: none;
}

.header-nav .nav-right .button-area{
  gap: 10px;
}

.nav-button {
  position: relative;
  width: 160px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}

.nav-button.reserve{
    color: #f79f7d;
    border: #f79f7d 2px solid;
    background-color: #fff;
    padding-left: 18px;
}

.nav-button.reserve::before{
    position: absolute;
    content: "";
    background-image: url(../img/icon-carender.png);
    width: 21px;
    height: 20px;
    top: 50%;
    left: 13px;
    transform: translatey(-50%);
}

.nav-button.web-reserve{
    background-color: #84cea2;
    color: #fff;
    flex-direction: column;
    line-height: 0.6;
    padding-left: 24px;
}

.nav-button.web-reserve span{
  color: #fff;
}

.nav-button.web-reserve::before{
    position: absolute;
    content: "";
    background-image: url(../img/icon-phone-top.png);
    width: 13px;
    height: 22px;
    top: 50%;
    left: 25px;
    transform: translatey(-50%);
}

.nav-button.reserve span::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transition: transform .3s ease;
}

.button.reserve:hover::after {
  transform: translate(-3px, -3px);
}

.nav-button .font-top{
    font-size: 18px;
    color: #fff;
    margin-bottom: -15px;
}

.nav-button .font-bottom{
    font-size: 28px;
    color: #fff;
}

@media (max-width:1200px){
.hamburger-box {
display: block;
  position: relative;
    width: 60px;
    height: 60px;
    z-index: 2001;
}

.hamburger {
    position: absolute;
    top: 10px;
    left: 0;
    width: 37px;
    height: 36px;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease;
    transform-origin: center;
}

.hamburger span.hamburger-line {
  position: relative;
  display: block;
  left: -3px;
  width: 100%;
  background-color: #84cea2;
  border-radius: 2px;
  height: 4px;
  transition: all 0.4s ease;
  z-index: 2002;
}

.hamburger >span.hamburger-line{
  width: 45px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 45px;
    top: 7px;
    left: 0;
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 45px;
    left: 0;
}

.hamburger.active {
  top: 17px;
}

.hamburger.active::after {
    content: ""; 
}

.header-nav {
    padding: 0 20px;
}

.pc-nav .nav-right{
    display: none;
}

.sp-nav{
    display: block;
}
}
/* @media (max-width:750px){

.hamburger {
    top: 3px;
    left: 13px;
    z-index: 2001;
}

.hamburger::after {
    bottom: -23px;
    left: -1px;
    font-size: 12px;
}

.hamburger span {
    width: 35px;
    height: 2px;
}

.hamburger.active {
  top: 10px;
  left: 14px;
}

.hamburger.active span:nth-child(1) {
    width: 37px;
    top: 5px;
    left: -2px;
}

.hamburger.active span:nth-child(3) {
    width: 37px;
    left: -3px;
}

.hamburger-box {
    top: 0;
    right: -5px;
    width: 60px;
    height: 60px;
}
} */

/* ===== オフキャンバス：右からスライド ===== */
:root { --offcanvas-speed: .32s; } 

@media (max-width: 1200px){
/* SPナビ（非表示時） */
.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  height: 100vh;
  background-color: #fff;
  z-index: 2999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  opacity: .9;
}

.sp-nav.active {
  transform: translateX(0%);
}

/* SPナビが開いてる時だけ出す前提 */
.sp-nav-overlay{
  position: fixed;
  inset: 0;
  z-index: 2998;
  background: #e7e7e760;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

/* メニューが開いてる状態（既存の .sp-nav.active を利用） */
.sp-nav.active + .sp-nav-overlay{
  opacity: 1;
  pointer-events: auto;
}


.sp-nav .sp-nav-list {
    padding: 0 ;
    margin: 60px auto 0;
}

.sp-nav .sp-nav-list > li{
    position: relative;
    padding: 10px 0 10px 15px;
    display: flex;
    flex-direction: column-reverse;
    border-top: 1px solid #91d4c2;
}

.sp-nav .sp-nav-list > li span{
  font-size: 12px;
  color: #a1905a;
}

.sp-nav .sp-nav-list > li:not(:first-child) {
  border-top: 1px solid #91d4c2;
}

.sp-nav .sp-nav-list > li:last-child {
    border-bottom: 1px solid #91d4c2;
}

.sp-nav .sp-nav-list > li > a::before {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-left: 8px solid #91d4c2;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    right: 12px;
    bottom: 15px;
}

.sp-nav .sp-nav-list > li.has-dropdown > a::before {
    right: 12px;
    bottom: 15px;
}

.sp-nav .dropdown {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

}

.sp-nav .dropdown > li{
    position: relative;
    padding-left: 30px;
}

.sp-nav .dropdown > li:before{
    position: absolute;
    content: "";
    background-image: url(../img/top/sp-navarrow.png);
    background-repeat: no-repeat;
    width: 5px;
    height: 2px;
    background: #d2d2d2;
    top: 15px;
    left: 10px;
}

.sp-nav .dropdown.open {
  margin-top: 7px;
  max-height: 500px;
}

.sp-nav .button-area{
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    gap: 15px;
}
}

@media (max-width: 750px){
.header-nav {
    height: 80px;
    padding: 0 5px;
}

.sp-nav a {
  display: flex;
  align-items: center;
  color: #4d4d4d;
  text-decoration: none;
  font-size: 16px;
  margin-top: -5px;
}

.sp-nav .sp-nav-list > li::before {
    top: 24px;
    transform: translateY(-50%) scale(0.6);
}

.sp-nav .sp-nav-list > li.has-dropdown::before {
    transform: scale(0.6) rotate(90deg);
    top: 9px;
}

.button-area {
  flex-direction: column;
  margin-top:65px;
}

.button-area .button {
    border-radius: 100px;
    width: 230px;
    height: 45px;
    line-height: 45px;
    font-size: 17px;
}

.button-area .button.reserve {
    padding: 0 53px 0 28px;
}

.button-area .button.reserve::before {
    top: 9px;
    right: 28px;
    transform: scale(0.8);
}

.button-area .button.contact::before {
    top: 14px;
    right: 40px;
    transform: scale(0.8);
}

.nav-button {
    width: 180px;
}

.nav-button.reserve::before {
    left: 15px;
}
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce){
  .sp-nav, body.fixed::before{ 
    transition: none; 
}
}

/* // =======================================
// メインビジュアル
// ======================================= */
.top-mv {
  width: 100%;
}

.mv-wrapper{
  width: 100%;
  background: linear-gradient(to bottom, #ffffff 0 40%, #ebebec 40% 100%);
}

.mv-inner{
  position: relative;
  width: 100%;
  padding: 80px 6.25vw 4.1vw;
}

.top-mv img.mv{
    width:100% ;
    object-fit: cover;
}

.catch-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4vw;
}

.catch-wrapper .mv-catch{
    position: relative;
    font-size: clamp(36px, calc(36px + (70 - 36) * ((100vw - 750px) / (1920 - 750))), 70px);
    font-weight: bold;
    color: #fff;
    line-height: 1.57;
    z-index: 1;
    white-space: nowrap;
    text-shadow: 4px 1px 6px rgba(0, 0, 0, 0.8);
}

.catch-wrapper .mv-catch::before{
    position: absolute;
    content: "";
    background-image: url(../img/mv-text.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30.8vw;
    height: 11.66vw;
    top: 7.3vw;
    left: 3.16vw;
    z-index: -1;
}

.mv-bg-inner{
  position: relative;
}

.mv-bg-inner::before{
    position: absolute;
    content: "";
    background-image: url(../img/bg-deco-flower-01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 6.4vw;
    height: 8.9vw;
    top: 0;
    left:-1.5vw;
}

.mv-bg-inner::after{
    position: absolute;
    content: "";
    background-image: url(../img/bg-deco-flower-02.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 6.09vw;
    height: 9.94vw;
    bottom: -1.5vw;
    right:-1.5vw;
}

@media (max-width: 750px){
.mv-wrapper {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0 60%, #ebebec 60% 100%);
}

  .mv-inner {
    padding: 80px 20px 15vw;
}

.catch-wrapper {
    top: initial;
    bottom: 15vw;
    transform: translateY(0);
}

.catch-wrapper .mv-catch {
    font-size:8vw;
}

.catch-wrapper .mv-catch::before {
    position: absolute;
    content: "";
    background-image: url(../img/mv-text.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 63.2vw;
    height: 24vw;
    top: 12.3vw;
    left: 1.16vw;
    z-index: -1;
}

.mv-bg-inner::before {
    width: 16.4vw;
    height: 22.8vw;
    top: initial;
    bottom: 50%;
    left: -1.5vw;
}

.mv-bg-inner::after{
    width: 13vw;
    height:20.4vw;
    bottom: -5.5vw;
    right: -2.5vw;
}
}
/* // =======================================
// NEWS
// ======================================= */
.top-news{
  padding: 110px 0;
}

.top-news__list {
    box-shadow: -2.6px 6.6px 24px rgba(167, 167, 167, 0.16);
    margin-top: 60px;
    padding: 20px 0;
    max-width: 1000px;
    margin: 60px auto 0;
    background: #fff;
}
.top-news__list-wrap {
    width: 100%;
    max-height: 300px;
    padding: 20px 30px;
    overflow-y: scroll;
}

.top-news__list-wrap::-webkit-scrollbar {
  width: 8px;
}

.top-news__list-wrap::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

.top-news__list-wrap::-webkit-scrollbar-thumb {
  background: #84cea2;
  width: 8px;
  border-radius: 4px;
}
.top-news__item {
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #033333;
}

.top-news__item::before {
    position: absolute;
    content: "";
    background:#f3f0ed;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
}

.top-news__item .ttl-text{
    align-items: flex-start;
    gap: 6vw;
    padding: 5px 0 15px;
    margin-left: 50px;
}

.top-news .news-text{
    padding: 0 35px 45px 100px;
}

.top-news__item .ttl-text time{
  font-size: 17px;
  color: #666666;
}

.top-news__item:not(:first-child) {
  margin-top: 15px;
}

.top-news__item-ttl {
    font-size: 18px;
    color: #666666;
    margin-bottom: 10px;
    overflow: hidden;
}

.top-news__item-desc {
  padding-top: 15px;
  line-height: 1.75;
  letter-spacing: 0.13em;
}
.top-news__item-txt p {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
.top-news__list {
    margin: 35px auto 0;
}

.top-news__item .ttl-text time {
    font-size: 15px;
}

.top-news__item-ttl {
    font-size: 16px;
}

  .top-news__list-wrap {
    width: 100%;
    max-height: 300px;
    padding: 10px 15px;
    overflow-y: scroll;
}

  .top-news__item .ttl-text {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 5px 0 15px;
    margin-left: 3.33vw;
}

.top-news__item-desc {
  font-size: 16px;
}
}


/* =======================================
  4つのボタンエリア
======================================= */
.top-links{
  background-color:#f8f7f2;
  padding: 60px 0;
}

.top-links .c-inner{
  max-width:900px ;
}

.top-links__list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
  margin: 0 auto;
}

.top-links-button {
    position: relative;
    align-items: center;
    width: 100%;
    height: 80px;
    justify-content: center;
    outline: #fff solid 8px;
    outline-offset: -9px;
    border: #a6a6a6 solid 1px;
    border-radius: 18px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

/* 各ボタン別色 */
.top-links-button.entry {
  background: #89cba4;
  padding-right: 16px;
}

.top-links-button.entry::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 21px;
  background: url("../img/icon-check.png") ;
  background-repeat: no-repeat;
}

.top-links-button.check {
  background: #f79f7d;
  padding-right: 15px;
}

.top-links-button.check::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 31px;
  background: url("../img/icon-binder.png") ;
  background-repeat: no-repeat;
}

.top-links-button.download {
  background: #c4b998;
  padding-right: 33px;
}

.top-links-button.download::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 24px;
  background: url("../img/icon-carender-02.png") ;
  background-repeat: no-repeat;
}

.top-links-button.cancel {
  background: #afa29d;
  padding-right: 30px;
}

.top-links-button.cancel::before {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 31px;
  background: url("../img/icon-cancel.png") ;
  background-repeat: no-repeat;
}

.top-links-button:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
.top-links {
    padding: 12vw 0;
}

.top-links__list {
    grid-template-columns: 1fr;
    row-gap: 15px;
    column-gap: 5px;
    margin: auto;
}

.top-links-button {
      width: 80%;
      height: 75px;
      font-size: 16px;
}

}


/* // =======================================
// Instagram
// ======================================= */
.top-instagram{
  padding: 40px 0 100px;
  width: 100%;
}

.top-instagram .c-inner{
  max-width: 1340px;
  margin: auto;
}

.top-instagram h2{
  font-size: 50px;
  color: #dbcda6;
}

.top-instagram .img-area{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 0;
  margin: 50px auto 0;
}

.top-instagram .button-area {
    padding: 10px;
    display: flex;
    gap: 20px;
    margin: 90px auto 0;
    width: fit-content;
}

.top-instagram .button-area .button {
    display: block;
    position: relative;
    width: auto;
    padding: 0 30px;
    border-radius: 5px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
}

.top-instagram .button-area .button.button.load {
    background: #333;
    font-family: 'shippori-mincho';
}

.top-instagram .button-area .button.button.follow {
    background: #408bd1;
    padding: 0 20px 0 50px;
    font-family: 'shippori-mincho';
}

.top-instagram .button-area .button.button.follow::before {
    position: absolute;
    content: "";
    background-image: url(../img/icon-instagram.png);
    width: 20px;
    height: 20px;
    top: 22px;
    left: 18px;
}

@media screen and (max-width: 750px) {
  .top-instagram h2{
    font-size: 32px;
    color: #dbcda6;
  }

  .top-instagram .img-area {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-instagram .button-area {
    gap: 10px;
  }

  .top-instagram .button-area .button {
    width: 250px;
    height: 45px;
    line-height: 45px;
    font-size: 17px;
  }

  .top-instagram .button-area .button.button.follow::before {
    top: 13px;
  }
}

/* // =======================================
// FIRST
// ======================================= */
.top-first{
  position: relative;
  background-color: #faf3e5;
  padding: 75px 10px 280px;
}

.top-first .c-inner.first-card{
  position: relative;
  background-color: #fdfaf5;
  max-width: 1050px;
  margin: auto;
  padding: 70px 0 85px;
}

.top-first .c-inner.first-card::before{
  position: absolute;
  content: "";
  background-image: url(../img/bg-deco-leaf-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 181px;
  height: 145px;
  left: -4.68vw;
  bottom: -2.34vw;
}

.top-first .c-inner.first-card::after{
  position: absolute;
  content: "";
  background-image: url(../img/bg-deco-leaf-02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 181px;
  height: 145px;
  top: -1.82vw;
  right: -2.34vw;
}

.top-first h2{
  position: relative;
}

.top-first h2::before{
  position:absolute;
  padding: 55px 0;
}

.first-card-inner{
    width: 100%;
    max-width: 750px;
    margin: auto;
    padding: 0 25px;
}

.first-card-inner ul{
  position: relative;
  margin-top: 55px;
}

.first-card-inner ul::before{
    position: absolute;
    content: "";
    background-color: #c5e5ce;
    width: 105%;
    height: 2px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.first-card-inner ul li{
  font-size: 18px;
}

.first-card-inner ul li.orange{
color:#e5a183;
}

@media screen and (max-width: 1200px) {
  .top-first .c-inner.first-card::before {
    width: 15vw;
    height: 12vw;
    left: 0.66vw;
}

  .top-first .c-inner.first-card::after {
    width: 15vw;
    height: 12vw;
    right: -0.68vw;
}

.first-card-inner ul::before {
    width: 100%;
}

.first-card-inner ul li {
    margin-top: 5px;
}
}


@media screen and (max-width: 600px) {
.top-first {
    padding: 75px 10px 250px;
}

.top-first .c-inner.first-card {
    padding: 35px 0 70px;
}

.first-card-inner {
    padding: 0 15px;
}

.first-card-inner ul li {
    font-size: 16px;
  }
}

/* =======================================
    FEATURE
======================================= */
.top-feature {
    position: relative;
    padding: 65px 0 115px;
}

.top-feature:before{
    position: absolute;
    content: "";
    background-color: #fff;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 115%;
    height: 600px;
    border-radius: 50%;
}

.top-feature .c-inner{
  max-width: 1600px;
}

.feature-content{
  margin-top: 150px;
  flex-direction: column;
  gap: 150px;
}

.feature-item.feature-item-01{
  flex-direction: row-reverse;
}

.feature-item{
  position: relative;
  gap: 70px;
  justify-content: center;
}

.feature-item-01::before {
    position: absolute;
    content: "";
    background-image: url(../img/feature-bg-01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 42vw;
    height: 42vw;
    top: -15vw;
    left: -10vw;
}

.feature-item-02::before {
    position: absolute;
    content: "";
    background-image: url(../img/feature-bg-02.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 42.7vw;
    height: 42.7vw;
    top: -8vw;
    right: -12vw;
}

.feature-item-03::before {
    position: absolute;
    content: "";
    background-image: url(../img/feature-bg-03.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 42.7vw;
    height: 42.7vw;
    top: 50%;
    left: -28vw;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item-03::after {
    position: absolute;
    content: "";
    background-image: url(../img/feature-bg-04.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 42.7vw;
    height: 42.7vw;
    bottom: -15vw;
    right: -28vw;
    z-index: -1;
}

.feature-text-area{
  flex:0.9;
}

.feature-img-area{
  flex: 1;
}

.feature-img-wrapper{
  position: relative;
}

.feature-img-wrapper::before{
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}

.feature-item-01 .feature-img-wrapper::before,
.feature-item-03 .feature-img-wrapper-02::before{
  background-image: url(../img/bg-deco-flower-02.png);
  width: 117px;
  height: 191px;
}

.feature-item-01 .feature-img-wrapper::before{
  bottom: 0;
  left: 0;
  transform: rotate(-30deg);
}

.feature-item-03 .feature-img-wrapper-02::before{
    bottom: -50px;
    right: -40px;
}

.feature-item-02 .feature-img-wrapper::before,
.feature-item-03 .feature-img-wrapper-01::before{
  background-image: url(../img/bg-deco-flower-01.png);
  width: 123px;
  height: 171px;
}

.feature-item-02 .feature-img-wrapper::before{
    bottom: -15px;
    right: -50px;
}

.feature-item-03 .feature-img-wrapper-01::before{
    top: -40px;
    left: -50px;
}

.feature-item-03 .feature-img-wrapper-01::before,
.feature-item-03 .feature-img-wrapper-02::before{
  transform: scale(0.8);
}


.feature-point{
  position: relative;
  font-size: 45px;
  color: #84cea2;
  line-height: 1;
}

.feature-point span{
  font-size: 100px;
  color: #84cea2;
  margin-left: 15px;
}

.feature-point::before{
  position:absolute;
  content: "";
  background-color:#84cea2;
  width: 100%;
  height: 1px;
  bottom: 0;
}

h3.feature-head{
    margin-top: 15px;
    font-size: 28px;
}

.feature-lead{
  margin-top: 25px;
}

.feature-item.feature-item-03{
  padding: 80px 15px 100px;
  background-color: #fdfbfa;
  text-align: center;
}

.feature-item.feature-item-03 .feature-text-area{
  margin: auto;
  max-width: 750px;
}

.feature-item.feature-item-03 .feature-point::before {
    left: 50%;
    transform: translateX(-50%);
}

.feature-item.feature-item-03 .feature-lead{
  text-align:left;
}

.feature-item.feature-item-03 .feature-img-area{
  margin-top: 40px;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width:1200px) {
.top-feature {
    padding: 0 0 115px;
}

.feature-content {
    margin-top: 12.5vw;
}

.feature-item.feature-item-01,
.feature-item-02{
  flex-direction: column;
}

.feature-item-03::before {
    top: 25%;
}

.feature-item-03::before {
    bottom:-10vw;
}

.feature-item {
    gap: 5vw;
}

.feature-text-area {
    margin: auto;
    max-width: 750px;
}

h3.feature-head {
    text-align: center;
}

.feature-point { 
  font-size: clamp(28px, calc(28px + (45 - 28) * ((100vw - 600px) / (1200 - 600))), 45px);  
    text-align: center;
}

.feature-point span{
    font-size: clamp( 60px, calc(60px + (100 - 60) * ((100vw - 600px) / (1200 - 600))), 100px); 
}

.feature-point::before {
    left: 0;
}

.feature-img-area{
  text-align: center;
}

.feature-item-01::before {
    width: 67vw;
    height: 67vw;
    top: initial;
    bottom: 3vw;
    left: -15vw;
    z-index: -1;
}

.feature-item-02::before {
    width: 67vw;
    height: 67vw;
    top: initial;
    bottom: 3vw;
    right: -15vw;
    z-index: -1;
}

.feature-img-wrapper{
  display: inline-block;
}

.feature-item-01 .feature-img-wrapper::before, 
.feature-item-03 .feature-img-wrapper-02::before {
    background-image: url(../img/bg-deco-flower-02.png);
    width: 9.75vw;
    height: 16vw;
}

.feature-item-02 .feature-img-wrapper::before, 
.feature-item-03 .feature-img-wrapper-01::before {
    background-image: url(../img/bg-deco-flower-01.png);
    width: 10.25vw;
    height: 14.3vw;
}

.feature-item-02 .feature-img-wrapper::before {
    bottom: -15px;
    right: -5px;
}
}

@media screen and (max-width:600px) {
.top-feature .sp{
  display: block;
}

.feature-item{
  padding: 0 10px;
}

.feature-item.feature-item-03 {
    padding: 40px 15px 70px;
}

.top-feature:before {
    top: -120px;
    height: 350px;
    width: 150%;
}

.feature-point {
    font-size: 28px;
}

.feature-point span{
    font-size: 60px;
}

h3.feature-head {
  font-size: 22px;
  text-align: center;
}

.feature-item-03 .feature-img-wrapper-01::before{
    top: -15px;
    left: -15px;
}

.feature-item-03 .feature-img-wrapper-02::before{
    bottom: -20px;
    right: -15px;
}

.feature-lead {
    margin-top: 25px;
}

.feature-item.feature-item-03 .feature-img-area {
    gap: 10px;
}
}

/* =======================================
   medical
======================================= */
.top-medical{
  padding: 60px 3.125vw 0;
}

.top-medical .c-inner{
    background-image: url(../img/medical-bg-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 1800px;
    width: 100%;
    padding: 0 10px 100px;
}

.top-medical .large-ttl-wrapper {
    position: relative;
    text-align: center;
    padding-top: 150px;
}

.top-medical .large-ttl-wrapper:before {
    width: calc( 20px + 100%);
    left: 50%;
    transform: translateX(-50%);
}

h3.medical-ttl{
  margin-top: 120px;
  color: #d6c095;
}

.medical-menu-area{
  margin-top: 70px;
}

ul.c-menu-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 15px; 
}

a.menu-button{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    padding: 0 5px;
    height: 90px;
    background-color: #fff;
    box-shadow: 6px 6px 0px 0px #f9e2d6;
    transition: transform 0.2s ease-out;
}

a.menu-button:hover {
  transform: translateX(4px) translateY(4px);
  transition: transform 0.2s ease-in;
  box-shadow: 2px 2px 0px 0px #f9e2d6;
}

a.menu-button:before{
  position: absolute;
  content: "";
  right: 6px;
  bottom: 6px;
  width: 20px;
  height: 20px;
  background-color: #f3c7af;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.top-medical .white-space{
  height: 35px;
}

a.price-button{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  text-align: center;
  margin: 70px auto 0;
  font-size: 20px;
  box-shadow: 0 4px 10px #bfbfbf;
  padding: 12px 0 12px 30px;
  background-color: #f2b39b;
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: transform 0.2s ease-out;
}

a.price-button::before{
    position: absolute;
    content: "";
    background-image: url(../img/icon-price.png);
    width: 24px;
    height: 24px;
    top: 51%;
    left: 30px;
    transform: translatey(-50%);
    background-size: cover;
}

a.price-button:hover{
    transform: translateX(2px) translateY(2px);
    box-shadow: 0 1px 10px #bfbfbf;
}


@media screen and (max-width:1200px) {
.top-medical {
    padding: 0 3.125vw;
}

.top-medical .large-ttl-wrapper {
    padding-top: 12.5vw;
}

.medical-menu-area {
    margin-top: 30px;
}

ul.c-menu-grid { 
  grid-template-columns: repeat(3, 1fr); 
}

a.menu-button {
  font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 600px) / (1200 - 600))), 18px);
}
}

@media screen and (max-width: 600px) {
h3.medical-ttl {
    margin-top: 80px;
    color: #d6c095;
}

  .medical-menu-area {
    padding: 0;
}

.top-medical .large-ttl-wrapper:before {
    width: calc( 20px + 100%);
    bottom: 8vw;
}

  ul.c-menu-grid { 
  grid-template-columns: repeat(2, 1fr); 
}

a.price-button {
    width: 200px;
    height: 50px;
    text-align: center;
    margin: 70px auto 0;
    font-size: 16px;
    box-shadow: 0 4px 10px #bfbfbf;
    padding: 12px 0px 12px 28px;
    background-color: #f2b39b;
    color: #fff;
    border: none;
    border-radius: 10px;
}

a.price-button::before{
    width: 18px;
    height: 18px;
    top: 51%;
    left: 20px;
}
}

@media screen and (max-width: 450px) {
.top-medical h2.c-ttl.large-ttl::before{
  left: -14vw;
}

.top-medical h2.c-ttl.large-ttl::after{
  right: -14vw;
}
}


/* =======================================
   WORRIES + COSMETIC
======================================= */
.top-medical-02{
  padding-top: 80px;
}

.top-medical-02 .c-inner{
  background-image: url(../img/medical-bg-02.png);
  max-width: 1800px;
  width: 100%;
}

h3.worries-ttl,
h3.cosmetic-ttl {
    color: #e5c2ae;
}

.worries-area{
  padding-top: 80px;
}

.cosmetic-area{
  padding-top: 200px;
}

.worries-area a.menu-button,
.cosmetic-area a.menu-button{
    background-color: #fcf8f7;
    box-shadow: 6px 6px 0px 0px #f2d1cd;
    transition: transform 0.2s ease-out;
}

.worries-area a.menu-button::before,
.cosmetic-area a.menu-button::before{
    position: absolute;
    content: "";
    right: 6px;
    bottom: 6px;
    width: 20px;
    height: 20px;
    background-color: #f3b7af;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100% 100%, 100% 100%);
}

.worries-area a.menu-button:hover,
.cosmetic-area a.menu-button:hover {
  transform: translateX(4px) translateY(4px);
  transition: transform 0.2s ease-in;
  box-shadow: 2px 2px 0px 0px #f2d1cd;
}

@media screen and (max-width: 600px) {
a.menu-button.small-text{
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 375px) / (600 - 375))), 16px);
}
}

/* =======================================
   recruit
======================================= */
.top-recruit{
  padding-top: 150px;
  padding-bottom: 100px;
}

.top-recruit .c-inner{
    margin: auto;
    width: 100%;
    max-width: 1340px;
    padding: 20px;
}

.recruit-content{
  position: relative;
  isolation: isolate; 
  padding: 50px 4.7vw 50px;
  border: #f8efe9 solid 20px;
  background-color: #7ebe98;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5.2vw;
}

.recruit-content:before{
  content: "";
  position: absolute;
  inset: 0;
  background-color: #a5d2b7;
  clip-path: polygon(100% 24%, 3% 100%, 100% 100%);
  z-index: -1;
}

h2.recruit-ttl{
    font-size: 100px;
    color: #fff;
    line-height: 0.45;
    margin-top: 10px;
    text-align: left;
}

h2.recruit-ttl span{
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.01em;
}

.recruit-lead{
  font-size: 22px;
  color: #fff;
  margin-top: 70px;
  line-height: 1.59;
  letter-spacing: 0.01em;
}

a.recruit-button{
  font-size: 20px;
  border-radius: 26px;
  background-color: #e5d285;
  color: #fff;
  align-items: center;
  margin-top: 50px;
  padding-left: 25px;
  width: 200px;
  height: 52px;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 1200px) {
.top-recruit {
    padding-top: 12.5vw;
}

.recruit-content {
    padding: 4.1vw 4.7vw;
    align-items: center;
    border: #f8efe9 solid 15px;
}

h2.recruit-ttl{
  font-size: clamp(64px, calc(64px + (100 - 64) * ((100vw - 600px) / (1200 - 600))), 100px);
}

h2.recruit-ttl span{
    font-size: 18px;
}

.recruit-lead {
  font-size: 20px;
  margin-top: 5.8vw;
}

a.recruit-button {
    font-size: 18px;
    margin-top: 4.16vw;
    width: 180px;
    height: 40px;
    letter-spacing: 0.01em;
}
}

@media screen and (max-width: 600px) {
  .recruit-content{
    flex-direction: column;
    gap: 0;
    border: #f8efe9 solid 10px;
    padding: 10px;
  }

  .recruit-content .text-area{
    display: contents;
  }

  h2.recruit-ttl {
    font-size: 48px;
    order: 1;
    text-align: center;
    margin-top: 20px;
    line-height: 0.7;
  }

  .recruit-content .img-area{
    order: 2;
    margin-top: 30px;
  }

  .recruit-content .recruit-lead{
    order: 3;
    font-size: 16px;
  }

  .recruit-content .recruit-button{
    order: 4;
    font-size: 16px;
    width: 160px;
    height: 40px;
    justify-content: center;
    padding-left: 0;
  }
}

/* =======================================
   g-map
======================================= */

  .gmap-wrapper{
    height: 600px;
  }

iframe{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 750px) {
  .gmap-wrapper{
    height: 300px;
  }
}

/* =======================================
   footer
======================================= */
footer{
  background-color: #fdf9f8;
  padding-top: 150px;
}

footer .c-inner{
  margin: auto;
  width: 100%;
  max-width: 1500px;
  justify-content: center;
}

.footer-content{
  justify-content: space-around;
  padding-bottom: 100px;
}

.address-area{
  font-size: 18px;
  line-height: 2.22;
}

 .tel-number{
  font-size: 22px;
}

.footer-button-area{
  margin-top: 30px;
  flex-direction: column;
  gap: 20px;
}

a.futter-buitton.web-reserve-02{
  position: relative;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  background-color: #7ebe98;
  width: 205px;
  height: 60px;
  border-radius: 10px;
  padding-left: 30px;
}

a.futter-buitton.web-reserve-02::before{
  position: absolute;
  content: "";
  background-image: url(../img/icon-phone.png);
  width: 20px;
  height: 37px;
  color: #fff;
  left: 40px;
}

a.futter-buitton.cancel-02{
  position: relative;
    align-items: center;
    justify-content: center;
    color: #857873;
    font-size: 17px;
    background-color: #ffffff;
    outline: #afa29d solid 5px;
    outline-offset: -5px;
    width: 205px;
    height: 60px;
    border-radius: 10px;
}

.table-area{
  max-width: 860px;
}

.c-ct__table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 2px solid #777777;
  border-bottom: 2px solid #777777;
}

.c-ct__table thead tr:first-child th,
.c-ct__table thead tr:first-child td{
    white-space: nowrap;
    text-align: center;
}

.c-ct__table thead th,
.c-ct__table thead td{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  color: #585858;
  text-align: center;
  padding: 20px 28px;
  border-bottom: 2px solid #777777;
  background: transparent;
  color: #666666;
}

.c-ct__table thead td.saturday {
  color: #2f547a;
}

.c-ct__table thead td.sunday {
  color: #e79595;
}

.c-ct__table thead th:first-child{ 
  width: 38%; text-align: left; 
}

.c-ct__table tbody{
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  line-height: 2.64;
  padding-bottom: 100px;
}

.c-ct__table tbody th{
  padding: 18px 18px 14px 26px;
  vertical-align: top;
}
.c-ct__table tbody th span{
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}

.c-ct__table tbody td{
  text-align: center;
  vertical-align: middle;
  font-size: 24px;
}

.c-ct__table tbody td{
  color: #84cea2;
}

.c-ct__table tbody td.off{
  color: #a8a8a8;
}

.c-ct__table tbody td.half{
  color: #ccdde2;
}

.c-ct__table tbody td:last-child{
  text-align: center;
  vertical-align: middle;
}


.table-area .text-area{
  margin-top: 35px;
}

.c-ct__note{
  font-size: 17px;
}

.c-ct__anotation span{
  color: #ccdde2;
}

.c-ct__text{
  margin-top: 20px;
}

.copy-area{
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #7ebe98;
  text-align: center;
}

.copy-area small{
  line-height: 1.5;
  font-size: 12px;
}

.copy-area a{
  color: #fff;
}

@media screen and (max-width: 1200px) {
  footer {
      padding-top: 12.5vw;
  }

  .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 70px;
  }

  footer .access-area{
      display: flex;
      justify-content: space-between;
      width: 100%;
      max-width: 600px;
  }

  .c-ct__table tbody {
    font-size: 20px;
  }

  .c-ct__table thead th, .c-ct__table thead td {
    padding: 20px;
  }
}

@media screen and (max-width: 750px) {
footer br.pc{
  display: none;
}

.footer-content {
    justify-content: space-around;
    padding-bottom: 10vw;
}

.address-area {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

.tel-number {
    font-size: 20px;
}

  a.futter-buitton.web-reserve-02{
  font-size: 15px;
  width: 180px;
  height: 45px;
}

a.futter-buitton.web-reserve-02::before{
  transform: scale(0.6);
}

a.futter-buitton.cancel-02{
    font-size: 15px;
    outline: #afa29d solid 3px;
    outline-offset: -3px;
    width: 180px;
    height: 45px;
}

  footer .access-area {
      flex-direction: column;
      align-items: center;
  }

  footer .table-area {
    max-width: 550px;
}

 .c-ct__table {
    table-layout: fixed; 
    border-spacing: 0;
  }

  .c-ct__table thead th:first-child,
  .c-ct__table tbody th {
    width: 30%;
    padding: 10px 8px;
  }
  .c-ct__table thead td,
  .c-ct__table tbody td {
    width: 8%;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
  }

  .c-ct__table thead th,
  .c-ct__table thead td { font-size: 14px; }
  .c-ct__table tbody { font-size: 14px; line-height: 1.25; }
  .c-ct__table tbody th { font-size: 16px; }
  .c-ct__table tbody th span { font-size: 14px; }

  .c-ct__table tbody td:not(.off)::before {
    width: 14px; 
    height: 14px;
  }
  .c-ct__table tbody td.off::before {
    font-size: 14px;
  }

.c-ct__note { 
  margin-top: 8px; 
  font-size: 16px; 
}

.c-ct__text {
    margin-top: 10px;
}
}

@media screen and (max-width: 600px) {
  footer .sp{
    display: block;
  }
}

/* =======================================
   footer-追従ナビ
======================================= */
.c-floatbnr {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

.c-floatbnr.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.c-floatbnr .sp-floatbnr{
    display: none;
  }
  
body.fixed .c-floatbnr{
  opacity: 0;
  pointer-events: none;
}


.c-pagetop {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #424450;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 10px #bfbfbf;
    transition: background 0.4s ease;
}

.c-pagetop::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 20px;
    margin: auto;
    width: 14px;
    height: 14px;
    border-top: 3px solid #424450;;
    border-right: 3px solid #424450;;
    transform: rotate(-45deg);
}

.c-floatbnr .button-area.pc-floatbnr{
  gap: 15px;
}

.c-floatbnr .button-area.pc-floatbnr .nav-button {
    width: 280px;
    height: 60px;
    font-size: 20px;
    box-shadow: 0 4px 10px #bfbfbf;
}

.c-floatbnr .nav-button.reserve::before {
    left: 35px;
    transform: translatey(-50%) scale(1.2);
}

.c-floatbnr .nav-button.web-reserve::before {
    left: 47px;
    transform: translatey(-50%) scale(1.2);
}

.c-pagetop:hover {
    background: #e7e7b9;
}

@media screen and (max-width: 750px) {
  .c-floatbnr .pc-floatbnr{
    display: none;
  }

    .c-floatbnr .sp-floatbnr{
    display: block;
  }

  .c-floatbnr .button-area.sp-floatbnr .nav-button.reserve::before {
    position: absolute;
    content: none;
}

  .c-floatbnr{
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 2px calc(10px + env(safe-area-inset-bottom));
    justify-content: center;
    gap: 10px;
}

  .c-floatbnr .sp-floatbnr.button-area {
      width: 100%;
      display: flex;
      flex-direction: row;
      padding: 0 5px;
      gap: 3px;
      margin-top: 0;
  }

  .c-floatbnr .sp-floatbnr.button-area .nav-button{
    height: 60px;
  }

  .c-floatbnr .sp-floatbnr.button-area > .nav-button:not(.instagram){
      flex: 1;
      flex-direction: column;
      line-height: 0.6;
      padding-bottom: 3px;
  }

  .c-floatbnr .sp-floatbnr.button-area .nav-button.tel{
    background-color: #84cea2;
  }

  .c-floatbnr .sp-floatbnr.button-area .nav-button.dermatology-reception{
    background-color: #f3b7af;
  }

  .c-floatbnr .sp-floatbnr.button-area .nav-button.tel,
  .c-floatbnr .sp-floatbnr.button-area .nav-button.dermatology-reception{
    color: #FFF;
  }


  .c-floatbnr .sp-floatbnr.button-area > .nav-button.instagram{
    flex: 0 0 10%;
    max-width: 30px;
    margin: 3px 0 0 5px;
  }

    .sp-floatbnr .nav-button.reserve {
      padding-left: 0;
    }

    .c-pagetop {
    position: absolute;
    right: 10px;
    top: -45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }

  .c-pagetop::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 14px;
  }
}