@charset "UTF-8";

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

  共通

==================================================================*/
/* ----------- inner ----------- */
.inner {
  max-width: 1200px;
}

/* ----------- btn ----------- */
@media print, screen and (min-width: 641px) {
  main .btn01 a {
    min-width: 206px;
  }
}

/* ----------- home_tit ----------- */
.home_tit_en {
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-size: 70px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 15px;
}
.home_tit_jp {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding-left: 42px;
  position: relative;
}
.home_tit_jp::before {
  display: block;
  content: "";
  width: 28px;
  aspect-ratio: 56/10;
  background: url(../images/tit_dec.jpg) left top/100% auto no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.home_tit.home_tit-white {
  color: #fff;
}
.home_tit.home_tit-white .home_tit_jp::before {
  background-image: url(../images/tit_dec2.jpg);
}
.home_tit.home_tit-center {
  text-align: center;
}
.home_tit.home_tit-center .home_tit_en {
  margin-bottom: 10px;
}
.home_tit.home_tit-center .home_tit_jp {
  padding: 0;
}
.home_tit.home_tit-center .home_tit_jp::before {
  position: static;
  transform: none;
  margin: 0 auto 15px;
}

@media screen and (max-width: 640px) {
  .home_tit {
    margin-bottom: 40px;
  }
  .home_tit_en {
    font-size: clamp(40px, 14.4vw, 70px);
  }
  .home_tit_jp {
    font-size: 18px;
  }
}

/* ----------- home_slider ----------- */
/* slick-arrow */
.home_slider .slick-prev,
.home_slider .slick-next {
  width: 50px;
  top: 0;
  transform: none;
  z-index: 1;
}
.home_slider .slick-prev::before,
.home_slider .slick-next::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  opacity: 1;
  background: url(../images/slider_prev.jpg) center/100% auto no-repeat;
}
.home_slider .slick-prev {
  left: 5px;
}
.home_slider .slick-next {
  right: 5px;
}
.home_slider .slick-next::before {
  background-image: url(../images/slider_next.jpg);
}

/* slick-dots */
.home_slider .slick-dots {
  display: flex;
  justify-content: center;
}
.home_slider .slick-dots li {
  width: auto;
  height: auto;
  flex: 1;
  margin: 0;
}
.home_slider .slick-dots li button {
  background-color: var(--sub-color);
  height: 1px;
  width: 100%;
  padding: 0;
}
.home_slider .slick-dots li.slick-active button {
  background-color: var(--main-color);
}
.home_slider .slick-dots li button:before {
  display: none !important;
}

/* 背景黒系用 */
.home_slider.home_slider-white .slick-prev::before {
  background-image: url(../images/slider_prev_white.jpg);
}
.home_slider.home_slider-white .slick-next::before {
  background-image: url(../images/slider_next_white.jpg);
}
.home_slider.home_slider-white .slick-dots li:not(.slick-active) button {
  background: #fff;
}

@media screen and (max-width: 640px) {
  .home_slider {
    max-width: 400px;
    margin-inline: auto;
  }

  /* slick-arrow */
  .home_slider .slick-prev,
.home_slider .slick-next {
    height: 0 !important;
  }
  .home_slider .slick-prev::before,
.home_slider .slick-next::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .home_slider .slick-prev {
    left: -6%;
  }
  .home_slider .slick-next {
    right: -6%;
  }
}

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

  メインビジュアル

==================================================================*/
.home_mv {
  text-align: center;
}
.home_mv img {
  width: 100%;
}

@media screen and (max-width: 640px) {
  h1 {
    margin-bottom: 0;
  }
}

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

  home_topic

