@charset "UTF-8";
/*==================================================================

  メインビジュアル

==================================================================*/
.home_mv {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home_mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #b0974b;
  opacity: 0.45;
  position: absolute;
  left: 0;
  top: 192px;
}
.home_mv_slider {
  position: relative;
}
.home_mv_slider::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
}
.home_mv_slider_item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home_mv_catch {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  width: calc(100% - 180px);
  height: 100%;
  padding-left: 10px;
  padding-bottom: 160px;
  margin-left: auto;
  position: relative;
}
.home_mv_catch::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #b0974b;
  opacity: 0.45;
  position: absolute;
  left: 0;
  top: 0;
}
.home_mv_catch_jp {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 4px;
  position: relative;
}
.home_mv_catch_jp::after {
  content: "";
  display: block;
  width: 1920px;
  height: 1px;
  background: #b0974b;
  opacity: 0.45;
  position: absolute;
  right: -360px;
  bottom: 0;
}
.home_mv_open {
  width: 100%;
  max-width: 264px;
}

@media print, screen and (min-width: 641px) {/* pc only */
  .home_mv, .home_mv_slider_item img {
    height: 1068px;
  }
  .home_mv_con {
    width: 1200px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .home_mv_catch_en {
    margin-left: -20px;
  }
  .home_mv_open {
    position: absolute;
    right: 0;
    bottom: 350px;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_mv::after {
    top: 20px;
  }
  .home_mv_slider_item img, .home_mv_catch {
    height: 240px;
  }
  .home_mv_con {
    /*padding: 60px 5%;*/
    padding: 30px 5%;
    background: url(../images/bg.jpg) center top/960px auto;
  }
  .home_mv_catch {
    width: 89%;
    padding-bottom: 20px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  .home_mv_catch_jp {
    font-size: clamp(15px, 4.8vw, 18px);
  }
  .home_mv_catch_jp::after {
    width: calc(112% + 10px);
    right: -6%;
  }
  .home_mv .home_mv_catch_en {
    max-width: 484px;
  }
  .home_mv_open {
    width: 50%;
    margin-inline: auto;
  }
}

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

  共通

==================================================================*/
main {
  background: none;
}

/* inner */
@media print, screen and (min-width: 641px) {/* pc only */
  .home_inner {
    max-width: 1200px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_inner {
    padding-inline: 5%;
  }
}

/* タイトル */
.home_tit {
  text-align: center;
  margin-bottom: 40px;
}
.home_tit_en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "cormorant-garamond", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 72px;
  letter-spacing: 0.06em;
  line-height: 1;
  background: linear-gradient(348deg, #b0974b 0%, #c7b582 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 12px;
}
.home_tit_jp {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media screen and (max-width: 640px) {/* sp */
  .home_tit_en {
    font-size: clamp(30px, 16vw, 60px);
  }
}

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

  home_slider

==================================================================*/
.home_slider {
  background: url(../images/home/slider_bg_logo.png) right 236px bottom no-repeat, url(../images/home/slider_bg.jpg) center top;
  padding-top: 60px;
  padding-bottom: 195px;
  overflow: hidden;
}
.home_slider_item a {
  display: block;
  aspect-ratio: 380/160;
  color: #fff;
  background-color: #000;
  padding-left: 28.9%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home_slider_item:not(.home_slider_item-img) a::after {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid #b0974b;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home_slider_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (hover: hover) {
  .home_slider_item img {
    transition: opacity 0.3s, transform 0.3s;
  }
  .home_slider_item a:hover img {
    opacity: 1;
    transform: scale(1.1);
  }
}
.home_slider_item:not(.home_slider_item-img) img {
  opacity: 0.5;
}
.home_slider_item_inner {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  background: rgb(0 0 0 / 0.6);
  -webkit-clip-path: polygon(66px 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(66px 0, 100% 0, 100% 100%, 0 100%);
}
.home_slider_item_text {
  font-size: 18px;
  line-height: 1.4;
  background: #000;
  padding: 6px 20px 10px 55px;
  position: relative;
}
.home_slider_item_tit {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.home_slider_item_en {
  color: #bda86b;
  font-size: 67%;
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}
.home_slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.home_slider .slick-prev,
.home_slider .slick-next {
  width: 50px;
  height: 50px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  top: 50%;
  z-index: 1;
}
.home_slider .slick-prev::before,
.home_slider .slick-next::before {
  display: none;
}
.home_slider .slick-prev {
  left: -10px;
  background-image: url(../images/home/slider_arrow_l.jpg);
}
.home_slider .slick-next {
  right: -10px;
  background-image: url(../images/home/slider_arrow_r.jpg);
}
.home_slider .slick-dots {
  line-height: 1;
  bottom: auto;
  top: calc(100% + 25px);
}
.home_slider .slick-dots li {
  margin: 0 3px;
  vertical-align: top;
}
.home_slider .slick-dots li button {
  padding: 0;
  line-height: 1;
}
.home_slider .slick-dots li button:before {
  opacity: 1;
}
.home_slider .slick-dots li.slick-active button:before {
  color: #b0974b;
}

@media print, screen and (min-width: 641px) {/* pc only */
  .home_slider_list {
    margin-inline: -15px;
  }
  .home_slider_item {
    padding-inline: 15px;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_slider {
    background-size: 50% auto, 960px auto;
    background-position: right bottom, center top;
    padding-bottom: 120px;
  }
  .home_slider_list {
    max-width: 400px;
    margin-inline: auto;
  }
  .home_slider_item_text {
    font-size: clamp(15px, 4.8vw, 18px);
  }
  .home_slider .slick-prev {
    left: -6%;
  }
  .home_slider .slick-next {
    right: -6%;
  }
  .home_slider .slick-dots {
    top: calc(100% + 15px);
  }
}

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

  home_news

==================================================================*/
.home_news {
  padding-bottom: 100px;
  margin-top: -95px;
  position: relative;
  overflow: hidden;
}
.home_news::after {
  content: "";
  display: block;
  width: 100%;
  max-height: 566px;
  height: 100%;
  background: url(../images/home/news_bg.jpg) center top;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.home_news_head {
  padding-top: 145px;
  position: relative;
  z-index: 1;
}
.home_news_head::before {
  content: "";
  display: block;
  width: calc(100% + 360px);
  height: 100%;
  background: url(../images/home/news_bg3.jpg);
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.home_news_head::after {
  content: "";
  display: block;
  width: calc(100% + 360px - 20px);
  height: calc(100% - 20px);
  border: 1px solid #b0974b;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.home_news_head > * {
  position: relative;
}
.home_news .home_tit {
  margin-bottom: 0;
}
.home_news_listWrap {
  padding-top: 110px;
  padding-left: 160px;
  position: relative;
}
.home_news_listWrap::before {
  content: "";
  display: block;
  width: calc(100% + 80px);
  height: 100%;
  background: url(../images/home/news_bg2.jpg);
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.home_news_listWrap > * {
  position: relative;
}
.home_news_list {
  line-height: 1.4;
}
.home_news_list > li {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgb(178 136 80 / 0.2);
}
.home_news_list > li,
.home_news_list > li a {
  color: #4a5054;
}
.home_news_list > li:not(:last-child) {
  margin-bottom: 35px;
}
.home_news_list > li > * {
  display: block;
}
.home_news_list > li span {
  font-size: 93%;
}
.home_news_list > li em {
  min-width: 120px;
  padding: 6px 10px;
  font-size: 87%;
  text-align: center;
  flex-shrink: 0;
}
.home_news_list > li a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (hover: hover) {
  .home_news_list > li a {
    transition: color 0.3s;
  }
  .home_news_list > li a:hover {
    color: var(--main-color);
  }
}
.home_news .btn01 {
  margin-top: 25px;
}
.home_news .btn01 a {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  padding: 13px 60px 13px 30px;
}

@media print, screen and (min-width: 641px) {/* pc only */
  .home_news .home_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .home_news .home_inner > * {
    min-height: 500px;
  }
  .home_news_head {
    width: 380px;
  }
  .home_news .home_tit {
    text-align: left;
  }
  .home_news .home_tit_en {
    font-size: 71px;
    margin: 0 0 12px;
  }
  .home_news_listWrap {
    width: 920px;
    margin-left: -100px;
    margin-top: 60px;
  }
  .home_news_list {
    font-size: 15px;
  }
  .home_news .btn01 a {
    min-width: 180px;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_news {
    padding-bottom: 80px;
    margin-top: -40px;
  }
  .home_news::after {
    background-size: 960px auto;
    max-height: none;
  }
  .home_news .home_inner {
    padding: 0;
  }
  .home_news_head {
    width: 95%;
    padding: 50px 5%;
    margin-bottom: -60px;
  }
  .home_news_head::before {
    width: 100%;
    background-size: 100% auto;
  }
  .home_news_head::after {
    width: calc(100% - 10px);
    border-left: none;
  }
  .home_news_listWrap {
    padding: 100px 5% 60px;
  }
  .home_news_listWrap::before {
    width: 100%;
    background-size: cover;
  }
  .home_news_list > li {
    flex-wrap: wrap;
    padding-bottom: 25px;
  }
  .home_news_list > li:not(:last-child) {
    margin-bottom: 25px;
  }
  .home_news_list > li a {
    width: 100%;
  }
  .home_news .btn01 {
    text-align: center;
  }
}

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

  home_info

==================================================================*/
.home_info {
  background: url(../images/home/info_bg.jpg) center top/cover no-repeat;
  padding-top: 90px;
  padding-bottom: 110px;
  position: relative;
}
.home_info::before, .home_info::after {
  display: block;
  content: "";
  width: 100%;
  max-height: 100%;
  height: 440px;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home_info::before {
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.home_info::after {
  background: #000;
  opacity: 0.64;
}
.home_info > * {
  position: relative;
  z-index: 1;
}

.home_info_left {
  background: rgb(0 0 0 / 0.84);
  padding: 90px 50px;
}
.home_info_left,
.home_info_left a {
  color: #fff;
}

.home_info_logo {
  max-width: 194px;
  text-align: center;
  margin: 0 auto 20px;
}

@media (hover: hover) {
  .home_info_logo a {
    transition: opacity 0.3s;
  }
  .home_info_logo a:hover {
    opacity: 0.7;
  }
}
.home_info_address {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.home_info_tel {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 31px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 15px;
}

.home_info_tel span {
  font-size: 45%;
  padding-right: 0.5em;
}

.home_info_schedule {
  margin-top: 35px;
}
.home_info_schedule table {
  background: none;
}
.home_info_schedule .schedule_note {
  color: #fff;
}

.home_info_right iframe {
  width: 100%;
  height: 100%;
}

.home_info_right .btn02 {
  text-align: right;
  margin-top: -30px;
}
.home_info_right .btn02 a {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
}
.home_info_right .btn02 a:not(:hover) {
  background-color: #000;
}

@media print, screen and (min-width: 641px) {/* pc only */
  .home_info .home_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .home_info_left {
    width: 610px;
  }
  .home_info_right {
    width: 590px;
  }
  .home_info_right .btn02 a {
    min-width: 180px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_info {
    background-image: url(../images/home/info_bg_sp.jpg);
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home_info::before, .home_info::after {
    height: 60%;
  }
  .home_info_left {
    padding: 50px 5%;
  }
  .home_info_tel {
    font-size: clamp(20px, 8vw, 30px);
  }
  .home_info_right iframe {
    height: 340px;
  }
  .home_info_right .btn02 {
    margin-top: 0;
  }
}

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

  home_feature

==================================================================*/
.home_feature {
  counter-reset: feature_num 0;
}
.home_feature_head {
  background: url(../images/home/feature_head_bg_logo.png) center no-repeat, url(../images/bg.jpg) center top;
  padding-block: 60px;
}
.home_feature .home_tit {
  margin-bottom: 0;
}
.home_feature .home_tit_en {
  margin-bottom: 0;
}
.home_feature .home_tit_jp {
  font-size: 36px;
  color: #fff;
}
.home_feature .home_tit_jp span {
  display: inline-block;
  width: 2.1em;
  height: 0;
  padding-top: 3.4em;
  background: url(../images/home/feature_tit_7.png) center top/auto 100% no-repeat;
  overflow: hidden;
}
.home_feature_item {
  counter-increment: feature_num;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  background: #000;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home_feature_item,
.home_feature_item a {
  color: #fff;
}
.home_feature_item [class*=_en] {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
  color: #baa461;
}
.home_feature_item_img {
  width: 100%;
  height: 100%;
  opacity: 0.45;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.home_feature_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home_feature_item_en {
  pointer-events: none;
  position: absolute;
  left: 80px;
  top: 136px;
}
.home_feature_item_en::before {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 106px;
  aspect-ratio: 1;
  content: counter(feature_num, decimal-leading-zero);
  color: #bba35b;
  font-family: "cormorant-garamond", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 70px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  background: url(../images/home/feature_num.png) center/100% auto no-repeat;
  padding-bottom: 0.2em;
}
.home_feature_item_en img {
  max-width: none;
  width: 152px;
  position: absolute;
  top: 116px;
  left: 50%;
  transform: translateX(-50%);
}
.home_feature_item_titWrap {
  font-size: 24px;
  line-height: 1.6;
}
.home_feature_item_tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
.home_feature_item_tit::before {
  display: block;
  content: "";
  width: 2px;
  min-height: calc(7.3em + 30px);
  height: 100%;
  background: rgb(176 151 75 / 0.5);
  position: absolute;
  right: 0;
  bottom: 0;
}
.home_feature_item_tit_jp {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 51px;
  letter-spacing: 0.1em;
  padding-right: 22px;
}
.home_feature_item_tit_jp span {
  display: block;
  font-size: 71%;
}
.home_feature_item_tit_en {
  letter-spacing: 0.1em;
  text-align: right;
  border-top: 2px solid rgb(176 151 75 / 0.5);
  padding-top: 10px;
  padding-right: calc(2em + 22px);
  margin-top: 5px;
  margin-right: -2em;
  position: relative;
}
.home_feature_item_tit_en::before,
.home_feature_item_tit_en::after {
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
  position: absolute;
  right: 0;
}
.home_feature_item_tit_en::before {
  content: "Feature";
  font-size: 133%;
  top: -15px;
  transform: translateY(-100%);
}
.home_feature_item_tit_en::after {
  content: counter(feature_num, decimal-leading-zero);
  font-size: 192%;
  margin-right: -0.2em;
  top: 10px;
}
.home_feature_item_textArea {
  width: 100%;
  padding: 50px 0 100px;
  position: relative;
}
.home_feature_item_textArea::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/* 特徴02のぼかしをとる */
.home_feature_item:nth-of-type(2) .home_feature_item_textArea::before{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.home_feature_item_textArea .home_feature_item_inner {
  position: relative;
  z-index: 1;
}
.home_feature_item_textArea_en {
  font-size: clamp(80px, 7.8vw, 150px);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  left: 55px;
  bottom: 50px;
  z-index: -1;
}
.home_feature_item_text {
  max-width: 1000px;
}
.home_feature_item_text:not(:last-child) {
  margin-bottom: 50px;
}
.home_feature_item_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home_feature_item_btn a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  background-color: #000;
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 15px 60px 15px 30px;
  transition: ease-in-out 0.1s;
  position: relative;
}
.home_feature_item_btn a::before {
  display: block;
  content: "";
  width: 20px;
  height: 10px;
  background: url(../images/arrow_right.png) left top/100% auto no-repeat;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .home_feature_item_btn a {
    transition: background-color 0.3s;
  }
  .home_feature_item_btn a:hover {
    background-color: var(--main-color) !important;
  }
  .home_feature_item_btn a::before {
    transition: right 0.3s;
  }
  .home_feature_item_btn a:hover::before {
    right: 14px;
  }
}
.home_feature_item_btn a:nth-child(2) {
  background-color: #000b23;
}
.home_feature_item_btn a:nth-child(3) {
  background-color: #190024;
}
.home_feature_item_btn a:nth-child(4) {
  background-color: #112118;
}
.home_feature_item_btn a:nth-child(5) {
  background-color: #362e2b;
}
.home_feature_item_btn.home_feature_item_btn-en a {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}
.home_feature_list-3col .home_feature_item_img {
  opacity: 0.3;
}
.home_feature_list-3col .home_feature_item:last-child .home_feature_item_img {
  opacity: 0.5;
}

@media print, screen and (min-width: 641px) {/* pc only */
  .home_feature_head {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 500px;
  }
  .home_feature_item {
    min-height: 720px;
  }
  .home_feature_item_inner {
    width: 1200px;
    margin-inline: auto;
  }
  .home_feature_item_tit {
    margin-left: auto;
  }
  .home_feature_item_btn.home_feature_item_btn-en a {
    min-width: 240px;
    padding-left: 40px;
    text-align: center;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_en {
    left: auto;
    right: 80px;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_tit {
    margin-left: 0;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_tit::before {
    right: auto;
    left: 0;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_tit_jp {
    padding-right: 0;
    padding-left: 22px;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_tit_en {
    text-align: left;
    padding-right: 0;
    padding-left: calc(2em + 22px);
    margin-right: 0;
    margin-left: -2em;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_tit_en::before,
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_tit_en::after {
    right: auto;
    left: 0;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_tit_en::after {
    margin-right: 0;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_textArea {
    padding-top: 0;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_textArea_en {
    left: auto;
    right: 55px;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_text {
    margin-left: auto;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_text:not(:last-child) {
    margin-bottom: 100px;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_btn {
    justify-content: flex-end;
  }
  .home_feature_list-3col {
    display: flex;
    flex-wrap: wrap;
  }
  .home_feature_list-3col .home_feature_item {
    width: 33.3333333333%;
    min-height: 686px;
  }
  .home_feature_list-3col .home_feature_item_en {
    left: 8px;
    top: 210px;
  }
  .home_feature_list-3col .home_feature_item_en img {
    width: 106px;
    top: 106px;
  }
  .home_feature_list-3col .home_feature_item_titWrap {
    font-size: clamp(14px, 1.2vw, 24px);
    padding-left: 114px;
    padding-right: 2em;
  }
  .home_feature_list-3col .home_feature_item_tit {
    margin-inline: auto;
  }
  .home_feature_list-3col .home_feature_item_tit_jp {
    font-size: clamp(30px, 2.6vw, 51px);
    line-height: 1.4;
  }
  .home_feature_list-3col .home_feature_item_textArea {
    min-height: 285px;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    padding: 40px 40px 90px;
  }
  .home_feature_list-3col .home_feature_item_textArea_en {
    font-size: clamp(80px, 6.7vw, 130px);
    left: 30px;
    bottom: 20px;
  }
  .home_feature_list-3col .home_feature_item_btn {
    justify-content: center;
  }
  .home_feature_list-3col .home_feature_item_btn a {
    font-family: "cormorant-garamond", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    min-width: 240px;
    padding-left: 40px;
    text-align: center;
  }
}

@media screen and (min-width: 641px) and (max-width: 1580px) {
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item_textArea .home_feature_item_inner {
    padding-left: 200px;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_textArea .home_feature_item_inner {
    padding-left: 0;
    padding-right: 200px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1300px) {
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item_titWrap {
    padding-right: 50px;
  }
  .home_feature_list:not(.home_feature_list-3col) .home_feature_item:nth-child(even) .home_feature_item_titWrap {
    padding-right: 0;
    padding-left: 50px;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_feature_head {
    background-size: auto calc(100% - 50px), 960px auto;
  }
  .home_feature .home_tit_jp {
    font-size: clamp(16px, 5.3vw, 20px);
  }
  .home_feature_item {
    min-height: 100svh;
    padding-top: 60px;
  }
  .home_feature_item_en {
    left: 4px;
    top: 20px;
  }
  .home_feature_item_en::before {
    width: 50px;
    font-size: 34px;
  }
  .home_feature_item_en img {
    width: 50px;
    top: 50px;
  }
  .home_feature_item_titWrap {
    font-size: clamp(10px, 3.7vw, 14px);
    padding-left: 60px;
    padding-right: calc(2em + 5%);
  }
  .home_feature_item_tit {
    width: 100%;
  }
  .home_feature_item_tit_jp {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(18px, 5.8vw, 22px);
    margin-left: auto;
  }
  .home_feature_item_textArea {
    padding: 20px 5% 50px;
  }
  .home_feature_item_textArea_en {
    font-size: clamp(28px, 10.6vw, 80px);
    left: 5%;
    bottom: 10px;
  }
  .home_feature_item_text:not(:last-child) {
    margin-bottom: 20px;
  }
  .home_feature_item_btn {
    justify-content: center;
  }
  .home_feature_item_btn a {
    width: calc((100% - 10px) / 2);
    text-align: center;
    padding: 12px 30px 12px 10px;
  }
  .home_feature_item_btn a::before {
    right: 10px;
  }
}

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

  home_greeting

==================================================================*/
.home_greeting {
  padding: 150px 100px;
  background: url(../images/home/greeting_bg_en.png) left 60px top 100px no-repeat, url(../images/home/greeting_bg_dmy.jpg) center top/cover;
  overflow: hidden;
}
.home_greeting_name {
  color: #fff;
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  padding: 20px;
  margin-top: -15px;
  position: relative;
  background: url(../images/home/greeting_name_bg.jpg);
  text-align: center;
}
/*.home_greeting_name::before {
  display: block;
  content: "";
  width: calc(100% + 200px);
  height: 100%;
  background: url(../images/home/greeting_name_bg.jpg);
  position: absolute;
  left: 0;
  top: 0;
}*/
.home_greeting_name > * {
  position: relative;
}
.home_greeting_name_clinic {
  margin-bottom: 10px;
}
.home_greeting_name_doctor span {
  font-size: 138%;
  letter-spacing: 0.1em;
}
.home_greeting_catch {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 23px;
  letter-spacing: 0.08em;
  line-height: 2.1;
  margin-bottom: 25px;
}
.home_greeting_text p:not(:last-child) {
  margin-bottom: 50px;
}
.home_greeting .btn01 {
  text-align: right;
  margin-top: 75px;
}
.home_greeting .btn01 a {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
}

@media print, screen and (min-width: 641px) {/* pc only */
  .home_greeting .home_tit {
    margin-bottom: 80px;
  }
  .home_greeting .home_tit_jp {
    font-size: 20px;
  }
  .home_greeting_flex {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    gap: 0 100px;
  }
  .home_greeting_imgArea {
    width: 570px;
    padding-left: 10px;
    margin-right: -170px;
  }
  .home_greeting_textArea {
    flex: 1;
    padding-bottom: 90px;
  }
  .home_greeting_text {
    font-size: 17px;
    line-height: 2.9;
  }
  .home_greeting .btn01 a {
    min-width: 240px;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_greeting {
    padding: 60px 0;
    background-image: url(../images/home/greeting_bg_en.png), url(../images/home/greeting_bg_sp_dmy.jpg);
    background-size: 92px auto, cover;
    background-position: left -20px bottom 200px, center top;
  }
  .home_greeting_img {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }
  .home_greeting_name {
    padding: 20px;
  }
  .home_greeting_name::before {
    width: 106%;
    background-size: 100% auto;
  }
  .home_greeting_textArea {
    margin-top: 40px;
  }
  .home_greeting_catch {
    font-size: clamp(15px, 4.8vw, 18px);
  }
  .home_greeting_text p:not(:last-child) {
    margin-bottom: 25px;
  }
  .home_greeting .btn01 {
    margin-top: 40px;
  }
}

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

  home_menu

==================================================================*/
.home_menu_head {
  background: url(../images/home/menu_head_bg.jpg) center top;
  padding-top: 145px;
  padding-bottom: 60px;
}
.home_menu .home_tit {
  margin-bottom: 0;
}
.home_menu .home_tit_jp {
  color: #fff;
}
.home_menu_main {
  background: url(../images/home/menu_bg_dmy.jpg) center top/cover;
  padding-block: 130px;
}
.home_menu_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.home_menu_item {
  width: 360px;
}
.home_menu_item a {
  display: flex;
  flex-flow: column;
  height: 100%;
  color: var(--text-color);
  background: rgb(255 255 255 / 0.38);
  border: 8px solid rgb(255 255 255 / 0.22);
  background-clip: padding-box;
  line-height: 1.4;
  text-align: center;
  padding: 45px 10px 40px;
}
.home_menu_item_icon {
  max-width: 112px;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #875c27 0%, #b99b47 100%);
  border-radius: 50%;
  margin: 0 auto 25px;
}
.home_menu_item_tit {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.1em;
}
.home_menu_item_en {
  color: #967309;
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-bottom: 12px;
}
.home_menu_item .btn01 {
  margin-top: auto;
}
.home_menu_item .btn01 > span {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  padding: 8px 60px 8px 40px;
}
@media (hover: hover) {
  .home_menu_item a:hover .btn01 > span::before {
    opacity: 1;
  }
  .home_menu_item a:hover .btn01 > span::after {
    right: 10px;
  }
}

@media print, screen and (min-width: 641px) {/* pc only */
  .home_menu .home_tit_jp {
    font-size: 28px;
  }
  .home_menu_item a {
    min-height: 370px;
  }
}

@media screen and (max-width: 640px) {/* sp */
  .home_menu_head {
    background-size: 960px auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home_menu_main {
    padding-block: 60px;
    background-image: url(../images/home/menu_bg_sp_dmy.jpg);
  }
  .home_menu_list {
    justify-content: center;
    gap: 10px;
  }
  .home_menu_item {
    width: calc((100% - 10px) / 2);
  }
  .home_menu_item a {
    border-width: 4px;
    padding: 25px 0;
  }
  .home_menu_item_icon {
    max-width: 80px;
    margin-bottom: 15px;
  }
  .home_menu_item_tit {
    font-size: clamp(14px, 4.2vw, 24px);
  }
  .home_menu_item_en {
    font-size: clamp(10px, 3.2vw, 14px);
    margin-bottom: 15px;
  }
  .home_menu_item .btn01 > span {
    padding-left: 20px;
    padding-right: 40px;
  }
  .home_menu_item .btn01 > span::after {
    right: 10px;
  }
}

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

  home_loopSlider

==================================================================*/
.home_loopSlider {
  padding-block: 40px;
}
.home_loopSlider #loop_slide {
  max-height: 220px;
  overflow: hidden;
}
.home_loopSlider .slick-slide {
  padding-inline: 10px;
}

@media screen and (max-width: 640px) {/* sp */
  .home_loopSlider {
    padding-block: 20px;
  }
  .home_loopSlider #loop_slide {
    max-height: 110px;
  }
  .home_loopSlider .slick-slide {
    padding-inline: 5px;
  }
  .home_loopSlider img {
    width: 180px;
  }
}
