/******************** Home-Main ********************/
/*** --------------- visual-area --------------- ***/
.visual_area {
  position: relative;
}

.visual_area img {
  width: 100%;
}

.visual_area .main_visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.visual_area .main_visual::before,
.visual_area .main_visual::after {
  content: '';
  background: url(../img/back_decoration01.png) bottom center / contain no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  aspect-ratio: 1400 / 30;
}

.visual_area .main_visual::before {
  top: -1px;
  transform: scale(-1, -1);
}

.visual_area .main_visual::after {
  bottom: 0;
  left: 0;
}

  /* ----- medical-hours ----- */
.visual_area .medical_hours {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 1;
}

.medical_table {
    width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.medical_custom {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  border-collapse: collapse;
}

.medical_custom tr {
  border-bottom: 2px solid #C7BCB2;
}

.medical_custom tr:first-child {
  border-bottom: none;
}

.medical_custom th {
    width: 40px;
    padding: 0 7px;
}

.medical_custom th:first-child {
    width: 150px;
}

.medical_custom td {
    padding: 11px 0 10px;
    text-align: center;
    vertical-align: middle;
}

.text_red {
    color: #F3371D;
}

.circle_mark {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #F4991E;
  border-radius: 50%;
  vertical-align: middle;
}

.line_mark {
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #9A8675;
  border-radius: 30px;
  vertical-align: middle;
}

.medical_title {
    background-color: #FCE7AC;
    text-align: center;
    border-radius: 3px;
    padding: 1px 12px;
}

.medical_box {
    margin: 0 45px;
}

.medical_same {
    display: flex;
    align-items: center;
    gap: 15px;
}

.medical_time {
    margin-top: 20px;
}

.medical_days {
    margin-top: 15px;
}

.medical_same .medical_title {
    max-width: 100px;
    width: 100%;
}

.medical_text {
    font-size: 1.8rem;
}

.medical_text br {
    display: none;
}

.medical_caution {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-top: 15px;
}

.medical_caution p {
    padding-left: 20px;
    position: relative;
}

.medical_caution p::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}

.medical_caution p:first-child {
    margin-bottom: 5px
}

@media only screen and (max-width: 991px) {
  .visual_area .medical_hours {
    position: initial;
    margin-top: 30px;
}
}

@media only screen and (max-width: 767px) {
.medical_table {
    width: 560px;
}
}

@media only screen and (max-width: 575px) {
.visual_area .medical_hours {
    position: relative;
    bottom:0;
    left: 0;
    margin-top: 30px;
}
    .medical_table {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    font-size: 1.4rem;
    line-height: 1.5;
}
.medical_custom th {
    width: 150px;
    padding: 0 3px;
}
.medical_custom td {
    width:calc((100% - 150px) / 7);
    padding: 5px;
}
.circle_mark {
  width: 14px;
  height: 14px;
}
.line_mark {
  width: 14px;
}
.medical_title {
    padding: 2px 0;
}
.medical_box {
    margin: 0;
}
.medical_same {
    gap: 10px 15px;
}
.medical_same .medical_title {
    max-width: 80px;
}
.medical_text {
    font-size: 1.6rem;
}
}

@media only screen and (max-width: 465px) {
.visual_area .medical_text br {
    display: block;
}
}

/*** --------------- important-area --------------- ***/
.important_area {
  position: relative;
  padding-bottom: 80px;
  margin-top: 50px;
}

.important_area::before {
  content: '';
  background-image: url(../img/back_decoration04.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1400 / 30;
  bottom: 0;
}

.important_wrap {
    padding: 0 100px;
}

.important_box {
    display: flex;
    align-items: center;
    gap: 40px;
    border-radius: 10px;
    border: 2px solid #F4371E;
    padding: 25px 30px;
}

.important_wrap h2 {
    width: 180px;
    color: #F4371E;
    font-size: 2.4rem;
}

.important_news_area {
    width: 715px;
}

.important_news {
    position: relative;
    padding: 20px 0;
    transition: 0.3s;
}

.important_news::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #EBE7E3;
    border-radius: 3px;
    bottom: 0;
}

