@charset "UTF-8";

main {
  background: none !important;
}

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

  共通

==================================================================*/
/* -------- inner -------- */
.home_inner {
  max-width: 1540px;
  padding-inline: 20px;
  margin-inline: auto;
}

@media screen and (max-width: 640px) {
  .home_inner {
    max-width: none;
    padding-inline: 5%;
    margin-inline: 0;
  }
}

/* -------- inner2 -------- */
.home_inner2 {
  max-width: 1280px;
  margin-inline: auto;
}

@media screen and (max-width: 640px) {
  .home_inner2 {
    max-width: none;
    padding-inline: 5%;
    margin-inline: 0;
  }
}

/* -------- タイトル -------- */
.home_tit {
  text-align: center;
  margin-bottom: 40px;
}

.home_tit_en {
  font-family: "arno-pro-display", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 150px;
  letter-spacing: 0.2em;
  line-height: 1;
  background: linear-gradient(0deg, #a48b71 0%, #d1c1a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home_tit_jp {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media screen and (max-width: 640px) {
  .home_tit_en {
    font-size: clamp(30px, 13.3vw, 70px);
  }

  .home_tit_jp {
    font-size: 22px;
  }
}

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

  .inView-right {
    transform: translateX(30px);
  }

  .inView.inView-on {
    opacity: 1;
    transform: none;
  }
}

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

  メインビジュアル

==================================================================*/
.home_mv,
.home_mv_slider img {
  height: 950px;
  color: #fff;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.home_mv {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.home_mv_slider {
  width: 100%;
  /*opacity: 0.6;*/
}

