@charset "utf-8";

/* ===============================================
  main visual
=============================================== */

.mv-area {
  position: relative;
}

.mv {
  width: 100%;
  position: fixed;
  z-index: -1;
}

.mv .splide__slide .photo {
  transition: 12s var(--cubic-bezier);
  transform: scale(1.1);
}

.mv .splide__slide[class*=-active] .photo {
  transition-delay: 0s;
  transform: scale(1);
}

.mv .splide__slide .photo img {
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  transition: filter 2s var(--cubic-bezier);
}

@media screen and (min-width:821px) {
  .mv .splide__slide .photo .pc-img {
    display: inherit;
  }

  .mv .splide__slide .photo .sp-img {
    display: none;
  }
}

@media screen and (max-width:820px) {
  .mv .splide__slide .photo .pc-img {
    display: none;
  }

  .mv .splide__slide .photo .sp-img {
    display: inherit;
  }
}

.mv:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: background 1.5s var(--cubic-bezier);
}

.mv-area.is-scroll .mv:after {
  background-color: rgba(42, 48, 66, 0.8);
}

.mv-area.is-scroll .mv .splide__slide .photo img {
  filter: blur(30px);
}

/*--------------------------------------------------------------------------------
  catch
--------------------------------------------------------------------------------*/
.mv-catch {
  width: 100%;
  min-height: 100vh;
  padding-top: 330px;
  padding-left: var(--block-space-max);
  padding-right: var(--block-space-max);
  box-sizing: border-box;
  color: #FFF;
  text-align: center;
  letter-spacing: 1pt;
  position: relative;
}

.mv-catch p {
  font-size: clamp(16px, 2.9vw, 30px);
  font-family: var(--ff-en);
  font-weight: 300;
  margin-top: 25px;
}

.mv-catch .open {
  display: inline-block;
  padding: .25em 1em;
  margin-top: .5em;
  background-color: #fff;
  color: var(--cl_main);
  line-height: 1;
}

@media print, screen and (max-width:900px) {
  .mv-catch {
    padding-left: var(--block-space-m);
    padding-right: var(--block-space-m);
  }
}

.mv-area.is-scroll .mv-catch .catch,
.mv-area.is-scroll .mv-catch .open {
  transition: opacity 1s var(--cubic-bezier);
  opacity: 0;
}

.catch {
  font-size: clamp(22px, 3.5vw, 38px);
}

.catch span {
  display: inline-block;
}

.mv-catch-body {
  width: 100%;
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv-catch-body p span {
  display: inline-block;
}

/*----------------------------------------------------------------------------------------------------

  お知らせ
  
----------------------------------------------------------------------------------------------------*/
.sec-info {
  padding-top: var(--block-space-max);
  position: relative;
  padding-bottom: var(--block-space-max);
}

.sec-info::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 660px;
  background-color: rgba(var(--color-blue01), 1);
  left: 0;
  bottom: 0px;
  z-index: -2;
}
.info {
  position: relative;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  /* box-shadow: var(--box-shadow); */
  text-align: left;
  line-height: var(--line-height-m);

}



.info::before {
  position: absolute;
  max-width: var(--base-width);
  width: 100%;
  height: 100%;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, rgba(var(--color-blue01), 1), rgba(var(--color-blue01), 1), 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 5px);
  background-image: repeating-linear-gradient(-45deg, rgba(var(--color-blue01), 1), rgba(var(--color-blue01), 1), 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 5px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  bottom: -5%;
}

.info::after {
  position: absolute;
  max-width: var(--base-width);
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(var(--color-yellow01), 1);
  z-index: -2;
  bottom: -5%;
}

.info-hdLine {
  text-align: center;
}

.info-hdLine span.main-ttl {
  border-bottom: 2px dashed rgba(var(--color-yellow02), 0.4);
  color: rgba(var(--color-8), 1);
  font-weight: 500;
  font-size: var(--fs-3l);
}

.info-hdLine span.sub-ttl {
  display: block;
  font-size: var(--fs-2s);
  color: rgba(var(--color-yellow02), 1);
}

.info-list {
  -webkit-overflow-scrolling: touch;
  list-style: none;
}

.info-list li .date {
  color: rgba(var(--color-5), 1);
  font-size: var(--fs-s);
  padding-top: 0.1em;
}

.info-list li .ttl {
  display: block;
  font-weight: 500;
}