.important_news:last-child::before {
    background: transparent;
}

.important_news a {
    display: flex;
    align-items: center;
    position: relative;
}

.important_news a::before {
    content: '';
    background-image: url(../img/arrow_red.png);
    background-size: cover;
    display: inline-block;
    position: absolute;
    width: 42px;
    height: 8px;
    right: 10px;
    bottom: -10px;
    transition: 0.3s;
}

.important_news a:hover {
    opacity: 0.7;
}

.important_news a:hover::before {
    right: 0;
}

.important_box .news_cate {
    display: none;
}

.important_box .news_date {
    width: 130px;
}

.important_box .news_title {
    width: 520px;
    font-size: 2rem;
    padding-left: 30px;
}

@media only screen and (max-width: 1399px) {
.important_news_area {
    width: 625px;
}

.important_box .news_title {
    width: 510px;
}
}

@media only screen and (max-width: 1199px) {
.important_wrap {
    padding: 0 50px;
}
.important_box {
    flex-wrap: wrap;
    gap: 20px;
}
.important_news_area {
    width: 100%;
}
.important_box .news_title {
    width: 580px;
}
}

@media only screen and (max-width: 991px) {
.important_wrap {
    padding: 0;
}
.important_box {
    flex-wrap: wrap;
    gap: 20px;
    }
.important_box .news_date {
    width: 140px;
}
.important_box .news_title {
    width: 430px;
}
}

@media only screen and (max-width: 767px) {
.important_news a {
    flex-wrap: wrap;
}
.important_box .news_title {
    width: 100%;
    padding: 0;
}
}

/*** --------------- news-area --------------- ***/
.news_wrap {
  background: #FFFCEF;
  padding: 50px 0;
}

.news_area .heading_in {
  padding: 0 30px 0 95px;
}

.news_area .h2_box::before {
  background-image: url(../img/main_icon01.png);
}

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

.announce_button {
  margin-top: 10px;
}

.announce_button p {
  position: relative;
  font-size: 1.8rem;
  border-radius: 10px;
  border: 2px solid #9A8675;
  padding: 10px 105px 10px 25px;
  transition: 0.3s;
}

.announce_button p:hover {
  background: #FCE7AC;
}