.home_mv_slider img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.home_mv_con {
  width: 100%;
  max-width: 1540px;
  padding-inline: 20px;
  line-height: 1.6;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home_mv_en {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 27px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.home_mv_catch {
  font-size: 56px;
  letter-spacing: 0.1em;
  line-height: 1;
  background: linear-gradient(0deg, #fee6bd 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.home_mv_promise_tit {
  display: flex;
  align-items: center;
  gap: 0 20px;
  max-width: 750px;
  font-size: 33px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.home_mv_promise_tit::after {
  display: block;
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
  opacity: 0.5;
}

.home_mv_promise_list {
  counter-reset: mv_num 0;
  font-size: 21px;
  line-height: 2.2;
}

.home_mv_promise_list li {
  counter-increment: mv_num;
}

.home_mv_promise_list li::before {
  content: counter(mv_num, decimal-leading-zero);
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  color: #e7dbc4;
  font-size: 162%;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-right: 20px;
}

.bnr_wrap {
  position: relative;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
}

.record_bnr {
  content: "";
  position: absolute;
  bottom: 80px;
  right: 20px;
}

.record_bnr a {
  transition: opacity 0.3s ease-in-out;
}

.record_bnr a:hover {
  opacity: 0.8;
}

.record_bnr a img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 350px;
}

@media screen and (max-width: 640px) {
  .home_mv,
  .home_mv_slider img {
    height: 500px;
  }

  .home_mv_con {
    padding-inline: 5%;
    bottom: 20px;
    text-shadow: #a48b71 1px 1px 10px, #a48b71 -1px 1px 10px, #a48b71 1px -1px 10px, #a48b71 -1px -1px 10px;
  }

  .home_mv_en {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .home_mv_catch {
    font-size: 22px;
    margin-bottom: 20px;
    background: initial;
    -webkit-text-fill-color: initial;
  }

  .home_mv_promise_tit {
    gap: 0 10px;
    max-width: none;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .home_mv_promise_list {
    font-size: 13px;
    line-height: 1.8;
  }

  .home_mv_promise_list li {
    padding-left: 2.4em;
    text-indent: -2.4em;
  }

  .home_mv_promise_list li:not(:last-child) {
    margin-bottom: 10px;
  }

  .home_mv_promise_list li::before {
    font-size: 138%;
    padding-right: 0.5em;
  }
	
  .record_bnr {
    content: "";
    position: static;
    margin: 30px auto 0;
	padding-inline: 5%;
  }
}

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

  .home_bnr

==================================================================*/
.home_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 1.3%;
  margin-top: 70px;
}

.home_bnr > * {
  display: block;
  width: 24%;
}

@media (hover: hover) {
  .home_bnr a {
    transition: opacity 0.3s ease-in-out;
  }

  .home_bnr a:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 640px) {
  .home_bnr {
    gap: 10px;
    margin-top: 30px;
  }

  .home_bnr > * {
    width: calc((100% - 10px) / 2);
  }
}

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

  .home_info

==================================================================*/
.home_info {
  background: url(../images/home/info_bg_t.jpg) center top no-repeat, url(../images/home/info_bg.jpg) center top repeat-y;
  padding-top: 150px;
  padding-bottom: 120px;
  margin-top: 50px;
}

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

.home_info_left {
  width: 620px;
  padding-left: 20px;
}

.home_info_right {
  width: 560px;
  padding-top: 100px;
}

.home_info_logo {
  max-width: 312px;
  margin: 0 auto 45px;
}

.home_info_add {
  display: flex;
  align-items: center;
  gap: 0 30px;
  letter-spacing: 0.075em;
  background: #f7f7f7;
  margin-bottom: 30px;
}

.home_info_add::before {
  display: block;
  content: "";
  flex-shrink: 0;
  width: 70px;
  height: 48px;
  background: url(../images/info_add.png) center/auto 54% no-repeat;
  background-color: #d4d4d4;
}

.home_info address {
  display: flex;
  gap: 0 10px;
  margin-bottom: 30px;
}

.home_info_tel {
  width: 410px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 22px;
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 18px 15px;
}

.home_info_tel dt {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #858585;
  line-height: 1.3;
}

.home_info_tel dd a {
  font-size: 38px;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1;
  background: linear-gradient(0deg, #827a5d 0%, #b5aa8d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home_info_tel dd a::before {
  color: #a5a17a;
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 58%;
  margin-right: 10px;
}

.home_info_reservation,
.home_info_reservation:hover {
  color: #fff;
}

.home_info_reservation {
  flex: 1;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  background: linear-gradient(90deg, #a48b71 0%, #d1c1a3 100%);
  text-align: center;
  padding: 10px 20px;
}

@media (hover: hover) {
  .home_info_reservation {
    position: relative;
    z-index: 0;
  }

  .home_info_reservation::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/logo_dec.png) center/auto 70% no-repeat;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
  }

  .home_info_reservation:hover::before {
    opacity: 1;
  }
}

.home_info_reservation span {
  display: block;
  font-size: 73%;
}

.home_info_access_map {
  border: 1px solid #c5c5c5;
}

.home_info_access_map iframe {
  width: 100%;
  height: 430px;
}

.home_info_access .btn01 {
  text-align: right;
  margin-top: 20px;
}

.home_info_access .btn01 a {
  min-width: 270px;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 640px) {
  .home_info {
    background-size: 960px auto;
    padding-top: 90px;
    padding-bottom: 60px;
    margin-top: 0;
  }

  .home_info .home_inner2 {
    display: block;
  }

  .home_info_left,
  .home_info_right {
    width: 100%;
  }

  .home_info_left {
    padding-left: 0;
  }

  .home_info_right {
    padding-top: 0;
    margin-top: 40px;
  }

  .home_info_logo {
    width: 60%;
  }

  .home_info_add {
    align-items: normal;
    gap: 0 15px;
  }

  .home_info_add::before {
    width: 40px;
    height: auto;
    background-size: auto 20px;
  }

  .home_info address {
    display: block;
  }

  .home_info_tel {
    width: 100%;
    gap: 0 10px;
  }

  .home_info_tel dt {
    flex-shrink: 0;
    font-size: clamp(13px, 3.7vw, 14px);
  }

  .home_info_tel dd a {
    font-size: clamp(20px, 8vw, 30px);
  }

  .home_info_tel dd a::before {
    margin-right: 5px;
  }

  .home_info_reservation {
    width: 100%;
    margin-top: 15px;
  }

  .home_info_access .btn01 a {
    min-width: auto;
  }
}

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

  .home_medical

==================================================================*/
.home_medical {
  background: url(../images/home/medical_bg.jpg) center bottom repeat-y;
  padding-bottom: 70px;
  overflow: hidden;
}

.home_medical_img {
  text-align: center;
}

.home_medical .home_tit_en {
  background: linear-gradient(0deg, #888 0%, #888 calc(100% - 0.4em), #fff calc(100% - 0.4em), #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -0.4em;
  position: relative;
}

.home_medical_list .home_medical_item {
  position: relative;
  z-index: 0;
}

.home_medical_list .home_medical_item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, transparent 30%, #ceecf2 50%, #ceecf2 100%);
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}

.home_medical_list .home_medical_item:not(:last-child) {
  margin-bottom: 30px;
}

.home_medical_list .home_medical_item_bg {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.home_medical_list .home_medical_item_bg,
.home_medical_list .home_medical_item_bg img {
  width: 100%;
  height: 100%;
}

.home_medical_list .home_medical_item_bg img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left center;
  object-position: left center;
}

.home_medical_list .home_medical_item_head {
  color: #fff;
}

.home_medical_list .home_medical_item_head_inner {
  text-align: center;
}

.home_medical_list .home_medical_item_head_en {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 2.6vw, 50px);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 20px;
}

.home_medical_list .home_medical_item_head_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.home_medical_list .home_medical_item_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.home_medical_list .home_medical_item_tit span {
  display: flex;
  align-items: center;
  gap: 0 30px;
  font-size: 183%;
  margin-top: 15px;
}

.home_medical_list .home_medical_item_tit span::after {
  content: "";
  display: block;
  max-width: 340px;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, currentColor 0%, transparent 100%);
}

.home_medical_list .home_medical_item .btn01 {
  margin-top: 25px;
}

@media (hover: hover) {
  .home_medical_list .home_medical_item .btn01 a:hover::before {
    opacity: 0.4;
  }
}

.home_medical_list .home_medical_item:nth-child(1) .btn01 a::before {
  background: linear-gradient(90deg, #719ba4 0%, #a3cbd1 100%);
}

.home_medical_list .home_medical_item:nth-child(2)::before {
  background: linear-gradient(90deg, #f1ece4 0%, #f1ece4 50%, transparent 70%, transparent 100%);
}

.home_medical_list .home_medical_item:nth-child(3)::before {
  background: linear-gradient(90deg, transparent 0%, transparent 30%, #d9eeff 50%, #d9eeff 100%);
}

.home_medical_list .home_medical_item:nth-child(3) .btn01 a::before {
  background: linear-gradient(90deg, #7397c0 0%, #8bb3d5 100%);
}

.home_medical_list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 3%;
  margin-top: 100px;
}

.home_medical_list2 .home_medical_item {
  max-width: 340px;
  width: 22.7%;
}

.home_medical_list2 .home_medical_item a {
  display: block;
  color: var(--text-color);
}

.home_medical_list2 .home_medical_item_img {
  margin-bottom: 15px;
}

.home_medical_list2 .home_medical_item_box {
  position: relative;
  padding-right: 60px;
}

.home_medical_list2 .home_medical_item_box::before,
.home_medical_list2 .home_medical_item_box::after {
  display: block;
  content: "";
  width: 60px;
  aspect-ratio: 1;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.home_medical_list2 .home_medical_item_box::before {
  background: url(../images/home/medical_arrow.png) center/53% auto no-repeat, linear-gradient(90deg, #a1a1a1 0%, #676767 100%);
}

.home_medical_list2 .home_medical_item_box::after {
  background: url(../images/home/medical_arrow.png) center/53% auto no-repeat, linear-gradient(90deg, #a48b71 0%, #d1c1a3 100%);
}

@media (hover: hover) {
  .home_medical_list2 .home_medical_item_box::after {
    transition: opacity 0.2s ease-in-out;
  }

  .home_medical_list2 .home_medical_item a:hover .home_medical_item_box::after {
    opacity: 0;
  }
}

.home_medical_list2 .home_medical_item_en {
  color: #a48c71;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.home_medical_list2 .home_medical_item_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(22px, 1.4vw, 27px);
  letter-spacing: 0.025em;
  line-height: 1.6;
  margin-bottom: 8px;
}

.home_medical_list2 .home_medical_item_tit span {
  font-size: 70%;
}

@media print, screen and (min-width: 641px) {
  .home_medical .home_tit {
    margin-bottom: 50px;
  }

  .home_medical_list {
    max-width: 1920px;
    margin-inline: auto;
  }

  .home_medical_list .home_medical_item {
    width: calc(100% - 20px);
    height: 600px;
  }

  .home_medical_list .home_medical_item_head {
    max-width: 1500px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .home_medical_list .home_medical_item_head_inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: -30px;
  }

  .home_medical_list .home_medical_item_main {
    height: 100%;
    padding-right: 15.6%;
  }

  .home_medical_list .home_medical_item_img {
    max-width: 620px;
    width: 33%;
    height: 100%;
    -webkit-clip-path: polygon(29% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(29% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
  }

  .home_medical_list .home_medical_item_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  .home_medical_list .home_medical_item_textArea {
    width: 770px;
    height: 100%;
    margin-left: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;
  }

  .home_medical_list .home_medical_item_text {
    line-height: 2.5;
  }

  .home_medical_list .home_medical_item .btn01 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .home_medical_list .home_medical_item .btn01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .home_medical_list .home_medical_item .btn01 a::after {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
  }

  .home_medical_list .home_medical_item:nth-child(even) {
    margin-left: auto;
  }

  .home_medical_list .home_medical_item:nth-child(even) .home_medical_item_bg img {
    -o-object-position: right center;
    object-position: right center;
  }

  .home_medical_list .home_medical_item:nth-child(even) .home_medical_item_head_inner {
    margin-left: auto;
  }

  .home_medical_list .home_medical_item:nth-child(even) .home_medical_item_main {
    padding-right: 0;
    padding-left: 16.1%;
  }

  .home_medical_list .home_medical_item:nth-child(even) .home_medical_item_img {
    -webkit-clip-path: polygon(0 0, 71% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 71% 0, 100% 100%, 0 100%);
    right: auto;
    left: 0;
  }

  .home_medical_list .home_medical_item:nth-child(even) .home_medical_item_textArea {
    margin-left: 0;
  }
}

@media print, screen and (min-width: 641px) and (max-width: 1560px) {
  .home_medical_list .home_medical_item_head_inner {
    margin-left: 0;
  }
}

@media screen and (min-width: 641px) and (hover: hover) {
  .home_medical_list .home_medical_item .btn01 a:hover::after {
    right: -10px;
  }
}

@media screen and (max-width: 640px) {
  .home_medical {
    background-size: 960px auto;
    padding-bottom: 0;
  }

  .home_medical_list {
    padding-inline: 3%;
  }

  .home_medical_list .home_medical_item {
    padding: 50px 3% 30px;
  }

  .home_medical_list .home_medical_item::before {
    background: linear-gradient(0deg, #ceecf2 0%, #ceecf2 66%, transparent 80%, transparent 100%);
    opacity: 1;
  }

  .home_medical_list .home_medical_item > *:not(.home_medical_item_bg) {
    position: relative;
  }

  .home_medical_list .home_medical_item_bg,
  .home_medical_list .home_medical_item_bg img {
    height: auto;
  }

  .home_medical_list .home_medical_item_bg img {
    -o-object-position: center top;
    object-position: center top;
  }

  .home_medical_list .home_medical_item_head {
    margin-bottom: 30px;
  }

  .home_medical_list .home_medical_item_head_en {
    margin-bottom: 0;
  }

  .home_medical_list .home_medical_item_main {
    background: #fff;
  }

  .home_medical_list .home_medical_item_img {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  }

  .home_medical_list .home_medical_item_textArea {
    padding: 10px 6% 30px;
  }

  .home_medical_list .home_medical_item_tit {
    font-size: clamp(14px, 4.2vw, 18px);
    margin-bottom: 10px;
  }

  .home_medical_list .home_medical_item_tit span {
    gap: 0 10px;
    font-size: 120%;
    margin-top: 5px;
  }

  .home_medical_list .home_medical_item .btn01 {
    margin-top: 20px;
  }

  .home_medical_list .home_medical_item .btn01 a {
    width: 100%;
    letter-spacing: 0;
  }

  .home_medical_list .home_medical_item .btn01 a:not(:last-child) {
    margin-bottom: 10px;
  }

  .home_medical_list .home_medical_item:nth-child(2)::before {
    background: linear-gradient(0deg, #f1ece4 0%, #f1ece4 66%, transparent 80%, transparent 100%);
  }

  .home_medical_list .home_medical_item:nth-child(3)::before {
    background: linear-gradient(0deg, #d9eeff 0%, #d9eeff 66%, transparent 80%, transparent 100%);
  }

  .home_medical_list2 {
    gap: 30px 2%;
    margin-top: 60px;
  }

  .home_medical_list2 .home_medical_item {
    width: 49%;
    position: relative;
  }

  .home_medical_list2 .home_medical_item_box {
    padding-right: 0;
    position: static;
  }

  .home_medical_list2 .home_medical_item_box::before,
  .home_medical_list2 .home_medical_item_box::after {
    width: 18%;
    margin-top: 64.7%;
    transform: translateY(-100%);
  }

  .home_medical_list2 .home_medical_item_en {
    font-size: 12px;
  }

  .home_medical_list2 .home_medical_item_tit {
    font-size: 18px;
  }

  .home_medical_list2 .home_medical_item_tit span {
    display: block;
  }

  .home_medical_list2 .home_medical_item_text {
    line-height: 1.6;
  }

  .txt01 p {
    line-height: 1.6;
  }
}

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

  .home_feature

==================================================================*/
.home_feature {
  padding-top: 200px;
  padding-bottom: 130px;
  background: url(../images/home/feature_bg_t.jpg) center top no-repeat, url(../images/home/feature_bg_c.jpg) center top 620px no-repeat, url(../images/home/feature_bg_b.jpg) center bottom no-repeat;
  margin-top: -2px;
}

.home_feature_item:not(:last-child) {
  margin-bottom: 100px;
}

.home_feature_item_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(30px, 2vw, 38px);
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}

.home_feature_item_titSub {
  display: flex;
  align-items: center;
  gap: 0 1.8em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(18px, 1.1vw, 22px);
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}

.home_feature_item_titSub::before,
.home_feature_item_titSub::after {
  display: block;
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.home_feature_item_text {
  margin-top: 35px;
}

.home_feature_item_text p:not(:last-child) {
  margin-bottom: 15px;
}

.home_feature_item .btn01 {
  text-align: center;
  margin-top: 40px;
}

.home_feature_item .btn01 a {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
}

.home_feature_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}

.home_feature_links > li {
  max-width: 180px;
  width: 30%;
  position: relative;
}

.home_feature_links > li::after {
  display: block;
  content: "";
  width: 23%;
  aspect-ratio: 84/16;
  background: url(../images/home/feature_links_arrow.png) center top/100% auto no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 17%;
}

.home_feature_links > li a {
  display: block;
  aspect-ratio: 1;
  color: #fff;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 0.8vw, 16px);
  line-height: 1.4;
  text-align: center;
  padding-top: 20%;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}

.home_feature_links > li a::before,
.home_feature_links > li a::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.home_feature_links > li a::before {
  background: linear-gradient(0deg, #676767 0%, #a1a1a1 100%);
}

.home_feature_links > li a::after {
  background: linear-gradient(0deg, #d1c1a3 0%, #a48b71 100%);
}

@media (hover: hover) {
  .home_feature_links > li a::after {
    transition: opacity 0.2s ease-in-out;
  }

  .home_feature_links > li a:hover::after {
    opacity: 0;
  }
}

.home_feature_links_tit {
  font-size: 138%;
  margin-bottom: 10px;
}

.home_feature_links_tit span {
  display: block;
  font-size: 86%;
}

@media print, screen and (min-width: 641px) {
  .home_feature .home_tit {
    margin-bottom: 70px;
  }

  .home_feature_item {
    display: flex;
    gap: 0 6.8%;
    padding-right: 7.3%;
  }

  .home_feature_item:nth-child(odd) {
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 7.3%;
  }

  .home_feature_item:nth-child(1) {
    margin-bottom: 120px;
  }

  .home_feature_item:nth-child(2) {
    margin-bottom: 150px;
  }

  .home_feature_item_img {
    max-width: 670px;
    width: 49%;
  }

  .home_feature_item:nth-child(2) .home_feature_item_img {
    max-width: 690px;
    width: 50%;
  }

  .home_feature_item_box {
    flex: 1;
    padding-top: 35px;
  }

  .home_feature_item_text {
    line-height: 2.2;
  }

  .home_feature_item .btn01 a {
    min-width: 270px;
  }
}

@media screen and (max-width: 640px) {
  .home_feature {
    padding-top: 90px;
    padding-bottom: 60px;
    background-position: center top, center top 620px, center bottom;
    background-size: 960px auto;
  }

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

  .home_feature_item_img {
    margin-bottom: 20px;
  }

  .home_feature_item_tit {
    font-size: clamp(16px, 5.3vw, 26px);
    letter-spacing: 0.05em;
  }

  .home_feature_item_titSub {
    gap: 0 1em;
    font-size: clamp(14px, 4.2vw, 18px);
    margin-top: 5px;
  }

  .home_feature_item_text {
    margin-top: 20px;
  }

  .home_feature_item .btn01 {
    margin-top: 20px;
  }

  .home_feature_links {
    justify-content: center;
    gap: 0 20px;
    margin-top: 25px;
  }

  .home_feature_links > li {
    width: calc((100% - 20px) / 2);
  }

  .home_feature_links li:first-of-type {
    margin-right: 50px;
    margin-left: 50px;
  }

  .home_feature_links > li::after {
    /* position: static; */
    /* transform: none; */
    margin: 10px auto 0;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
  }

  .home_feature_links > li a {
    display: flex;
    flex-flow: column;
    justify-content: center;
    font-size: clamp(12px, 3.7vw, 14px);
    padding-top: 0;
  }
}

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

  .home_search

==================================================================*/
.home_search {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.home_search_img {
  text-align: center;
}

.home_search .home_tit_en {
  background: linear-gradient(0deg, #888 0%, #888 calc(100% - 0.4em), #fff calc(100% - 0.4em), #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -0.4em;
  position: relative;
}

.home_search_menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}

.home_search_menu > li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 23%;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid #676767;
  padding-top: 15px;
  padding-bottom: 22px;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.home_search_menu > li::before {
  display: block;
  content: "";
  width: 100%;
  height: calc(100% - 4px);
  background: url(../images/home/search_menu_bg.jpg);
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.home_search_menu > li::after {
  display: block;
  content: "";
  width: 15px;
  aspect-ratio: 15/13;
  background: #676767;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

.home_search_menu > li.active {
  color: #fff;
}

.home_search_menu > li.active::before {
  opacity: 1;
}

.home_search_main {
  padding-top: 100px;
  padding-bottom: 120px;
  background: url(../images/home/search_bg.jpg) center top repeat-y;
}

.home_search_con {
  display: none;
}

.home_search_con.active {
  display: block;
}

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

.home_search_tit {
  font-size: clamp(60px, 3.6vw, 70px);
  max-width: 2.2em;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  white-space: nowrap;
  position: relative;
}

.home_search_tit::after {
  display: block;
  content: "";
  width: 100%;
  height: calc(100% + 20px);
  pointer-events: none;
  background-image: url(../images/home/search_tit_dec_l.png), url(../images/home/search_tit_dec_r.png);
  background-position: left top, right bottom;
  background-repeat: no-repeat;
  background-size: 40px auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home_search_tit_en {
  color: #fff;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.075em;
  line-height: 1.1;
  opacity: 0.2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home_search_tit_en.home_search_tit_en-fsS {
  font-size: 71%;
}

.home_search_tit_jp {
  color: #72604c;
  font-size: clamp(32px, 2.2vw, 42px);
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
}

.home_search_con_img {
  width: 70.3%;
}

.home_search_links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2.4%;
}

.home_search_links > li {
  width: 48.8%;
}

.home_search_links > li a {
  display: flex;
  align-items: center;
  gap: 0 7.4%;
  height: 100%;
  background-color: #fff;
  color: var(--text-color);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.4;
  padding: 10px 14% 10px 5%;
  position: relative;
}

.home_search_links > li a::after {
  display: block;
  content: "";
  max-width: 32px;
  width: 8%;
  aspect-ratio: 64/16;
  background: url(../images/home/search_arrow.png) center top/100% auto no-repeat;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.home_search_links_icon {
  flex-shrink: 0;
  display: block;
  max-width: 60px;
  width: 18.5%;
  background-color: #bdb395;
  border-radius: 50%;
}

@media (hover: hover) {
  .home_search_links a {
    transition: 0.2s ease-in-out;
  }

  .home_search_links_icon {
    transition: background-color 0.2s ease-in-out;
  }

  .home_search_links_icon img {
    transition: filter 0.2s ease-in-out;
  }

  .home_search_links > li a:hover {
    background-color: #bdb395;
    color: #fff;
  }

  .home_search_links > li a:hover::after {
    background-image: url(../images/home/search_arrow_after.png);
  }

  .home_search_links > li a:hover .home_search_links_icon {
    background-color: #fff;
  }

  .home_search_links > li a:hover .home_search_links_icon img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(2%) saturate(3458%) hue-rotate(4deg) brightness(92%) contrast(59%);
  }
}

@media print, screen and (min-width: 641px) {
  .home_search .home_tit {
    margin-bottom: 75px;
  }

  .home_search_con {
    align-items: flex-start;
    gap: 0 2.7%;
  }

  .home_search_con.active {
    display: flex;
  }

  .home_search_head {
    flex: 1;
  }

  .home_search_links {
    width: 54.7%;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 640px) {
  .home_search .home_inner {
    padding-inline: 3%;
  }

  .home_search_menu {
    margin-bottom: 30px;
  }

  .home_search_menu > li {
    font-size: clamp(12px, 3.4vw, 18px);
    letter-spacing: 0.05em;
    padding-top: 1em;
    padding-bottom: calc(1em + 4px);
  }

  .home_search_menu > li::before {
    background-size: 200px auto;
  }

  .home_search_menu > li::after {
    width: 12px;
  }

  .home_search_main {
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: 960px auto;
  }

  .home_search_head {
    margin-bottom: 25px;
  }

  .home_search_tit {
    font-size: clamp(20px, 9.6vw, 72px);
  }

  .home_search_tit::after {
    height: calc(100% + 10px);
    background-size: 20px auto;
  }

  .home_search_tit_jp {
    font-size: clamp(16px, 5.8vw, 44px);
  }

  .home_search_links {
    gap: 10px;
  }

  .home_search_links > li {
    width: calc((100% - 10px) / 2);
  }

  .home_search_links > li a {
    gap: 0 5%;
    font-size: clamp(12px, 3.4vw, 16px);
    padding: 10px 30px 10px 10px;
  }

  .home_search_links > li a::after {
    width: 16px;
    right: 10px;
  }

  .home_search_links_icon {
    max-width: 40px;
    width: 23%;
  }
}

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

  .home_greeting

==================================================================*/
.home_greeting {
  padding-top: 120px;
  padding-bottom: 100px;
  background: url(../images/home/greeting_bg_t.jpg) right top no-repeat, url(../images/home/greeting_bg_b.jpg) center bottom no-repeat;
  overflow: hidden;
}

.home_greeting .home_tit {
  text-align: left;
}

.home_greeting_imgArea {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}

.home_greeting_icon {
  max-width: 64px;
  margin: -28px auto 15px;
}

.home_greeting_clinic {
  margin-bottom: 20px;
}

.home_greeting_clinic span {
  display: block;
}

.home_greeting_clinic_en {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 79%;
}

.home_greeting .btn01 {
  margin-top: 55px;
}

.home_greeting .btn01 a {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
}

.home_greeting_textArea {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.home_greeting_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  font-size: clamp(30px, 2vw, 38px);
  letter-spacing: 0.2em;
  line-height: 2.1;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.home_greeting_tit span {
  color: #8d733b;
}

.home_greeting_text {
  letter-spacing: 0.075em;
}

.home_greeting_images {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 25px;
}

.home_greeting_images > * {
  width: 260px;
}

@media print, screen and (min-width: 641px) {
  .home_greeting .home_tit {
    margin-bottom: 0;
  }

  .home_greeting_row {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0 4.3%;
  }

  .home_greeting_imgArea {
    max-width: 670px;
    flex: 1;
  }

  .home_greeting .btn01 a {
    min-width: 270px;
  }

  .home_greeting_textArea {
    width: 51%;
    flex-shrink: 0;
    white-space: nowrap;
    padding-top: 5%;
  }

  .home_greeting_text {
    font-size: clamp(16px, 0.9vw, 17px);
    line-height: 2.5;
    writing-mode: vertical-rl;
    white-space: nowrap;
    padding-top: 8.5%;
  }

  .home_greeting_text p:not(:last-child) {
    margin-left: 20px;
  }

  .home_greeting_images {
    max-width: 1920px;
    margin-inline: auto;
  }

  .home_greeting_images > *:last-child {
    margin-right: -30px;
  }
}

@media screen and (max-width: 640px) {
  .home_greeting {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 60% auto, 960px auto;
  }

  .home_greeting_imgArea {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .home_greeting_img {
    max-width: 335px;
    margin-inline: auto;
  }

  .home_greeting_icon {
    max-width: 42px;
    margin: -18px auto 10px;
  }

  .home_greeting_clinic {
    margin-bottom: 10px;
  }

  .home_greeting .btn01 {
    margin-top: 20px;
  }

  .home_greeting_tit {
    flex-shrink: 0;
    font-size: clamp(18px, 5.8vw, 24px);
    line-height: 1.7;
  }

  .home_greeting_text {
    flex: 1;
  }

  .home_greeting_text p:not(:last-child) {
    margin-bottom: 20px;
  }

  .home_greeting_images {
    justify-content: center;
    gap: 10px;
    padding-inline: 5%;
    margin-top: 30px;
  }

  .home_greeting_images > * {
    max-width: 260px;
    width: calc((100% - 10px) / 2);
  }
}

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

  .home_popular

==================================================================*/
.home_popular {
  padding-top: 100px;
}

.home_popular_item {
  background: #032b4d;
  color: #fff;
  text-align: center;
  padding: 5.2% 10px 5.7%;
  position: relative;
  z-index: 1;
}

.home_popular_item_img {
  pointer-events: none;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.home_popular_item_img,
.home_popular_item_img img {
  width: 100%;
  height: 100%;
}

.home_popular_item_img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.home_popular_item_en {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 2.6vw, 50px);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 15px;
}

.home_popular_item_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 35px;
}

.home_popular_item_text {
  margin-bottom: 40px;
}

.home_popular_item .btn01 a {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  border: 1px solid #fff;
  background: none;
}

.home_popular_item .btn01 a::before {
  opacity: 0;
}

@media (hover: hover) {
  .home_popular_item .btn01 a::before {
    background: url(../images/btn01.png) right top/100px auto no-repeat;
    transition: opacity 0.2s ease-in-out, background-position 0.2s ease-in-out;
  }

  .home_popular_item .btn01 a:hover {
    color: #fff;
  }

  .home_popular_item .btn01 a:hover::before {
    opacity: 1;
    background-position: right -20px top;
  }

  .home_popular_item .btn01 a:hover::after {
    background-image: url(../images/btn01_arrow.png);
  }
}

@media print, screen and (min-width: 641px) {
  .home_popular .home_tit {
    margin-bottom: 60px;
  }

  .home_popular_list {
    display: flex;
    flex-wrap: wrap;
  }

  .home_popular_item {
    display: flex;
    flex-flow: column;
    width: 33.3%;
    aspect-ratio: 640/930;
  }

  .home_popular_item_text {
    font-size: clamp(15px, 0.8vw, 16px);
  }

  .home_popular_item .btn01 {
    margin-top: auto;
  }

  .home_popular_item .btn01 a {
    min-width: 270px;
  }
}

@media screen and (max-width: 640px) {
  .home_popular {
    padding-top: 60px;
  }

  .home_popular_item {
    padding: 50px 5%;
  }

  .home_popular_item_en {
    font-size: clamp(20px, 9.6vw, 36px);
    margin-bottom: 10px;
  }

  .home_popular_item_tit {
    font-size: clamp(18px, 5.3vw, 20px);
    margin-bottom: 25px;
  }

  .home_popular_item_text {
    margin-bottom: 30px;
  }
}

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

  .home_news

==================================================================*/
.home_news {
  padding-top: 120px;
  padding-bottom: 150px;
  position: relative;
}

.home_news::before,
.home_news::after {
  display: block;
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.home_news::before {
  width: 320px;
  background: #faf9f6;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 30px) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 30px) 100%);
}

.home_news::after {
  width: 200px;
  background: url(../images/home/news_bg.jpg);
  -webkit-clip-path: polygon(calc(100% - 48px) 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(calc(100% - 48px) 0, 100% 0, 100% 100%, 0 100%);
}

.home_news_head {
  margin-bottom: 60px;
}

.home_news .home_tit {
  text-align: left;
}

.home_news .home_tit_en {
  color: #888;
  font-size: 100px;
  letter-spacing: 0.15em;
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentcolor;
  margin-bottom: 15px;
}

.home_news_btn {
  display: block;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 5px 60px 5px 0;
  position: relative;
}

.home_news_btn,
.home_news_btn:hover {
  color: #a78f74;
}

.home_news_btn::after {
  display: block;
  content: "";
  width: 42px;
  aspect-ratio: 84/16;
  background: url(../images/home/news_arrow.png) center top/100% auto no-repeat;
  position: absolute;
  right: 0;
  bottom: calc(5px + 0.4em);
}

@media (hover: hover) {
  .home_news_btn::after {
    transition: right 0.2s ease-in-out;
  }

  .home_news_btn:hover::after {
    right: -16px;
  }
}

.home_news_list > li {
  display: flex;
  align-items: center;
  gap: 0 40px;
  padding: 20px 65px;
  line-height: 1.4;
}

.home_news_list > li:nth-child(even) {
  background: #f5f5f5;
}

.home_news_list > li > * {
  display: block;
}

.home_news_list > li > span {
  letter-spacing: 0.075em;
}

.home_news_list > li > em {
  min-width: 160px;
  flex-shrink: 0;
  padding: 8px 20px;
  text-align: center;
}

.home_news_list > li > a {
  color: var(--text-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

@media print, screen and (min-width: 641px) {
  .home_news_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 110px;
    padding-bottom: 10px;
  }

  .home_news .home_tit {
    margin-bottom: -10px;
  }

  .home_news_list > li > span,
  .home_news_list > li > a {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .home_news {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home_news::before {
    width: 50%;
  }

  .home_news::after {
    width: 40%;
    background-size: 346px auto;
  }

  .home_news_head {
    margin-bottom: 30px;
  }

  .home_news .home_tit {
    margin-bottom: 20px;
  }

  .home_news .home_tit_en {
    font-size: clamp(30px, 11.7vw, 44px);
  }

  .home_news_btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    padding-right: 76px;
  }

  .home_news_btn::after {
    right: 16px;
  }

  .home_news_list > li {
    flex-wrap: wrap;
    gap: 10px 15px;
    padding: 20px 5%;
  }

  .home_news_list > li > em {
    min-width: auto;
  }

  .home_news_list > li > a {
    width: 100%;
  }
}

@media screen and (max-width: 640px) and (hover: hover) {
  .home_news_btn:hover::after {
    right: 0;
  }
}

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

  .home_btm

==================================================================*/
.home_btm {
  text-align: center;
}
