@charset "UTF-8";
/* ---------------------
  - *共通設定
  - *メインビジュアル
  - *お知らせ
  - *医院概要
  - *ご挨拶
  - *当院の特徴
  - *当院の特徴～診療案内の画像
  - *診療案内
  - *医療コラム
--------------------- */
/*==================================================================================================================================

  *共通設定

==================================================================================================================================*/
/*----------inner----------*/
.home_inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .home_inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/*----------タイトル----------*/
.home_tit {
  text-align: center;
  margin-bottom: 40px;
}
.home_tit_en {
  font-family: "bookmania", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 96px;
  letter-spacing: 0.1em;
  line-height: 1;
  background: linear-gradient(0deg, #a39783 0%, #7b6d54 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.home_tit_jp {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

@media screen and (max-width: 640px) {
  .home_tit_en {
    font-size: clamp(24px, 16.5vw, 80px);
  }
}

/*----------フェードイン----------*/
@media not print {
  .inView {
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
    transition-duration: 0.8s;
    transition-delay: 0.2s;
    opacity: 0;
    transform: translateY(30px);
  }
  .inView.inView-on {
    opacity: 1;
    transform: none;
  }
}

/*----------タブ----------*/
.home_panel {
  display: none;
}
.home_panel.active {
  display: block;
}

/*==================================================================================================================================

  *メインビジュアル

==================================================================================================================================*/
.home_mv {
  position: relative;
  overflow: hidden;
}
.home_mv_slider img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home_mv_catch {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.home_mv_catch_text {
  color: #fff;
  font-size: 32px;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-shadow: 0 0 15px rgb(0 0 0 / 0.5);
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
}
.home_mv_catch_text span {
  display: block;
  font-size: 125%;
}
.home_mv_open {
  max-width: 240px;
}
.home_mv_open img {
  border-radius: 8px;
}
.home_mv_feature {
  display: flex;
  gap: 16px;
}
.home_mv_feature > li {
  width: 180px;
  text-align: center;
}
.home_mv_feature > li a {
  display: block;
  height: 100%;
  color: #fff;
  padding: 25px 5px 0;
  position: relative;
  z-index: 0;
}
.home_mv_feature > li a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/home/mv_feature_bg.png) right bottom/152px auto no-repeat, linear-gradient(315deg, rgb(163 151 131 / 0.95) 0%, rgb(210 202 188 / 0.95) 100%);
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.home_mv_feature > li a::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/home/mv_feature_bg.png) right bottom/152px auto no-repeat, linear-gradient(315deg, rgb(134 187 186 / 0.95) 0%, rgb(194 233 232 / 0.95) 100%);
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}
.home_mv_feature_icon {
  max-width: 38px;
  margin: 0 auto 12px;
}
.home_mv_feature_text {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
}
.home_mv_feature_text::after {
  display: block;
  content: "";
  width: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../images/home/mv_feature_arrow.png) #fff center/6px auto no-repeat;
  position: absolute;
  right: 8px;
  bottom: 8px;
}
@media (hover: hover) {
  .home_mv_feature a::before, .home_mv_feature a::after {
    transition: opacity 0.3s ease-in-out;
  }
  .home_mv_feature a:hover::before {
    opacity: 0;
  }
  .home_mv_feature a:hover::after {
    opacity: 1;
  }
  .home_mv_feature a:hover .home_mv_feature_text::after {
    background-image: url(../images/home/mv_feature_arrow_after.png);
  }
}

.home_mv_banner .btn01 a {
  font-size: 120%;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 0;
}

