@charset "UTF-8";

/*-----------------------------------
    メインビジュアル
-----------------------------------*/
#main_img {
  position: relative;
  width: 100%;
  height: 40vw;
  overflow: hidden;
}

.main_img_swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_img_swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.main_img_photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_img_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 48, 48, 0.3);
  mix-blend-mode: multiply;
}

.main_img_text {
  position: absolute;
  top: 50%;
  left: 112px;
  transform: translateY(-50%);
  z-index: 2;
}

.main_img_title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 76px;
  letter-spacing: 2.3px;
  color: #ffffff;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.75);

  opacity: 1;
  transform: translateY(0);
}

.main_img_sub {
  margin-top: 20px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: #ffffff;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.75);

  opacity: 1;
  transform: translateY(0);
}

/* アニメーション */
.swiper-slide-active[data-swiper-slide-index="0"] .main_img_title,
.swiper-slide-active[data-swiper-slide-index="3"] .main_img_title {
  animation: fadeUpTitle 1.4s ease 0.6s backwards;
}
.swiper-slide-active[data-swiper-slide-index="0"] .main_img_sub,
.swiper-slide-active[data-swiper-slide-index="3"] .main_img_sub {
  animation: fadeUpSub 1.2s ease 1.0s backwards;
}
@keyframes fadeUpTitle {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpSub {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.main_img_dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.main_img_pagination {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.main_img_pagination .swiper-pagination-bullet {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background-color: #ffffff;
  opacity: 1;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.main_img_pagination .swiper-pagination-bullet-active {
  background-color: #b19774;
}

.main_img_scroll {
  position: absolute;
  right: 25px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll_text {
  font-family: 'Zen Old Mincho', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11px;
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
  writing-mode: vertical-rl;
}

.scroll_bar {
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  animation: scroll_anim 2s ease-in-out infinite;
}

@keyframes scroll_anim {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    opacity: 0.5;
    transform: scaleY(0.5);
    transform-origin: top;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  .main_img_text {
    left: 80px;
  }
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .main_img_title {
    font-size: 38px;
    line-height: 62px;
  }
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1070px)
-----------------------------------*/
@media screen and (max-width: 1070px) {
  #main_img {
    margin-top: 70px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  #main_img {
    height: 500px;
  }

  .main_img_text {
    left: 30px;
    right: 30px;
  }

  .main_img_title {
    font-size: 30px;
    line-height: 48px;
    letter-spacing: 1.5px;
  }

  .main_img_sub {
    font-size: 14px;
    line-height: 26px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #main_img {
    height: 400px;
    margin-top: 60px;
  }

  .main_img_text {
    left: 20px;
    right: 20px;
  }

  .main_img_title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 1px;
  }

  .main_img_sub {
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.8px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン小 (max-width: 320px)
-----------------------------------*/
@media screen and (max-width: 320px) {
  .main_img_title {
    font-size: 20px;
    line-height: 34px;
  }

  .main_img_sub {
    font-size: 12px;
    line-height: 22px;
  }
}

/*-----------------------------------
    医療方針
-----------------------------------*/
#policy_block {
  position: relative;
  padding: 85px 0 80px;
  background-color: #f8f8f6;
  overflow: hidden;
}

.policy_bg_text {
  position: absolute;
  top: 175px;
  left: 61px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 120px;
  letter-spacing: 3.6px;
  color: #f0f1eb;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.policy_content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
}

.policy_img_area {
  position: absolute;
  top: -50px;
  right: -11vw;
  width: 430px;
  height: 525px;
  z-index: -1;
}

.policy_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.policy_three_c {
  flex-shrink: 0;
  width: 549px;
  margin-top: 50px;
}

.three_c_img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.policy_three_c.is_visible .three_c_img {
  opacity: 1;
  transform: translateY(0);
}

.section_heading_second {
  display: none;
}
.section_heading_second02{
  display: block;
  margin-bottom: 50px;
}

.policy_text_area {
  position: relative;
  flex: 1;
  min-width: 0;
  margin-top: 100px;
  z-index: 2;
}

.policy_title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 1.7px;
  color: #1d4836;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.policy_desc {
  margin-top: 24px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.8px;
  color: #333333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.policy_text_area.is_visible .policy_title,
.policy_text_area.is_visible .policy_desc {
  opacity: 1;
  transform: translateY(0);
}

.policy_keyword {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.keyword_border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: auto;
  padding: 4px 12px;
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.2px;
  color: #1d4836;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.8s, transform 0.4s ease 0.8s;
}

/* ボーダー一筆書きアニメーション */
.keyword_border::before,
.keyword_border::after {
  content: '';
  position: absolute;
  background-color: #18382a;
}

/* 上辺: 左→右 */
.keyword_border::before {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.25s ease;
}

/* 下辺: 右→左 */
.keyword_border::after {
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  transition: width 0.25s ease 0.5s;
}

/* 左辺・右辺用に親要素のbox-shadowを活用 */
.keyword_border .keyword_line_left,
.keyword_border .keyword_line_right {
  position: absolute;
  width: 1px;
  height: 0;
  background-color: #18382a;
}

.keyword_border .keyword_line_right {
  top: 0;
  right: 0;
  transition: height 0.25s ease 0.25s;
}

.keyword_border .keyword_line_left {
  bottom: 0;
  left: 0;
  transition: height 0.25s ease 0.75s;
}

/* アニメーション発火 */
.keyword_border.is_visible {
  opacity: 1;
  transform: translateY(0);
}

.keyword_border.is_visible::before {
  width: 100%;
}

.keyword_border.is_visible::after {
  width: 100%;
}

.keyword_border.is_visible .keyword_line_right {
  height: 100%;
}

.keyword_border.is_visible .keyword_line_left {
  height: 100%;
}

.keyword_text {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
  color: #333333;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  .policy_img_area {
    right: -50px;
    width: 350px;
    height: 430px;
  }

  .policy_three_c {
    width: 450px;
  }
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .policy_content {
    flex-direction: column;
    gap: 0;
  }

  .policy_img_area {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 350px;
    margin-top: 30px;
  }

  .policy_three_c {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0 auto;
  }

  .policy_text_area {
    margin-top: 20px;
  }

  .policy_title {
    font-size: 28px;
    line-height: 42px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  #policy_block {
    padding: 60px 0;
  }
  .policy_bg_text {
    position: absolute;
    left: 0;
    top: 140px;
    z-index: 1;
  }
  .section_heading_second02{
    display: block;
  }
  .policy_img_area {
    height: 280px;
  }

  .policy_title {
    font-size: 24px;
    line-height: 38px;
  }

  .policy_desc {
    font-size: 14px;
    line-height: 28px;
  }

  .keyword_border {
    font-size: 20px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #policy_block {
    padding: 40px 0;
  }
  .policy_bg_text {
    font-size: 60px;
    top: 100px;
    z-index: 1;
  }
  .section_heading_second02{
  }

  .policy_img_area {
    height: 220px;
  }

  .policy_three_c {
    margin-top: 25px;
  }

  .policy_title {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 1px;
  }

  .policy_desc {
    font-size: 13px;
    line-height: 26px;
  }

  .keyword_border {
    font-size: 18px;
    padding: 3px 10px;
  }

  .keyword_text {
    font-size: 14px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン小 (max-width: 320px)
-----------------------------------*/
@media screen and (max-width: 320px) {
  .policy_title {
    font-size: 18px;
    line-height: 30px;
  }
}



/*-----------------------------------
    選ばれる理由
-----------------------------------*/
#reason_block {
  padding: 80px 0 100px;
  background-color: #f8f8f6;
}

.reason_list {
  display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
  gap: 15px;
  margin-top: 50px;
}

.reason_item {
  position: relative;
  width: calc((100% - 45px)/ 4);
  min-height: 360px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.05);
  text-align: start;
}
.ap_500{
  display: none;
}
.reason_head {
  /* display: flex;
  align-items: flex-start;
  gap: 26px; */
  margin-bottom: 15px;
}
span.none_640{
  margin-right: 7px;
}
.reason_head_left{
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	/* -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start; */
  gap: 10px;
  margin: 0 auto 10px;
}

.reason_label {
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #18382a;
  white-space: nowrap;
  text-align: start;
}

.reason_icon {
  margin: 0 auto;
}

.reason_icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.reason_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #1d4836;
}
.reason_title.r07{
  letter-spacing: 0.03em;
}

.reason_title_brown {
  color: #B19774;
}

.reason_title_small {
  font-size: 20px;
}

.reason_desc {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1000px)
-----------------------------------*/
@media screen and (max-width: 1000px) {
  .reason_item {
    width: calc((100% - 15px) / 2);
  }
  br.none_1000{
    display: none;
  }
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .reason_item {
    min-height: auto;
    padding: 20px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  #reason_block {
    padding: 60px 0;
  }
  .reason_head {
    gap: 0;
    margin-bottom: 20px;
  }
  .reason_head {
    width: 100%;
  }

  .reason_title {
    flex: 1;
    margin-top: 0;
  }

  .reason_desc {
    width: 100%;
    margin-top: 10px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 1000px)
-----------------------------------*/
@media screen and (max-width: 1000px) {
  .reason_icon {
    margin: 0 20px 0 0;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #reason_block {
    padding: 40px 0 60px;
  }

  .reason_icon img {
    width: 45px;
    height: 45px;
  }
  .reason_head_left{
    gap: 8px;
  }
  .none_640{
    display: none;
  }
  .reason_label{
    font-size: 36px;
    line-height: 1;
    color: rgb(29, 72, 54);
  }

  .reason_title {
    line-height: 30px;
  }
  .reason_desc {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .reason_list {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .reason_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    padding: 30px 20px 20px;
  }
  .reason_head{
    margin-bottom: 0;
  }
  .reason_label{
    display: none;
  }
  .ap_500{
    display: block;
    font-size: 33px;
    line-height: 1;
    color: rgb(29, 72, 54, .3);
    position: absolute;
    top: -13px;
    right: 5px;
  }
  .reason_icon{
    margin-top: 5px;
  }
}
/*-----------------------------------
    specialized_treatment
-----------------------------------*/
#specialized_treatment{
  padding: 90px 0 24px;
}
#specialized_treatment h4{
  font-size: 24px;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: #1D4836;
  margin: 50px 0 20px;
}
#specialized_treatment p{
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
.treatment_more_link{
  width: 100%;
  margin-top: 50px;
}
.treatment_more_link ul{
  display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
  gap: 40px;
}
.treatment_more_link ul li{
  width: calc((100% - 40px) / 2);
  background-color: #F8F8F6;
  border-radius: 10px;
  padding: 30px 30px 40px;
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
  gap: 20px;
}
.treatment_img_area{
  width: 100%;
  height: 250px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.treatment_img_area img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#specialized_treatment .treatment_img_area p.treatment_name{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.63;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  background-color: rgb(255, 255, 255, .8);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.treatment_more_link ul li a{
  padding-right: 32px;
  padding-bottom: 3.5px;
  position: relative;
  color: #1D4836;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.05em;
  transition: opacity .3s ease;
}
.treatment_more_link ul li a:hover{
  opacity: .7;
}
.treatment_more_link ul li a::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1D4836;
  position: absolute;
  bottom: 0;
  left: 0;
}
/* .treatment_more_link ul li a:hover::before{ */
  /* filter: brightness(1.6); */
/* } */
/* .treatment_more_link ul li a:hover::after{ */
  /* filter: brightness(1.6); */
/* } */
.treatment_more_link ul li a::after{
  content: "";
  width: 18.06px;
  height: 12.92px;
  background: url(../img/index/more_arrow.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
#specialized_treatment span.none_1000{
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .treatment_more_link ul{
    gap: 20px;
  }
  .treatment_more_link ul li{
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 640px) {
  #specialized_treatment{
    padding: 50px 0 0;
  }
  #specialized_treatment h4{
    font-size: 20px;
    line-height: 2;
    margin: 30px 0 10px;
  }
  .treatment_more_link{
    margin-top: 20px;
  }
  .treatment_more_link ul li{
    width: 100%;
  }
  #specialized_treatment p{
    font-size: 14px;
    line-height: 2;
  }
  .treatment_img_area{
    width: 100%;
    height: 200px;
  }
  #specialized_treatment .treatment_img_area p.treatment_name{
    font-size: 18px;
  }
  .treatment_more_link ul li a{
    font-size: 15px;
    font-weight: 700;
    padding-right: 25px;
  }
}
@media screen and (max-width: 400px) {
  .treatment_more_link ul li{
    padding: 20px 20px 30px;
  }
}
/*-----------------------------------
    ドクター紹介
-----------------------------------*/
#doctor_block {
  position: relative;
}