.info-btn {
  text-align: center;
}

.info-list a,
.info-list a:visited,
.info-list a:hover {
  color: inherit;
  text-decoration: none;
}

.ua-pc .info-list a:hover,
.ua-pc .info-list .js__linkBox:hover a {
  color: var(--fc-link);
  text-decoration: underline;
}

@media print, screen and (min-width:641px) {
  .sec-info {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }

  .info {
    /* width: 99%;
    height: 99%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: var(--box-space-l) 0;
    position: relative;
    border-radius: 10px;
  }

  .info::before,
  .info::after {
    left: 1%;
    border-radius: 10px;
  }


  .info-hd {
    text-align: center;
    width: 30%;
    max-width: 340px;
    -ms-flex-item-align: center;
    align-self: center;
    padding-bottom: 4em;
  }

  .info-list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: var(--box-space-l);
    height: 160px;
  }

  .info-list li:not(:first-child) {
    padding-top: 0.75em;
  }

  .info-list li {
    display: flex;
  }

  .info-list li>div {
    width: calc(100% - 9em);
  }

  .info-btn {
    width: 30%;
    max-width: 340px;
    position: absolute;
    left: 0;
    bottom: 2.5em;
    padding: 0 var(--box-space-l);
  }

  .info-btn .p-btn {
    width: 90%;
    max-width: 220px;
  }
}

@media print, screen and (min-width:401px) {
  .info-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .info-list li .date {
    width: 9em;
  }

  .info-list li .ttl {
    width: -webkit-calc(100% - 9em);
    width: calc(100% - 9em);
  }
}

@media screen and (max-width:640px) {
  .sec-info {
    overflow-x: hidden;
  }

  .info {
    padding: var(--block-space-max) var(--side-space);
  }

  .info::before,
  .info::after {
    left: 0%;
  }

  .info-hd {
    text-align: center;
    margin-bottom: var(--block-space-unit);
  }

  .info-list {
    padding-top: 1.5em;
    padding-bottom: 1em;
    height: 200px;
  }

  .info-list li:not(:first-child) {
    padding-top: 1em;
  }

  .info-btn {
    padding-top: 1.5em;
  }

  .info-btn .p-btn {
    width: 60%;
    max-width: 240px;
  }
}


/* ===============================================
訪問治療とは
=============================================== */

#sec-point {
  background-color: #f3f3f3;
  padding: 100px 0;
}

#sec-about .l_box_lay {
  margin: 0 auto;
}

#sec-about .section_des {
  text-align: left;
  margin-bottom: 50px;
}

/* ===============================================
ハッピーデンタルのポイント
=============================================== */

#sec-point {
  background-color: #f3f3f3;
  padding: 100px 0;
}

#sec-point .l_box_lay {
  margin: 0 auto;
}

#sec-point .section_ttl{
  margin-bottom: var(--block-space-2s);
}

#sec-point .section_des {
  text-align: left;
  margin-bottom: 50px;
}

/* カードレイアウト */

.card_container ul {
  width: min(90%, 1200px);
  margin: 0 auto;
  gap: 1%;
  display: flex;
  justify-content: space-between;
}

.card_item {
  width: 100%;
  height: 335px;
  background-color: var(--cl_main);
  color: var(--cl_wh);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.card_item img {
  width: 100%;
  height: 240px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card_item p {
  margin-top: 45px;
}

@media screen and (max-width: 700px) {
  .card_item p {
    margin-top: 30px;
  }

}

.card_item span {
  font-size: 14px;
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 240px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle span{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--cl_main);
  font-size: var(--fs-3l);

/*   
  position: absolute;
  top: 145px;
  left: 50%;
  transform: translate(-50%, -50%); */
}

@media screen and (max-width: 500px) {
  .circle {
    width: 55px;
    height: 55px;
  }

}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1000px) {
  .card_container ul {
    flex-wrap: wrap;
    justify-content: space-evenly;

  }

  .card_item {
    width: 200px;
    margin-bottom: 5%;
  }
}


@media screen and (max-width: 500px) {
  .card_container ul {
    flex-wrap: wrap;
    justify-content: space-evenly;

  }

  .card_item {
    width: 190px;
    margin-bottom: 5%;
  }
}

@media screen and (max-width: 440px) {
  .card_container ul {
    flex-wrap: wrap;
    /* gap: 2%; */
    gap: 6%;
  }

  .card_item {
    /* width: 48%; */
    width: 94%;
    /* height: 215px; */
    margin-bottom: 5%;
  }

  .card_item p {
    margin-top: 33px;
    font-size: var(--fs-m);
  }
}





/* ===============================================
  施設紹介
=============================================== */

#sec-facility {
  background-color: #fff;
  padding: var(--block-space-2l) 0 var(--block-space-max) 0;
}

