@charset "UTF-8";

.nav_wrap {
  background: #fff;
}

main > * {
  background-color: #fff;
}

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

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

/* タイトル */
.home_en {
  font-family: "josefin-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 120px;
  letter-spacing: 0.025em;
  line-height: 1;
}

.home_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .home_en {
    font-size: clamp(50px, 16vw, 120px);
    margin-bottom: 10px;
  }
  .home_tit {
    font-size: clamp(24px, 6.9vw, 40px);
  }
}

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

  home_mv

==================================================================*/
.home_mv {
  height: 900px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.home_mv .splide {
  width: 100%;
  height: 100%;
}
.home_mv .splide .splide__track {
  width: 100%;
  height: 100%;
}
.home_mv .splide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home_mv_catch {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home_mv_catch_text {
  display: inline-block;
  color: #fff;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  letter-spacing: 0.2em;
  line-height: 1.9;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow: 0 0 10px #717171, 0 0 10px #717171;
}
@media not print {
  .home_mv_catch_text {
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
    transition-duration: 0.8s;
    transition-delay: 0.8s;
    opacity: 0;
    transform: translateY(-30px);
  }
  .home_mv_catch_text span {
    transition-property: color;
    transition-duration: 1.5s;
    transition-delay: 1.6s;
  }
  .home_mv_catch_text.home_mv_catch_text-on {
    opacity: 1;
    transform: none;
  }
  .home_mv_catch_text.home_mv_catch_text-on span:first-of-type {
    color: #feec8b;
  }
  .home_mv_catch_text.home_mv_catch_text-on span:last-of-type {
    color: #b1d2de;
  }
}

.home_mv_bnr {
  max-width: 460px;
  position: absolute;
  left: 0;
  bottom: 80px;
}
.home_mv_bnr img {
  border-radius: 0 5px 5px 0;
}
@media (hover: hover) {
  .home_mv_bnr a:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 640px) {
  .home_mv {
    height: calc(100svh - 60px);
  }
  .home_mv_catch_text {
    font-size: clamp(30px, 9.6vw, 36px);
    line-height: 1.6;
  }
  .home_mv_bnr {
    width: 90%;
    bottom: 6svh;
  }
}

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

  .home_top

==================================================================*/
.home_top {
  padding-top: 80px;
  background: url(../images/home/main_bg_r.png) #fff right top no-repeat;
}

@media screen and (max-width: 640px) {
  .home_top {
    padding-top: 40px;
    background: #fff;
  }
}

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

  .home_implantBnr

==================================================================*/
.home_implantBnr {
  text-align: center;
  padding-bottom: 85px;
}
.home_implantBnr a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid #8bc1d2;
  margin-inline: auto;
}

@media (hover: hover) {
  .home_implantBnr a:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 640px) {
  .home_implantBnr {
    padding-bottom: 30px;
  }
}

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

  .home_nav（SPのみ）

==================================================================*/
.home_nav,
.home_nav_accordion_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_nav {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  padding-bottom: 30px;
}

.home_nav a {
  color: var(--text-color);
}

.home_nav li {
  width: calc(50% - 5px);
}

.home_nav li.home_nav_accordion {
  width: 100%;
}

.home_nav li > a,
.home_nav li > p {
  display: block;
  padding: 10px 26px 10px 10px;
  border-bottom: 1px solid var(--border-color);
}

.home_nav li > a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  background: url(../images/btn_arrow_blue.png) right 10px center/16px auto no-repeat;
}

/* アコーディオン */
.home_nav_accordion_btn {
  text-align: center;
  cursor: pointer;
  position: relative;
}

.home_nav_accordion_btn::before,
.home_nav_accordion_btn::after {
  display: block;
  content: "";
  width: 12px;
  height: 2px;
  background: var(--sky-color);
  position: absolute;
  right: 10px;
  top: 50%;
  transition: transform 0.3s, opacity 0.3s;
}

.home_nav_accordion_btn::before {
  transform: rotate(90deg);
}

.home_nav_accordion_btn.open::before {
  opacity: 0;
  transform: rotate(180deg);
}

