/******************************************************************
 * ヘッダー
******************************************************************/
.header-nav-logo {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 3.90625vw;
  z-index: 1;
}
.header-nav-logo img {
  width: 18.0729166667vw;
}

.header-globalmenu {
  position: fixed;
  top: 21px;
  right: 30px;
  display: flex;
  gap: 9px;
  z-index: 9999;
  transition: all 0.5s ease;
}

.header-globalmenu-tel a {
  display: inline-block;
  width: 293px;
  height: 105px;
  background: #effaff;
  border: 5px solid #42b1de;
  border-radius: 22px;
  padding: 10px 35px;
}
.header-globalmenu-tel a:hover {
  transition: opacity 0.2s ease;
}
.header-globalmenu-tel a:hover:hover {
  opacity: 0.6;
}
.header-globalmenu-tel__ttl {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
  background: linear-gradient(to right, #fcc800 7px, transparent 7px) left bottom/12px 2px repeat-x;
  text-align: center;
}
.header-globalmenu-tel__tel {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #42b1de;
  margin-top: 6px;
  padding-left: 20px;
  text-align: center;
  transition: all 0.2s;
}
.header-globalmenu-tel__tel::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 11px;
  width: 16px;
  height: 21px;
  background: url(../img/icon-tel.png) center/cover no-repeat;
  transition: all 0.2s;
}

.header-globalmenu-reserve a {
  width: 293px;
  height: 105px;
  background: #fff2f2;
  border: 5px solid #f14e56;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-globalmenu-reserve a:hover {
  transition: opacity 0.2s ease;
}
.header-globalmenu-reserve a:hover:hover {
  opacity: 0.6;
}
.header-globalmenu-reserve__ttl {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  padding-left: 45px;
  transition: all 0.2s;
}
.header-globalmenu-reserve__ttl::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 3px;
  left: -8px;
  width: 43px;
  height: 42px;
  background: url(../img/icon-time.png) center/cover no-repeat;
}

/* Hamburger
-----------------------------------------------------------------*/
.navToggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 105px;
  cursor: pointer;
  text-align: center;
  z-index: 1002;
}
.navToggle:hover .navToggle__txt {
  color: #fff;
}
.navToggle span {
  position: absolute;
  width: 58px;
  height: 2px;
  background: #fff;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.navToggle span:nth-child(1) {
  top: 27px;
}
.navToggle span:nth-child(2) {
  bottom: 27px;
}
.navToggle__txt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  transition: all 0.2s;
}
.navToggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-35deg);
}
.navToggle.active span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}
.navToggle.active .navToggle__txt {
  display: none;
}

.globalMenu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translateX(100%);
  width: 800px;
  height: 100%;
  line-height: 1.45;
  padding: 50px;
  transition: all 0.6s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  color: #fff;	
 background: #000000;
  z-index: 1001;
}
.globalMenu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.globalMenu.open .menu-wrap .menu-list {
  animation-name: fadein;
  animation-duration: 1s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.globalMenu .menu-wrap {
  display: flex;
  justify-content: center;
}
.globalMenu .menu-wrap .menu-list {
  margin-top: 100px;
  width: 100%;
}
.globalMenu .menu-wrap .menu-list li a {
  position: relative;
  display: block;
  font: 500 16px/1.875 "Zen Kaku Gothic New", serif;
  letter-spacing: 0.13em;
  border-bottom: 1px solid #2c3338;
  padding: 13px 50px 7px 23px;
  transition: all 0.2s;
}
.globalMenu .menu-wrap .menu-list li a::after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  width: 25px;
  height: 20px;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all 0.2s;
}
.globalMenu .menu-wrap .menu-list li a.active {
  border-bottom: none;
}
.globalMenu .menu-wrap .menu-list li a:hover {
  color: #d5d5d4;
}
.globalMenu .menu-wrap .menu-list li .menu-child {
  display: none;
  padding-top: 3px;
  border-bottom: 1px solid #2c3338;
}
.globalMenu .menu-wrap .menu-list li .menu-child li a {
  font-size: 14px;
  line-height: 1.4285714286;
  border-bottom: none;
  background: #32373c;
  border-radius: 17.5px;
  padding: 10.5px 41px;
  margin-bottom: 8px;
}
.globalMenu .menu-wrap .menu-list li.accord > a::after {
  background: #fff;
}
.globalMenu .menu-wrap .menu-list li.accord > a.active::after {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}