#sec-facility .section_ttl {
  margin-bottom: var(--block-space-2s);
}

.facility-hd {
  margin-bottom: var(--block-space-2s);
  line-height: 1;
  text-align: center;
}

.pink_ball {
  display: inline-block;
  width: .75em;
  height: .75em;
  background-color: var(--cl_main);
  border-radius: 50%;
}

.doctor-info {
  width: 100%;
  min-height: 1077px;
  padding: 0 var(--side-space);
  box-sizing: border-box;
  position: relative;
}

.doctor-info.doctor02 {
  margin-top: var(--block-space-2s);
}

.doctor-info .doctor-bg {
  background-image: url("../image/top/facility-doctor-bg1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 40%;
  max-width: 792px;
  height: 990px;
}

.doctor-info.doctor01 .doctor-bg {
  background-position: center;
  position: absolute;
  top: 88px;
  left: 0;
  z-index: 1;
}

.doctor-info.doctor02 .doctor-bg {
  background-position: center;
  position: absolute;
  top: 88px;
  right: 0;
  z-index: 1;
}

.doctor-inner {
  position: relative;
  z-index: 2;
  max-width: var(--base-width);
  margin: 0 auto;
  text-align: left;
}

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

.greeting-wrap .photo {
  width: 365px;
}

.greeting-wrap .photo img {
  border-radius: 10px;
  overflow: hidden;
}

.doctor02 .greeting-wrap .photo {
  order: 2;
}

.greeting-wrap .greeting {
  width: calc(100% - 500px);
  margin-top: 1em;
}

.greeting-wrap .greeting h3 {
  display: flex;
  align-items: center;
  color: var(--cl_main);
}

.greeting-wrap .greeting h3::before {
  content: "";
  display: inline-block;
  width: 54px;
  height: 1px;
  background-color: var(--cl_main);
  margin-right: 1em;
}

.greeting-wrap .greeting .name {
  border-left: 5px solid var(--cl_main);
  padding-left: 1em;
  margin-top: var(--box-space-m);
  box-sizing: border-box;
  line-height: 1;
}

.greeting-wrap .greeting .name .positon {}

.greeting-wrap .greeting .name h4 {
  margin-top: .5em;
}

.greeting-wrap .greeting .name h4 .ff-en {
  margin-left: 1em;
  color: var(--cl_main);
}

.greeting-wrap .greeting .greeting-msg p {
  margin-top: 1em;
  line-height: var(--line-height-s);
  letter-spacing: 0.5pt;
}

@media screen and (max-width:1150px) {
  .greeting-wrap .photo {
    width: calc(38% - 30px);
  }

  .greeting-wrap .greeting {
    width: calc(62% - 30px);
  }
}

@media screen and (max-width:800px) {
  .greeting-wrap .photo {
    margin-top: 20%;
  }
}

@media screen and (max-width:600px) {
  .doctor-info .doctor-bg {
    width: 100%;
    height: 400px;
  }

  .greeting-wrap {
    flex-wrap: wrap;
  }

  .greeting-wrap .photo {
    width: 365px;
    margin-left: auto;
    margin-right: auto;
  }

  .doctor02 .greeting-wrap .photo {
    order: 1;
  }

  .greeting-wrap .greeting {
    width: 100%;
    margin-top: var(--block-space-3s)
  }

  .doctor02 .greeting-wrap .greeting {
    order: 2;
  }
}

.career {
  padding: var(--block-space-3s) var(--block-space-m);
  margin-top: var(--block-space-s);
  background-color: #fff;
  border: 2px solid var(--cl_main);
  border-radius: 20px;
  box-sizing: border-box;
}

.career h4 {
  padding-left: .5em;
  border-left: 3px solid var(--cl_main);
  box-sizing: border-box;
  line-height: 1;
}

.career .career-list-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: var(--box-space-min);
}

.career .career-list-box {
  width: calc(50% - 48px);
}