==================================================================*/
.home_topic {
  padding-top: 60px;
  margin-bottom: 60px;
  position: relative;
}
.home_topic::before {
  display: block;
  content: "";
  width: 100%;
  height: 725px;
  background: url(../images/home/main_bg.png) var(--main-color) left top no-repeat;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.home_topic a {
  max-width: 955px;
  display: flex;
  align-items: center;
  gap: 0 25px;
  background: #fff;
  border-radius: 20px;
  padding: 26px 60px;
  margin-left: auto;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.4;
}
@media (hover: hover) {
  .home_topic a {
    transition: color 0.3s;
  }
  .home_topic a:hover {
    color: var(--main-color);
  }
}
.home_topic a > * {
  display: block;
}
.home_topic a > span,
.home_topic a em {
  flex-shrink: 0;
}
.home_topic a > span {
  color: #000;
  font-size: 113%;
}
.home_topic a em {
  color: #fff;
  background: #333;
  padding: 4px 25px;
  font-style: normal;
}
.home_topic a > p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 640px) {
  .home_topic::before {
    height: 725px;
    background-size: 40% auto;
  }
  .home_topic a {
    flex-wrap: wrap;
    gap: 10px 15px;
    padding: 20px 6%;
    margin-left: 0;
  }
  .home_topic a > p {
    width: 100%;
  }
}

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

  nav&home_about

==================================================================*/
.nav_wrap,
.home_about {
  position: relative;
}
.nav_wrap::before,
.home_about::before {
  display: block;
  content: "";
  width: calc(1280px + (100% - 1280px) / 2);
  height: 100%;
  background: #fff;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 1290px) {
  .nav_wrap::before,
.home_about::before {
    width: calc(1240px + (100% - 1240px) / 2);
  }
}

@media screen and (max-width: 640px) {
  .nav_wrap::before,
.home_about::before {
    width: 100%;
  }
}

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

  nav

==================================================================*/
@media print, screen and (min-width: 641px) {
  .nav:not(.fixed) {
    padding-top: 55px;
  }
  .nav_wrap {
    min-height: 95px;
  }
  .nav_wrap::before {
    border-top-left-radius: 20px;
  }
}

@media screen and (max-width: 640px) {
  .nav_wrap::before {
    display: none;
  }
}

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

  home_about

==================================================================*/
.home_about {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  padding-top: 130px;
  background: url(../images/home/about_bg.jpg) center bottom no-repeat;
  overflow: hidden;
  margin-top: -2px;
}
.home_about .inner {
  max-width: 1100px;
  padding-bottom: 610px;
  position: relative;
}
.home_about h3 {
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 55px;
}
.home_about_text p:not(:last-child) {
  margin-bottom: 2em;
}
.home_about .btn01 {
  margin-top: 70px;
}
.home_about_en {
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-size: 56px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  pointer-events: none;
  position: absolute;
  bottom: 315px;
  left: 0;
}