@media screen and (max-width: 959px){
  .header-nav-logo {
    margin-left: 5.6vw;
	margin-top: 10px;  
  }
  .header-nav-logo img {
    width:200px;
  }
  .header-globalmenu {
    top: 9px;
    right: 10px;
  }
  .header-globalmenu-tel {
    display: none;
  }
  .header-globalmenu-reserve {
    display: none;
  }
  .navToggle {
    width: 11.2vw;
    height: 11.2vw;
    border-width: 0.5333333333vw;
  }
  .navToggle span {
    width: 6.4vw;
    height: 0.5333333333vw;
  }
  .navToggle span:nth-child(1) {
    top: 2.9333333333vw;
  }
  .navToggle span:nth-child(2) {
    bottom: 2.9333333333vw;
  }
  .navToggle__txt {
    font-size: 1.8666666667vw;
  }
  .globalMenu {
    width: 80%;
    padding: 13.3333333333vw 3vw;
  }
  .globalMenu .menu-wrap .menu-list {
    margin-top: 0;
  }
  .globalMenu .menu-wrap .menu-list li a {
    font-size: 13px;
    line-height: 1.8571428571;
    padding: 7px 30px 8px 20px;
  }
  .globalMenu .menu-wrap .menu-list li a::after {
    width: 18px;
    height: 14px;
    right: 7px;
  }
  .globalMenu .menu-wrap .menu-list li .menu-child li a {
    font-size: 12px;
    line-height: 1.5;
    border-radius: 10px;
    padding: 8px 20px;
  }
}


/*------------------------------------------------メインビジュアル------------------------------------------------*/
.main {
    display: block;
}
.top-mv {
    position: relative;
    width: 100%;
    height: 50vw;
	background: url("../img/mv.jpg") center / cover no-repeat;
}

@media screen and (max-width: 959px) {
    .top-mv {
		height: 140vw;
        background-image: url(../img/mv-sp.jpg);
    }
}