.career .career-list-box dl {
  display: flex;
  padding: 1em 0;
  line-height: var(--line-height-s);
  border-bottom: 2px solid #e1e1e1;
}

.career .career-list-box dt {
  width: 9em;
  color: var(--cl_main);
}

.career .career-list-box dd {
  width: 100%;
}

@media screen and (max-width:1150px) {
  .career .career-list-wrap {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .career .career-list-box {
    width: 100%;
  }
}

/* ===============================================
訪問治療の流れ
=============================================== */

.sec-guide-wrap {
  overflow: hidden;
}


#flow {
  background-color: var(--cl_gr);
  padding: 90px 0;

}

#flow .flow_wrap {
  margin: 80px 0;
  width: min(90%, 1200px);
  margin: 80px auto;
}


#flow .flow_wrap ul {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

#flow .flow_wrap ul li {
  width: 16%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--cl_main);
  background-color: #fff;
  border-radius: 15px;
  position: relative;
}

#flow .flow_wrap ul::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--cl_bl);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
}

#flow .flow_wrap span {
  display: inline-block;
  color: #fff;
  background-color: var(--cl_main);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: -15px;
}

@media screen and (max-width: 850px) {

  .nowrap {
    display: none;
  }

  #flow .flow_wrap {
    margin: 50px auto;
  }

  #flow .flow_wrap ul {
    flex-direction: column;
  }

  #flow .flow_wrap ul li {
    width: 95%;
    margin: 0 auto;
    height: 60px;
    margin-bottom: 20px;
  }

  #flow .flow_wrap ul li:last-child {
    margin-bottom: 0;
  }

  #flow .flow_wrap ul::after {
    height: 85%;
    width: 2px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

}

/* ===============================================
よくある質問
=============================================== */


#faq {
  background-color: var(--cl_wh);
  padding: 90px 0;
}

#faq .accordion_area {
  margin: 60px auto;
}

#faq .accordion_area li {
  margin: 10px 0;
  border: 2px solid var(--cl_main);
  border-radius: 10px;
}

#faq .accordion_area .box span:nth-last-of-type(1) {
  color: #e86a2f;
}

#faq .title {
  color: var(--cl_main);
  font-size: 20px;
  position: relative;
  cursor: pointer;
  font-weight: normal;
  padding: 30px 50px 30px 25px;
  transition: all 0.5s ease;
  text-align: left;
}

#faq .title span {
  color: var(--cl_main);
  font-family: var(--ff-en);
  font-weight: 700;
  margin-right: 10px;
}

#faq .title::before, #faq .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--cl_main);
  transition: all 0.3s;
}

#faq .title::before {
  top: 48%;
  right: 30px;
  transform: rotate(0deg);
}

#faq .title::after {
  top: 48%;
  right: 30px;
  transform: rotate(90deg);
}

#faq .title.close::before {
  transform: rotate(45deg);
}

#faq .title.close::after {
  transform: rotate(-45deg);
}

#faq .box {
  display: none;
  margin: -10px 50px 30px 55px;
  text-align: left;
}

#faq .box p {
  text-align: justify;
}

@media screen and (max-width: 500px) {
  #faq .title {
    font-size: 16px;
    padding: 15px 50px 15px 25px;
    line-height: 1.5;
  }

  #faq .box {
    margin: 0px 50px 30px 55px;
  }

  #faq .accordion_area li {
    margin: 0 0 15px 0;
  }
}

/* ===============================================
訪問治療の現場
=============================================== */

#houmon_genba {
  background-color: var(--cl_gr);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

#houmon_genba .l_box_lay {
  width: 100%;
  margin: 0 auto;
}

#houmon_genba .p_more_btn {
  margin-top: 75px;
}

#houmon_genba img {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 450px) {

  #houmon_genba .p_more_btn {
    margin-top: 45px;
  }

}

/* ===============================================
初めてご来院される皆さまへ
=============================================== */

#first_visit {
  background-color: var(--cl_wh);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

#first_visit .l_box_lay {
  width: 100%;
  margin: 0 auto;
}

#first_visit .p_more_btn {
  margin-top: 75px;
}

#first_visit img {
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* @media screen and (max-width: 450px) {

  #first_visit .p_more_btn {
    margin-top: 45px;
  }

} */
/* ===============================================
診療スタイル 
=============================================== */