#doctor_block img{
  width: 100%;
  height: 539px;
  overflow: hidden;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

#doctor_block > .contents_inner {
  /* position: relative; */
  margin-top: 40px;
  z-index: 2;
}

#doctor_block > .section_heading_center {
  margin-bottom: 40px;
  padding-top: 80px;
}

/* 院長プロフィール */
.doctor_profile {
  /* position: relative; */

}

.doctor_header {
  padding-left: 0;
}

.doctor_name_en {
  font-family: 'Zen Old Mincho', serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.85px;
  color: #b19774;
}

.doctor_name_row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.doctor_name_ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 71px;
  letter-spacing: 4px;
  color: #333333;
}

.doctor_role {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.9px;
  color: #333333;
  flex-shrink: 0;
}

.doctor_line {
  width: 100%;
  height: 1px;
  background-color: #e3e3e3;
  margin: 10px 0 0;
}
.doctor_body{
  margin: 40px 0 50px;
}
.doctor_body h4{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1D4836;
  margin-bottom: 30px;
}
.doctor_body p{
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.03em;
  margin-bottom: 50px;
}
.doctor_more{
  display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-align-items: center;
	align-items: center;
}
.doctor_more a{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1D4836;
  padding-right: 48.16px;
  padding-bottom: 3.5px;
  position: relative;
  transition: filter .3s ease;
}
.doctor_more a:hover{
  opacity: .7;
}
.doctor_more a::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1D4836;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: opacity .3s ease;
}
.doctor_more a::after{
  content: "";
  width: 18.06px;
  height: 12.92px;
  background: url(../img/index/more_arrow.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
.doctor_more a:hover::before{
  filter: brightness(1.6);
}
.doctor_bg{
  width: 100%;
  background-color: #F8F8F6;
  padding: 40px 0 80px;
}
/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .doctor_photo_sub {
    width: 300px;
  }

  .doctor_photo_placeholder {
    height: 380px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  #doctor_block img {
    height: 350px;
  }
  #doctor_block > .contents_inner {
  /* position: relative; */
    margin-top: 30px;
  }
  .doctor_header {
    padding-left: 0;
  }
  .doctor_name_ja {
    font-size: 30px;
    line-height: 50px;
  }
  .doctor_message p {
    font-size: 15px;
    line-height: 30px;
  }

  
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #doctor_block img {
    height: 250px;
  }
  #doctor_block > .section_heading_center {
    margin-bottom: 20px;
    padding-top: 50px;
  }
  .doctor_bg{
    padding: 20px 0 50px;
  }
  .doctor_name_ja {
    font-size: 26px;
    line-height: 44px;
    letter-spacing: 2px;
  }

  .doctor_name_en {
    font-size: 14px;
  }

  .doctor_role {
    font-size: 16px;
  }
   .doctor_body{
    margin: 20px 0 30px;
  }
  .doctor_body h4{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .doctor_body p{
    line-height: 2;
    font-size: 13px;
    margin-bottom: 30px;
  }
  .doctor_more a{
    font-size: 15px;
    padding-right: 35px;
  }
  .doctor_more a::after{
    right: 0;
  }
}
@media screen and (max-width: 400px) {
  #doctor_block img {
    height: 200px;
  }
}
/*-----------------------------------
    レスポンシブ: スマートフォン小 (max-width: 320px)
-----------------------------------*/
@media screen and (max-width: 320px) {
  .doctor_name_ja {
    font-size: 22px;
  }
}