.home_nav_accordion_box {
  display: none;
  padding: 5px 15px 15px 15px;
  background: var(--bg-color);
  border-radius: 5px;
  letter-spacing: 0;
  margin-top: 5px;
}

.home_nav_accordion_box ul li a {
  padding-right: 20px;
  padding-left: 0;
  background-position: right center;
}

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

  .home_concept

==================================================================*/
.home_concept {
  padding-bottom: 150px;
  background: url(../images/home/concept_bg_l.png) left bottom no-repeat;
}
.home_concept .home_en {
  color: #cde4ed;
  text-align: center;
}
.home_concept .home_tit {
  margin-bottom: 30px;
}
.home_concept .home_tit span:first-of-type {
  color: #e26262;
}
.home_concept .home_tit span:last-of-type {
  color: #de7f46;
}
.home_concept_en {
  max-width: 354px;
  margin-bottom: 45px;
  margin-left: auto;
}
.home_concept_text {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 106%;
}
.home_concept_text p:not(:last-child) {
  margin-bottom: 1.2em;
}
.home_concept .btn01 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 50px;
}

@media print, screen and (min-width: 641px) {
  .home_concept_textArea {
    padding-right: calc(50% + 20px);
    padding-top: 98px;
    margin-top: -15px;
    position: relative;
  }
  .home_concept_img {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .home_concept_text {
    line-height: 2.4;
  }
  .home_concept .btn01 a:first-child {
    width: 250px;
  }
  .home_concept .btn01 a:last-child {
    width: 280px;
  }
}

@media screen and (max-width: 640px) {
  .home_concept {
    padding-top: 40px;
    padding-bottom: 45px;
    background: url(../images/home/concept_bg_l.png) left bottom/546px auto no-repeat, url(../images/home/concept_bg_r_t_sp.png) right top/70% auto no-repeat;
  }
  .home_concept .home_en {
    text-align: left;
    margin-bottom: 15px;
  }
  .home_concept .home_tit {
    margin-bottom: 10px;
  }
  .home_concept_en {
    width: 63%;
    margin-bottom: 5px;
    position: relative;
  }
  .home_concept_img {
    width: 80%;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .home_concept .btn01 {
    justify-content: center;
    gap: 10px 20px;
    margin-top: 20px;
  }
}

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

  .home_slide

==================================================================*/
.home_slide .splide__list {
  gap: 20px;
}

.home_slide .splide__slide {
  width: 450px !important;
}

@media screen and (max-width: 640px) {
  .home_slide .splide__slide {
    width: 225px !important;
  }
}

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

  .home_pickup

==================================================================*/
.home_pickup {
  background: url(../images/home/pickup_bg_top.jpg) center top 40px no-repeat, linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40px, #fff 40px, #fff 100%);
  padding-top: 210px;
  padding-bottom: 140px;
  counter-reset: pickup_num 0;
  overflow: hidden;
  position: relative;
}
.home_pickup::before,
.home_pickup::after {
  display: block;
  content: "";
  height: calc(100% - 380px);
  pointer-events: none;
  position: absolute;
  top: 380px;
  left: 50%;
  transform: translateX(-50%);
}
.home_pickup::before {
  width: calc(100% - 80px);
  background: url(../images/home/pickup_bg.jpg);
  border-radius: 10px;
}
@media screen and (max-width: 1740px) {
  .home_pickup::before {
    width: 100%;
  }
}
.home_pickup::after {
  width: 100%;
  background-image: url(../images/home/pickup_bg_l_t.png), url(../images/home/pickup_bg_r_b.png);
  background-position: left top, right bottom 608px;
  background-repeat: no-repeat;
}
.home_pickup > * {
  position: relative;
  z-index: 1;
}
.home_pickup .home_en {
  color: #d0c8bd;
}
.home_pickup .home_tit span {
  color: #de7f46;
}
.home_pickup_head {
  margin-bottom: 100px;
}
.home_pickup_item {
  counter-increment: pickup_num;
}
.home_pickup_item_inner::before {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  content: "PICK UP " counter(pickup_num, decimal-leading-zero);
  font-family: "josefin-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: left;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}
.home_pickup_item_img {
  text-align: center;
}
.home_pickup_item_tit {
  color: #674632;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(30px, 1.6vw, 32px);
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.home_pickup_item_tit span {
  font-size: 69%;
}
.home_pickup_item_titSub {
  color: #438725;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.025em;
  line-height: 1.7;
  margin-top: 12px;
}
.home_pickup_item_titSub.orange {
  color: #d76933;
}
.home_pickup_item_titSub.blue {
  color: #3f7db6;
}
.home_pickup_item_titSub.pink {
  color: #db607a;
}
.home_pickup_item_text {
  margin-top: 20px;
}
.home_pickup_item .btn01 {
  text-align: center;
}
@media (hover: hover) {
  .home_pickup_item .btn01 a:hover {
    background-color: rgba(175, 83, 15, 0.2);
  }
}
.home_pickup_list {
  margin-bottom: 65px;
}
.home_pickup_list .home_pickup_item:nth-child(1) .home_pickup_item_img {
  display: flex;
  flex-wrap: wrap;
}
.home_pickup_list .home_pickup_item:nth-child(1) .home_pickup_item_img > * {
  width: 50%;
}
.home_pickup_list .home_pickup_item:nth-child(1) .home_pickup_item_img > *:nth-child(1) {
  margin-top: 9%;
}
.home_pickup_list .home_pickup_item:nth-child(1) .home_pickup_item_img > * img:first-child {
  margin-bottom: -13%;
  position: relative;
}

@media print, screen and (min-width: 641px) {
  .home_pickup {
    margin-top: -40px;
  }
  .home_pickup .home_en {
    margin-top: -210px;
  }
  .home_pickup .home_tit {
    margin-right: 40px;
  }
  .home_pickup_head {
    max-width: 1280px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
  }
  .home_pickup_head_img {
    margin-left: -220px;
  }
  .home_pickup_head_tit {
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
  .home_pickup_item .btn01 a {
    width: 100%;
  }
  .home_pickup_list .home_pickup_item:not(:last-child) {
    margin-bottom: 50px;
  }
  .home_pickup_list .home_pickup_item_inner {
    max-width: 1320px;
    padding-inline: 20px;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0 5%;
  }
  .home_pickup_list .home_pickup_item_inner::before {
    display: none;
  }
  .home_pickup_list .home_pickup_item_img {
    width: 50%;
  }
  .home_pickup_list .home_pickup_item_textArea {
    flex: 1;
    display: flex;
    flex-flow: column;
    text-align: center;
  }
  .home_pickup_list .home_pickup_item_textArea::before {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    content: "PICK UP " counter(pickup_num, decimal-leading-zero);
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
    margin-bottom: auto;
  }
  .home_pickup_list .home_pickup_item_tit {
    font-size: clamp(32px, 1.8vw, 35px);
    font-weight: 500;
    margin-top: 15px;
  }
  .home_pickup_list .home_pickup_item_tit_large {
    font-size: 42px;
    font-weight: bold;
  }
  .home_pickup_list .home_pickup_item_titSub {
    font-size: 25px;
  }
  .home_pickup_list .home_pickup_item_text {
    line-height: 2.5;
  }
  .home_pickup_list .home_pickup_item .btn01 {
    margin-top: 40px;
  }
  .home_pickup_list .home_pickup_item .btn01 a {
    max-width: 390px;
  }
  .home_pickup_list .home_pickup_item_en {
    width: 100%;
    margin-left: -100px;
    margin-top: 30px;
  }
  .home_pickup_list .home_pickup_item_en img {
    width: auto;
    max-height: 72px;
  }
  .home_pickup_list .home_pickup_item:nth-child(odd) .home_pickup_item_inner {
    flex-direction: row-reverse;
  }
  .home_pickup_list .home_pickup_item:nth-child(odd) .home_pickup_item_en {
    text-align: right;
    margin-left: 0;
    margin-right: -100px;
  }
  .home_pickup_list .home_pickup_item:nth-child(1) .home_pickup_item_img {
    margin-top: -75px;
  }
  .home_pickup_list .home_pickup_item:nth-child(1) .home_pickup_item_en {
    margin-top: -22px;
  }
  .home_pickup_list2 {
    max-width: 1680px;
    margin-inline: auto;
    padding-inline: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 3%;
  }
  .home_pickup_list2 .home_pickup_item {
    max-width: 500px;
    width: 31%;
  }
  .home_pickup_list2 .home_pickup_item_inner {
    height: 100%;
    display: flex;
    flex-flow: column;
  }
  .home_pickup_list2 .home_pickup_item_img {
    margin-block: 30px 38px;
  }
  .home_pickup_list2 .home_pickup_item_textArea {
    flex: 1;
    display: flex;
    flex-flow: column;
  }
  .home_pickup_list2 .home_pickup_item_text {
    line-height: 2.2;
    margin-bottom: 30px;
  }
  .home_pickup_list2 .home_pickup_item .btn01 {
    margin-top: auto;
  }
  .home_pickup_list2 .home_pickup_item .btn01 a {
    max-width: 420px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1480px) {
  .home_pickup_list .home_pickup_item_en {
    margin-inline: 0 !important;
  }
}

@media screen and (max-width: 640px) {
  .home_pickup {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 45px;
  }
  .home_pickup::before,
  .home_pickup::after {
    height: calc(100% - 20px);
    top: 20px;
  }
  .home_pickup::before {
    border-radius: 0;
    background-size: 920px auto;
  }
  .home_pickup::after {
    background-position: left top, right bottom;
    background-size: 70% auto, 80% auto;
  }
  .home_pickup .home_en {
    color: #9c9387;
  }
  .home_pickup_head {
    background: url(../images/home/pickup_head_bg.jpg) center/cover no-repeat;
    padding: 20px 5%;
    text-align: right;
    margin-bottom: 40px;
  }
  .home_pickup_head_img {
    display: none;
  }
  .home_pickup_list,
  .home_pickup_list2 {
    max-width: 500px;
    padding-inline: 5%;
    margin-inline: auto;
  }
  .home_pickup_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .home_pickup_item_inner::before {
    margin-left: 5%;
    margin-bottom: 15px;
  }
  .home_pickup_item_img {
    width: 90%;
    margin: 0 auto 15px;
  }
  .home_pickup_item_tit,
  .home_pickup_item_titSub {
    text-align: center;
  }
  .home_pickup_item_tit {
    font-size: clamp(20px, 5.8vw, 30px);
  }
  .home_pickup_item_tit,
  .home_pickup_item_tit_large {
    font-size: max(25px, 5vw);
    font-weight: bold;
  }
  .home_pickup_item_titSub {
    font-size: clamp(15px, 4.2vw, 20px);
  }
  .home_pickup_item_text {
    margin-top: 15px;
  }
  .home_pickup_item .btn01 {
    margin-top: 15px;
  }
  .home_pickup_item_en {
    margin-top: 15px;
  }
  .home_pickup_list {
    margin-bottom: 30px;
  }
  .home_pickup_list .home_pickup_item:first-child .home_pickup_item_inner::before {
    margin-bottom: 0;
  }
  .home_pickup_list .home_pickup_item:first-child .home_pickup_item_img {
    width: 100%;
  }
}

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

  .home_medical

==================================================================*/
.home_medical {
  padding-top: 90px;
  padding-bottom: 130px;
  position: relative;
}
.home_medical::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/home/medical_bg_l_t.png) left top no-repeat, url(../images/home/medical_bg_r_b.png) right bottom no-repeat, linear-gradient(to bottom, #e3ecf5 0%, #eaf6fa 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0) 150px, black 340px);
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0) 150px, black 340px);
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.home_medical > * {
  position: relative;
}
.home_medical .home_en,
.home_medical .home_tit {
  text-align: center;
}
.home_medical .home_en {
  color: #e3edf5;
  margin-bottom: -0.4em;
}
.home_medical .home_tit {
  margin-bottom: 65px;
}
.home_medical_listWrap {
  max-width: 1920px;
  margin-inline: auto;
}
.home_medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 2.4%;
}
.home_medical_item {
  width: 23.2%;
  max-width: 380px;
}
.home_medical_item a {
  display: block;
  color: var(--text-color);
}
.home_medical_item_img {
  text-align: center;
  background: var(--main-color);
  margin-bottom: 22px;
}
@media (hover: hover) {
  .home_medical_item_img img {
    transition: opacity 0.2s ease-in;
  }
  .home_medical_item a:hover .home_medical_item_img img {
    opacity: 0.7;
  }
}
.home_medical_item_tit {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(17px, 1.1vw, 22px);
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.7;
  padding-right: 1.6em;
  background: url(../images/btn_arrow.png) right 0 top calc((1.7em - 8px) / 2) / 16px auto no-repeat;
}
.home_medical_bnr {
  margin-top: 80px;
  text-align: center;
}
@media (hover: hover) {
  .home_medical_bnr a:hover {
    opacity: 0.8;
  }
}

@media print, screen and (min-width: 641px) {
  .home_medical_list {
    max-width: 1680px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .home_medical_item_tit.home_medical_item_tit-fsS {
    font-size: clamp(15px, 1vw, 20px);
  }
}

@media screen and (max-width: 640px) {
  .home_medical {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .home_medical::before {
    background-size: 60% auto;
  }
  .home_medical .home_tit {
    margin-bottom: 25px;
  }
  .home_medical_list {
    gap: 20px 2%;
    padding-inline: 5%;
  }
  .home_medical_item {
    width: 49%;
  }
  .home_medical_item_img {
    margin-bottom: 10px;
  }
  .home_medical_item_tit {
    font-size: clamp(12px, 4vw, 18px);
  }
  .home_medical_bnr {
    margin-top: 30px;
  }
}

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

  .home_trouble

==================================================================*/
.home_trouble {
  background: url(../images/home/trouble_bg_b.png) center bottom no-repeat, url(../images/home/trouble_bg.jpg) center top no-repeat, #fff;
  padding-top: 110px;
  padding-bottom: 555px;
}
.home_trouble_img {
  background: none;
  position: relative;
  aspect-ratio: 1920/550;
}
.home_trouble_img::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100svh - 80px);
  background: url(../images/home/trouble_top_v2.jpg) center/cover no-repeat;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.home_trouble .home_en {
  background: linear-gradient(to bottom, #bedaf1, #e3edf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.home_trouble .home_tit span {
  color: #4293c1;
}
.home_trouble_con {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.75;
}
.home_trouble_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 80px;
}
.home_trouble_item {
  width: 180px;
  text-align: center;
}
.home_trouble_item a {
  display: block;
  color: var(--text-color);
}
.home_trouble_item_img {
  border-radius: 50%;
  background: #e4f3d5;
}
.home_trouble_item:nth-child(6n-4) .home_trouble_item_img {
  background: #e3f0f8;
}
.home_trouble_item:nth-child(6n-3) .home_trouble_item_img {
  background: #faebdf;
}
.home_trouble_item:nth-child(6n-2) .home_trouble_item_img {
  background: #f8f4db;
}
.home_trouble_item:nth-child(6n-1) .home_trouble_item_img {
  background: #ddf1df;
}
.home_trouble_item:nth-child(6n) .home_trouble_item_img {
  background: #f6eaee;
}
.home_trouble_item_text {
  margin-top: 12px;
}

@media (hover: hover) {
  .home_trouble_item_img {
    transition: transform 0.2s ease-out;
  }
  .home_trouble_item a:hover .home_trouble_item_img {
    transform: translateY(-10px);
  }
}

@media print, screen and (min-width: 641px) {
  .home_trouble .home_inner {
    display: flex;
    justify-content: space-between;
  }
  .home_trouble_head {
    width: calc(100% - 1035px);
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
  }
  .home_trouble .home_en {
    display: flex;
    flex-flow: column;
    gap: 60px 0;
    height: 100%;
  }
  .home_trouble .home_en span {
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
  .home_trouble .home_en::after {
    display: block;
    content: "";
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(to bottom, #e3edf5 0%, #e3edf5 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .home_trouble .home_tit {
    writing-mode: vertical-rl;
    white-space: nowrap;
    padding-top: 85px;
  }
  .home_trouble_con {
    width: 960px;
    flex-shrink: 0;
    display: flex;
    flex-flow: column;
    padding-bottom: 100px;
  }
  .home_trouble_list {
    order: 1;
  }
  .home_trouble_text {
    order: 0;
    text-align: right;
    margin-bottom: 75px;
  }
}

@media screen and (max-width: 640px) {
  .home_trouble {
    background: url(../images/home/trouble_bg_l.png) left bottom no-repeat, url(../images/home/trouble_bg_r.png) right bottom no-repeat, url(../images/home/trouble_bg.jpg) center top no-repeat, #fff;
    background-size: 68% auto, 80% auto, 960px auto;
    padding-top: 40px;
    padding-bottom: 150px;
  }
  .home_trouble_img {
    aspect-ratio: 768/500;
  }
  .home_trouble_img::before {
    height: calc(100lvh - 60px);
    background-image: url(../images/home/trouble_top_sp_v2.jpg);
    bottom: auto;
    top: 0;
  }
  .home_trouble_head {
    margin-bottom: 25px;
  }
  .home_trouble .home_en {
    background: linear-gradient(to right, #bedaf1, #e3edf5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  .home_trouble_con {
    font-size: clamp(14px, 4.2vw, 16px);
  }
  .home_trouble_list {
    gap: 20px 0;
  }
  .home_trouble_item {
    width: 50%;
  }
  .home_trouble_item_img {
    width: 70%;
    max-width: 180px;
    margin-inline: auto;
  }
  .home_trouble_item_text {
    margin-top: 5px;
  }
  .home_trouble_text {
    margin-top: 30px;
  }
}

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

  .home_feature

==================================================================*/
.home_feature {
  background: none;
  counter-reset: feature_num 0;
  padding-top: 70px;
  padding-bottom: 175px;
  margin-top: -555px;
  position: relative;
  overflow: hidden;
}
.home_feature::before,
.home_feature::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.home_feature::before {
  background: linear-gradient(to bottom, #e3ecf5 0%, #eaf6fa 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0) 150px, black 340px);
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0) 150px, black 340px);
}
.home_feature::after {
  background: url(../images/home/feature_bg_l_t.png) left top 250px no-repeat, url(../images/home/feature_bg_r_c.png) right top 1044px no-repeat;
}
.home_feature .home_inner::before {
  display: block;
  content: "";
  width: 100%;
  height: 1852px;
  background: url(../images/home/feature_bg.jpg) center top repeat-x;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 18%, black 37%);
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 18%, black 37%);
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home_feature .home_inner > * {
  position: relative;
  z-index: 1;
}
.home_feature_head_text {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
.home_feature_head_text span {
  color: #3e699d;
}
.home_feature_head_en {
  max-width: 334px;
}
.home_feature .home_en {
  background: linear-gradient(to bottom, #d2edf2, #abd4dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.home_feature .home_tit span {
  color: #42a8c1;
}
.home_feature_head2_tit {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
.home_feature_head2_tit span {
  color: #1f9fbe;
}
.home_feature_head2_en {
  max-width: 448px;
}
.home_feature_item {
  counter-increment: feature_num;
}
.home_feature_item::before {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  content: "FEATURE " counter(feature_num, decimal-leading-zero);
  font-family: "josefin-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: left;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
.home_feature_item_img {
  text-align: center;
}
.home_feature_item_tit {
  color: #674632;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.home_feature_item_titSub {
  color: #d76933;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.025em;
  line-height: 1.7;
  margin-top: 12px;
}
.home_feature_item_titSub.pink {
  color: #db607a;
}
.home_feature_item_titSub.green {
  color: #438725;
}
.home_feature_list {
  margin-bottom: 95px;
}
.home_feature_list .home_feature_item_img.home_feature_item_img-row {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 560/575;
}
.home_feature_list .home_feature_item_img.home_feature_item_img-row img {
  width: 50%;
}
.home_feature_list .home_feature_item_img.home_feature_item_img-row img:first-child {
  margin-bottom: auto;
}

@media print, screen and (min-width: 641px) {
  .home_feature_head {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 0 5%;
  }
  .home_feature_head_tit {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .home_feature_head_tit > * {
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
  .home_feature_head_imgWrap {
    width: 72%;
    flex-shrink: 0;
    display: flex;
    flex-flow: column;
  }
  .home_feature_head_text {
    order: 1;
    margin-bottom: 45px;
  }
  .home_feature_head_en {
    margin-left: auto;
    order: 2;
  }
  .home_feature_head_img {
    order: 0;
    margin-left: -24%;
    margin-bottom: 70px;
  }
  .home_feature .home_en {
    margin-right: -0.25em;
  }
  .home_feature_head2 {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
  }
  .home_feature_head2_text {
    flex: 1;
    margin-right: -920px;
    position: relative;
  }
  .home_feature_head2_en {
    margin-top: 30px;
  }
  .home_feature_head2_img {
    width: 1140px;
    margin-right: -220px;
  }
  .home_feature_item_text {
    line-height: 2.2;
  }
  .home_feature_item .btn01 a {
    min-width: 360px;
  }
  .home_feature_list .home_feature_item {
    display: flex;
    flex-wrap: wrap;
    gap: 0 80px;
  }
  .home_feature_list .home_feature_item:not(:last-child) {
    margin-bottom: 100px;
  }
  .home_feature_list .home_feature_item.home_feature_item-reverse {
    flex-direction: row-reverse;
  }
  .home_feature_list .home_feature_item::before {
    display: none;
  }
  .home_feature_list .home_feature_item_img {
    width: 560px;
    display: flex;
    align-items: flex-end;
  }
  .home_feature_list .home_feature_item_textArea {
    flex: 1;
    display: flex;
    flex-flow: column;
  }
  .home_feature_list .home_feature_item_textArea::before {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    content: "FEATURE " counter(feature_num, decimal-leading-zero);
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
  }
  .home_feature_list .home_feature_item_titSub {
    margin-top: 30px;
  }
  .home_feature_list .home_feature_item_text {
    margin-top: 30px;
    margin-bottom: 35px;
  }
  .home_feature_list .home_feature_item_titSub + .home_feature_item_text {
    margin-top: 40px;
  }
  .home_feature_list .home_feature_item .btn01 {
    margin-top: auto;
  }
  .home_feature_list2 {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    gap: 0 6%;
  }
  .home_feature_list2 .home_feature_item {
    width: 47%;
    display: flex;
    flex-flow: column;
  }
  .home_feature_list2 .home_feature_item_img {
    margin-bottom: 40px;
  }
  .home_feature_list2 .home_feature_item_textArea {
    flex: 1;
    display: flex;
    flex-flow: column;
  }
  .home_feature_list2 .home_feature_item_text {
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .home_feature_list2 .home_feature_item_titSub + .home_feature_item_text {
    margin-top: 20px;
  }
  .home_feature_list2 .home_feature_item .btn01 {
    text-align: center;
    margin-top: auto;
  }
}

@media screen and (min-width: 641px) and (max-width: 1720px) {
  .home_feature_head_img {
    margin-left: -20px;
  }
}

@media screen and (max-width: 640px) {
  .home_feature {
    padding-top: 0;
    padding-bottom: 45px;
    margin-top: -100px;
  }
  .home_feature::before {
    -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0) 20px, black 100px);
    mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0) 20px, black 100px);
  }
  .home_feature::after {
    background-size: 90% auto, 50% auto;
    background-position: left top, right top 10%;
  }
  .home_feature .home_inner::before {
    height: 50%;
    background-size: 960px auto;
  }
  .home_feature_head {
    margin-bottom: 40px;
  }
  .home_feature_head_tit {
    text-align: right;
  }
  .home_feature_head_text {
    font-size: clamp(15px, 4.8vw, 24px);
    text-align: right;
    margin-top: 20px;
  }
  .home_feature_head_en {
    text-align: right;
    margin-left: auto;
  }
  .home_feature_head_img {
    margin-top: 25px;
  }
  .home_feature_head2 {
    background: url(../images/home/feature_head2_bg_sp.jpg) center/cover no-repeat;
    padding: 20px 6%;
    margin: 0 -6% 30px;
  }
  .home_feature_head2_tit {
    font-size: clamp(18px, 5.8vw, 34px);
    line-height: 1.7;
  }
  .home_feature_head2_img {
    display: none;
  }
  .home_feature_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .home_feature_item::before {
    margin-left: 5%;
    margin-bottom: 15px;
  }
  .home_feature_item_img {
    width: 90%;
    margin: 0 auto 15px;
  }
  .home_feature_item_tit,
  .home_feature_item_titSub {
    text-align: center;
  }
  .home_feature_item_tit {
    font-size: clamp(20px, 5.8vw, 30px);
  }
  .home_feature_item_titSub {
    font-size: clamp(15px, 4.2vw, 20px);
  }
  .home_feature_item_text {
    margin-top: 15px;
  }
  .home_feature_item .btn01 {
    text-align: center;
    margin-top: 15px;
  }
  .home_feature_list {
    margin-bottom: 30px;
  }
}

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

  .home_greeting

==================================================================*/
.home_greeting {
  letter-spacing: 0.1em;
  background: url(../images/home/greeting_bg.jpg) #fff center bottom no-repeat;
  padding-bottom: 130px;
}
.home_greeting_head {
  text-align: center;
  margin-bottom: -164px;
}
.home_greeting .home_tit,
.home_greeting .home_en {
  text-align: center;
}
.home_greeting .home_en {
  color: #d0c8bd;
  margin-top: 5px;
  margin-bottom: 115px;
}
.home_greeting_flex {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.home_greeting_imgArea {
  text-align: center;
}
.home_greeting_img {
  margin-bottom: 25px;
}
.home_greeting_clinic,
.home_greeting_name {
  font-size: 19px;
  line-height: 1.7;
}
.home_greeting_clinic {
  margin-bottom: 5px;
}
.home_greeting_name span {
  color: #de7f46;
  font-size: 130%;
}
.home_greeting .btn01 {
  margin-top: 25px;
}
.home_greeting_catch {
  font-size: 34px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 30px;
}
.home_greeting_text p:not(:last-child) {
  margin-bottom: 1.2em;
}

@media print, screen and (min-width: 641px) {
  .home_greeting_flex {
    display: flex;
    gap: 0 9%;
  }
  .home_greeting_imgArea {
    width: 410px;
  }
  .home_greeting .btn01 a {
    min-width: 260px;
  }
  .home_greeting_textArea {
    flex: 1;
  }
  .home_greeting_text {
    font-size: 17px;
    line-height: 2.4;
  }
}

@media screen and (max-width: 640px) {
  .home_greeting {
    background-size: 960px auto;
    padding-bottom: 45px;
  }
  .home_greeting_head {
    margin-bottom: -23%;
    aspect-ratio: 768/300;
  }
  .home_greeting_head img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .home_greeting .home_en {
    margin-bottom: 30px;
  }
  .home_greeting_imgArea {
    margin-bottom: 30px;
  }
  .home_greeting_img {
    margin-bottom: 15px;
  }
  .home_greeting_clinic {
    font-size: clamp(16px, 5vw, 22px);
  }
  .home_greeting .btn01 {
    margin-top: 15px;
  }
  .home_greeting_catch {
    font-size: clamp(16px, 4.8vw, 26px);
    margin-bottom: 20px;
  }
  .home_greeting_text p:not(:last-child) {
    margin-bottom: 1em;
  }
}