#treatment_style {
  background-color: var(--cl_gr);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

#treatment_style .l_box_lay {
  width: 100%;
  margin: 0 auto;
}

#treatment_style .p_more_btn {
  margin-top: 75px;
}

#treatment_style img {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

/* @media screen and (max-width: 450px) {

  #treatment_style .p_more_btn {
    margin-top: 45px;
  }

} */

/* ===============================================
アクセス
=============================================== */

#access {
  background-color: var(--cl_wh);
  padding: 90px 0;
}

#access .timetable th, .timetable td {
  padding: .5em .25em;
  font-weight: 400;
  text-align: center;
  color: var(--cl_main);
}

#access .timetable thead th {
  padding: .3em .25em;
}

.guide .clinic-information {
  width: min(90%, 1200px);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: var(--block-space-l);
  margin-bottom: var(--block-space-s);
}

.guide .clinic-information p {
  text-align: left;
}

.guide .clinic-information .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.guide .clinic-information .information {
  width: 36.666%;
}

.guide .clinic-information .clinic-name {
  display: flex;
  align-items: center;
  letter-spacing: 1pt;
}

.guide .clinic-information .clinic-name .green-ball {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: .75em;
  background-color: var(--cl_main);
  margin-right: .5em;
}

.guide .clinic-information .clinic-tel {
  display: block;
  color: var(--cl_main);
  letter-spacing: 1pt;
  margin: .25em 0;
}

.guide .clinic-information address {
  font-style: normal;
  line-height: var(--line-height-s);
  text-align: left;
  margin-top: 10px;
}

.guide .clinic-information .timetable {
  width: 100%;
  margin-top: 1.5em;
}

.guide .clinic-information .timetable thead {
  border-top: 1px solid #999;
}

.guide .clinic-information .timetable tr {
  border-bottom: 1px solid #999;
}

.guide .clinic-information .timetable th,
.guide .clinic-information .timetable td {
  color: var(--cl_main);
  font-weight: 400;
  text-align: center;
}

.guide .clinic-information .timetable .opentime {
  width: 8em;
}

.guide .clinic-information .note {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  line-height: var(--line-height-s);
}

@media screen and (max-width:1200px) {
  .guide .clinic-information {
    flex-direction: column;
  }

  .guide .clinic-information .gmap {
    order: 2;
    width: 100%;
    margin-top: var(--block-space-3s);
  }

  .guide .clinic-information .information {
    order: 1;
    width: 100%;
  }

  .guide .clinic-information .clinic-name {
    margin-bottom: 2%;
  }

}

@media screen and (max-width: 450px) {
  .guide .clinic-information .clinic-name img {
    width: 260px;
  }
}

.map_btn_wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.guide .map_btn1 p {
  text-align: center;
}

@media screen and (max-width: 1350px) {
  .map_btn_wrap {
    flex-direction: column;
  }
}

/* ボタン左 */
.map_btn1 {
  display: inline-block;
  color: var(--cl_main);
  border: 2px solid var(--cl_main);
  letter-spacing: 1pt;
  border-radius: 15px;
  padding: 10px 18px;
}

.map_btn1 h3 {
  font-family: var(--ff-en);
  font-size: 25px;
  color: var(--cl_main);
  font-weight: 400;
}

.map_btn1 h3 span {
  font-size: 17px;
  font-weight: 300;
}

.map_btn1 p {
  text-align: center;
  color: var(--cl_bl);
  margin-top: -5px;
  font-size: 13px;
}

/* ボタン右 */

.map_btn2 {
  background-color: var(--cl_main);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}

.map_btn2 p {
  color: var(--cl_wh);
  font-size: 13px;
}

.map_btn2 img {
  width: 28px;
  height: 30px;
  object-fit: cover;
  object-position: center;
}

/* 右側img */

.information_img {
  margin-bottom: 30px;
}

.information_img img {
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .information_img {
    width: 100%;
    margin-bottom: 0;
  }

  .information_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* 訪問可能範囲 */

.g_map {
  width: min(90%, 1200px);
  height: 450px;
  margin: 0 auto;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  border: 2px solid var(--cl_main);
  box-sizing: border-box;
  overflow: hidden;
}

.g_map iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  overflow: hidden;
}

/* テーブル */

.facility_table {
  width: min(90%, 1200px);
  margin: 0 auto;
}


