/* =================================
 common
================================= */
.c-sliderbar-button {
  position: fixed;
  z-index: 99;
  width: 94px;
  aspect-ratio: 1/1;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fce83f;
  border-radius: 9999px;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 18px;
  font-size: 1.8rem;
  top: 12px;
  right: 12px;
  display: block;
  border-color: #fce83f;
  color: #41b99c;
  font-family: "Damion";
  padding-top: 5px;
  z-index: 99999;
}
@media screen and (max-width: 767px) {
  .c-sliderbar-button {
    width: 97px;
    font-size: 18px;
    font-size: 1.8rem;
    top: -38px;
    right: -38px;
    font-family: "Damion";
    padding-top: 13px;
  }
}
.c-sliderbar-button .inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .c-sliderbar-button .inner {
    padding-top: 35px;
    padding-right: 25px;
  }
}
.c-sliderbar-button span.text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-sliderbar-button span.text {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.c-sliderbar-button .line {
  --color-slidebar-button-line: #41b99c;
  position: relative;
  width: 25px;
  height: 1px;
  display: block;
  background-color: var(--color-slidebar-button-line);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, visibility, box-shadow, transform;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-sliderbar-button .line {
    width: 18px;
  }
}
.c-sliderbar-button .line::before, .c-sliderbar-button .line:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-slidebar-button-line);
  transition: inherit;
}
.c-sliderbar-button .line:before {
  top: 8px;
}
@media screen and (max-width: 767px) {
  .c-sliderbar-button .line:before {
    top: 5px;
  }
}
.c-sliderbar-button .line::after {
  top: 16px;
}
@media screen and (max-width: 767px) {
  .c-sliderbar-button .line::after {
    top: 10px;
  }
}
.c-sliderbar-button:focus, .c-sliderbar-button:focus-visible, .c-sliderbar-button:active {
  outline: none;
  box-shadow: none;
}

.is-slidebar-active .line {
  background-color: transparent;
}

.is-slidebar-active .line::before {
  transform: rotate(45deg);
}

.is-slidebar-active .line::after {
  transform: rotate(-45deg);
  top: 8px;
}
@media screen and (max-width: 767px) {
  .is-slidebar-active .line::after {
    top: 5px;
  }
}

.c-sliderbar-menu {
  height: 100vh;
  padding: 0 0 6.5rem;
  position: fixed;
  background-color: #fff;
  padding: 0.625rem;
  z-index: 9991;
  width: 100%;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  right: 0;
  overflow-x: scroll;
  top: 0;
  -webkit-overflow-scrolling: touch;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, visibility, box-shadow, transform;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}
.c-sliderbar-menu .l-header_btn {
  color: #fff;
}
.c-sliderbar-menu .l-header_contact_tel_num {
  color: #33b2be;
}
.c-sliderbar-menu .l-header_contact {
  padding-top: 6px;
}
.c-sliderbar-menu_nav {
  height: calc(100vh - 120px);
  overflow: scroll;
  padding-top: 100px;
}
.c-sliderbar-menu_nav .l-cont_s {
  height: 100%;
}
.c-sliderbar-menu_nav ul li {
  margin-bottom: 16px;
}
.c-sliderbar-menu_nav ul li a {
  display: block;
  padding-left: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #33b2be;
}
.c-sliderbar-menu_nav ul li:last-child {
  margin-bottom: 0;
}