.announce_button p::before {
  content: '';
  background-image: url(../img/arrow_brown.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 42px;
  height: 8px;
  right: 25px;
  top: calc(55% - 5px);
  transition: 0.3s;
}

.announce_button p:hover::before {
  right: 15px;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 767px) {
.news_button {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.pc_only {
    display: none;
}
.sp_only {
    display: block;
    margin-top: 30px;
}
}

  /* ----- news-announce ----- */
.announce {
    padding: 0 100px;
}

.announce_box {
    margin-top: 30px;
}

.announce_box ul li {
    position: relative;
}

.announce_box ul li::before {
    content: '';
    background-image: url(../img/arrow_brown.png);
    background-size: cover;
    display: inline-block;
    position: absolute;
    width: 42px;
    height: 8px;
    right: 30px;
    bottom: 10px;
    transition: 0.3s;
}

.announce_box ul li:hover {
    opacity: 0.7;
}

.announce_box ul li:hover::before {
    right: 20px;
}

.announce_box .news_cate {
    display: none;
}

.announce_box .news_text {
    display: flex;
    position: relative;
    align-items: center;
    padding: 20px 0;
    gap: 25px;
}

.announce_box .news_text::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #EBE7E3;
    border-radius: 3px;
    bottom: 0;
}

.announce_box .news_info {
    width: 160px;
    padding-left: 30px;
}

.announce_box .news_title {
    width: 750px;
    font-size: 1.8rem;
}

.announce_box .news_title .new {
    display: inline-block;
    color: #FFF;
    background: #F4371E;
    font-size: 1.2rem;
    border-radius: 5px;
    padding: 2px 8px 2px;
    margin-left: 10px;
    margin-bottom: 5px;
    vertical-align: middle;
}

@media only screen and (max-width: 1399px) {
.announce_box .news_title {
    width: 650px;
}
}

@media only screen and (max-width: 1199px) {
.announce {
    padding: 0 50px;
}
.announce_box .news_title {
    width: 570px;
}
}

@media only screen and (max-width: 991px) {
.announce {
    padding: 0;
}
.announce_box .news_info {
    width: 170px;
}
.announce_box .news_title {
    width: 420px;
}
}

@media only screen and (max-width: 767px) {
.announce_box .news_text {
    flex-wrap: wrap;
    gap: 0;
}
.announce_box .news_info {
    padding: 0;
}
.announce_box .news_title {
    width: 100%;
}
}

@media only screen and (max-width: 575px) {
.announce_box ul li::before {
    right: 20px;
    bottom: 10px;
}
.announce_box ul li:hover::before {
    right: 10px;
}
}

/*** --------------- medical-area --------------- ***/
.medical_area {
  position: relative;
  padding-top: 110px;
}

.medical_area::before {
  content: '';
  background-image: url(../img/back_decoration04.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1400 / 30;
  top: 0;
  transform: scale(-1, -1);
}

.medical_area .heading_in {
  padding: 0 30px 0 95px;
}

.medical_area .h2_box::before {
  background-image: url(../img/main_icon02.png);
}

@media only screen and (max-width: 575px) {
  .medical_area {
    padding-top: 80px;
  }
}

  /* ----- ivory box ----- */
.ivory_box {
  background: #F8F7F0;
  border-radius: 30px;
  margin-top: 60px;
}

.ivory_box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  padding: 35px 20px;
}

.ivory_box ul li {
  width: 540px;
  text-align: center;
}

.ivory_box ul li .h3_box::before {
  background-image: url(../img/medical_icon01.png);
}

.ivory_box ul li p:first-of-type {
  margin-top: 30px;
}

.ivory_box ul li p {
  margin-top: 20px;
}

.ivory_box ul li img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
}

@media only screen and (max-width: 1399px) {
  .ivory_box ul {
    gap: 50px;
    }
  .ivory_box ul li {
    width: 510px;
}
}

