/* // =======================================
// COMMONっぽいcss
// ======================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  color: #4d4d4d;
  box-sizing: border-box;
  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:18px;
  font-family: "Zen Kaku Gothic New", sans-serif;	
  /*font-family: "Shippori Mincho", serif;*/
  font-weight: 500;
  font-style: normal;
  color: #4d4d4d;
  line-height: 1.8;
}

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

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

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.site-title {
    padding: 20px;
}

h1 a{
    font-family: "Shippori Mincho", serif;	
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: clamp(19px, calc(0.667px + 1.5278vw), 30px);
    letter-spacing: 0.4em;
}

@media screen and (max-width: 1200px) {
h1.site-title {
    padding: 0px;
}	
h1 a{
    gap:05px;
    font-size: clamp(16px, calc(14.64px + 0.364vw), 19px);
    letter-spacing: 0.2em;
    padding-left: 0px;	
}

h1 img{
    transform: scale(0.8);
}
}

.c-inner{
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding: 0 20px;
}
.c-inner1000{
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
.c-inner{
  padding: 0 10px;
}
.c-inner1000{
  padding: 0 10px;
}	
h1 a{
    padding-left: 0px;
}
    h1.site-title img {
         width: 125px;
        padding-left: 10px;
        padding: 5px;
        transform: scale(1);
    }	
}


.flex-box{
 display: flex;
}

.head-text-area p{
    text-align: center;
    margin-top: 20px;
    line-height: 2.67;
    letter-spacing: 0.05em;
}


.sp{
  display: none;
}

@media screen and (max-width: 750px) {
.head-text-area p{
    font-size:14px;
    line-height: 2.3;
    letter-spacing: 0px;	
}	
}



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

.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;
}


/* // =======================================
// 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: 100px;*/
    background-color: #ffffff00;
	align-items: flex-start;
}

.header-nav .nav-right{
    font-family: "Shippori Mincho", serif;	
    display: flex;
    gap:1.8vw;
    align-items: center;
}

.header-nav ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(16px, calc(12.6667px + 0.27778vw), 18px);
}

.header-nav ul li span.en{
    font-size: clamp(10px, calc(6.6667px + 0.27778vw), 12px);
    color: #a1905a;
}

.header-nav .nav-right .has-dropdown{
  position: relative;
}

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

.header-nav .nav-right .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 .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;
    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;
}

.nav-button {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 280px;
  text-align: center;
  background-color: #8c9c91;
  padding: 10px 0 10px 25px;
}

.nav-button.reserve:before {
    position: absolute;
    content: "";
	background-image: url(../img/top/icon-calendar.svg);
    background-repeat: no-repeat;
    width: 25px;
    height: 30px;
    top: 43px;
    left: 52px;
}

.nav-button.tel:before {
    position: absolute;
    content: "";
	background-image: url(../img/top/icon-tel.svg);
    background-repeat: no-repeat;
    width: 23px;
    height: 28px;
    top: 39px;
    left: 38px;
}

.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: 50px;
    height: 50px;
	top:10px;
    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-between;
	align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease;
}
	
    .hamburger-text{
        font-size: 11px;
        position: absolute;
        display: block;
        bottom: 12px;
		left: -1px;
        color: #8c9c91;
    }
.hamburger span.hamburger-line {
  position: relative;
  display: block;
  left: -3px;
  width: 100%;
  background-color: #8c9c91;
  border-radius: 2px;
  height: 2px;
  transition: all 0.4s ease;
  z-index: 2002;
}

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

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

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

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

.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: 95%;
  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-nav .sp-nav-list {
    padding: 0 ;
    margin: 80px 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 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4d4d4d;;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.sp-nav .button-area{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
}

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

.sp-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4d4d4d;
  text-decoration: none;
  font-weight: bold;
  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);
}

.sp-nav .nav-button.reserve{
    transform: scale(0.8);
}

}

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

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

.mv-inner{
  position: relative;
}

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

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

.catch-wrapper .mv-catch{
    position: relative;
    font-family: "Shippori Mincho", serif;	
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    line-height: 2.08;
    letter-spacing: 0.1em;
    z-index: 1;
    white-space: nowrap;
    text-shadow: 4px 1px 6px rgb(143 143 143 / 80%);
}