@media print, screen and (min-width: 641px) {
  .home_about .home_tit {
    margin-bottom: 75px;
  }
  .home_about_flex {
    display: flex;
    gap: 0 120px;
  }
  .home_about_text {
    flex: 1;
    font-size: 20px;
    line-height: 2.2;
  }
  .home_about_img {
    width: 656px;
    padding-top: 15px;
    margin-right: -410px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1680px) {
  .home_about .home_about_flex {
    gap: 0 4%;
  }
  .home_about .home_about_img {
    width: 36%;
    margin-right: 0;
  }
}

@media screen and (max-width: 640px) {
  .home_about {
    padding-top: 60px;
    background-image: url(../images/home/about_bg_sp.jpg);
    background-size: 100% auto;
  }
  .home_about .inner {
    padding-bottom: 52%;
  }
  .home_about h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .home_about .btn01 {
    margin-top: 0;
  }
  .home_about_img {
    text-align: center;
    margin-top: 40px;
  }
  .home_about_en {
    font-size: clamp(16px, 5.3vw, 56px);
    left: 5%;
    bottom: 0;
    margin-bottom: 26%;
  }
}

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

  home_feature

==================================================================*/
.home_feature {
  padding-top: 190px;
  padding-bottom: 380px;
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}
.home_feature,
.home_feature a {
  color: #fff;
}
.home_feature::before {
  display: block;
  content: "";
  width: calc(100% + 146px);
  height: 100%;
  background: url(../images/home/feature_bg_t.png) right top no-repeat, url(../images/home/feature_bg_b.png) center bottom 140px no-repeat;
  background-color: #2d3341;
  border-radius: 200px 200px 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home_feature .inner {
  position: relative;
}
.home_feature_list {
  counter-reset: feature_num 0;
}
.home_feature_item {
  counter-increment: feature_num;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}
.home_feature_item_img {
  text-align: center;
  margin-bottom: 40px;
}
.home_feature_item_titWrap {
  margin-bottom: 20px;
}
.home_feature_item_num {
  line-height: 1;
  text-align: center;
  border-color: rgb(255 255 255 / 0.5);
  border-style: solid;
  border-width: 0 1px 0 0;
}
.home_feature_item_num::before {
  display: block;
  content: counter(feature_num, decimal-leading-zero);
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0;
  margin-bottom: -0.1em;
}
.home_feature_item_num::after {
  display: block;
  content: "Feature";
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-left: 12px;
  background: url(../images/home/feature_tit_dec.jpg) left center/10px auto no-repeat;
}
.home_feature_item_tit {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  font-size: 30px;
  line-height: 1.4;
}
.home_feature_item_tit span {
  display: block;
  font-size: 67%;
  line-height: 1.6;
  margin-top: 5px;
}
.home_feature_item_text {
  line-height: 2.3;
}
.home_feature_item .btn01 {
  text-align: right;
  margin-top: 45px;
}
.home_feature_item .btn01 a {
  min-width: auto;
}

@media print, screen and (min-width: 641px) {
  .home_feature .home_tit {
    margin-bottom: 105px;
  }
  .home_feature_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 80px;
  }
  .home_feature_item {
    width: 560px;
  }
  .home_feature_item::before, .home_feature_item:nth-child(even)::after {
    display: block;
    content: "";
    background: rgb(237 241 242 / 0.3);
    position: absolute;
  }
  .home_feature_item::before {
    width: calc(100% + 35px);
    height: 1px;
    left: 0;
    top: 0;
  }
  .home_feature_item:nth-child(even)::before {
    left: auto;
    right: 0;
  }
  .home_feature_item:nth-child(even)::after {
    width: 1px;
    height: calc(100% - 10px);
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
  }
  .home_feature_item:nth-child(2)::after {
    height: calc(100% - 5px);
    top: 0;
    transform: none;
  }
  .home_feature_item:nth-child(-n+2) {
    padding-top: 0;
  }
  .home_feature_item:nth-child(-n+2)::before {
    display: none;
  }
  .home_feature_item_titWrap {
    display: flex;
    align-items: flex-start;
    gap: 0 20px;
    margin-bottom: 20px;
  }
  .home_feature_item_num {
    min-height: 80px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .home_feature {
    padding-top: 80px;
    padding-bottom: calc(80px + 7%);
    margin-top: -20px;
  }
  .home_feature::before {
    width: calc(100% + 100px);
    background-size: 40% auto, 100% auto;
    background-position: right top, center bottom 20px;
    border-radius: 100px 100px 0 0;
  }
  .home_feature .home_tit {
    margin-bottom: 0;
  }
  .home_feature_item {
    padding-top: 40px;
    border-bottom: 1px solid rgb(237 241 242 / 0.3);
    padding-bottom: 40px;
  }
  .home_feature_item_img {
    text-align: center;
    margin-bottom: 20px;
  }
  .home_feature_item_titWrap {
    margin-bottom: 20px;
  }
  .home_feature_item_num {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-width: 0 0 1px;
    padding: 0 10px 10px;
    margin: 0 auto 15px;
  }
  .home_feature_item_num::after {
    padding-left: 15px;
  }
  .home_feature_item_tit {
    font-size: clamp(18px, 5.9vw, 26px);
    line-height: 1.6;
  }
  .home_feature_item .btn01 {
    margin-top: 20px;
  }
}

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

  home_interview

==================================================================*/
.home_interview {
  padding-top: 150px;
  padding-bottom: 160px;
  background: url(../images/home/interview_bg.png) #edf1f2 center top 140px no-repeat;
  overflow: hidden;
}
.home_interview .inner {
  max-width: 1260px;
}
.home_interview_item_img {
  margin-bottom: 20px;
}
.home_interview_item_tit {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.home_interview_item_category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(0 0 0 / 0.3);
  margin-bottom: 15px;
}
.home_interview_item_category > * {
  background: var(--text-color);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 1em;
}
.home_interview_item_clinic, .home_interview_item_name {
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.home_interview_item_name {
  font-size: 18px;
  font-weight: bold;
}
.home_interview .slick-dotted.slick-slider {
  margin-bottom: 40px;
}
.home_interview .slick-prev,
.home_interview .slick-next {
  height: 499px;
}
.home_interview .slick-dots {
  bottom: -40px;
}
.home_interview .btn01 {
  text-align: center;
  padding-top: 60px;
}

@media print, screen and (min-width: 641px) {
  .home_interview_item,
.home_interview .inner > *:not(.home_interview_list),
.home_interview .slick-dots {
    padding-inline: 30px;
  }
  .home_interview .home_tit {
    margin-bottom: 55px;
  }
}

@media screen and (max-width: 640px) {
  .home_interview {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 100% auto;
    background-position: center top 10%;
  }
  .home_interview .slick-prev,
.home_interview .slick-next {
    padding-top: 139%;
  }
  .home_interview .btn01 {
    padding-top: 40px;
  }
}

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

  home_column

==================================================================*/
.home_column {
  padding-top: 150px;
  padding-bottom: 160px;
  overflow: hidden;
}
.home_column .inner {
  max-width: 1260px;
}
.home_column_item_img {
  margin-bottom: 20px;
}
.home_column_item_date {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}
.home_column_item_tit {
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 22px;
}
.home_column_item_category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home_column_item_category > * {
  background: #edf1f2;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 1em;
}
.home_column .slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.home_column .slick-prev,
.home_column .slick-next {
  height: 260px;
}
.home_column .slick-dots {
  bottom: -60px;
}
.home_column .btn01 {
  text-align: center;
  padding-top: 60px;
}

@media print, screen and (min-width: 641px) {
  .home_column_item,
.home_column .inner > *:not(.home_column_list),
.home_column .slick-dots {
    padding-inline: 30px;
  }
  .home_column .home_tit {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 640px) {
  .home_column {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home_column .slick-prev,
.home_column .slick-next {
    padding-top: 72%;
  }
  .home_column .btn01 {
    padding-top: 40px;
  }
}

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

  home_seminar

==================================================================*/
.home_seminar {
  max-width: 1920px;
  margin-inline: auto;
  padding-top: 150px;
  padding-bottom: 160px;
  background: url(../images/home/seminar_bg.jpg) center bottom no-repeat;
  color: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 2px;
}
.home_seminar_bg {
  width: 1920px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home_seminar_bg::before, .home_seminar_bg::after {
  display: block;
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
}
.home_seminar_bg::before {
  width: 1190px;
  background: #000;
  -webkit-clip-path: polygon(0 0, 200px 0, 100% calc(100% - 140px), 1050px 100%, 0 100%);
          clip-path: polygon(0 0, 200px 0, 100% calc(100% - 140px), 1050px 100%, 0 100%);
  opacity: 0.5;
  left: 0;
}
.home_seminar_bg::after {
  width: 960px;
  background: #d6000f;
  -webkit-clip-path: polygon(760px 0, 100% 0, 100% 100%, 370px 100%, 0 calc(100% - 370px));
          clip-path: polygon(760px 0, 100% 0, 100% 100%, 370px 100%, 0 calc(100% - 370px));
  opacity: 0.6;
  right: 0;
}
.home_seminar .inner {
  max-width: 1260px;
  position: relative;
}
.home_seminar_item_img {
  margin-bottom: 20px;
}
.home_seminar_item_date {
  font-size: 14px;
  margin-bottom: 5px;
}
.home_seminar_item_tit {
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 22px;
}
.home_seminar_item_category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home_seminar_item_category > * {
  background: var(--main-color);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 1em;
}
.home_seminar .slick-dotted.slick-slider {
  margin-bottom: 80px;
}
.home_seminar .slick-prev,
.home_seminar .slick-next {
  height: 260px;
}
.home_seminar .slick-dots {
  bottom: -80px;
}
.home_seminar .btn01 {
  text-align: center;
  padding-top: 60px;
}

@media print, screen and (min-width: 641px) {
  .home_seminar_item,
.home_seminar .inner > *:not(.home_seminar_list),
.home_seminar .slick-dots {
    padding-inline: 30px;
  }
  .home_seminar .home_tit {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 640px) {
  .home_seminar {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(../images/home/seminar_bg_sp.jpg);
    background-size: cover;
  }
  .home_seminar_bg {
    width: 100%;
  }
  .home_seminar_bg::before {
    width: 62%;
    -webkit-clip-path: polygon(0 0, 17% 0, 100% 88%, 88% 100%, 0 100%);
            clip-path: polygon(0 0, 17% 0, 100% 88%, 88% 100%, 0 100%);
  }
  .home_seminar_bg::after {
    width: 50%;
    -webkit-clip-path: polygon(79% 0, 100% 0, 100% 100%, 39% 100%, 0 67%);
            clip-path: polygon(79% 0, 100% 0, 100% 100%, 39% 100%, 0 67%);
  }
  .home_seminar .slick-prev,
.home_seminar .slick-next {
    padding-top: 72%;
  }
  .home_seminar .btn01 {
    padding-top: 40px;
  }
}

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

  home_news

==================================================================*/
.home_news {
  padding-top: 160px;
  padding-bottom: 160px;
  background: #edf1f2;
}
.home_news .btn01 {
  margin-top: 85px;
}
.home_news_list > li a {
  display: flex;
  align-items: center;
  gap: 0 20px;
  padding: 40px 0;
  color: var(--text-color);
  line-height: 1.4;
  border-color: rgb(0 0 0 / 0.3);
  border-style: solid;
  border-width: 0 0 1px;
}
.home_news_list > li:first-child a {
  border-width: 1px 0;
}
@media (hover: hover) {
  .home_news_list > li a {
    transition: color 0.3s;
  }
  .home_news_list > li a:hover {
    color: var(--main-color);
  }
}
.home_news_list > li a > * {
  display: block;
}
.home_news_list > li a > span,
.home_news_list > li a em {
  flex-shrink: 0;
}
.home_news_list > li a > span {
  font-size: 94%;
}
.home_news_list > li a em {
  font-size: 82%;
  color: #fff;
  background: #333;
  padding: 5px 25px;
  border-radius: 15px;
  font-style: normal;
}
.home_news_list > li a > p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media print, screen and (min-width: 641px) {
  .home_news .inner {
    display: flex;
    justify-content: space-between;
  }
  .home_news_head {
    flex: 1;
  }
  .home_news_list {
    width: 890px;
  }
}

@media screen and (max-width: 640px) {
  .home_news {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home_news_head {
    margin-bottom: 20px;
  }
  .home_news .btn01 {
    text-align: right;
    margin-top: 0;
  }
  .home_news_list > li a {
    flex-wrap: wrap;
    gap: 10px 15px;
    padding: 20px 0;
  }
  .home_news_list > li a > p {
    width: 100%;
  }
}