/* table基本スタイル */
table.tableBorder {
  width: 100%;
  margin-top: 30px;
  font-size: inherit;
  word-break: normal;
  word-wrap: break-word;
  border-collapse: separate;
  border-spacing: 0;
}

table.tableBorder tr th, table.tableBorder tr td {
  width: calc(100%/3);
  border-bottom: 2px solid var(--cl_wh);
  border-right: 2px solid var(--cl_wh);
  padding: 1% 2%;
  word-break: normal;
  min-width: 30px;
  text-align: center;
}

table.tableBorder tr th {
  background-color: #727272;
  color: #fff;
  text-align: center;
}

.tableBorder span {
  font-size: 15px;
}


/* 1行目 */
.tableBorder tr:nth-child(2n+1) td:nth-child(1) {
  background: #ededed;
}

.tableBorder tr:nth-child(2n) td:nth-child(1) {
  background: #008b8b1A;
}

/* 2行目 */
.tableBorder tr:nth-child(2n+1) td:nth-child(2) {
  background: #008b8b1A;
}

.tableBorder tr:nth-child(2n) td:nth-child(2) {
  background: #ededed;
}

/* 3行目 */
.tableBorder tr:nth-child(2n+1) td:nth-child(3) {
  background: #ededed;
}

.tableBorder tr:nth-child(2n) td:nth-child(3) {
  background: #008b8b1A;
}

@media screen and (max-width: 1340px) {
  table.tableBorder tr td {
    width: 100%;
    display: block;
  }
}

/* ===============================================
下部のTELボタン
=============================================== */

.tel_btn {
  display: block;
  width: min(90%, 960px);
  margin: 0 auto;
  background-color: var(--cl_main);
  color: var(--cl_wh);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.tel_btn::before {
  content: "";
  display: inline-block;
  background-color: #ffffff2d;
  width: 500px;
  height: 300px;
  transform: rotate(150deg);
  position: absolute;
  top: -170px;
  left: -195px;
  z-index: 1;
}

.tel_btn:hover {
  opacity: 0.8;
}

.tel_btn_wrap {
  width: 100%;
  background-color: var(--cl_wh);
  padding: 90px 0;
}

.tel_btn .text_box {
  display: flex;
  justify-content: center;
  padding: 60px 5%;
  gap: 40px;
}

.text_box {
  color: var(--cl_wh);
}

.text_box p {
  text-align: left;
  font-size: 20px;
}

.text_box h3 {
  font-family: var(--ff-en);
  font-weight: 400;
  font-size: 42px;
  letter-spacing: 0.1em;
}

.text_box span {
  font-size: 30px;
  font-weight: 300;
}

@media screen and (max-width: 960px) {

  .tel_btn_wrap {
    padding-top: 0;
  }

  .tel_btn .text_box {
    flex-direction: column;
    gap: 5px;
    padding: 25px 5%;
  }

  .text_box h3 {
    font-size: 30px;
    line-height: 1.5;
  }

  .tel_btn .text_box p {
    text-align: center;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.5;
  }


}

@media screen and (max-width: 750px) {

  .tel_btn_wrap.sp {
    position: fixed;
    bottom: 10px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0);
    padding: 0;
  }

}

/* ===============================================
フッター
=============================================== */

@media screen and (max-width: 750px) {

  footer {
margin-bottom: 100px; 
 }

}

footer .timetable th, .timetable td {
  color: var(--cl_wh);
}

.sns-list{
  margin-top: 20px;
}

.sns-list li:not(:last-child){
  margin-right: 10px;
}



/* ===============================================
カレンダー
=============================================== */

#calendar{
  background-color: var(--cl_sub01);
    padding: 90px 0;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

#calendar .g-cal{

  position: relative;
  /* padding-bottom: 56.25%; */
  height: 0;
  overflow: hidden;

  margin: 40px auto 0;
  max-width: 800px;
width:100%;
height: 600px;
}

#calendar .g-cal iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
}

@media screen and (max-width: 640px) {
  #calendar .g-cal{
    height: 320px;
  }
}

.btn--pink,
a.btn--pink {
  color: #fff;
  background-color: #d46671;
  text-decoration: none;
  padding: 10px 20px;
}
.btn--pink:hover,
a.btn--pink:hover {
  color: #fff;
  background: var(--cl_main);
  text-decoration:underline;
}