@media print, screen and (min-width: 641px) {
  .home_mv, .home_mv_slider img {
    height: 820px;
  }
  .home_mv .home_mv_main {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .home_mv_catch {
    flex: 1;
  }
  .home_mv_open {
    position: absolute;
    right: 0;
    bottom: 40px;
  }
  .home_mv_feature {
    padding-bottom: 40px;
  }
  .home_mv_feature > li {
    aspect-ratio: 1;
  }
  .home_mv_ribon {
    position: absolute;
    bottom: 150px;
    left: 0;
  }
  .home_mv_banner {
    position: absolute;
    bottom: 30px;
    left: 0;
  }
  .home_mv_banner:not(.mv_banner-btn) {
    width: 550px;
    height: 110px;
  }
  .home_mv_banner:not(.mv_banner-btn) img {
    max-height: 100%;
    width: auto;
  }
  .home_mv_banner:not(.mv_banner-btn) a:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 640px) {
  .home_mv_slider, .home_mv_slider img, .home_mv_catch {
    height: 220px;
  }
  .home_mv_slider {
    overflow: hidden;
  }
  .home_mv_main {
    padding: 20px 5% 40px;
  }
  .home_mv_main > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .home_mv_catch {
    width: 100%;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50px;
  }
  .home_mv_catch_text {
    font-size: clamp(14px, 4.2vw, 16px);
    text-shadow: 0 0 8px rgb(0 0 0 / 0.5);
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
  }
  .home_mv_insta {
    max-width: 400px;
    margin-inline: auto;
  }
  .home_mv_insta a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #99ab9f;
    color: #fff;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-align: center;
    padding: 15px 20px;
    word-break: break-all;
  }
  .home_mv_insta i {
    flex-shrink: 0;
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1;
    margin-right: 15px;
  }
  .home_mv_open {
    margin-inline: auto;
  }
  .home_mv_feature {
    flex-wrap: wrap;
    gap: 5px;
  }
  .home_mv_feature > li {
    width: calc((100% - 10px) / 3);
  }
  .home_mv_feature > li a {
    padding: 8% 0;
  }
  .home_mv_feature > li a::before, .home_mv_feature > li a::after {
    background-size: 84% auto, auto;
  }
  .home_mv_feature_icon {
    width: 21.1%;
    margin-bottom: 4%;
  }
  .home_mv_feature_text {
    font-size: clamp(10px, 3.2vw, 16px);
  }
  .home_mv_feature_text::after {
    width: 20px;
    right: 6px;
    bottom: 6px;
  }
  .home_mv_banner {
    text-align: center;
  }
}

.home_news_info {
  background: url(../images/home/info_bg2.jpg) left bottom no-repeat, url(../images/home/news_bg.jpg) left top repeat-y;
  padding-top: 120px;
  padding-bottom: 320px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .home_news_info {
    background: url(../images/home/info_bg2.jpg) left bottom/89% auto no-repeat, url(../images/home/news_bg_sp.jpg) left top/100% auto no-repeat;
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

/*==================================================================================================================================

  *お知らせ

==================================================================================================================================*/
.home_news {
  margin-bottom: 90px;
}
.home_news .home_tit {
  margin-bottom: 0;
}
.home_news .btn01 {
  text-align: center;
  margin-top: 75px;
}
.home_news_list li {
  display: flex;
  align-items: center;
  gap: 0 30px;
  padding: 34px 30px;
  border-bottom: 1px dashed #ccc;
  line-height: 1.6;
}
.home_news_list li:first-child {
  border-top: 1px dashed #ccc;
}
.home_news_list li > * {
  display: block;
}
.home_news_list li span {
  font-size: 14px;
}
.home_news_list li em {
  min-width: 128px;
  font-size: 15px;
  text-align: center;
  padding: 5px 10px;
  font-style: normal;
  border-radius: 2px;
}
.home_news_list li a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text-color);
}

@media (hover: hover) {
  .home_news_list li a:hover {
    text-decoration: underline;
  }
}

@media print, screen and (min-width: 641px) {
  .home_news .home_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home_news .home_tit_en {
    font-size: 72px;
  }
  .home_news .home_tit_jp {
    font-size: 15px;
  }
  .home_news_list {
    width: 886px;
    flex-shrink: 0;
  }
  .home_news .btn01 a {
    min-width: 180px;
  }
}

@media screen and (max-width: 640px) {
  .home_news {
    margin-bottom: 60px;
  }
  .home_news_head {
    margin-bottom: 30px;
  }
  .home_news_list li {
    flex-wrap: wrap;
    gap: 10px 15px;
    padding: 20px 0;
  }
  .home_news_list li em {
    min-width: auto;
    font-size: 14px;
  }
  .home_news_list li a {
    width: 100%;
  }
  .home_news .btn01 {
    margin-top: 30px;
  }
}

/*==================================================================================================================================

  *医院概要

==================================================================================================================================*/
.home_info {
  padding-top: 40px;
  overflow: hidden;
}

.home_info .home_inner {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 85px;
  position: relative;
}
.home_info .home_inner::before {
  display: block;
  content: "";
  width: 1100px;
  height: 280px;
  pointer-events: none;
  background: url(../images/home/info_bg.jpg) left top/100% auto no-repeat;
  position: absolute;
  right: -160px;
  top: -40px;
}
.home_info .home_inner::after {
  display: block;
  content: "";
  width: calc(100% + 240px);
  height: 100%;
  background: #fff;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.home_info .home_inner > * {
  position: relative;
  z-index: 1;
}

.home_info_left,
.home_info_right {
  width: 550px;
}