/*------------------------------------------------フッター------------------------------------------------*/
.footer__map {
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  background: linear-gradient(to right, #fcc800 224px, #006b6a 224px, #006b6a 448px, #42b1de 448px, #42b1de 672px) left bottom/672px 30px repeat-x;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
}
.footer__inner {
  width: 100%;
  max-width: 1640px;
  margin-inline: auto;
  padding: 0 20px;
}
.footer__main {
  padding: 66px 0 87px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 46px;
}
.footer__info {
  flex: 0 0 56.54%;
  max-width: 900px;
}
.footer__logo {
  display: block;
  max-width: 288px;
  padding: 0 24px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: #524d4d;
  text-align: center;
}
.footer__logo img {
  margin-bottom: 15px;
}
.footer__address {
  display: inline-flex;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  font-size: 24px;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
.footer__address-map {
  flex: 0 0 90px;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #333;
  border-radius: 50%;
  background: #eeebde;
  box-shadow: 0 3px 7px rgba(65, 65, 65, 0.26);
  transition: all ease 0.4s;
}
.footer__address-map:hover {
  box-shadow: 0 0 0 rgba(65, 65, 65, 0.26);
  transform: translateY(7px);
}
.footer__contact {
  display: flex;
  grid-column: 1/3;
}

.footer__copyright {
  padding: 10px 0;
  background-color: #aa974a;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}


@media screen and (min-width: 960px){
  .footer__map {
    aspect-ratio: 1912/449;
  }
  .footer__main {
    padding-right: 8px;
  }
  .footer__info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 71px 4.4791666667%;
  }
  .footer__address address {
    margin: auto 0;
    padding-bottom: 14px;
  }
  .footer__address-map {
    margin: auto;
  }
.footer__copyright {
  font-size: 13px;
}	
}

@media screen and (max-width: 1500px){
  .footer__info {
    flex: 0 0 100%;
  }
}


@media screen and (max-width: 959px){
  .footer__map {
    height: 300px;
    padding-bottom: 15px;
    background: linear-gradient(to right, #fcc800 114px, #006b6a 114px, #006b6a 224px, #42b1de 224px, #42b1de 336px) left bottom/336px 15px repeat-x;
  }
  .footer__main {
    padding: 40px 0;
  }
  .footer__info {
    width: 100%;
  }
  .footer__logo {
    margin-inline: auto;
    font-size: 16px;
    text-align: center;
  }
  .footer__address {
    width: 100%;
    -moz-column-gap: 15px;
         column-gap: 15px;
    justify-content: center;
    margin-top: 15px;
    font-size: 16px;
  }
  .footer__address-map {
    flex: 0 0 70px;
    font-size: 16px;
  }
  .footer__contact {
    justify-content: center;
    margin-top: 15px;
  }
  .footer__copyright {
    font-size: 12px;
  }
}

@media screen and (max-width: 750px){
  .footer__main {
    flex-wrap: wrap;
  }
}


/*------------------------------------------------フッター診療時間表------------------------------------------------*/
.footer__time {
  flex: 0 0 37.94%;
}
.footer__time .c-reception-time {
  margin-inline: auto;
}
.c-reception-time {
  width: 100%;
  max-width: 604px;
}
.c-reception-time__table {
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(auto, 213px) repeat(7, 1fr);
  border: 2px solid #999;
  overflow: hidden;
}
.c-reception-time__table dt, .c-reception-time__table dd {
  min-width: 55.5px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  border-style: solid;
  border-color: #999;
}
.c-reception-time__table dt:not(:nth-child(8n)), .c-reception-time__table dd:not(:nth-child(8n)) {
  border-right-width: 2px;
}
.c-reception-time__table dt:not(:last-child), .c-reception-time__table dd:not(:last-child) {
  border-bottom-width: 2px;
}
.c-reception-time__table dt:last-child, .c-reception-time__table dd:last-child {
  padding: 8px 0.5em 14px;
  border-right-width: 0;
}
.c-reception-time__table dt {
  padding: 6.5px 0.5em;
  background: #fcc800;
}
.c-reception-time__table dd {
  padding: 22px 0.5em;
  background: #fff;
}
.c-reception-time__table dd:has(.note) {
  grid-column: 1/9;
}
.c-reception-time__table .note {
  display: flex;
  align-items: baseline;
  margin-left: 33px;
  padding-left: 37px;
  text-align: left;
  position: relative;
}
.c-reception-time__table .note::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 27px;
  background: url(../img/red-star.png) center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.c-reception-time__table .star {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 27px;
  display: inline-block;
  background: url(../img/star.png) center/cover no-repeat;
}
.c-reception-time__table .red-star {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 27px;
  display: inline-block;
  background: url(../img/red-star.png) center/cover no-repeat;
}
.c-reception-time__list {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 7px 0.6em;
  align-items: flex-start;
  margin: 14px 8px 0;
  font-size: 18px;
  line-height: 1.5;
}
.c-reception-time__list dt span {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcc800;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
}

@media screen and (max-width: 1500px){
  .footer__time {
    flex: 0 0 100%;
  }
}


@media screen and (min-width: 960px){
  .c-contact-tel__txt {
    padding-top: 6px;
  }
  .c-contact-tel .tel {
    margin-top: 12px;
    padding-top: 17px;
  }
  .c-contact-web__txt {
    padding-right: 13px;
  }
}

@media screen and (max-width: 959px){
  .footer__time {
    padding-top: 37px;
  }	
  .c-top-ttl {
    width: 355px;
    height: 70px;
  }
  .c-top-ttl__wrap {
    font-size: 18px;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
    padding-left: 0;
  }
  .c-top-ttl__wrap::before, .c-top-ttl__wrap::after {
    height: 8px;
  }
  .c-top-ttl .small {
    font-size: 14px;
  }
  .c-reception-time__table {
    border-radius: 15px;
    border-width: 1px;
  }
  .c-reception-time__table dt, .c-reception-time__table dd {
    min-width: 30px;
    padding: 8px 0.5em 6px;
    font-size: 14px;
  }
  .c-reception-time__table dt:not(:nth-child(8n)), .c-reception-time__table dd:not(:nth-child(8n)) {
    border-right-width: 1px;
  }
  .c-reception-time__table dt:not(:last-child), .c-reception-time__table dd:not(:last-child) {
    border-bottom-width: 1px;
  }
  .c-reception-time__table dt:last-child, .c-reception-time__table dd:last-child {
    border-right-width: 0;
  }
  .c-reception-time__table .note {
    display: flex;
    align-items: baseline;
    margin-left: 18px;
    padding-left: 24px;
  }
  .c-reception-time__table .note::before {
    max-width: 18px;
  }
  .c-reception-time__table .star,
  .c-reception-time__table .red-star {
    max-width: 18px;
  }
  .c-reception-time__list {
    display: grid;
    grid-template-columns: 5em 1fr;
    gap: 9px 0.5em;
    margin-top: 7px;
    font-size: 14px;
  }
  .c-reception-time__list dt {
    background: #fcc800;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
  }
}

@media screen and (max-width: 750px){
  .c-contact__btn {
    border-radius: 10px;
  }
}




/*------------------------------------------------フッター電話・予約ボタン------------------------------------------------*/
.c-contact {
  display: flex;
  gap: 13px;
}
.c-contact__btn {
  aspect-ratio: 442/154;
  width: 100%;
  max-width: 442px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 24px;
  font-weight: 500;
  color: #fff;
  border-radius: 20px;
  position: relative;
  transition: all ease 0.4s;
}

.c-contact-tel {
  background-image: url(../img/c-contact-tel.png);
}
.c-contact-tel:hover {
  transition: opacity 0.2s ease;
}
.c-contact-tel:hover:hover {
  opacity: 0.6;
}
.c-contact-tel__txt {
  width: 100%;
  display: block;
  text-align: center;
}
.c-contact-tel .txt {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.c-contact-tel .tel {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  padding-top: 9px;
  font-size: 37px;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}
.c-contact-tel .tel::before {
  content: "";
  aspect-ratio: 25/32;
  width: 100%;
  max-width: 25px;
  display: block;
  background: #fff;
  -webkit-mask: url(../img/icon-tel.svg) center/cover no-repeat;
          mask: url(../img/icon-tel.svg) center/cover no-repeat;
  transition: all ease 0.4s;
}
.c-contact-tel .tel::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 338px;
  background-size: 12px 2px;
  background-image: linear-gradient(to right, #fcc800 8px, rgba(0, 0, 0, 0) 8px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-contact-web {
  background-image: url(../img/c-contact-web.png);
}
.c-contact-web:hover {
  transition: opacity 0.2s ease;
}
.c-contact-web:hover:hover {
  opacity: 0.6;
}
.c-contact-web__txt {
  width: 100%;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
  justify-content: center;
  font-size: 37px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.c-contact-web__txt::before {
  content: "";
  aspect-ratio: 157/150;
  width: 100%;
  max-width: 65px;
  background: #fff;
  -webkit-mask: url(../img/icon-time.svg) center/cover no-repeat;
          mask: url(../img/icon-time.svg) center/cover no-repeat;
  transition: all ease 0.4s;
}

@media screen and (max-width: 959px){
.c-contact {
    flex-wrap: wrap;
  }
  .c-contact-tel .txt {
    font-size: 18px;
  }
  .c-contact-tel .tel {
    -moz-column-gap: 9px;
         column-gap: 9px;
    font-size: 28px;
  }
  .c-contact-tel .tel::before {
    width: 18px;
  }
  .c-contact-web__txt {
    -moz-column-gap: 7px;
         column-gap: 7px;
    font-size: 24px;
  }
  .c-contact-web__txt::before {
    max-width: 44px;
  }
 }



/*------------------------------------------------フローティング------------------------------------------------*/
.c-floatbnr {
  width: 100%;
  visibility: hidden;
  position: fixed;
  left: 10px;
  bottom: 10px;
  opacity: 0;
  z-index: 1000;
  transition: all 1s;
}
.c-floatbnr:has(.c-pagetop.active) {
  opacity: 1;
  visibility: visible;
}
.c-floatbnr__content {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.c-floatbnr .c-floatbnr-tel {
  width: 145px;
}
.c-floatbnr .c-floatbnr-tel a {
  display: inline-block;
  width: 100%;
  max-width: 145px;
  height: 100%;
  background: #effaff;
  border: 2px solid #42b1de;
  border-radius: 10px;
  padding: 5px;
}
.c-floatbnr .c-floatbnr-tel a:hover {
  transition: opacity 0.2s ease;
}
.c-floatbnr .c-floatbnr-tel a:hover:hover {
  opacity: 0.6;
}
.c-floatbnr .c-floatbnr-tel__ttl {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding-bottom: 3px;
  background: linear-gradient(to right, #fcc800 7px, transparent 7px) left bottom/12px 2px repeat-x;
  text-align: center;
}
.c-floatbnr .c-floatbnr-tel__tel {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #42b1de;
  margin-top: 3px;
  padding-left: 15px;
  text-align: center;
  transition: all 0.2s;
}
.c-floatbnr .c-floatbnr-tel__tel::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  aspect-ratio: 16/21;
  width: 100%;
  max-width: 10px;
  height: auto;
  background: url(../img/icon-tel.png) center/cover no-repeat;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.c-floatbnr .c-floatbnr-reserve {
  width: 145px;
}
.c-floatbnr .c-floatbnr-reserve a {
  width: 100%;
  max-width: 145px;
  height: 100%;
  background: #fff2f2;
  padding: 5px 15px;
  border: 2px solid #f14e56;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-floatbnr .c-floatbnr-reserve a:hover {
  transition: opacity 0.2s ease;
}
.c-floatbnr .c-floatbnr-reserve a:hover:hover {
  opacity: 0.6;
}
.c-floatbnr .c-floatbnr-reserve__ttl {
  padding-left: 25px;
  position: relative;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.c-floatbnr .c-floatbnr-reserve__ttl::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  left: 0;
  aspect-ratio: 42/41;
  width: 100%;
  max-width: 20px;
  height: auto;
  background: url(../img/icon-time.png) center/cover no-repeat;
  transform: translateY(-50%);
}


/*------------------------------------------------ c-pagetop-------------------------------------------------*/
.c-pagetop {
  position: fixed;
  right: 60px;
  bottom: 10px;
  width: 80px;
  height: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  z-index: 1000;
}
.c-pagetop.active {
  opacity: 1;
  visibility: visible;
}
.c-pagetop a {
  transition: opacity 0.2s ease;
}
.c-pagetop a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 959px){
  .c-pagetop {
    right: 10px;
    width: 50px;
    height: 50px;
  }
}
/*---------------------------------------------------------------------------------------------*/