/*-----------------------------------
    for_new_patients
-----------------------------------*/
#for_new_patients{
  padding: 78.5px 0 90px;
}
.new_patients_row_wrap{
  display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
  margin: 60px 0 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.0em;
}
.new_patients_row_wrap p{
  width: 47%;
  max-width: 525px;
}
.new_patients_row_wrap img{
  width: 47%;
  max-width: 450px;
  aspect-ratio: 45 / 28;
  border-radius: 10px;
  object-fit: cover;
}
.reservation{
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
  gap: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #1D4836;
  margin-bottom: 70px;
}
.reservation_wrap{
  display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
  gap: 50px;
}
.reservation_wrap a{
  transition: filter .3s ease;
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #1D4836;
  border: 1px solid #1D4836;
}
.reservation_wrap a:nth-child(1){ 
  background-color: #DCEACE;
}
.reservation_wrap a:nth-child(1) span{
  padding-right: 46.16px;
  position: relative;
}
.reservation_wrap a:nth-child(2) span{
  padding-right: 46.16px;
  position: relative;
}
.reservation_wrap a:nth-child(2){
  background-color: #EAD9D3;
}
.reservation_wrap a:nth-child(1) span::after, .reservation_wrap a:nth-child(2) span::after{
  content: "";
  width: 18.06px;
  height: 12.92px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/index/more_arrow.svg) no-repeat center center / contain;
}