.home_info_add {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.home_info_add span {
  display: block;
}

.home_info_tel {
  font-family: "bookmania", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.2em;
  line-height: 1;
}

.home_info_tel a {
  color: #988058;
}

.home_info_department {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 12px;
}

.home_info_schedule {
  margin-top: 50px;
}

.home_info_schedule .hours:not(:last-child) {
  margin-bottom: 50px;
}

.home_access_map {
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.home_access_map iframe {
  width: 100%;
  height: 450px;
}

.home_access_guide {
  margin-top: 20px;
}

.home_access_guide li {
  display: table;
  padding: 5px 15px;
  background: var(--bg-color);
}

.home_access_guide li:not(:last-child) {
  margin-bottom: 5px;
}

.home_access > .btn01 {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 640px) {
  .home_info {
    padding-top: 20px;
  }
  .home_info .home_inner {
    width: 89%;
    display: block;
    padding: 60px 6%;
  }
  .home_info .home_inner::before {
    width: 100%;
    height: 140px;
    right: -6%;
    top: -20px;
  }
  .home_info .home_inner::after {
    width: 100%;
  }
  .home_info_left,
.home_info_right {
    width: 100%;
  }
  .home_info_left {
    margin-bottom: 30px;
  }
  .home_info_tel {
    font-size: clamp(24px, 7.5vw, 28px);
  }
  .home_info_schedule {
    margin-top: 30px;
  }
  .home_info_schedule .hours:not(:last-child) {
    margin-bottom: 30px;
  }
}

/*==================================================================================================================================

  *ご挨拶

==================================================================================================================================*/
.home_greeting {
  background: url(../images/home/greeting_bg_en.png) left bottom no-repeat, url(../images/home/greeting_bg.jpg) right top no-repeat;
  padding-top: 275px;
  padding-bottom: 140px;
  margin-top: -320px;
}
.home_greeting .home_inner {
  position: relative;
}
.home_greeting_img {
  margin-bottom: 30px;
}
.home_greeting_img img {
  border-radius: 8px;
}
.home_greeting_name {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
.home_greeting_name .name span {
  font-size: 150%;
}
.home_greeting .btn01 {
  text-align: center;
  margin-top: 25px;
}
.home_greeting_catch {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  margin-bottom: 30px;
}
.home_greeting_text {
  line-height: 2.3;
}
.home_greeting_text p:not(:last-child) {
  margin-bottom: 30px;
}

@media print, screen and (min-width: 641px) {
  .home_greeting .home_tit {
    margin-bottom: 85px;
  }
  .home_greeting_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0 90px;
    padding-right: 50px;
  }
  .home_greeting_flex_img {
    width: 340px;
  }
  .home_greeting .btn01 a {
    min-width: 180px;
  }
  .home_greeting_flex_text {
    flex: 1;
  }
}

@media screen and (max-width: 640px) {
  .home_greeting {
    background-size: 90% auto, 40% auto;
    padding-top: 60px;
    padding-bottom: 80px;
    margin-top: -90px;
  }
  .home_greeting_flex_img {
    margin-bottom: 30px;
  }
  .home_greeting_img {
    max-width: 340px;
    width: 60%;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  .home_greeting_catch {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .home_greeting_text p:not(:last-child) {
    margin-bottom: 20px;
  }
}

/*==================================================================================================================================

  *当院の特徴

==================================================================================================================================*/
.home_feature {
  background: url(../images/home/feature_bg.jpg) center top repeat-y;
  padding-bottom: 160px;
  margin-top: 90px;
  overflow: hidden;
}
.home_feature .home_inner {
  padding-bottom: 150px;
  position: relative;
}
.home_feature .home_inner::before {
  display: block;
  content: "";
  width: calc(100% + 240px);
  height: calc(100% + 2px);
  background: #fff;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
}
.home_feature .home_inner > * {
  position: relative;
}
.home_feature_item_num {
  font-family: "bookmania", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: right;
  margin-bottom: -1em;
  position: relative;
  z-index: 1;
}
.home_feature_item_num em {
  color: #a39783;
  font-size: 280%;
  font-weight: 400;
  letter-spacing: 0.1em;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -0.2em;
}
.home_feature_item_img {
  margin-bottom: 25px;
}
.home_feature_item_img img {
  border-radius: 8px;
}
.home_feature_item_tit {
  color: #988058;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 12px;
}
.home_feature_item_text {
  line-height: 2.3;
}
.home_feature_item_text:not(:last-child) {
  margin-bottom: 25px;
}
.home_feature_item .btn01 {
  text-align: center;
}

@media print, screen and (min-width: 641px) {
  .home_feature .home_tit {
    margin-bottom: 75px;
  }
  .home_feature_list {
    display: flex;
    flex-wrap: wrap;
    gap: 106px 52px;
  }
  .home_feature_item {
    width: 365px;
    display: flex;
    flex-flow: column;
  }
  .home_feature_item_img {
    padding-inline: 5px;
  }
  .home_feature_item .btn01 {
    margin-top: auto;
  }
  .home_feature_item .btn01 a {
    min-width: 180px;
  }
}

@media screen and (max-width: 640px) {
  .home_feature {
    background-size: 960px auto;
    padding-bottom: 60px;
    margin-top: 60px;
  }
  .home_feature .home_inner {
    width: 89%;
    padding: 0 6% 60px;
  }
  .home_feature .home_inner::before {
    width: 100%;
  }
  .home_feature_list {
    max-width: 355px;
    margin-inline: auto;
  }
  .home_feature_item:not(:last-child) {
    margin-bottom: 40px;
  }
  .home_feature_item_tit {
    font-size: clamp(16px, 5vw, 19px);
  }
}

/*==================================================================================================================================

  *当院の特徴～診療案内の画像

==================================================================================================================================*/
.home_feature_medical {
  text-align: right;
  margin-top: -615px;
  margin-bottom: -200px;
  pointer-events: none;
}

@media screen and (max-width: 640px) {
  .home_feature_medical {
    margin-top: -42.8%;
    margin-bottom: -13.9%;
  }
  .home_feature_medical img {
    width: 100%;
  }
}

/*==================================================================================================================================

  *診療案内

==================================================================================================================================*/
.home_medical {
  padding-top: 155px;
  padding-bottom: 160px;
  background: url(../images/home/medical_bg.png) #c0b29a left top 52px no-repeat;
}
.home_medical .home_tit {
  color: #fff;
}
.home_medical .home_tit_en {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentcolor;
}
.home_medical_item a {
  display: block;
  background-color: rgb(221 215 204 / 0.9);
  border-radius: 8px;
  padding: 40px 10px 50px;
  color: var(--text-color);
  position: relative;
}
.home_medical_item_img {
  max-width: 120px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  position: relative;
}
.home_medical_item_img::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.home_medical_item_img img {
  position: relative;
}
.home_medical_item_tit {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 15px;
}
.home_medical_item_tit::after {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background: #988058;
  margin: 20px auto 0;
}
.home_medical_item_en {
  color: #988058;
  font-family: "bookmania", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
  position: absolute;
  right: -0.4em;
  top: 16px;
}
.home_medical_item_text {
  font-size: 14px;
  padding-inline: 20px;
}
.home_medical_item_text:not(:last-child) {
  margin-bottom: 25px;
}
.home_medical_item .btn01 {
  text-align: center;
}
.home_medical_item .btn01 > span {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (hover: hover) {
  .home_medical_item a, .home_medical_item_img::before {
    transition: background-color 0.3s ease-in-out;
  }
  .home_medical_item a:hover {
    background-color: rgb(255 255 255 / 0.9);
  }
  .home_medical_item a:hover .home_medical_item_img::before {
    background-color: #e4dfd5;
  }
  .home_medical_item a:hover .btn01 > span::after {
    opacity: 1;
  }
}

@media print, screen and (min-width: 641px) {
  .home_medical .home_tit {
    margin-bottom: 80px;
  }
  .home_medical_list {
    display: flex;
    flex-wrap: wrap;
    gap: 65px 42px;
  }
  .home_medical_item {
    width: 268px;
  }
  .home_medical_item a {
    display: flex;
    flex-flow: column;
    height: 100%;
  }
  .home_medical_item .btn01 {
    margin-top: auto;
  }
}

@media screen and (max-width: 640px) {
  .home_medical {
    padding-top: 6%;
    padding-bottom: 60px;
    background-position: left top 20px;
    background-size: 90% auto;
  }
  .home_medical_list {
    max-width: 268px;
    margin-inline: auto;
  }
  .home_medical_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .home_medical_item a {
    padding: 30px 20px;
  }
  .home_medical_item_tit {
    font-size: clamp(16px, 4.8vw, 18px);
  }
  .home_medical_item_text {
    padding-inline: 0;
  }
}

/*==================================================================================================================================

  *病名・症状から探す

==================================================================================================================================*/
.home_disease {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 205px;
  padding-bottom: 305px;
  background: url(../images/home/disease_bg2.jpg) left top no-repeat, url(../images/home/disease_bg.jpg) right top repeat-y;
  overflow: hidden;
}
.home_disease .home_inner {
  padding-top: 1px;
  padding-bottom: 65px;
  position: relative;
}
.home_disease .home_inner::before {
  display: block;
  content: "";
  width: calc(100% + 240px);
  height: 100%;
  background: rgb(255 255 255 / 0.8);
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.home_disease .home_inner > * {
  position: relative;
}
.home_disease .home_tit_en {
  margin-top: -0.5em;
}
.home_disease_menu {
  display: flex;
  gap: 0 12px;
  margin-bottom: 24px;
}
.home_disease_menu li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 392px;
  background: url(../images/home/disease_menu_bg.png) right bottom/auto 66px no-repeat;
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
  padding: 22px;
  cursor: pointer;
  position: relative;
}
.home_disease_menu li, .home_disease_menu li::before {
  background-color: #bbb;
}
.home_disease_menu li.active, .home_disease_menu li.active::before {
  background-color: #c0b29a;
}
.home_disease_menu li::before {
  display: block;
  content: "";
  width: 20px;
  height: 18px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
}
.home_disease_main {
  background: rgb(192 178 154 / 0.8);
  padding: 25px 24px;
}
.home_disease_group_menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #b4a996;
  margin-bottom: 20px;
}
.home_disease_group_menu li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 152px;
  background-color: #e4ded3;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px;
  text-align: center;
  cursor: pointer;
}
.home_disease_group_menu li.active {
  background-color: #a39783;
  color: #fff;
}
.home_disease_group_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home_disease_group_list li {
  width: 376px;
}
.home_disease_group_list li a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  min-height: 70px;
  background: url(../images/home/disease_arrow.png) center right 16px/16px auto no-repeat;
  background-color: #fff;
  border-radius: 4px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  padding: 15px 40px;
}

@media (hover: hover) {
  .home_disease_group_list li a:hover {
    background-image: url(../images/home/disease_arrow_after.png);
    background-color: #a39783;
    color: #fff;
  }
}

@media print, screen and (min-width: 641px) {
  .home_disease {
    max-width: 1920px;
    margin-inline: auto;
  }
  .home_disease .home_tit {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 640px) {
  .home_disease {
    padding-top: 90px;
    padding-bottom: 90px;
    background-size: 40% auto, 720px auto;
  }
  .home_disease .home_inner {
    width: 95%;
    padding: 1px 3% 50px;
  }
  .home_disease .home_inner::before {
    width: 100%;
  }
  .home_disease_menu {
    gap: 0 10px;
  }
  .home_disease_menu li {
    width: calc((100% - 20px) / 3);
    background-size: 90% auto;
    font-size: clamp(10px, 3.4vw, 13px);
    padding: 15px 10px;
  }
  .home_disease_menu li::before {
    width: 16px;
    height: 14px;
    bottom: -12px;
  }
  .home_disease_tab {
    padding: 25px 3%;
  }
  .home_disease_group_menu li {
    max-width: 120px;
    width: calc((100% - 10px) / 2);
    font-size: clamp(10px, 3.4vw, 13px);
  }
  .home_disease_group_list {
    gap: 10px;
  }
  .home_disease_group_list li {
    width: calc((100% - 10px) / 2);
  }
  .home_disease_group_list li a {
    min-height: auto;
    background-position: center right 10px;
    font-size: clamp(12px, 3.7vw, 14px);
    padding: 12px 25px 12px 10px;
    text-align: left;
  }
}

/*==================================================================================================================================

  *医療コラム

==================================================================================================================================*/
.home_column {
  padding-top: 1px;
  padding-bottom: 220px;
}
.home_column .home_tit_en {
  margin-top: -0.5em;
}
.home_column_list dt {
  background: #c0b29a;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-align: center;
  border-radius: 8px;
  padding: 14px 20px;
}
.home_column_list dd li {
  background: url(../images/home/column_dotted.jpg) left bottom/auto 1px repeat-x;
}
.home_column_list dd li a {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: var(--text-color);
  text-align: center;
  padding: 14px 20px;
}

@media (hover: hover) {
  .home_column_list dd li a:hover {
    background-color: #f3f1ec;
  }
}
.home_column .btn01 {
  text-align: center;
  margin-top: 40px;
}

@media print, screen and (min-width: 641px) {
  .home_column .home_tit {
    margin-bottom: 80px;
  }
  .home_column_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .home_column_list dl {
    width: 282px;
  }
  .home_column .btn01 a {
    min-width: 180px;
  }
}

@media screen and (max-width: 640px) {
  .home_column {
    padding-bottom: 60px;
  }
  .home_column_list dl:not(:last-child) {
    margin-bottom: 30px;
  }
}