@media only screen and (max-width: 1199px) {
  .ivory_box ul {
    gap: 30px;
  }
  .ivory_box ul li {
    width: 430px;
  }
  .ivory_box .h3_box {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 991px) {
  .ivory_box {
    margin-top: 100px;
  }
  .ivory_box .h3_box {
    padding: 45px 0 10px;
  }
  .ivory_box ul li {
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
.ivory_box ul li p {
  text-align: left;
}
}

  /* ----- ivory box ----- */
.beige_box {
  margin-top: 100px;
}

.beige_box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 100px 40px;
}

.beige_box ul li {
  width: 580px;
  text-align: center;
  background: #F8F3EF;
  border-radius: 30px;
  padding: 35px 20px 55px;
}

.beige_box ul li:nth-of-type(1) .h3_box::before {
  background-image: url(../img/medical_icon02.png);
}

.beige_box ul li:nth-of-type(2) .h3_box::before {
  background-image: url(../img/medical_icon03.png);
}

.beige_box ul li:nth-of-type(3) .h3_box::before {
  background-image: url(../img/medical_icon04.png);
}

.beige_box ul li:nth-of-type(4) .h3_box::before {
  background-image: url(../img/medical_icon05.png);
}

.beige_box ul li p:first-of-type {
  margin-top: 30px;
}

.beige_box ul li p {
  margin-top: 20px;
}

@media only screen and (max-width: 1399px) {
  .beige_box ul {
    gap: 100px 30px;
  }
  .beige_box ul li {
    width: 540px;
  }
}

@media only screen and (max-width: 1199px) {
  .beige_box ul li {
    width: 450px;
    padding: 35px 20px;
  }
  .beige_box .h3_box {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 991px) {
  .beige_box ul li {
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .beige_box ul li p {
    text-align: left;
  }
}

/*** --------------- facility-area --------------- ***/
.facility_area {
  position: relative;
  margin-top: 50px;
  padding: 100px 0 180px;
}

.facility_area::before {
  content: '';
  background-image: url(../img/back_decoration03.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1400 / 30;
  bottom: 0;
}

.facility_area .heading_in {
  padding: 0 0 0 110px;
}

.facility_area .h2_box::before {
  background-image: url(../img/main_icon03.png);
}

.facility_area .facility_box {
  margin-top: 40px;
  text-align: center;
  font-size: 2rem;
}

@media only screen and (max-width: 575px) {
.facility_area {
  margin-top: 80px;
  padding-bottom: 130px;
}
.facility_area .facility_box {
  text-align: left;
  font-size: 1.8rem;
}
}

  /* ----- slick ----- */
.slider_area{
  margin-top: 40px;
}

.slide_box .slid_item {
  padding: 0 25px;
}

.slide_box .slick-slide img {
  width:100%;
  display: block;
  border-radius: 20px;
}

.slide_box .slide_title {
  text-align: center;
  margin-top: 10px;
}

@media only screen and (max-width: 991px) {
.slide_box .slid_item {
  padding: 0 15px;
}
}

/*** --------------- faq-area --------------- ***/
.faq_wrap {
  background: #9A8675;
  padding: 80px 0 160px;
}

.faq_wrap .heading_in {
  padding: 0 0 0 110px;
}

.faq_area .sub_heading {
  color: #FFF;
}

.faq_area .h2_box {
  color: #FFF;
}

.faq_area .h2_box::before {
  background-image: url(../img/main_icon04.png);
}

  /* ----- section-area ----- */
.faq_area .section_box {
  padding: 0 100px;
  margin-top: 50px;
}

.faq_area .faq_box {
  margin-top: 30px;
  background: #FFF;
  border-radius: 20px;
  position: relative;
}

.faq_area .faq_box .faq_h3 {
  position: relative;
}

.faq_area .faq_box .faq_h3::before {
  content: 'Q';
  font-size: 3.2rem;
  position: absolute;
  top: calc(50% - 2rem);
  left: 30px;
}

.faq_area .faq_box .ac_title {
  width: 100%;
  padding: 25px 80px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
}

.faq_area .faq_box .ac_title::before,
.faq_area .faq_box .ac_title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  border-radius: 10px;
  background: #9A8675;
  right: 30px;
  top: calc(50% - 1px);
  transition: 0.3s;
}

.faq_area .faq_box .ac_title::after {
  transform: rotate(90deg);
}

.faq_area .faq_box .ac_title[aria-expanded="true"]::after {
  transform: rotate(0deg);
}

.faq_area .faq_box .ac_box {
  position: relative;
  padding: 30px 0px 30px 80px;
}

.faq_area .faq_box .ac_box::before {
  content: "";
  background-image: url(../img/h3_line_faq.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 940px;
  height: 2px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faq_area .faq_box .ac_box p {
  position: relative;
}

.faq_area .faq_box .ac_box p::before {
  content: 'A';
  font-size: 3.8rem;
  position: absolute;
  top: calc(50% - 3.5rem);
  left: -47px;
}

@media only screen and (max-width: 1399px) {
.faq_area .faq_box .ac_box::before {
  width: 870px;
}
}

@media only screen and (max-width: 1199px) {
.faq_area .section_box {
  padding: 0 50px;
}
.faq_area .faq_box .ac_box::before {
  width: 790px;
}
}

@media only screen and (max-width: 991px) {
.faq_area .section_box {
  padding: 0;
}
.faq_area .faq_box .ac_box::before {
  width: 650px;
}
}

@media only screen and (max-width: 767px) {
.faq_area .faq_box .ac_box::before {
  width: 460px;
}
}

@media only screen and (max-width: 575px) {
.faq_area .faq_box .faq_h3::before {
  left: 15px;
}
.faq_area .faq_box .ac_title {
  padding: 25px 55px;
  letter-spacing: 0em;
}
.faq_area .faq_box .ac_title::before,
.faq_area .faq_box .ac_title::after {
  right: 15px;
}
.faq_area .faq_box .ac_box {
  padding: 25px 20px 25px 65px;
}
.faq_area .faq_box .ac_box::before {
  width: 90%;
}
}

/*** --------------- access-area --------------- ***/
.access_area {
  position: relative;
  padding: 180px 0 230px;
}

.access_area::before,
.access_area::after {
  content: '';
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1400 / 30;
}

.access_area::before {
  background-image: url(../img/back_decoration03.png);
  top: -1px;
  transform: scale(-1, -1);
}

.access_area::after {
  background-image: url(../img/back_decoration02.png);
  bottom: 0;
}

.access_back {
  background: #F8F3EF;
  padding: 60px 40px;
  border-radius: 30px;
}

.access_area .heading_in {
  padding: 0 20px 0 95px;
}

.access_area .h2_box::before {
  background-image: url(../img/main_icon05.png);
}

  /* ----- access-box ----- */
.access_area .access_box {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 40px;
}

.access_area .box_area {
  width: 530px;
}

.access_area .access_img img {
  max-width: 530px;
  width: 100%;
  border-radius: 20px;
}

.access_area .access_info ul {
  padding-top: 65px;
}

.access_area .access_info ul li {
  position: relative;
  padding-left: 120px;
  margin-bottom: 45px;
}

.access_area .access_info ul li::before {
  content: "";
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 90px;
  height: 90px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.access_area .access_info ul li:nth-of-type(1)::before {
  background-image: url(../img/access_icon01.png);
}

.access_area .access_info ul li:nth-of-type(2)::before {
  background-image: url(../img/access_icon02.png);
}

.access_area .access_info ul li:nth-of-type(3)::before{
  background-image: url(../img/access_icon03.png);
}

.access_area .access_info p {
  font-size: 2rem;
}

.access_area .parking_box {
  background: #FFF;
  padding: 30px 40px;
  border-radius: 20px
}

.access_area .parking_box p {
  text-align: center;
}

.access_area .attention_text {
  color: #E01A00;
  font-size: 1.4rem;
  margin-top: 10px;
}

.access_area .parking_box img {
  max-width: 450px;
  width: 100%;
  margin-top: 25px;
}

@media only screen and (max-width: 1399px) {
.access_area .box_area {
    width: 500px;
}
.access_area .access_map iframe {
  height: 290px !important;
}
.access_area .access_box {
  gap: 60px 30px;
}
}

@media only screen and (max-width: 1199px) {
.access_area .box_area {
    width: 410px;
}
.access_area .access_map iframe {
  height: 240px !important;
}
.access_area .access_info ul {
  padding-top: 0;
}
.access_area .access_info ul li {
  padding-left: 110px;
}
.access_area .parking_box p br {
  display: none;
}
}

@media only screen and (max-width: 991px) {
.access_area .box_area {
  width: 100%;
}
.access_area .access_box {
  gap: 50px;
}
.access_area .access_img {
  text-align: center;
}
.access_area .access_img img {
  max-width: 610px;
}
.access_area .access_info ul li:last-child {
  margin-bottom: 10px;
}
.access_area .parking_box {
  text-align: center;
}
}

@media only screen and (max-width: 767px) {
.access_area .access_info p {
  font-size: 1.8rem;
}
}

@media only screen and (max-width: 575px) {
.access_area {
    padding: 130px 0;
}
.access_back {
    padding: 60px 20px;
}
.access_area .access_box {
    gap: 30px;
}
.access_area .parking_box {
  padding: 20px;
}
.access_area .access_img img {
  border-radius: 15px;
}
.access_area .access_info p {
  font-size: 1.6rem;
  text-align: center;
}
.access_area .access_info ul li {
  padding-left: 0px;
  padding-top: 100px;
}
.access_area .access_info ul li::before {
  top: 45px;
  left: calc(50% - 45px);
}

}