.reservation_wrap a:hover{
  filter: brightness(1.1);
}
.first_examination_process{
  width: 100%;
  border-radius: 10px;
  border: 1px solid #B19774;
  padding: 60px;
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
  gap: 20px;
}
.first_examination_process h5{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.63;
  letter-spacing: 0.03em;
  color: #1D4836;
  margin-bottom: 10px;
}
.process_box{
  width: 100%;
  max-width: 749px;
  background-color: #F8F8F6;
  padding: 20px 40px;
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
  gap: 20px;
}
.process_box h6{
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #1D4836;
}
.process_box p{
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.03em;
  margin-left: 40px;
}
.process_arrow{
  width: 30px;
  height: 21px;
  background: url(../img/index/process_arrow.svg) no-repeat center center / contain;
}
@media screen and (max-width: 840px) {
  .new_patients_row_wrap{
    display: -webkit-flex;
	  display: flex;
	  -webkit-flex-direction: column;
	  flex-direction: column;
	  -webkit-justify-content: flex-start;
	  justify-content: flex-start;
	  -webkit-align-items: center;
	  align-items: center;
    gap: 40px;
    margin: 60px 0 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.25;
    letter-spacing: 0.06em;
  }
  .new_patients_row_wrap p{
    width: 80%;
    max-width: 100%;
  }
.new_patients_row_wrap img{
    width: 100%;
    max-width: 450px;
    aspect-ratio: 45 / 28;
    border-radius: 10px;
    object-fit: cover;
  }
}
@media screen and (max-width: 640px) {
  #for_new_patients{
    padding: 50px 0;
  }
  .new_patients_row_wrap{
    gap: 40px;
    margin: 30px 0 40px;
    font-size: 14px;
    line-height: 2;
  }
  .new_patients_row_wrap p{
    width: 100%;
    max-width: 100%;
    line-height: 200%;
    font-size: 14px;
  }
  .reservation{
    gap: 30px;
    font-size: 16px;
    margin-bottom: 50px;
  }
  .reservation_wrap{
    gap: 30px;
  }
  .reservation_wrap a{
    padding: 20px 30px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    color: #1D4836;
    border: 1px solid #1D4836;
    width: 100%;
    max-width: 260px;
  }
  .first_examination_process{
    padding: 30px;
    gap: 10px;
  }
  .first_examination_process h5{
    font-size: 16px;
    line-height: 1.63;
    color: #1D4836;
    margin-bottom: 10px;
  }
  .process_box{
    background-color: #F8F8F6;
    padding: 20px 20px;
    gap: 10px;
  }
  .process_box h6{
    font-size: 15px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.03em;
    color: #1D4836;
  }
  .process_box p{
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-left: 10px;
  }
}
@media screen and (max-width: 400px) {
  .new_patients_row_wrap{
    gap: 20px;
    margin: 30px 0 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .first_examination_process{
    padding: 10px;
  }
  .process_box p{
    margin-left: 0;
  }
}
/*-----------------------------------
    お知らせ
-----------------------------------*/
#news_block {
  padding: 60px 0 80px;
  background-color: #f8f8f6;
}