.catch-wrapper .mv-catch::before{
    position: absolute;
    content: "";
    background-image: url(../img/top/mv-text.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 666px;
    height: 147px;
    top: -65px;
    left: 65px;
    z-index: -1;
}

.top-mv__txt{
  position: absolute;
  right: 15px;
  top: 100px;
}

.top-mv-map {
    position: relative;
    font: 500 18px "Shippori Mincho", serif;
    letter-spacing: 0.12em;
    color: #4d4d4d;
    padding-left: 38px;
    margin-top: 15px;
}

.top-mv-map::before {
    position: absolute;
    content: "";
    background-image: url(../img/top/icon-map-pin.png);
    background-repeat: no-repeat;
    width: 18px;
    height: 26px;
    top: 15px;
    left: 5px;
}

.top-mv-medical-list {
    display: flex;
    gap: 10px;
    margin-top: 10px;
	justify-content: space-around;
}

.top-mv-medical-list__item {
    font: 500 18px "Shippori Mincho", serif;
    letter-spacing: 0.12em;
    color: #fff;
    padding: 10px 16px;
    background-color: #a1905a85;
}

.top-mv-list {
    position: absolute;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: flex-start;
    bottom: 5.2vw;
    right: 3.6vw;
    -moz-column-gap: 10px;
    column-gap: 15px;
    padding-bottom: 5px;
}

.top-mv-item {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 6px;
    border-radius: 50%;
}

.top-mv-item__border {
    background: #a1905a;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    padding: 1px;
}

.top-mv-item__wrap {
    display: flex;
    flex-flow: column;
    align-items: center;
    background: #ffffff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    padding-top: 25px;
}

.top-mv-item__img {
    height: 34px;
}

.top-mv-item__img img{
  transform: scale(0.9);
}

.top-mv-item__txt {
    font: 700 24px / 1 "Shippori Mincho", serif;
    letter-spacing: 0.1em;
    text-align: center;
    color: #747474;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 60px;
}

.top-mv-item__txt span {
    font-size: 14px;
    line-height: 1.2857142857;
}

@media (max-width: 1200px){
  .catch-wrapper {
      position: absolute;
      top: 50%;
      transform: translateY(-50%) scale(0.7);
      line-height: 1.8;
      left: -5%;
  }

  .top-mv__txt{
    position: absolute;
    right: initial;
    top: initial;
    bottom: 180px;
    left: 5vw;
  }

  .top-mv-list {
    bottom: 2.2vw;
    transform: scale(0.8);
}
.catch-wrapper .mv-catch {
    font-size: 60px;
    line-height: 1.7;	
}	
}

@media (max-width: 750px){
    .catch-wrapper {
      top: 55%;
      transform: translateY(-50%) scale(0.6);
	  line-height: 1.5;
      left: -15%;
    }
    .catch-wrapper .mv-catch {
        font-size: 60px;
        line-height: 1.5;
    }
.top-mv__txt{
    transform: scale(0.8);
    bottom: 160px;
    left: -5px;
  }

.top-mv-map {
    font: 500 15px "Shippori Mincho", serif;
}

  .top-mv-medical-list__item {
    font: 500 15px "Shippori Mincho", serif;
	padding: 10px 10px;   
}

    .top-mv-list {
    transform: scale(0.7);
  }
.top-mv-medical-list {
	gap: 5px;
}
.top-mv-map::before {
	top: 8px;
}	
}

@media (max-width: 550px){
  .top-mv img.mv {
      object-position: 58%;
        height: 96vh;	  
  }

      .catch-wrapper {
        transform: translateY(-50%) scale(0.4);
        left: 0;
        right: 63vw;
    }
      .top-mv-list {
        transform: scale(0.6);
        width: 160%;
        right: -14.4vw;
    }
}

@media (max-width: 400px){
  .top-mv img.mv {
      object-position: 58%;
        height: 96vh;	  
  }

      .catch-wrapper {
        transform: translateY(-50%) scale(0.4);
        left: 0;
        right: 63vw;
    }
      .top-mv-list {
        transform: scale(0.6);
        width: 160%;
        right: -18vw;
    }
}

@media (max-width: 350px){
.top-mv__txt {
        transform: scale(0.9);
        bottom: 130px;
        left: -5px;
    }	
.top-mv-medical-list {
        gap: 5px;
    }
    .top-mv-medical-list__item {
        font: 500 14px "Shippori Mincho", serif;		
        padding: 10px 8px;
    }	
    .top-mv-map {
        font: 500 14px "Shippori Mincho", serif;
        letter-spacing: 0em;
    }	
      .top-mv-list {
        transform: scale(0.6);
        width: 160%;
        right: -29vw;
	    bottom: -2vw;	  
    }
 }	
	

/* // =======================================
// NEW OPEN
// ======================================= */

.top-newopen{
  background-image: url(../img/top/top-newopen-bg.jpg);
  width: 100%;
  height: 352px;
}

.top-newopen__content {
    width: 100%;
    max-width: 1250px;
    height: 100%;
    margin-inline: auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.top-newopen__date {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #535353;
    background-image: linear-gradient( 52deg, #a1905a 0%, #dfd6ba 100%);
    outline: solid 1px #fff;
    outline-offset: -8px;
    padding: 40px 0 45px;
}

.top-newopen__date p,
.top-newopen__date p span{
    color: #fff;
}

.top-newopen__date-year {
    font: 700 40px / 1 "Shippori Mincho", serif;
    letter-spacing: 0.16em;
}

.top-newopen__date-year span {
    font-size: 24px;
}

.top-newopen__date-month {
    margin-top: 4px;
    font: 700 120px / 1 "Shippori Mincho", serif;
}

.top-newopen__date-month span {
    font-size: 48px;
    margin: 0 8px;
}

.top-newopen__txt {
    width: calc(100% - 350px);
    max-width: 876px;
    color: #535353;
    margin-top: 4px;
}

.top-newopen__txt-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 48px;
    margin-left: 8px;
}

.top-newopen__txt-cat {
    width: 100%;
    max-width: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
	font-family: "Shippori Mincho", serif;
	font-weight:500;
    letter-spacing: 0.4em;
    background-color: #f7f4ea;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.top-newopen__txt-jp {
	font: 500 40px "Shippori Mincho", serif;
    line-height: 1;
    letter-spacing: 0.12em;
}

.top-newopen__txt-en {
    font: 700 130px "Shippori Mincho", serif;
    background: linear-gradient( 180deg, #f1efe9 0%, #bab194 100%); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: 0.14em;
    white-space: nowrap;
    border-bottom: 2px solid #bcbcbc;
    margin-top: 14px;
    padding-bottom: 38px;
    text-align: center;
}

@media screen and (max-width: 1200px) {
  .top-newopen__txt-wrap {
      justify-content: center;
  }

      .top-newopen__txt-en {
      font-size: 80px;
      padding-bottom: 25px;
  }

  .top-newopen__txt-en {
      font-size: 80px;
      padding-bottom: 25px;
  }
}

@media (max-width: 1000px) {
  .top-newopen {
    height: auto;
    background-size: cover;
    background-position: center;
    padding: 24px 16px;
  }

  .top-newopen__content {
    max-width: 500px;
    height: auto;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
    column-gap: 0;
    padding: 0;
  }

  .top-newopen__date {
    max-width: 250px;
    padding: 30px 0;
    outline-offset: -6px;
  }
  .top-newopen__date-year {
    font-size: 20px;
    letter-spacing: 0.12em;
  }
  .top-newopen__date-year span { 
    font-size: 14px; 
  }
  .top-newopen__date-month {
    margin-top: 2px;
    font-size: 56px;
    line-height: 1;
  }
  .top-newopen__date-month span {
    font-size: 22px;
    margin: 0 4px;
  }

  .top-newopen__txt {
    width: 100%;
    max-width: none;
    margin-top: 0;
  }
  .top-newopen__txt-wrap {
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .top-newopen__txt-cat {
    width: 100%;
    max-width: none;
    font-size: 14px;
    letter-spacing: 0.3em;
    padding: 10px 12px;
    line-height: 1.6;
  }

  .top-newopen__txt-jp {
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.12em;
  }

  .top-newopen__txt-en {
    display: block;
    font-size: clamp(50px, calc(50px + (74 - 50) * ((100vw - 375px) / (1000 - 375))), 74px);
    line-height: 1;
    letter-spacing: 0.14em;
    white-space: nowrap; 
    text-align: center;
    margin-top: 10px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #bcbcbc;
  }
}

@media (max-width: 764px) {
  .top-newopen__date {
    padding: 20px 0;
  }
.top-newopen__txt-cat {
    padding: 15px 10px;
}	
}

/* // =======================================
// メッセージ
// ======================================= */
.top-message{
  margin-top: 125px;
  width: 100%;
}

.top-message .flex-box{
    justify-content: space-between;
    gap: 10vw;
}

.top-message h2.c-ttl-img{
  position:absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.top-message .flex-img p{
  position: relative;
  display: inline-block;
}

.top-message .flex-img p::before{
    position: absolute;
    content: "";
    background-image: url(../img/top/message-02.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 65%;
    height: auto;
    bottom: -4.6vw;
    right: -8.6vw;
    aspect-ratio: 265 / 223;
}

.top-message .flex-text{
  width: 100%;
  max-width: 800px;
  margin-top: 150px;
  letter-spacing: 0.05em;
}

.top-message .flex-text .flex-text-head{
  font-size: 36px;
  letter-spacing: 0.1em;
}

@media (max-width: 1200px) {
.top-message .flex-box {
    padding-top: 100px;
    align-items: center;
    gap: 11vw;
}

  .top-message .flex-text {
    max-width: 680px;
    margin-top: 110px;
  }

  .top-message .flex-text .flex-text-head {
    font-size: clamp(28px, 2.3vw, 32px);
  }
}

@media (max-width: 750px) {
  .top-message { 
    margin-top: 50px; 
  }

  .top-message h2.c-ttl-img { 
    margin-bottom: 16px; 
    text-align: center;
	transform: translateX(-20%); 
  }

  .top-message .flex-box {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-top: 18vw;
  }

  .top-message .flex-text {
    max-width: 680px;
    margin-top: 0;
    letter-spacing: 0.04em;
  }

  .top-message .flex-text .flex-text-head {
    font-size: clamp(20px, 5.2vw, 26px);
    text-align: left;
  }
  .top-message .flex-img { 
    width: 100%;
    max-width: 680px;
    text-align: center;
    padding-right: 100px;
  }
.top-message .flex-img p::before {
    bottom: -5vw;
    right: -20vw;

}	
}


/* // =======================================
// リクルートバナー
// ======================================= */
.top-recruit{
  margin-top: 100px;
}

.top-recruit .c-inner{
  overflow: hidden;
}

.top-recruit .c-inner .flex-box{
    position: relative;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: #f3f0ed;
}

.top-recruit .c-inner .flex-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 329px;
  height: 470px;
  background: url("../img/top/recruit-decoration-l.png") no-repeat left center / cover;
  pointer-events: none;
  z-index: 2;
}

.top-recruit .c-inner .flex-box::after {
    content: "";
    position: absolute;
    background: url(../img/top/recruit-decoration-r.png) no-repeat right center / cover;
    bottom: 0;
    right: 0;
    width: 329px;
    height: 470px;
    pointer-events: none; 
	z-index: 1;
}

/* ------------------------------
   text area
------------------------------ */
.top-recruit .c-inner .flex-box .flex-text {
  flex: 0 0 50%;
  text-align: center;
  color: #333;
  position: relative;
  z-index: 2;
}

.recruit-banner__ttl {
  margin-bottom: 32px;
}

.recruit-banner__ttl span {
  display: block;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #a08f66;
  margin-bottom: -20px;
}

.recruit-banner__ttl img {
  width: clamp(180px, 20vw, 282px);
  height: auto;
  display: block;
  margin: auto;
}

.top-recruit .c-inner .flex-box .flex-text p {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-button {
  position: relative;
  display: inline-block;
  font-family: "Shippori Mincho", serif;	
  width: 300px;
  height: 60px;
  line-height: 60px;
  text-align: left;
  margin-top: 40px;
  padding: 0 40px;
  background-color: #dcd3c3;
  color: #fff;
  border-radius: 34px;
  text-decoration: none;
  font-size: 16px;
  z-index:5;	
}

.c-button::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 13px;
  background: url("../img/top/button-arrow.png") ;
  pointer-events: none;
}


/* ------------------------------
   image area
------------------------------ */
  .top-recruit .c-inner .flex-box .flex-img {
  flex: 0 0 50%;
  height: 470px;
  background: url("../img/top/recruit-01.jpg") no-repeat top/cover;
  width: 740px;
  position: relative;
  z-index: 1;
}


@media (max-width: 1000px) {
.top-recruit .c-inner {
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #f3f0ed;
  padding: 60px 10px;
}

  .top-recruit .c-inner .flex-box {
    display: contents;
}

.top-recruit .c-inner .flex-box .flex-text {
    display: contents;
}

.recruit-banner__ttl {
    order: 1;
}

.top-recruit .c-inner .flex-box .flex-text p {
    order: 2;
}

.top-recruit .c-inner .flex-box .flex-img {
  order: 3;
}

.c-button {
  order:4;
}

.recruit-banner__ttl span {
    display: block;
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #a08f66;
    margin-bottom: -5px;
}

  .top-recruit .c-inner .flex-box .flex-img{
    flex: none;
    width: 100%;
    max-width: 600px;
	height: 200px;  
    margin-top:35px;
}
}

@media (max-width: 750px) {
.top-recruit {
    margin: 80px 15px;
}
	
.top-recruit .c-inner .flex-box::before,
.top-recruit .c-inner .flex-box::after {
    width: 32.9vw;
    height: 47vw;
    z-index: 0;	
}


.top-recruit .c-inner .flex-box .flex-text p {
    font-size: 14px;
}

.recruit-banner__ttl span {
    font-size: 16px;
    margin-bottom: -5px;
}

.c-button {
    width: 240px;
    height: 50px;
    line-height: 50px;
    margin-top: 30px;
    font-size: 14px;
}
}

/* =======================================
   news
======================================= */
.top-two-column {
  position: relative;
  margin-top: 125px;
  width: 100%;
}

.top-two-column .c-inner{
  z-index: 1;
}

.top-two-column .c-inner .flex-wrapper{
  display: flex;
  justify-content: center;
  gap: 70px;
}

.top-news,
.top-infomation{
  box-sizing: border-box;
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;    
}

.top-news__content {
  width: 100%;
  margin-inline: auto;
}

.ttl-wrapper{
  text-align: center;
}
h2.c-ttl.cormorant {
  position: relative;
  display: inline-block;
  color: #a1905a;
  text-align: center;
  font-size: 40px;
}
h2.c-ttl.cormorant::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -95px;
    transform: translate(0, -50%);
    width: 80px;
    height: 21px;
    background: url(../img/top/header-decoration-l.png);
    pointer-events: none;
}
h2.c-ttl.cormorant::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -95px;
    transform: translate(0, -50%);
    width: 80px;
    height: 21px;
    background: url(../img/top/header-decoration-r.png);
    pointer-events: none;
}
.top-news__list {
  box-shadow: -2.6px 6.6px 24px rgba(167, 167, 167, 0.16);
  margin-top: 24px;
  padding: 20px 0;
  height: 560px;
  background: #fff;
}
.top-news__list-wrap {
  width: 100%;
  max-height: 540px;
  padding: 20px 30px;
  overflow-y: scroll;
}
.top-news__list-wrap::-webkit-scrollbar {
  width: 4px;
}
.top-news__list-wrap::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.top-news__list-wrap::-webkit-scrollbar-thumb {
  background: #d9b2b2;
}
.top-news__item {
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #033333;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.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{
    display: flex;
    gap: 10px;
    padding: 5px 0 15px;
}

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

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

.top-news__item:not(:first-child) {
  margin-top: 15px;
}
.top-news__item a {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 34px;
       column-gap: 34px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  transition: all 0.2s;
}
.top-news__item a:hover {
  color: #8bca9f;
}
.top-news__item-ttl {
  font-weight: 700;
  font-size: 18px;
  color:#4d4d4d;
  margin-bottom: 10px;	
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  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: 750px) {
.top-two-column {
  margin-top: 80px;
}
}

/* =======================================
   information
======================================= */
.info-content{
    margin-top: 24px;
    padding: 40px 45px;
    border: 1px solid #a1905a;
    background: #fff;
}
/*空白消す*/
.info-content {
  font-size: 0;
}
.info-content * {
  font-size: initial;
}

.c-ct__table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f7f4ea;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  padding: 0px 15px 10px 15px;
}

.c-ct__table thead tr:first-child th,
.c-ct__table thead tr:first-child td{
  padding-top: 22px;
  white-space: nowrap;
}

.c-ct__table thead th,
.c-ct__table thead td{
  font-size: 18px;
  color: #585858;
  text-align: center;
  padding: 14px 12px;
  border-bottom: 1px solid #8c9c91;
  background: transparent;
  font-weight: 600;	
}

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

.c-ct__table thead td:last-child{ 
  width: 2%; 
}

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

.c-ct__table tbody th{
  padding: 18px 18px 14px 26px;
  vertical-align: top;
  border-bottom: 1px solid #cbcbcb;	
  font-size: 18px;	
}
.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;
  border-bottom: 1px solid #cbcbcb;	
}

/* 最後の行だけ下線を消す */
.c-ct__table tbody tr:last-child th,
.c-ct__table tbody tr:last-child td {
    border-bottom: none;
}

.c-ct__table tbody td:not(.off){
  color:#8c9c91 ;
}

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

.c-ct__note{
  margin-left: 30px;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.info-access__txt{
    position: relative;
    margin: 25px 0 0 40px;
    line-height: 1.5;
}
.info-access__txt:before{
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 18px;
    height: 26px;
    background: url(../img/top/icon-map-pin.svg);
    pointer-events: none;
}

.info-access .flex-box{
  width: 100%;
  justify-content: space-between;
  margin: 10px auto 0;
  gap: 40px;
}
.info-access__box.station,
.info-access__box.parking{
  width: 100%;
  max-width: 300px;
  padding: 20px;
  border: #a1905a 1px solid;
}

.info-access__text-area{
    display: flex;
    gap: 25px;
    text-align: center;
    align-items: center;
    margin-top: 25px;
    justify-content: space-around;	
}

.info-access__text-area-1{	
  text-align: left;
}
p.info-access__box-txt{
  position:relative;
    padding-left: 20px;	
}
p.info-access__box-txt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
	background: url(../img/top/list-deco.svg) no-repeat center / contain;
    pointer-events: none;
    z-index:1;
}

.info-access__box.parking .info-access__box-txt{
    /*text-align: center;*/
    margin-top: 30px;
}

.info-access__box-label{
    width: 50%;
    max-width: 100px;
    padding: 15px 0;
    background: #f1efe9;
}
.info-access__icon-area{
  text-align: center;
}

.top-two-column .bg-area{
  position: absolute;
  background-image: url(../img/top/top-two-column-bg.png);
  width: 100%;
  height: 404px;
  bottom: -10%;
  z-index: 0;
}

@media (max-width: 1500px) {
  .top-two-column .c-inner .flex-wrapper {
    flex-direction: column;
    align-items: center;
}
.top-news,
.top-infomation{
  flex: none;
  width: 100%;
  max-width: 700px;
}

.top-two-column .bg-area {
  background-repeat: repeat;
    height: 1300px;
    bottom: -10%;
   margin-bottom: 20px;	
}
}

@media (max-width: 750px) {
h2.c-ttl.cormorant {
    font-size: 30px;
}

h2.c-ttl.cormorant::before {
    left: -80px;
    transform: translate(0, -50%) scale(0.7);
}
h2.c-ttl.cormorant::after {
    right: -80px;
    transform: translate(0, -50%) scale(0.7);
}

.top-news__list-wrap {
    height: 250px;
}

.top-news__item .ttl-text {
  flex-direction: column;
  gap: 0;
}

.top-news__list {
    height: auto;
}

.top-news .news-text {
  flex-direction: column;
  padding: 0px 0px 20px 0px;
  font-size: 15px;
}

.info-content {
    margin-top: 24px;
    padding: 30px 10px;
}

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

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

  .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: 14px; 
}

.info-access .flex-box {
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.info-access__text-area {
    /*flex-direction: column;*/
    gap: 10px;
    margin-top: 10px;
   justify-content: center;	
}

.info-access__box-label {
    width: 100%;
	padding:10px 0px
}

.info-access__box.parking .info-access__box-txt {
    margin-top: 10px;
}

.top-two-column .bg-area {
    height: 100vh;
    bottom: -7%;  	
}
.info-access__txt{
    font-size:15px;
}
p.info-access__box-txt{
    font-size:15px;
}
.info-access__icon-area.subway {
    width: 28px;
    margin: 0 auto;
}
.info-access__icon-area.parking {
    width: 35px;
    margin: 0 auto;	
}
}



@media (max-width: 600px) {
    .c-ct__table thead th, .c-ct__table thead td {
      font-size: 12px;
  }
}


/* =======================================
   ４つの特徴
======================================= */

.top-ourfeature{
      padding-top: 250px;
}

.top-ourfeature {
  padding: 200px 0 150px;
}
.top-ourfeature__list {
  margin-top: 91px;
  counter-reset: num;
}

.top-ourfeature-ttl {
  text-align: center;
}
.top-ourfeature-ttl__jp {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #ee849f;
}
.top-ourfeature-ttl__en {
  margin-top: 0.5625em;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.75;
  color: #888477;
}

.top-ourfeature-item {
  display: flex;
  align-items: flex-start;
  font-family: "Shippori Mincho", serif;	
}
.top-ourfeature-item:not(:first-child) {
  margin-top: 106px;
}
.top-ourfeature-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.top-ourfeature-item__picture {
  aspect-ratio: 899/500;
  width: 100%;
  max-width: 46.8229166667%;
  position: relative;
  z-index: 1;
  font: 600 200px "Shippori Mincho", serif;
}
.top-ourfeature-item__picture::after {
  position: absolute;
  top: -0.1em;
  right: -0.51em;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.top-ourfeature-item:nth-of-type(1) .top-ourfeature-item__picture::after {
  background-image: url(../img/top/feature-number-01.png);
    width: 17.6vw;
    height: 17.3vw;
}
.top-ourfeature-item:nth-of-type(2) .top-ourfeature-item__picture::after {
  background-image: url(../img/top/feature-number-02.png);
  width: 15.05vw;
  height: 13.6vw;
}
.top-ourfeature-item:nth-of-type(3) .top-ourfeature-item__picture::after {
  background-image: url(../img/top/feature-number-03.png);
    width: 17.6vw;
    height: 17.3vw;
}
.top-ourfeature-item:nth-of-type(4) .top-ourfeature-item__picture::after {
  background-image: url(../img/top/feature-number-04.png);
  width: 15.05vw;
  height: 13.6vw;
}
.top-ourfeature-item:nth-child(even) .top-ourfeature-item__picture::after {
  top: 0.2em;
  right: auto;
  left: -0.18em;
}
.top-ourfeature-item__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-ourfeature-item__detail {
  position: relative;
  width: 60.9375%;
  min-height: 444px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 39px 13.3333333333% 46px;
  margin: 65px auto 0 -7.7604166667%;
  background: #f7f4ea;
  color: #fff;
}
.top-ourfeature-item:nth-child(even) .top-ourfeature-item__detail {
  margin: 110px -7.7604166667% 0 auto;
}
.top-ourfeature-item:nth-child(2n) .top-ourfeature-item__detail {
  background: #cfc6a6;
  color: #686868;
}

.top-ourfeature-item:nth-child(3) .top-ourfeature-item__detail::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -100px;
    width: clamp(280px, 46vw, 720px);
    height: clamp(140px, 22vw, 300px);
    background: #f3f2ed;
    pointer-events: none;
    outline: 1px solid #fff;
    outline-offset: -15px;
    z-index:-1;
}

.top-ourfeature-item:nth-child(2n) .top-ourfeature-item__detail::before {
    content: "";
    position: absolute;
    left: -200px;
    top: -100px;
    width: clamp(280px, 46vw, 720px);
    height: clamp(140px, 22vw, 300px);
    background: #f3f2ed;
    pointer-events: none;
    outline: 1px solid #fff;
    outline-offset: -15px;
    z-index:-1;
}


.top-ourfeature-item:nth-child(3n) .top-ourfeature-item__detail {
  background: #eeeadb;
  color: #686868;
}
.top-ourfeature-item__ttl {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.075em;
  line-height: 1.75;
}
.top-ourfeature-item:nth-of-type(even) .top-ourfeature-item__ttl{
  color: #4d4d4d;
}
.top-ourfeature-item:nth-of-type(even) .top-ourfeature-item__txt{
  color: #4d4d4d;
}
.top-ourfeature-item:nth-child(odd) .top-ourfeature-item__ttl {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.top-ourfeature-item__txt {
  margin-top: 0.9444444444em;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.075em;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 1000px) {
.top-ourfeature-item__detail {
    padding: 39px 10% 46px;
}
}
@media (max-width: 750px) {
  .top-ourfeature {
    padding: 60px 0 120px;
    margin-top: 100px;	  
  }
  .top-ourfeature__list {
    margin-top: 10px;
  }
  .top-ourfeature-ttl__jp {
    font-size: 24px;
  }
  .top-ourfeature-ttl__en {
    font-size: 14px;
  }
  .top-ourfeature-item:nth-child(odd) {
    flex-direction: column-reverse;
  }
  .top-ourfeature-item {
    flex-direction: column-reverse;
  }
  .top-ourfeature-item:not(:first-child) {
    margin-top: 80px;
  }
  .top-ourfeature-item__picture {
    max-width: calc(100% - 20px);
  }
  .top-ourfeature-item__picture::before {
    height: 4em;
    right: 1em;
    transform: rotate(-65deg);
  }
  .top-ourfeature-item__picture::after {
    font-size: 80px;
    top: -1.1em;
    right: -90px;
    transform: scale(0.6);
  }
  .top-ourfeature-item:nth-child(even) .top-ourfeature-item__picture {
    margin-inline-start: auto;
  }
  .top-ourfeature-item:nth-child(even) .top-ourfeature-item__picture::before {
    height: 4em;
    top: 0.1em;
    right: auto;
    left: 1em;
    transform: rotate(65deg);
  }
  .top-ourfeature-item:nth-child(even) .top-ourfeature-item__picture::after {
    right: auto;
    left: -90px;
    top: -0.8em;
  }
  .top-ourfeature-item__detail {
    width: calc(100% - 20px);
    min-height: auto;
    padding: 53px 20px 50px;
    margin: -20px 0 0 auto;
    color: #fff;
  }
  .top-ourfeature-item:nth-child(even) .top-ourfeature-item__detail {
    margin: -20px auto 0 0;
  }
  .top-ourfeature-item__ttl {
    font-size: 22px;
	letter-spacing: 0em;  
  }
  .top-ourfeature-item__txt {
    margin-top: 20px;
    font-size: 15px;
	letter-spacing: 0em;  
  }

  .top-ourfeature-item:nth-of-type(1) .top-ourfeature-item__picture::after {
    width: 339px;
    height: 332px;
}
.top-ourfeature-item:nth-of-type(2) .top-ourfeature-item__picture::after {
  width: 289px;
  height: 261px;
}
.top-ourfeature-item:nth-of-type(3) .top-ourfeature-item__picture::after {
    width: 339px;
    height: 332px;
}
.top-ourfeature-item:nth-of-type(4) .top-ourfeature-item__picture::after {
  width: 288px;
  height: 261px;
}
.top-ourfeature-item:nth-child(2n) .top-ourfeature-item__detail::before {
    left:unset;
    right: -200px;
    top: -180px;	
}
.top-ourfeature-item:nth-child(3) .top-ourfeature-item__detail::before {
    left:-200px;	
    right: useset;
    top: -180px;
}	
}	
	

@media (max-width: 500px) {
.top-ourfeature__list {
        margin-top: 0px;
    }

    .top-ourfeature-item__detail {
      padding: 130px 20px 50px;
  }

  .top-ourfeature-item__picture::after {
        transform: scale(0.4);
    }
}

/* =======================================
   medical-泌尿器科
======================================= */
h3.c-ttl{
  font-size: 50px;
  text-align: center;
  letter-spacing: 0.05em;
}

.top-urology{
  position:relative;
  background: #f7f4ea;
  width: 100%;
  padding-top: 30px ;
  padding-bottom: 150px;
  margin-top: 30px;
  overflow: hidden;
}

.top-urology::before {
    content: "";
    position: absolute;
    top: -2.6vw;
    left: 0;
    width: 16vw;
    height: 41vw;
    background: url(../img/top/urology-bg-l.png) no-repeat center / contain;
    pointer-events: none;
}
.top-urology::after {
    content: "";
    position: absolute;
    bottom: -7.8vw;
    right: 0;
    width: 25vw;
    height: 26.3vw;
    background: url(../img/top/urology-bg-r.png) no-repeat center / contain;
    pointer-events: none;
}

.top-urology h3.c-ttl{
  color: #a1905a;
  font-family: "Shippori Mincho", serif;	
  font-weight: 500;
}

.top-urology .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;
}


.urology-content.flex-box{
    display: flex;
    gap: 4vw;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-top: 120px;
}

.male-urology, 
.female-urology {
  flex: 1 1 0;
  min-width: 320px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  max-width: 1000px;
  width: 100%;
  z-index: 2;
}
.male-urology .column{
	font-size:16px;
}
.female-urology .column{
	font-size:16px;
}
.male-urology .column ul{
	width:50%;
}
.female-urology .column ul{
	width:50%;
}

h4.c-ttl {
    position: relative;
    margin: 0 auto;
    letter-spacing: 0.1em;
    /*font-family: "Shippori Mincho", serif;
	font-weight:500;*/
    font-size: 24px;
    color: #4d4d4d;
    z-index: 1;
}

.top-urology h4.c-ttl{
    display: inline-block;
    top: -101px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 65px;
}

h4.c-ttl::before{
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 23px;
  background: url(../img/top/icon-flower.png) no-repeat center/contain;
  pointer-events: none;
  z-index: 2;
}

.top-urology h4.c-ttl::before{
  top:40px;
}

.top-urology h4.c-ttl::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 135%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    z-index: -1;
}

