/* ----------------------------------------------------------------------------
INDEX
---------------------------------------------------------------------------- */
#splash {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background: #024023;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s linear;
  z-index: 100000;
}
#splash .logo {
  opacity: 0;
  transition: 2s;
}
#splash .logo img {
  height: auto;
  width: 100%;
}
#splash .logo.loaded {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #splash .logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  #splash .logo {
    width: 150px;
  }
}
#splash.loaded {
  opacity: 0;
  visibility: hidden;
}

.l_page_content {
  padding-top: 0;
}

.title_wrap .title_en {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  display: inline-block;
  line-height: 1.2;
}
.title_wrap .title_en:before {
  content: "";
  width: 21px;
  height: 15px;
  position: absolute;
  left: 0;
}
.title_wrap .title_en_main {
  color: #024023;
}
.title_wrap .title_en_main:before {
  background: url(../img/common/title_icon_01.svg) no-repeat center center;
  background-size: contain;
}
.title_wrap .title_en_sub {
  color: #dfa800;
}
.title_wrap .title_en_sub:before {
  background: url(../img/common/title_icon_02.svg) no-repeat center center;
  background-size: contain;
}
.title_wrap .title_ja {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1281px) {
  .title_wrap .title_ja {
    font-size: 46px;
    line-height: 1.5217391304;
  }
}
@media screen and (min-width: 768px) {
  .title_wrap .title_en {
    font-size: 20px;
  }
  .title_wrap .title_en:before {
    top: 4px;
  }
  .title_wrap .title_s {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_wrap .title_ja {
    font-size: 36px;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 767px) {
  .title_wrap .title_ja {
    font-size: 20px;
  }
  .title_wrap .title_en:before {
    top: 1px;
  }
}

.title_wrap_c {
  text-align: center;
}

.lead_c {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lead_c {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lead_c {
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  .lead_l {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lead_l {
    margin-top: 20px;
  }
}

/*
 MAINVISUAL
------------------------------ */
.fixed_mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
}

.wrap_mainvisual .l_inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.wrap_mainvisual .slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.wrap_mainvisual .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 3s ease-in-out;
  pointer-events: none;
}
.wrap_mainvisual .slide.active {
  opacity: 1;
  animation: zoomIn 5s linear forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.wrap_mainvisual .copy_wrap {
  position: absolute;
  left: 20px;
  top: 15%;
  color: #fff;
}
.wrap_mainvisual .copy_wrap .logo {
  margin-top: 20px;
}
.wrap_mainvisual .copy_s {
  position: absolute;
  right: 20px;
  bottom: 50px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .wrap_mainvisual .copy {
    font-size: 32px;
  }
  .wrap_mainvisual .copy_s {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .wrap_mainvisual .logo {
    width: 229px;
  }
  .wrap_mainvisual .copy {
    font-size: 16px;
  }
  .wrap_mainvisual .copy_s {
    font-size: 14px;
  }
}

.main_contents_wrap {
  padding-top: 76.3888888889vw;
}
@media screen and (max-width: 767px) {
  .main_contents_wrap {
    padding-top: 100vh;
  }
}

/*
 SEC_CONCEPT
------------------------------ */
.sec_concept {
  background: #fbf5ee url(../img/index/co_bg_02.webp) no-repeat center center;
  background-size: cover;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.sec_concept .l_inner {
  position: relative;
}
.sec_concept .title_s {
  margin-top: 20px;
  letter-spacing: 0.07em;
}
.sec_concept .img_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sec_concept .img {
  position: absolute;
}
@media screen and (min-width: 1281px) {
  .sec_concept {
    padding: 250px 0 270px;
  }
  .sec_concept .txt_wrap {
    max-width: 470px;
    margin: 40px auto 0;
  }
  .sec_concept .txt {
    margin-top: 20px;
  }
  .sec_concept .img_01 {
    top: 2rem;
    right: 0;
    border-radius: 10px;
  }
  .sec_concept .img_02 {
    top: 24rem;
    left: 6vw;
  }
  .sec_concept .img_03 {
    bottom: 45.6rem;
    right: 5.7vw;
  }
  .sec_concept .img_04 {
    bottom: 12rem;
    right: 13.8vw;
  }
  .sec_concept .img_05 {
    bottom: 21.4rem;
    left: -2rem;
  }
  .sec_concept .img_sp {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .sec_concept {
    padding: 60px 0 100px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 767px) {
  .sec_concept {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1280px) {
  .sec_concept .txt_wrap {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 1280px) and (max-width: 767px) {
  .sec_concept .txt_wrap {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .sec_concept .txt_wrap > * {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 767px) {
  .sec_concept .txt_wrap > * {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .sec_concept .img_wrap {
    display: none;
  }
  .sec_concept .img_sp {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_concept .title_ja {
    width: 50%;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .sec_concept .title_ja {
    width: 70%;
    margin: 20px auto 0;
  }
  .sec_concept .title_s {
    font-size: 20px;
  }
}

.txt_flow {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*
 SEC_SUPPORT
------------------------------ */
.sec_support {
  background: #fcfbf9;
  border-bottom: 2px solid #a08e80;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1281px) {
  .sec_support {
    padding: 120px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_support {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec_support {
    padding: 40px 0 0;
  }
}

.list_support_wrap {
  padding-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .list_support_wrap {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .list_support_wrap {
    padding-top: 0;
  }
}

.list_support_img_wrap {
  width: 47%;
  position: sticky;
  right: 0;
  top: calc((100vh - max(560px, 38.8888888889vw)) / 2);
  height: max(560px, 38.8888888889vw);
  display: flex;
  align-items: center;
  transition: 1.2s;
}

@media (max-width: 768px) {
  .list_support_img_wrap {
    display: none;
  }
}
.list_support_img_inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1281px) {
  .list_support_img_inner {
    aspect-ratio: 1.39/1;
    padding-right: calc((100% - 600px) / 2);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_support_img_inner {
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .list_support_img_inner {
    aspect-ratio: 1.39/1;
  }
}

.list_support_img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
}

.list_support_img:first-of-type {
  top: 0;
}

.list_support_img:not(:first-type) {
  top: 100%;
}

.list_support_txt_wrap {
  width: 47%;
}

@media (max-width: 1200px) {
  .list_support_txt_wrap {
    width: 47%;
  }
}
@media (max-width: 768px) {
  .list_support_txt_wrap {
    width: 100%;
  }
}
.list_support_txt {
  position: relative;
  height: max(560px, 38.8888888889vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list_support_txt:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #024023;
  position: absolute;
  top: 0;
  left: 0;
}
.list_support_txt.first_txt:after {
  content: none;
}

@media (max-width: 768px) {
  .list_support_txt {
    height: auto;
    display: block;
    padding-top: 40px;
    padding-bottom: 58px;
  }
}
@media screen and (min-width: 1281px) {
  .list_support_img_wrap {
    padding-right: calc((100vw - 1200px) / 2);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_support_img_wrap {
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list_support_img_wrap {
    display: none;
  }
}

.list_support_txt_inner .txt {
  text-align: left;
}
@media screen and (min-width: 1281px) {
  .list_support_txt_inner {
    padding-left: calc((100vw - 1200px) / 2);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_support_txt_inner {
    padding-left: 20px;
  }
}

.list_support_txt .num_wrap {
  display: flex;
  align-items: flex-end;
}
.list_support_txt .num_wrap .txt_en {
  color: #B0974B;
  line-height: 1.5;
  margin-left: 20px;
}
.list_support_txt .num {
  color: #024023;
  line-height: 1;
  font-family: "LibreBaskerville-SemiBold";
}
.list_support_txt .title {
  color: #024023;
  margin-top: 10px;
  font-family: "ZenOldMincho-SemiBold";
}
.list_support_txt .txt {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 1281px) {
  .list_support_txt .num {
    font-size: 64px;
  }
  .list_support_txt .title {
    font-size: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_support_txt .num {
    font-size: 54px;
  }
  .list_support_txt .title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .list_support_txt .img_sp {
    display: none;
  }
  .list_support_txt .num_wrap .txt_en {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .list_support_txt {
    padding: 40px 20px;
  }
  .list_support_txt .num {
    font-size: 32px;
    margin-top: 20px;
  }
  .list_support_txt .title {
    font-size: 20px;
  }
}

/*
 SEC_FEATURES
------------------------------ */
.sec_features {
  background: #f8f6f3 url(../img/index/co_bg_03.webp) no-repeat center center;
  background-size: cover;
  border-bottom: 2px solid #a08e80;
  position: relative;
  overflow: hidden;
}
.sec_features .num {
  color: #B0974B;
  line-height: 1;
}
.sec_features .title {
  border-bottom: 1px solid #B0974B;
  margin-top: 10px;
  font-family: "ZenOldMincho-SemiBold";
  padding-bottom: 10px;
}
.sec_features .txt {
  margin-top: 20px;
  line-height: 1.8;
}
.sec_features .img_wrap img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1281px) {
  .sec_features {
    padding: 120px 0 150px;
  }
  .sec_features .sec_detail_wrap {
    margin-top: 70px;
  }
  .sec_features .sec_detail:nth-child(odd) .txt_wrap {
    padding-right: 50px;
    padding-left: calc((100vw - 1200px) / 2);
  }
  .sec_features .sec_detail:nth-child(even) .txt_wrap {
    padding-left: 50px;
    padding-right: calc((100vw - 1200px) / 2);
  }
  .sec_features .sec_detail + .sec_detail {
    margin-top: 100px;
  }
  .sec_features .num {
    font-size: 70px;
  }
  .sec_features .title {
    font-size: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_features {
    padding: 100px 0 130px;
  }
  .sec_features .sec_detail_wrap {
    margin-top: 80px;
  }
  .sec_features .sec_detail:nth-child(odd) .txt_wrap {
    padding: 0 20px;
  }
  .sec_features .sec_detail:nth-child(even) .txt_wrap {
    padding: 0 20px;
  }
  .sec_features .sec_detail + .sec_detail {
    margin-top: 70px;
  }
  .sec_features .num {
    font-size: 60px;
  }
  .sec_features .title {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .sec_features .sec_detail:nth-child(odd) .l_flex {
    flex-direction: row-reverse;
  }
  .sec_features .img_wrap,
  .sec_features .txt_wrap {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .sec_features {
    padding: 80px 0 100px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sec_features {
    padding: 40px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .sec_features .sec_detail_wrap {
    margin-top: 60px;
  }
  .sec_features .img_wrap {
    max-width: calc(100% - 40px);
  }
  .sec_features .txt_wrap {
    margin-top: 20px;
    padding: 0 40px;
  }
  .sec_features .sec_detail:nth-child(odd) .img_wrap {
    margin-left: 40px;
  }
  .sec_features .sec_detail:nth-child(even) .img_wrap {
    margin-right: 40px;
  }
  .sec_features .sec_detail + .sec_detail {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sec_features .sec_detail + .sec_detail {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sec_features .l_flex {
    display: block;
  }
  .sec_features .num {
    font-size: 32px;
  }
  .sec_features .title {
    font-size: 20px;
  }
}

/*
 SEC_VOICE
------------------------------ */
.sec_voice {
  background: #fcfbf9;
  border-bottom: 2px solid #a08e80;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1281px) {
  .sec_voice {
    padding: 120px 0;
  }
  .sec_voice .review_wrap {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_voice {
    padding: 80px 0;
  }
  .sec_voice .review_wrap {
    margin-top: 70px;
  }
}
@media screen and (min-width: 768px) {
  .sec_voice .lead {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec_voice {
    padding: 40px 0;
  }
  .sec_voice .lead {
    margin-top: 10px;
  }
  .sec_voice .review_wrap {
    margin-top: 30px;
  }
}

.ti-widget.ti-goog .ti-widget-container,
.ti-widget.ti-goog .ti-widget-container .ti-footer .ti-profile-details * {
  font-family: "ZenOldMincho-Medium" !important;
}

.ti-widget.ti-goog .ti-header-write-btn-container .ti-header-write-btn {
  border-radius: 0 !important;
}
.ti-widget.ti-goog .ti-header-write-btn-container .ti-header-write-btn:not(:hover) {
  background-color: #024023 !important;
  color: #fff !important;
}
.ti-widget.ti-goog .ti-header-write-btn-container .ti-header-write-btn:hover {
  background-color: #B0974B !important;
}

/*
 SEC_GALLERY
------------------------------ */
.sec_gallery {
  background: #fcfbf9;
  border-bottom: 2px solid #a08e80;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1281px) {
  .sec_gallery {
    padding: 120px 0;
  }
  .sec_gallery .btn {
    margin: 70px auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_gallery {
    padding: 100px 0;
  }
  .sec_gallery .btn {
    margin: 50px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .sec_gallery .gallery_wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .sec_gallery {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sec_gallery {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec_gallery .gallery_wrap {
    margin-top: 40px;
  }
  .sec_gallery .btn {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sec_gallery .btn {
    max-width: 200px;
    line-height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .sec_gallery .art_gallery + .art_gallery {
    margin-top: 0;
  }
}

.swiper-pagination {
  position: static;
  margin-top: 16px;
  text-align: center;
  width: 130px !important;
  margin: 15px auto 0;
}

.swiper-pagination-bullet {
  width: 33.3333333333%;
  height: 3px;
  background: #d9d9d9;
  opacity: 1;
  border-radius: 0;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #024023;
}

/*
 SEC_TRAINER
------------------------------ */
.sec_trainer {
  background: #fbf5ee url(../img/index/co_bg_02.webp) no-repeat center center;
  position: relative;
  border-bottom: 2px solid #a08e80;
  overflow: hidden;
}
.sec_trainer .txt {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec_trainer .txt {
    margin-top: 10px;
    line-height: 1.8214285714;
  }
}
.sec_trainer .btn {
  margin-top: 40px;
}
@media screen and (min-width: 1281px) {
  .sec_trainer {
    padding: 120px 0;
  }
  .sec_trainer .l_flex {
    justify-content: space-between;
  }
  .sec_trainer .txt_wrap {
    width: 500px;
  }
  .sec_trainer .img_wrap {
    width: calc(100% - 600px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_trainer {
    padding: 80px 0;
  }
  .sec_trainer .img_wrap {
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec_trainer {
    padding: 40px 0 80px;
  }
  .sec_trainer .l_flex {
    display: block;
    position: relative;
    padding-bottom: 90px;
  }
  .sec_trainer .txt_wrap {
    text-align: center;
  }
  .sec_trainer .img_wrap {
    margin-top: 30px;
  }
  .sec_trainer .btn_main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) !important;
    line-height: 45px;
  }
}

/*
 SEC_PLAN
------------------------------ */
.sec_plan {
  background: #f4efea;
  border-bottom: 2px solid #a08e80;
  position: relative;
  z-index: 2;
}
.sec_plan .plan_detail {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sec_plan .plan_detail .arrow_wrap {
  position: relative;
  margin-top: auto;
}
.sec_plan .plan_detail .arrow_wrap a {
  display: inline-block;
}
.sec_plan .plan_detail .arrow_wrap a:hover .txt_arrow {
  transform: translateX(8px);
}
.sec_plan .plan_detail .txt_arrow {
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 142px;
  height: 1px;
  margin-top: 5.9px;
  border-radius: 9999px;
  background-color: #eec580;
  transition: transform 0.3s ease;
}
.sec_plan .plan_detail .txt_arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #eec580;
  transform: rotate(25deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.sec_plan .txt {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
}
.sec_plan .btn_wrap {
  text-align: center;
}
.sec_plan .btn {
  margin: 30px auto 0;
}
@media screen and (min-width: 1281px) {
  .sec_plan {
    padding: 120px 0;
  }
  .sec_plan .plan_detail {
    width: calc((100% - 45px) / 4);
  }
  .sec_plan .plan_detail + .plan_detail {
    margin-left: 15px;
  }
  .sec_plan .title {
    font-size: 18px;
  }
  .sec_plan .btn_wrap {
    margin-top: 70px;
  }
  .sec_plan .btn_wrap .title {
    font-size: 32px;
  }
  .sec_plan .btn_wrap .txt {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_plan {
    padding: 100px 0;
  }
  .sec_plan .list_plan {
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }
  .sec_plan .plan_detail {
    width: calc((100% - 30px) / 2);
  }
  .sec_plan .plan_detail:nth-child(even) {
    margin-left: 30px;
  }
  .sec_plan .plan_detail:nth-child(n+3) {
    margin-top: 30px;
  }
  .sec_plan .title {
    font-size: 17px;
  }
  .sec_plan .btn_wrap {
    margin-top: 60px;
  }
  .sec_plan .btn_wrap .title {
    font-size: 24px;
  }
  .sec_plan .btn_wrap .txt {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .sec_plan {
    padding: 80px 0;
  }
  .sec_plan .list_plan {
    display: flex;
    margin-top: 60px;
  }
  .sec_plan .plan_detail {
    background: #fcfbf9;
    border: 1px solid #b0974b;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
  }
  .sec_plan .lead {
    margin-top: 30px;
  }
  .sec_plan .txt_wrap {
    padding: 10px 15px 20px;
  }
  .sec_plan .title_sp {
    display: none;
  }
  .sec_plan .title {
    padding-left: 30px;
    position: relative;
  }
  .sec_plan .title .icon {
    position: absolute;
    left: 0;
    top: 0;
  }
  .sec_plan .plan_detail_training .title {
    padding-left: 35px;
  }
  .sec_plan .plan_detail_training .title .icon {
    top: -2px;
  }
  .sec_plan .plan_detail_personal .title {
    padding-left: 40px;
  }
  .sec_plan .plan_detail_machine .title .icon {
    top: -5px;
  }
  .sec_plan .plan_detail_lifestyle .title .icon {
    top: -5px;
  }
  .sec_plan .arrow_wrap {
    padding: 0 15px;
  }
  .sec_plan .txt_arrow {
    left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec_plan {
    padding: 40px 0;
  }
  .sec_plan .list_plan {
    margin-top: 30px;
    border-top: 1px solid #B0974B;
  }
  .sec_plan .plan_detail {
    border: 1px solid #B0974B;
    border-top: none;
    border-radius: 0;
  }
  .sec_plan .plan_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px 0;
  }
  .sec_plan .plan_content.open {
    padding-bottom: 20px;
  }
  .sec_plan .thumb img {
    border-radius: 10px;
  }
  .sec_plan .txt_wrap {
    padding: 10px 0 20px;
  }
  .sec_plan .title_pc {
    display: none;
  }
  .sec_plan .title_sp {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-size: 16px;
    position: relative;
  }
  .sec_plan .title_sp .icon {
    margin-right: 10px;
    position: relative;
  }
  .sec_plan .title_sp .arrow {
    width: 26px;
    height: 26px;
    background: url(../img/common/btn_arrow_02.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -13px;
  }
  .sec_plan .plan_detail_training .title .icon {
    top: -2px;
  }
  .sec_plan .plan_detail_personal .title .icon {
    top: 0;
  }
  .sec_plan .plan_detail_machine .title .icon {
    top: -3px;
  }
  .sec_plan .plan_detail_lifestyle .title .icon {
    top: -3px;
  }
  .sec_plan .title {
    font-size: 16px;
  }
  .sec_plan .btn_wrap {
    margin-top: 30px;
  }
  .sec_plan .btn_wrap .title {
    font-size: 16px;
  }
  .sec_plan .btn_wrap .txt {
    font-size: 16px;
  }
  .sec_plan .txt_arrow {
    left: 0;
  }
}

/*
 SEC_NEWS
------------------------------ */
.sec_news {
  border-bottom: 2px solid #a08e80;
  position: relative;
  z-index: 2;
  background-color: #fcfbf9;
}
.sec_news .l_inner {
  position: relative;
  padding-bottom: 100px;
}
.sec_news .l_inner .btn {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1281px) {
  .sec_news {
    padding: 120px 0;
  }
  .sec_news .l_inner .btn {
    right: 0;
  }
  .sec_news .list_news {
    width: calc(100% - 200px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_news .l_inner .btn {
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .sec_news {
    padding: 100px 0;
  }
  .sec_news .list_news {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sec_news {
    padding: 40px 0;
  }
  .sec_news .l_inner .btn {
    right: 20px;
  }
  .sec_news .list_news {
    margin-top: 20px;
  }
}

/*
 SEC_BLOG
------------------------------ */
.sec_blog {
  position: relative;
  z-index: 2;
  background-color: #fcfbf9;
}
.sec_blog .art_blog {
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
}
.sec_blog .btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .sec_blog .btn {
    margin-top: 0;
  }
}
@media screen and (min-width: 1281px) {
  .sec_blog {
    padding: 120px 0;
  }
  .sec_blog .list_blog {
    margin-top: 80px;
  }
  .sec_blog .list_blog .art_blog:last-child {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_blog {
    padding: 100px 0;
  }
  .sec_blog .list_blog {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .sec_blog {
    padding: 40px 0;
  }
  .sec_blog .list_blog {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .sec_blog .art_blog {
    width: calc((100% - 20px) / 2);
    background: none;
    box-shadow: none;
  }
  .sec_blog .art_blog .thumb {
    border-radius: 10px;
    overflow: hidden;
  }
  .sec_blog .art_blog .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sec_blog .art_blog .txt_wrap {
    padding: 10px 0 0;
  }
  .sec_blog .art_blog .txt_wrap .contents {
    display: none;
  }
  .sec_blog .art_blog .txt_wrap .txt_link {
    display: none;
  }
  .sec_blog .art_blog:nth-child(2) {
    margin-top: 0;
  }
  .sec_blog .art_blog:nth-child(even) {
    margin-left: 20px;
  }
  .sec_blog .art_blog:nth-child(n+3) {
    margin-top: 20px;
  }
}

/*
 SLIDER
------------------------------ */
.slider_bg_wrap {
  background: #fcfbf9;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.slider_wrap {
  display: flex;
  overflow: hidden;
}
.slider_wrap .slider {
  animation: scroll-left 30s infinite linear 0.5s both;
  display: flex;
}
.slider_wrap .img {
  margin-left: 15px;
}
.slider_wrap .img:nth-child(even) {
  margin-top: 40px;
}
.slider_wrap .img img {
  display: block;
  width: 100%;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 1281px) {
  .slider_wrap {
    padding-bottom: 120px;
  }
  .slider_wrap .slider {
    width: 100vw;
  }
  .slider_wrap .img {
    width: 20vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .slider_wrap {
    padding-bottom: 100px;
  }
  .slider_wrap .slider {
    width: 120vw;
  }
  .slider_wrap .img {
    width: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .slider_wrap {
    padding-bottom: 80px;
  }
  .slider_wrap .slider {
    width: auto;
  }
  .slider_wrap .img {
    width: 33.3333333333vw;
  }
}

/*
 SEC_CONTACT
------------------------------ */
.sec_contact {
  position: relative;
  z-index: 2;
}
.sec_contact .txt_wrap {
  color: #fff;
}
.sec_contact .title_en {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1281px) {
  .sec_contact .title_en {
    font-size: 64px;
  }
  .sec_contact .title_ja {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sec_contact .title_en {
    font-size: 50px;
  }
  .sec_contact .title_ja {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .sec_contact {
    padding: 100px 0;
    background: url(../img/index/co_bg_01_pc.webp) no-repeat top center;
    background-size: cover;
  }
  .sec_contact .l_flex {
    justify-content: space-between;
    align-items: flex-end;
  }
  .sec_contact .txt {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec_contact {
    padding: 10px 0 30px 0;
    background: url(../img/index/co_bg_01_sp.webp) no-repeat center center;
    background-size: cover;
  }
  .sec_contact .l_flex {
    display: block;
  }
  .sec_contact .title_en {
    font-size: 40px;
  }
  .sec_contact .title_ja {
    font-size: 16px;
  }
  .sec_contact .txt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }
  .sec_contact .btn_ll {
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .sec_voice .ti-widget.ti-goog[data-layout-id][data-set-id] .ti-footer .ti-profile-img img,
  .sec_voice .ti-widget.ti-goog[data-layout-id][data-set-id] .ti-footer .ti-profile-img .ti-profile-img-sprite,
  .sec_voice .ti-widget.ti-goog[data-layout-id][data-set-id] .ti-footer .ti-profile-img trustindex-image {
    width: 86px !important;
    height: 86px !important;
  }
}