.news_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.news_header a{
  padding-bottom: 4px;
  display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
  gap: 16px;
  border-bottom: 1px solid #1D4836;
  color: #1D4836;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transition: opacity .3s ease;
}
.news_header a:hover{
  opacity: 0.7;
}
.news_list {
  margin-top: 40px;
}
.news_item {
  border-bottom: 1px solid #e3e3e3;
}
.news_item a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  transition: opacity 0.3s;
}
.news_item a:hover {
  opacity: 0.7;
}
.news_date {
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.42px;
  color: #333333;
  flex-shrink: 0;
}
.news_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 24px;
  padding: 2px 20px;
  border: 1px solid #1d4836;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.42px;
  color: #1d4836;
  background-color: #ffffff;
  flex-shrink: 0;
}
.news_title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #333333;
  flex: 1;
}
.news_arrow {
  flex-shrink: 0;
  margin-left: auto;
}
/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  #news_block {
    padding: 40px 0 60px;
  }
  .news_item a {
    flex-wrap: wrap;
    padding: 12px 10px;
    gap: 10px;
  }
  .news_title {
    width: 100%;
    flex: none;
    font-size: 14px;
  }
  .news_arrow {
    display: none;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #news_block {
    padding: 30px 0 50px;
  }
  .news_header a{
    padding-bottom: 4px;
    gap: 10px;
    font-size: 14px;
  }
  .news_date {
    font-size: 12px;
  }
  .news_tag {
    width: 80px;
    height: 22px;
    font-size: 12px;
    padding: 1px 10px;
  }
  .news_title {
    font-size: 13px;
  }
}