.urology-badge{
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  padding: 6px 28px;
  border-radius: 9999px;
  font-size: 16px;
  color: #fff;
  margin: 0 auto -60px;
  background: var(--badge);
  position: relative;
  top: -65px;
  z-index: 2;
}

.male-urology .urology-badge{
   --badge:#a8d0b4;
   }
.female-urology .urology-badge{
   --badge:#f5cdd0; 
  }

.urology-content ul.column {
  display: grid;
  grid-template-rows: repeat(7, auto);
  grid-auto-flow: column;
  max-width: 800px;
  margin: auto;
  gap: 15px 40px;
  padding: 25px 60px 60px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4d4d4d;
  line-height: 1.8;
}

 ul.column li {
  position: relative;
  display: flex; 
}

 ul.column li .u-content {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding-left: 20px;
}

ul.column li .u-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
　background: url(../img/top/list-deco.svg) no-repeat center/contain;
  pointer-events: none;
  z-index: 2;
}

.urology-content ul.column li .u-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url(../img/top/list-deco.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}


 ul.column li .u-content::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #4d4d4d;
}

.general-dermatology ul.column li .u-content::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url(../img/top/list-deco.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

.cosmetic-dermatology ul.column li .u-content::after{
  background-color: #4d4d4d;
}
.cosmetic-surgery-content ul.column li .u-content::after{
  background-color: #4d4d4d;
}



@media screen and (max-width:1400px) {
.urology-content.flex-box {
  flex-direction: column;
}

.urology-content.flex-box {
    gap: 150px;
}

.top-urology::before {
    top: -2.6vw;
}
.top-urology::after {
    bottom: -7.8vw;
}

}
@media screen and (max-width:750px) {
.top-urology {
    padding-bottom: 100px;
}	
.top-urology .sp{
  display: block;
}
h3.c-ttl{
  font-size: 30px;
}
.top-urology .text-area p {
    margin-top: 18px;
}
.top-urology h4.c-ttl::before {
  transform: translateX(-57%) scale(0.7);
}
h4.c-ttl {
    font-size: 20px;
}
.male-urology, .female-urology {
    max-width: 600px;
}
.urology-content ul.column {
  max-width: 400px;
    grid-template-rows: initial;
    grid-auto-flow: initial;
    padding: 25px 30px 60px;	
}
.male-urology .column{
	font-size:15px;
}
.female-urology .column{
	font-size:15px;
}
 ul.column li .u-content {
  line-height:1.5;
  padding-bottom: 3px;	 
}
}

/* =======================================
   medical-皮膚科
======================================= */
.top-dermatology-head-area{
  position: relative;
  padding: 80px 0 0px;
  background-image: url(../img/top/dermatology-head-bg.jpg);
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.top-dermatology-head-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(255, 255, 255, 0.4);
	z-index: 1;
}

.top-dermatology-head-area > * {
    position: relative;
    z-index: 2; /* 文字や要素を透過レイヤーの上に表示 */
}

.top-dermatology-head-area:after {
    content: "";
    background: #fff;
    width: 2px;
    height: calc(60 / 1920 * 100vw);
    margin: calc(5 / 1920 * 100vw) auto 0;
    display: block;
    position: relative;
    z-index: 10;
    bottom: -30px;
}

.top-dermatology .head-text-area p {
  color: #626262;
}

.top-dermatology h3.c-ttl {
    color: #a1905a;
    font-family: "Shippori Mincho", serif;
	font-weight:500;
}

.top-dermatology-bg-area{
  padding: 90px 0 120px;
  background-image: url(../img/top/dermatology-bg.jpg);
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.dermatology-content{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.dermatology-content .head-area{
  position: relative;
  flex: 1;
  text-align: center;
}

.dermatology-content .list-area{
  flex: 3;
}

.dermatology-content .head-area::before {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    margin: 0 1rem;
    content: "";
    width: 3px;
    height: 350px;
    background-color: #fff;
}

/*.top-dermatology .general-dermatology,
.top-dermatology .cosmetic-dermatology{
  align-items: center;
  justify-content:flex-start;
  background-color: #f7f4ea;
  border-radius: 20px;
}*/

.top-dermatology .general-dermatology{
  align-items: center;
  justify-content:flex-start;
  background-color: #f7f4ea;
  border-radius: 20px;
}

.cosmetic-dermatology{
  align-items: center;
  justify-content:flex-start;
  background-color: #f7f4ea;
  border-radius: 20px;
}

.dermatology-content ul.column {
    display: grid;
	grid-template-rows: repeat(10, auto);
    grid-auto-flow: column;
    max-width: 1000px;
    margin-right: auto;
    gap: 15px 40px;
    padding: 100px 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-size:16px;
    color: #4d4d4d;
    line-height: 1.8;
    flex: 3;
}

@media screen and (max-width:1000px) {
 /* .top-dermatology .general-dermatology, 
  .top-dermatology .cosmetic-dermatology {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #f7f4ea;
    border-radius: 20px;
}*/
  .top-dermatology .general-dermatology  {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #f7f4ea;
    border-radius: 20px;
}
 
.cosmetic-dermatology {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #f7f4ea;
    border-radius: 20px;
}	

  .top-dermatology h4.c-ttl{
    top:50px;
  }

.dermatology-content .head-area::before {
    top: initial;
    bottom: -60px;
    right: initial;
    left: 34%;
    transform: translatex(-50%);
    width: 300%;
    height: 3px;
}
.top-dermatology-head-area:after {
    content: "";
    background: #fff;
    width: 2px;
    height: calc(60 / 1000 * 100vw);
    margin: calc(5 / 1000 * 100vw) auto 0;
    display: block;
    position: relative;
    z-index: 10;
    bottom: -30px;
}	
}

@media screen and (max-width:750px) {
.top-dermatology-head-area{
  padding: 80px 0 20px;
}	
.top-dermatology .sp{
  display: block;
}
  .top-dermatology h4.c-ttl {
    font-size: 20px;
    letter-spacing: .06em;
    padding-bottom: 20px;	  
  }
  .dermatology-content ul.column{
        grid-template-rows: none;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 560px;
        gap: 12px 28px;
        padding: 100px 24px 60px;
        font-size: 15px;
        line-height: 1.9;
  }

  .dermatology-content .list-area::before{
    width: 60%;
    top: 64px;
  }
.top-dermatology-head-area:after {
    content: "";
    background: #fff;
    width: 2px;
    height: calc(80 / 750 * 100vw);
    margin: calc(5 / 750 * 100vw) auto 0;
    display: block;
    position: relative;
    z-index: 10;
    bottom: -40px;
}
  /*.top-dermatology .general-dermatology,
  .top-dermatology .cosmetic-dermatology{
    padding-left: 8px;
    padding-right: 8px;
	padding-top: 10px;  
  }*/
  .top-dermatology .general-dermatology{
    padding-left: 8px;
    padding-right: 8px;
	padding-top: 10px;  
  }

  .cosmetic-dermatology{
    padding-left: 8px;
    padding-right: 8px;
	padding-top: 10px;  
  }	
}

@media (max-width: 560px) {
    .dermatology-content ul.column {
        grid-template-columns: repeat(2, auto);
        max-width: 100%;
        gap: 15px 5px;
        padding: 100px 10px 56px;
        font-size: 15px;
    }

  .dermatology-content .list-area::before{
    width: 72%;
    top: 52px;
  }
}




/* =======================================
   cosmetic-surgery-美容外科
======================================= */

.top-cosmetic-surgery-head-area{
  position: relative;	
  padding: 80px 0 0px;
  background-image: url(../img/top/cosmetic-surgery-head-bg.jpg);
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}
/*.top-cosmetic-surgery-head-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
	z-index: 1;
}*/

.top-cosmetic-surgery-head-area > * {
    position: relative;
    z-index: 2; /* 文字や要素を透過レイヤーの上に表示 */
}
.top-cosmetic-surgery-head-area:after {
    content: "";
    background: #fff;
    width: 2px;
    height: calc(60 / 1920 * 100vw);
    margin: calc(5 / 1920 * 100vw) auto 0;
    display: block;
    position: relative;
    z-index: 10;
    bottom: -30px;
}
/*.cosmetic-surgery-content ul.column li .u-content::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
	background: url(../img/top/list-deco-white.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}*/

.cosmetic-dermatology ul.column li .u-content::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
	background: url(../img/top/list-deco.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

.cosmetic-dermatology ul.column li .u-content::after{
    background-color: #4d4d4d;
}	
.top-cosmetic-surgery .head-text-area p {
  color: #fff;
}

.top-cosmetic-surgery h3.c-ttl {
    color: #fff;
    font-family: "Shippori Mincho", serif;
	font-weight:500;
}

.top-cosmetic-surgery-bg-area{
  padding: 90px 0 120px;
  background-image: url(../img/top/cosmetic-surgery-bg.jpg);
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.cosmetic-surgery-content{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.cosmetic-surgery-content .head-area{
  position: relative;
  flex: 1;
  text-align: center;
}

.cosmetic-surgery-content .list-area{
  flex: 3;
  color:#fff;
}

.cosmetic-surgery-content .list-area ul li .u-content .u-line{
  color:#32373c;
}
.cosmetic-surgery-content .head-area::before {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    margin: 0 1rem;
    content: "";
    width: 2px;
    height: 150px;
    background-color: #a89865;
}

.top-cosmetic-surgery .male-cosmetic-surgery,
.top-cosmetic-surgery .female-cosmetic-surgery{
  align-items: center;
  justify-content:flex-start;
  background-color: #fff;
  border-radius: 20px;
}

.top-cosmetic-surgery .female-cosmetic-surgery ul.column li .u-content::before{
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url(../img/top/list-deco.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}
.top-cosmetic-surgery .male-cosmetic-surgery ul.column li .u-content::before{
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url(../img/top/list-deco.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}
.cosmetic-dermatology ul.column {
    display: grid;
	grid-template-rows: repeat(10, auto);
    grid-auto-flow: column;
    max-width: 1000px;
    margin-right: auto;
    gap: 15px 40px;
    padding: 100px 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-size:16px;
    line-height: 1.8;
    flex: 3;
}
.cosmetic-surgery-content ul.column {
    display: grid;
	grid-template-rows: repeat(1, auto);
    grid-auto-flow: column;
    max-width: 1000px;
    margin-right: auto;
    gap: 15px 40px;
    padding: 100px 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-size:16px;
    line-height: 1.8;
    flex: 3;
}
.cosmetic-dermatology .list-area ul li .u-content .u-line {
    color: #4d4d4d;
}
.male-cosmetic-surgery h4.c-ttl{
	color:#a1905a;
}
.female-cosmetic-surgery h4.c-ttl{
	color:#a1905a;
}


@media screen and (max-width:1000px) {
  .top-cosmetic-surgery .male-cosmetic-surgery, 
  .top-cosmetic-surgery .female-cosmetic-surgery {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
}

  .top-cosmetic-surgery h4.c-ttl{
    top:50px;
  }

.cosmetic-surgery-content .head-area::before {
    top: initial;
    bottom: -60px;
    right: initial;
    left: 34%;
    transform: translatex(-50%);
    width: 300%;
    height: 1px;
}
.top-cosmetic-surgery-head-area:after {
    content: "";
    background: #fff;
    width: 2px;
    height: calc(60 / 1000 * 100vw);
    margin: calc(5 / 1000 * 100vw) auto 0;
    display: block;
    position: relative;
    z-index: 10;
    bottom: -30px;
}	
}

@media screen and (max-width:750px) {
.top-cosmetic-surgery-bg-area{
  padding: 80px 0 80px;
}
.top-cosmetic-surgery-head-area{
  padding: 40px 0 20px;
}	
.top-cosmetic-surgery .sp{
  display: block;
}
  .top-cosmetic-surgery h4.c-ttl {
    font-size: 20px;
    letter-spacing: .06em;
  }

  .cosmetic-surgery-content ul.column{
        grid-template-rows: none;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 560px;
        gap: 12px 28px;
        padding: 100px 24px 60px;
        font-size: 15px;
        line-height: 1.9;
  }

  .cosmetic-surgery-content .list-area::before{
    width: 60%;
    top: 64px;
  }
.top-cosmetic-surgery-head-area:after {
    content: "";
    background: #fff;
    width: 2px;
    height: calc(80 / 750 * 100vw);
    margin: calc(5 / 750 * 100vw) auto 0;
    display: block;
    position: relative;
    z-index: 10;
    bottom: -40px;
}	
  .top-cosmetic-surgery .male-cosmetic-surgery,
  .top-cosmetic-surgery .female-cosmetic-surgery{
    padding-left: 8px;
    padding-right: 8px;
  }
.cosmetic-dermatology ul.column {
   grid-template-columns: repeat(2, auto);
   max-width: 100%;
   gap: 15px 5px;
   padding: 100px 10px 56px;
   font-size: 15px;
}	
}

@media (max-width: 560px) {
    .cosmetic-surgery-content ul.column {
        grid-template-columns: repeat(2, auto);
        max-width: 100%;
        gap: 15px 5px;
        padding: 100px 10px 56px;
        font-size: 15px;
    }
  .cosmetic-surgery-content .list-area::before{
    width: 72%;
    top: 52px;
  }
    .male-cosmetic-surgery ul.column {
        gap: 15px 40px;
    }	
}



/* =======================================
   内科
======================================= */

.top-internal-medicine{
  padding: 150px 0 150px;
  margin-bottom: 200px;
  text-align: center;
  background: #f7f4ea;
}

.top-internal-medicine h3.c-ttl{
	font-family: "Shippori Mincho", serif;
	font-weight:500;
    color: #a89865;
}

.internal-medicine {
	display:flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 50px;	
}
.internal-medicine ul.column{
    display: grid;
    /*grid-template-rows: repeat(2, auto);*/
    grid-auto-flow: column;
    max-width: 1000px;
    margin-right: auto;
    gap: 15px 40px;
    padding: 70px 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}
.internal-medicine ul.column li .u-content::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url(../img/top/list-deco.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

@media screen and (max-width:1000px) {
.internal-medicine ul.column{
    display: grid;
    grid-template-rows: repeat(2, auto);	
}	
}	
@media screen and (max-width:750px) {	
.internal-medicine ul.column{
    display: grid;
    grid-template-rows: repeat(3, auto);	
    padding: 30px 30px;	
    font-size: 15px;	
}		
.top-internal-medicine {
    padding: 50px 0 80px;
    margin-bottom: 100px;	
}
.top-internal-medicine .sp{
  display: block;
}
}


/* =======================================
   ドクター
======================================= */

.top-doctor {
  position: relative;
  padding-bottom: 130px;
}

.top-doctor::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    width: 100%;
    height: 10px;
    background-color: #a1905a;
    bottom: 0;

}

.top-doctor-content{
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.top-doctor-content::after {
    content: "";
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 217px;
    display: block;
    border-radius: 50%;
    background: #f3f0ed;
    position: absolute;
    top: auto;
    left: 0.9345794393%;
    bottom: 48px;
    transform: translateX(-50%);
    z-index: -1;
}

.top-doctor-txt{
    position: absolute;
    left: 8vw;
    width: 45%;
    max-width: 850px;
}

.top-doctor-name__en {
    position: absolute;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 217px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f0ed4D;
    text-indent: 1em;
    border-radius: 50%;
    top: -10vw;
    right: -2vw;
}

.top-doctor-name__en img {
    position: absolute;
    left: -20px;
}

.top-doctor-content__picture{
  position: relative;
    margin-left: auto;
    width: 70%;
    max-width: 1000px;
}

.top-doctor-content__picture::before{
  content: "";
    position: absolute;
    top: -4vw;
    left: -8vw;
    width: 15vw;
    height: 11.3vw;
    background: url(../img/top/doctor-text-02.png) no-repeat center / contain;
    z-index: 2;
}

.top-doctor h2{
    position: absolute;
    font-size: 7.8vw;
    top: -7.8vw;
    right: 0;
    -webkit-text-stroke: 2px #a89865;
    color: transparent;
    letter-spacing: 0.075em;
    z-index: 2;
}

.top-doctor-name__jp{
  color: #969081;
  font-size: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.top-doctor-name__jp span{
  color: #969081;
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-right: 20px;
}

.top-doctor-txt__detail{
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 25px;
}

.top-doctor .c-button{
background-color:#a8d0b4;
}

@media screen and (max-width:1300px) {
  .top-doctor-content__picture::before {
    left: 7vw;
}
}


@media screen and (max-width:1000px) {
.top-doctor-content {
      flex-direction: column;
      padding: 0 20px;
      gap: 25px;
}

.top-doctor h2{
    font-size: 60px;
    right: auto;
    -webkit-text-stroke: 1px #a89865;
}

.top-doctor-content__picture {
    margin-left: 0;
    width: 100%;
    max-width: 700px;
}

.top-doctor-content__picture::before {
    max-width: 150px;
    top: initial;
    left: 1vw;
    bottom: -8vw;
    background: url(../img/top/doctor-text-02.png) no-repeat center / contain;
    width: 28vw;
    height: 21vw;
}

.top-doctor-content::after {
  bottom: -20px;
}

.top-doctor-txt {
    position: static;
    left: 8vw;
    width: 90%;
    max-width:auto ;
}

.top-doctor-name__jp {
    font-size: 20px;
    text-align: center;
}

.top-doctor-name__jp span {
    font-size: 16px;
}

.top-doctor .c-button {
    margin: 30px auto 0;
    display: block;
}
}

@media screen and (max-width:750px) {
.top-doctor h2 {
   font-size: 60px;
   top: -65px;
    -webkit-text-stroke: 1px #a89865;
  }

.top-doctor-content {
      padding: 0 10px;
}

.top-doctor-txt {
    width: 100%;
}
}

/* =======================================
   footer
======================================= */
footer{
  padding-top: 100px;
  border-top: solid 5px #a89865;	
}

footer .c-inner.flex-box{
    justify-content: center;
    align-items: center;
    gap: 5vw;
    margin-bottom: 120px;
}

footer .button-area{
    margin-top: 4vw;
    gap: 1.5vw;
    justify-content: center;
	font-family: "Shippori Mincho", serif;
}

footer .address-area{
  position:relative;
    line-height: 1.3;
}

footer .address-area::before{
    position: absolute;
    content: "";
    background-image: url(../img/top/icon-map-pin-02.png);
    background-repeat: no-repeat;
    width: 82px;
    height: 82px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

footer .gmap-wrapper{
  margin-top: 25px;
}
  
footer .table-area,
footer .map-area{
  flex: 1;
  min-width: 0;
}

footer .map-area iframe{
  width: 100%;
  vertical-align: bottom;
}

.nav-button.tel{
  background-color: #a1905a;
}

.nav-button.tel .font-top{
  font-size: 16px;
}

footer .copy-area{
  height: 75px;
  line-height: 75px;
  text-align: center;
  background-color: #f3f0ed;
}

@media screen and (max-width:1200px) {
  footer .c-inner.flex-box{
    flex-direction: column;
    margin-bottom: 0;
}

footer .button-area {
    margin-top: 10px;
    gap: 1.5vw;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
}

footer .table-area{
    width: 100%;
    max-width: 700px;
}

footer .map-area .address-area{
  display: inline-block;
  text-align: left;
}

footer .address-area::before{
    right: -12vw;
    transform: translateY(-40%) scale(0.8);
}

footer .map-area {
  text-align: center;
}

  footer .gmap-wrapper{
    position: relative;
    width: 100vw;
  }

  footer .copy-area {
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #f3f0ed;
}
}

@media screen and (max-width: 750px) {
footer{
      padding-top: 60px;
}

footer .address-area::before {
    right: -20vw;
    transform: translateY(-40%) scale(0.7);
}

  footer .copy-area {
    height: 50px;
    line-height: 50px;
	 margin-bottom: 70px;  
}
}

/* =======================================
   footer-追従ナビ
======================================= */
.floating-button-area{
	display:none;
}
@media screen and (max-width: 1200px) {
.floating-button-area{
	display:block;
    font-family: "Shippori Mincho", serif;	
}	
.c-floatbnr {
    position: fixed;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 0;
    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;
}

.floating.nav-button {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 280px;
    text-align: center;
    background-color: #8c9c91;
    padding: 10px 0 10px 25px;
}
.floating.nav-button.reserve:before {
    position: absolute;
    content: "";
    background-image: url(../img/top/icon-calendar.svg);
    background-repeat: no-repeat;
    width: 25px;
    height: 30px;
    top: 40px;
    left: 60px;
}
.floating.nav-button .font-top {
    font-size: 18px;
    color: #fff;
    margin-bottom: -15px;
}	
.floating.nav-button.reserve span::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
	width: 15px;
    height: 15px;
    border: 1px solid #fff;
    border-top: none;
    border-left: none;
    transition: transform .3s ease;
}	
.floating.nav-button .font-bottom {
    font-size: 28px;
    color: #fff;
}	
.floating.nav-button.tel {
    background-color: #a1905a;
}		
.floating.nav-button.tel:before {
    position: absolute;
    content: "";
    background-image: url(../img/top/icon-tel.svg);
    background-repeat: no-repeat;
    width: 23px;
    height: 28px;
    top: 39px;
    left: 38px;
}	
.floating.nav-button.tel .font-top {
    font-size: 16px;
}	
}	
	
@media screen and (max-width: 750px) {
    .floating-button-area {
        display: block;
        width: 100%;
    }	
    .c-floatbnr.active {
        width: 100%;
    }	
    .floating.nav-button .font-bottom {
        font-size: 20px;
    }	
    .floating.nav-button {
        width: 100%;
    }
    .floating.nav-button .font-top {
        font-size: 15px;
		margin-bottom: -8px;
    }
.floating.nav-button.tel .font-top {
        font-size: 13px;
    }	
    .floating.nav-button.reserve:before {
		width: 20px;
        height: 20px;
        top: 38px;
        left: unset;
        right: 50%;
        transform: translateX(-50%) translateX(-135%);
    }	
 .floating.nav-button.tel:before {
        width: 18px;
        height: 28px;
        top: 38px;
        left: unset;
        right: 50%;
        transform: translateX(-50%) translateX(-230%);
    }	
}	
	
	
	
	