.is-slidebar-active .c-sliderbar-menu {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* title
---------------------------------------------------------- */
.c-ttl {
  text-align: center;
}
.c-ttl_icon {
  width: 66px;
  height: 59px;
  margin: 0 auto 34px;
}
@media screen and (max-width: 767px) {
  .c-ttl_icon {
    width: 39px;
    height: 36px;
    margin-bottom: 20px;
  }
}
.c-ttl_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-ttl_jp {
  color: #502211;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Kaisei Opti";
}
@media screen and (max-width: 767px) {
  .c-ttl_jp {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.c-ttl_jp .is-sm {
  display: block;
  line-height: 1;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-ttl_jp .is-sm {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.c-ttl_jp .is-sm.is-color {
  color: #33b2be;
}
.c-ttl_jp .is-sm.is-color-02 {
  color: #8c6a5e;
}
.c-ttl_eng {
  font-family: "Damion";
  font-size: 22px;
  font-size: 2.2rem;
  color: #41b99c;
  margin-top: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-ttl_eng {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-ttl.is-white {
  color: #fff !important;
}
.c-cta {
  position: relative;
  z-index: 10;
  padding: 197px 0 80px;
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding-top: 116px;
    padding-bottom: 43px;
  }
}
.c-cta_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.c-cta_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-cta_eng {
  font-family: "Damion";
  font-size: 92px;
  font-size: 9.2rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  position: absolute;
  top: 125px;
  z-index: 12;
  left: 50%;
  transform: translateX(-50%);
  color: #edebdb;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-cta_eng {
    font-size: 50px;
    font-size: 5rem;
    top: 78px;
  }
}
.c-cta_inner {
  background-color: rgba(255, 255, 255, 0.79);
  border-radius: 16px;
  padding: 50px 40px 80px;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 767px) {
  .c-cta_inner {
    padding: 29px 24px 50px;
  }
}
.c-cta_ttl {
  font-family: "Kaisei Opti";
  font-weight: 500;
  text-align: center;
  font-size: 38px;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  line-height: 1.68;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-cta_ttl {
    font-size: 19px;
    font-size: 1.8rem;
    margin-bottom: 16px;
	letter-spacing: 0;
  }
}
.c-cta_ttl strong {
  color: #ff893a;
}
.c-cta_txt {
  text-align: center;
}
.c-cta_btns {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 42px;
}
@media screen and (max-width: 767px) {
  .c-cta_btns {
    margin-top: 26px;
    flex-direction: column;
    gap: 10px;
  }
}
.c-cta_tel a, .c-cta_mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 106px;
  width: 420px;
  border-radius: 999px;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .c-cta_tel a, .c-cta_mail a {
    height: 53px;
    width: 100%;
  }
}
.c-cta_tel a {
  background-color: #33b2be;
}
.c-cta_tel a img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-cta_tel a img {
    width: 20px;
    height: 20px;
  }
}
.c-cta_tel a p {
  color: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 39px;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-cta_tel a p {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.c-cta_mail a {
  background-color: #41b99c;
  color: #fff;
}
.c-cta_mail a img {
  width: 39px;
  height: 54px;
  display: block;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-cta_mail a img {
    width: 15px;
    height: 50px;
  }
}
.c-cta_mail a p {
  color: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-cta_mail a p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* =================================
 index
================================= */
.p-index_mv {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 810px;
  background-image: url(../img/img_mv.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-index_mv {
    height: 587px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_mv {
    background-image: url(../img/img_mv_sp.webp);
  }
}
.p-index_mv_bg {
  position: absolute;
  width: 100%;
  aspect-ratio: 1440/406;
  bottom: -79px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-index_mv_bg {
    aspect-ratio: 750/281;
    bottom: -45px;
  }
}
.p-index_mv_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index_mv .l-cont_s {
  position: relative;
  z-index: 30;
  height: 100%;
}
.p-index_mv_cont {
  position: absolute;
  z-index: 0;
  bottom: 190px;
  right: 50%;
  width: 50%;
  color: #fff;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .p-index_mv_cont {
    /*margin-right: -5%;*/
  }
}
@media screen and (max-width: 767px) {
  .p-index_mv_cont {
    bottom: 70px;
    width: 100%;
    right: 0;
    transform: none;
  }
}
.p-index_mv_ttl {
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Kaisei Opti";
  font-size: 38px;
  font-size: 3.8rem;
  margin-bottom: 3%;
}
@media screen and (max-width: 767px) {
  .p-index_mv_ttl {
    line-height: 1.2;
    font-size: 21px;
    font-size: 2.1rem;
    /*margin-bottom: -3%;*/
  }
}
.p-index_mv_copy {
  line-height: 1.6;
  font-size: 24px;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0px 6px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  .p-index_mv_copy {
    margin-top: 15px;
    font-size: 16px;
    font-size: 2.2rem;
  }
}

.p-index-merit {
  background-image: url(../img/bg_content.webp);
  background-repeat: repeat;
  padding: 122px 0 90px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-index-merit {
    padding: 74px 0 0;
  }
}
.p-index-merit_eng {
  font-family: "Damion";
  font-size: 6.7361111111vw;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #c9e0e1;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 188px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-index-merit_eng {
    font-size: 26px;
    font-size: 2.6rem;
    top: 118px;
    width: 105%;
  }
}
.p-index-merit_head {
  margin-bottom: 36px;
  font-family: "Kaisei Opti";
  letter-spacing: 0.075em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index-merit_head {
    margin-bottom: 18px;
  }
}
.p-index-merit_head-main {
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-index-merit_head-main {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-index-merit_head-sub {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_head-sub {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.p-index-merit_block {
  position: relative;
  z-index: 42;
  padding-top: 294px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_block {
    padding-top: 50px;
    padding-bottom: 46px;
  }
}
.p-index-merit_block:after {
  width: 93.0555555556%;
  height: 67%;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  border-radius: 20px 0 0 20px;
  background-color: #33b2be;
  z-index: 13;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-index-merit_block:after {
    width: 95%;
    border-radius: 20px 0 0 10px;
  }
}
.p-index-merit_block-img {
  aspect-ratio: 75/48;
  z-index: 14;
}
@media screen and (min-width: 768px) {
  .p-index-merit_block-img {
    width: 52.0833333333%;
    max-height: 480px;
    position: absolute;
    left: 0;
    top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-merit_block-img {
    width: 100%;
    position: relative;
  }
}
.p-index-merit_block-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-merit_block-txt {
  line-height: 2;
}
.p-index-merit_block-cont {
  position: relative;
  z-index: 15;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-index-merit_block-cont {
    width: 42.7419354839%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-index-merit_block-cont {
    padding-left: 24px;
    padding-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-merit_block.reverse .p-index-merit_block-img {
    left: auto;
    right: 0;
  }
  .p-index-merit_block.reverse:after {
    right: auto;
    left: 0;
    border-radius: 0 0 20px;
  }
  .p-index-merit_block.reverse .p-index-merit_block-cont {
    margin-left: 0;
  }
}
.p-index-merit_icon {
  position: absolute;
  z-index: 20;
  width: 192px;
  height: 259px;
  right: 0;
  bottom: -180px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_icon {
    width: 100px;
    height: 124px;
    bottom: -97px;
  }
}
.p-index-merit_icon.is-03 {
  width: 260px;
  height: 322px;
  right: auto;
  left: 0;
  bottom: auto;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-index-merit_icon.is-03 {
    width: 116px;
    height: 133px;
    bottom: -102px;
  }
}
.p-index-merit .l-cont_l {
  position: relative;
  z-index: 30;
}
.p-index-merit_list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_list {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-merit_list-inner {
    display: flex;
  }
}
.p-index-merit_list-item {
  width: 100%;
  padding: 0 33px 48px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-item {
    padding: 0 18px 26px;
  }
}
.p-index-merit_list-item {
  position: relative;
}
.p-index-merit_list-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-index-merit_list-item::before {
    width: 2px;
    height: 80%;
    border-left: 1px dotted #33b2be;
  }
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-item::before {
    width: 100%;
    height: 2px;
    border-bottom: 1px dotted #33b2be;
  }
}
.p-index-merit_list-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-index-merit_list-item:last-child::after {
    width: 2px;
    height: 80%;
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    border-left: 1px dotted #33b2be;
  }
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-item:last-child::before {
    display: none;
  }
}
.p-index-merit_list-icon {
  aspect-ratio: 1/1;
  width: 94px;
  background-color: #fce83f;
  border-radius: 9999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Damion";
  line-height: 1;
  margin: 0 auto 10px;
  color: #33b2be;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-icon {
    width: 70px;
  }
}
.p-index-merit_list-icon .txt {
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: -17px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-icon .txt {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: -13px;
  }
}
.p-index-merit_list-icon .num {
  font-size: 50px;
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-icon .num {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.p-index-merit_list-head {
  margin-bottom: 13px;
  text-align: center;
}
.p-index-merit_list-head .sub {
  display: flex;
  justify-content: center;
  align-items: center;
  color: "Zen Maru Gothic";
  color: #33b2be;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-head .sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-index-merit_list-head .sub::before, .p-index-merit_list-head .sub::after {
  content: "/";
}
.p-index-merit_list-head .sub::before {
  transform: scaleX(-1);
}
.p-index-merit_list-head .main {
  font-family: "Kaisei Opti";
  font-weight: 500;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-index-merit_list-head .main {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
.p-index-merit_list-txt {
  line-height: 2;
}
.p-index-merit_plan {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan {
    margin-top: 25px;
  }
}
.p-index-merit_plan-head {
  background-color: #f7f5e6;
  text-align: center;
  padding: 16px 16px 14px 170px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-head {
    padding: 14px 16px 14px 108px;
  }
}
.p-index-merit_plan-icon {
  position: absolute;
  position: absolute;
  width: 125px;
  height: 123px;
  color: #fff;
  top: -20px;
  left: 32%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-icon {
    width: 84px;
    height: 83px;
    top: -10px;
    left: 4%;
  }
}
.p-index-merit_plan-icon .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 20px;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-family: "Zen Maru Gothic";
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-icon .txt {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
  }
}
.p-index-merit_plan-txt {
  line-height: 2;
}
.p-index-merit_plan-ttl {
  font-weight: 500;
  font-family: "Kaisei Opti";
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-index-merit_plan-cont {
  background-color: #fff;
  padding: 44px 80px 65px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-cont {
    padding: 28px 23px 26px;
  }
}
.p-index-merit_plan-tbl {
  margin-top: 53px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-tbl {
    overflow: scroll;
  }
}
.p-index-merit_plan-tbl table {
  font-family: "Zen Maru Gothic";
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-tbl table {
    width: 840px;
  }
}
.p-index-merit_plan-tbl tr {
  font-weight: 500;
}
.p-index-merit_plan-tbl tr th {
  width: 152px;
  text-align: center;
  background-color: #c9e0e1;
  color: #313131;
  border-bottom: 1px dotted #fff;
  padding: 11px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-tbl tr th {
    width: 107px;
  }
}
.p-index-merit_plan-tbl tr th .inner {
  height: 100%;
  font-weight: 500;
}
.p-index-merit_plan-tbl tr td {
  width: calc((100% - 152px) / 4);
  text-align: center;
  padding: 12px 23px;
  border-bottom: 1px dotted #c9e0e1;
  border-right: 1px dotted #c9e0e1;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-tbl tr td {
    padding: 13px 17px;
  }
}
.p-index-merit_plan-tbl tr:first-child th {
  background-color: transparent;
  vertical-align: bottom;
  padding: 0;
}
.p-index-merit_plan-tbl tr:first-child th .inner {
  background-color: #c9e0e1;
  padding: 11px;
}
.p-index-merit_plan-tbl tr:first-child td {
  color: #33b2be;
  padding-top: 0;
  vertical-align: bottom;
  border-right: none;
  padding: 0;
}
.p-index-merit_plan-tbl tr:first-child td .inner {
  border-top: 1px dotted #c9e0e1;
  padding: 11px 0px;
  font-weight: 700;
}
.p-index-merit_plan-tbl tr:first-child td:nth-child(3) {
  font-size: 18px;
  font-size: 1.8rem;
}
.p-index-merit_plan-tbl tr:first-child td:nth-child(3) .inner {
  border-left: 1px dotted #c9e0e1;
  font-weight: 700;
  font-weight: 700;
  padding: 23px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-tbl tr:first-child td:nth-child(3) .inner {
    padding: 10px 0 10px;
  }
}
.p-index-merit_plan-tbl tr:first-child td:nth-child(4) {
  font-size: 20px;
  font-size: 2rem;
}
.p-index-merit_plan-tbl tr:first-child td:nth-child(4) .inner {
  border-left: 1px dotted #c9e0e1;
  font-weight: 700;
  padding: 31px 0 35px;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-tbl tr:first-child td:nth-child(4) .inner {
    padding: 10px 0 15px;
  }
}
.p-index-merit_plan-tbl tr:first-child td:nth-child(5) {
  font-size: 22px;
  font-size: 2.2rem;
}
.p-index-merit_plan-tbl tr:first-child td:nth-child(5) .inner {
  border-left: 1px dotted #c9e0e1;
  padding: 39px 0 45px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-index-merit_plan-tbl tr:first-child td:nth-child(5) .inner {
    padding: 10px 0 15px;
  }
}
.p-index-merit_plan-tbl tr:first-child td:nth-child(5) {
  border-right: 1px dotted #c9e0e1;
}
.p-index-merit_plan-tbl tr:last-child td {
  text-align: left;
}
.p-index-about {
  background-image: url(../img/bg_content.webp);
  background-repeat: repeat;
  padding: 100px 0 162px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-index-about {
    padding-top: 52px;
    padding-bottom: 54px;
  }
}
.p-index-about_blocks {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-index-about_blocks {
    margin-top: 30px;
  }
}
.p-index-about_block {
  position: relative;
  z-index: 12;
}
@media screen and (max-width: 767px) {
  .p-index-about_block:not(:first-child) {
    margin-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-about_block:nth-child(2n) .p-index-about_cont {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-index-about_block:nth-child(2n) .p-index-about_img {
    right: auto;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-index-about_block:nth-child(2n) .p-index-about_img:after {
    left: auto;
    right: 0;
    transform: scaleX(-1);
  }
}
@media screen and (min-width: 768px) {
  .p-index-about_block:nth-child(1) {
    margin-bottom: 80px;
  }
}
.p-index-about_block:nth-child(1) {
  --color: #ffc59e;
}
@media screen and (min-width: 768px) {
  .p-index-about_block:nth-child(2) {
    margin-bottom: 80px;
  }
}
.p-index-about_block:nth-child(2) {
  --color: #a8e7d8;
}
@media screen and (min-width: 768px) {
  .p-index-about_block:nth-child(3) {
    margin-bottom: 80px;
  }
}
.p-index-about_block:nth-child(3) {
  --color: #ffe08c;
}
.p-index-about_block:nth-child(4) {
  --color: #c2e4e7;
}
.p-index-about_img {
  aspect-ratio: 670/440;
  overflow: hidden;
  z-index: 13;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-index-about_img {
    width: 57.7586206897%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.p-index-about_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-about_img:after {
  position: absolute;
  content: "";
  width: 65.671641791%;
  aspect-ratio: 1/1;
  background-image: url(../img/bg-img-cover.webp);
  background-size: cover;
  z-index: 14;
  top: 0;
  left: 0;
}
.p-index-about_cont {
  position: relative;
  z-index: 16;
}
@media screen and (min-width: 768px) {
  .p-index-about_cont {
    width: 44.8275862069%;
    min-height: 440px;
    padding-top: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-about_cont {
    margin-top: 30px;
  }
}
.p-index-about_icon {
  width: 97px;
  height: 67px;
}
@media screen and (min-width: 768px) {
  .p-index-about_icon {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-about_icon {
    width: 77px;
    margin: 0 auto 18px;
    height: 46px;
  }
}
.p-index-about_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-about_sub {
  font-family: "Kaisei Opti";
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.075em;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-index-about_sub {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
  }
}
.p-index-about_ttl {
  font-family: "Kaisei Opti";
  font-weight: 500;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.075em;
  line-height: 1.6;
  margin-bottom: 41px;
}
@media screen and (max-width: 767px) {
  .p-index-about_ttl {
    margin-bottom: 15px;
    text-align: center;
    font-size: 19px;
    font-size: 1.9rem;
  }
}
.p-index-about_ttl strong {
  position: relative;
  display: inline-block;
}
.p-index-about_ttl strong:before {
  position: absolute;
  content: "";
  background-color: var(--color);
  width: 98%;
  height: 5px;
  left: 0;
  bottom: 7px;
  z-index: -1;
  border-radius: 5px;
}
.p-index-about_txt {
  line-height: 2;
}

.p-index-flow {
  padding: 116px 0 123px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-index-flow {
    padding-top: 82px;
    padding-bottom: 60px;
  }
}
.p-index-flow::before {
  content: "";
  width: 100%;
  height: 202px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/bg_flow.webp);
  background-size: cover;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .p-index-flow::before {
    background-image: url(../img/bg_flow_sp.webp);
  }
}
.p-index-flow .l-cont_l {
  position: relative;
  z-index: 12;
}
.p-index-flow_txt {
  margin-top: 60px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-index-flow_txt {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-index-flow_txt {
    margin-top: 20px;
  }
}
.p-index-flow_flow {
  margin-top: 113px;
  gap: 40px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-index-flow_flow {
    flex-direction: column;
    margin-top: 85px;
    padding: 0 12px;
    gap: 90px;
  }
}
.p-index-flow_item {
  width: 100%;
  position: relative;
  background-color: #f6f4e5;
  padding: 55px 30px 44px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-index-flow_item {
    padding: 45px 24px 44px;
  }
}
.p-index-flow_item:not(:last-child)::after {
  display: inline-block;
  width: 14px;
  height: 27px;
  background: #41b99c;
  position: absolute;
  content: "";
  top: 50%;
  right: -29px;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media screen and (max-width: 767px) {
  .p-index-flow_item:not(:last-child)::after {
    right: 50%;
    transform: translateX(50%) rotate(90deg);
    top: auto;
    bottom: -40px;
  }
}
.p-index-flow_ttl {
  text-align: center;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: "Kaisei Opti";
}
@media screen and (max-width: 767px) {
  .p-index-flow_ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-index-flow_icon {
  position: absolute;
  left: 50%;
  top: -47px;
  width: 94px;
  aspect-ratio: 1/1;
  border-radius: 99px;
  background-color: #fce83f;
  color: #33b2be;
  font-family: "Damion";
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-index-flow_icon {
    font-size: 38px;
    font-size: 3.8rem;
    width: 72px;
    top: -42px;
  }
}
.p-index-flow_icon .is-txt {
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: -17px;
}
@media screen and (max-width: 767px) {
  .p-index-flow_icon .is-txt {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: -11px;
  }
}
.p-index-flow_cont {
  position: relative;
  z-index: 0;
  background-color: #f6f4e5;
  line-height: 40px;
  padding-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .p-index-flow_cont {
    line-height: 32px;
  }
}
.p-index-flow_cont::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle, #ccc 1px, transparent 1.2px);
  background-size: 5px 39px;
  background-position: 1px 33px;
  top: -11px;
}
@media screen and (max-width: 767px) {
  .p-index-flow_cont::before {
    background-size: 5px 31px;
    background-position: 3px 31px;
    top: -15px;
  }
}
.p-index-flow_cont p {
  position: relative;
  z-index: 1;
  margin: 0;
}
.p-index-charm {
  padding: 124px 0 100px;
  background-image: url(../img/bg_charm.webp);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-index-charm {
    padding-top: 52px;
    padding-bottom: 50px;
  }
}
.p-index-charm .c-ttl_jp,
.p-index-charm .c-ttl_eng {
  color: #fff;
}
.p-index-charm_txt {
  margin-top: 60px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-index-charm_txt {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-index-charm_txt {
    margin-top: 20px;
  }
}
.p-index-charm_blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-index-charm_blocks {
    margin-top: 37px;
    gap: 30px;
  }
}
.p-index-charm_block {
  border-radius: 16px;
  padding: 64px 68px;
  background-color: #eaf6f3;
  color: #313131;
}
@media screen and (max-width: 767px) {
  .p-index-charm_block {
    border-radius: 8px;
    padding: 41px 22px;
  }
}
.p-index-charm_ttl {
  color: #268b72;
  font-family: "Kaisei Opti";
  font-weight: 500;
  letter-spacing: 0.075em;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-index-charm_ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.p-index-charm_inner {
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-index-charm_inner {
    gap: 18px;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-index-charm_inner.is-reverse {
    flex-direction: row-reverse;
  }
}
.p-index-charm_cont {
  width: 100%;
}
.p-index-charm_cont p {
  line-height: 2;
}
.p-index-charm_cont .p-index-charm_ttl:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-index-charm_cont .p-index-charm_ttl:not(:first-child) {
    margin-top: 24px;
  }
}
.p-index-charm_img {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-index-charm_img {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .p-index-charm_img {
    width: 62%;
    margin: 0 auto;
  }
}

.p-index-message {
  padding: 120px 0 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-index-message {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.p-index-message_eng {
  font-family: "Damion";
  font-size: 12.0138888889vw;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #c9e0e1;
  text-align: center;
  white-space: nowrap;
  z-index: 11;
  position: absolute;
  top: 298px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
}
@media screen and (max-width: 767px) {
  .p-index-message_eng {
    font-size: 47px;
    font-size: 4.7rem;
    top: 137px;
    width: 97%;
  }
}
.p-index-message_inner {
  margin-top: 170px;
  background-color: #f5f4ef;
  position: relative;
  padding: 50px 0 60px;
  z-index: 15;
}
@media screen and (max-width: 767px) {
  .p-index-message_inner {
    margin-top: 54px;
    padding: 0 0 37px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-message_img {
    height: 100%;
    width: 51.3888888889%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-index-message_img {
    width: 100%;
  }
}
.p-index-message_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-index-message_cont {
    width: 43.6090225564%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-index-message_cont {
    padding-top: 20px;
  }
}
.p-index-message_ttl {
  font-family: "Kaisei Opti";
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.075em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-index-message_ttl {
    font-size: 17px;
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}
.p-index-message_txt {
  line-height: 2;
}
.p-index-message_name {
  margin-top: 16px;
  text-align: right;
}
.p-index-message_name .sub {
  color: #33b2be;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index-message_name .sub {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.p-index-message_name .name {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Kaisei Opti";
}
@media screen and (max-width: 767px) {
  .p-index-message_name .name {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-index-message_name .name span {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index-message_name .name span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-index-intern {
  padding: 24px 0 116px;
}
@media screen and (max-width: 767px) {
  .p-index-intern {
    padding-top: 47px;
    padding-bottom: 66px;
  }
}
.p-index-intern_head {
  color: #268b72;
  font-family: "Kaisei Opti";
  font-weight: 500;
  letter-spacing: 0.075em;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-index-intern_head {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.p-index-intern_blocks {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-index-intern_blocks {
    margin-top: 33px;
  }
}
.p-index-intern_block {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-index-intern_block {
    margin-top: 33px;
  }
}
.p-index-intern_tbl table {
  font-family: "Zen Maru Gothic";
  font-weight: 500;
}
.p-index-intern_tbl table tr th {
  background-color: #eaf2f2;
  padding: 18px 33px;
  border-bottom: 1px dotted #fff;
}
@media screen and (min-width: 768px) {
  .p-index-intern_tbl table tr th {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-intern_tbl table tr th {
    display: block;
    text-align: center;
    width: 100%;
    padding: 13px 33px;
  }
}
.p-index-intern_tbl table tr td {
  padding: 18px 33px;
  border-bottom: 1px dotted #eaf2f2;
  border-right: 1px dotted #eaf2f2;
}
@media screen and (max-width: 767px) {
  .p-index-intern_tbl table tr td {
    display: block;
    width: 100%;
    border-left: 1px dotted #eaf2f2;
    padding: 13px 16px;
  }
}
.p-index-intern_tbl table tr:first-child td {
  border-top: 1px dotted #eaf2f2;
}
.p-index-bottom {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-index-bottom {
    margin-top: 5px;
  }
}
.p-index-bottom_slider {
  overflow: hidden;
  width: 100%;
}
.p-index-bottom_slider_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: p-index-bottom-slider-loop 60s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-index-bottom_slider_wrapper {
    gap: 5px;
  }
}
.p-index-bottom_slide {
  flex: 0 0 auto;
  width: clamp(180px, 24.3055555556vw, 350px);
  aspect-ratio: 35/27;
}
.p-index-bottom_slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-bottom_map {
  margin-top: 10px;
}
.p-index-bottom_map iframe {
  display: block;
  width: 100%;
  height: 470px;
}
@media screen and (max-width: 767px) {
  .p-index-bottom_map iframe {
    height: 192px;
  }
}

@keyframes p-index-bottom-slider-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-index-bottom_slider_wrapper {
    animation: none;
  }
}

.p-index-merit_head-main strong {
    position: relative;
    display: inline-block;
}
.p-index-merit_head-main strong:before {
    position: absolute;
    content: "";
    background-color: #ffe08c;
    width: 98%;
    height: 5px;
    left: 0;
    bottom: 7px;
    z-index: -1;
    border-radius: 5px;
}