/*-----------------------------------
    clinic
-----------------------------------*/
#clinic{
  padding: 90px 0 100px;
}
#clinic .section_heading{
  margin-bottom: 60px;
}
#clinic a{
  padding: 0 30.56px 3.5px 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  display: block;
  width: fit-content;
  margin: 0 auto;
  transition: opacity .3s ease;
}
#clinic a:hover{
  opacity: .7;
}
#clinic a::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1D4836;
  position: absolute;
  bottom: 0;
  left: 0;
}
#clinic a::after{
  content: "";
  width: 18.06px;
  height: 12.92px;
  position: absolute;
  background: url(../img/index/more_arrow.svg) no-repeat center center / contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  #clinic{
    padding: 50px 0;
  }
  #clinic .section_heading{
    margin-bottom: 40px;
  }
  #clinic a{
    padding: 0 30.56px 3.5px 0;
    position: relative;
    font-size: 15px;
  }
}

/*-----------------------------------
    スライダー
-----------------------------------*/
#slider_block {
  position: relative;
  padding: 0 0 60px;
  overflow: hidden;
}

.slider_wrap {
  width: 100%;
  overflow: hidden;
}

.slider_track {
  display: flex;
  gap: 30px;
  animation: slider_scroll 40s linear infinite;
}

.slider_item {
  flex-shrink: 0;
  width: 390px;
  height: 433px;
  border-radius: 3px;
  overflow: hidden;
  /* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16); */
}

.slider_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slider_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-420px * 4));
  }
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  .slider_item {
    width: 340px;
    height: 380px;
  }
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .slider_item {
    width: 300px;
    height: 340px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .slider_item {
    width: 260px;
    height: 300px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #slider_block{
    padding: 0 0 30px;
  }
  .slider_item {
    width: 220px;
    height: 260px;
  }

  @keyframes slider_scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 4));
    }
  }
}
