@charset "UTF-8";
/*======================================
    Font size
======================================*/
/*======================================
    media
======================================*/
/*======================================
    color
======================================*/
/*======================================
    font
======================================*/
/*======================================
    mixin
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #4b4b4b;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1rem;
  }
}

body {
  background-color: #fff;
}
body.lock {
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 767px) {
  br.is_pc {
    display: none;
  }
}

br.is_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is_sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
}

.inner {
  max-width: 67.5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 88%;
  }
}

/*======================================
    section
======================================*/
.section_title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.083em;
  line-height: 1.1666666667;
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 1.25rem;
  }
}

/*======================================
    button
======================================*/
.fixed_buttons {
  position: fixed;
  display: flex;
  flex-direction: column;
  max-height: 80svh;
  display: grid;
  z-index: 200;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .fixed_buttons {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: min(2.4444444444svh, 1.375rem);
    row-gap: 1.27em;
    height: 31.82em;
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .fixed_buttons {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 150%);
    font-size: min(4.8vw, 1.125rem);
    width: 95%;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.44em;
    transition: transform 0.3s ease;
  }
  .fixed_buttons.show {
    transform: translateX(-50%);
  }
}

.fixed_button {
  display: flex;
  align-items: center;
  font-size: 1em;
  background-color: #e95504;
  color: #fff;
  position: relative;
  transition: opacity 0.3s ease;
  box-shadow: 0.32em 0.32em 0.23em rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .fixed_button {
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: 3.5em;
    padding: 1.2em 0 1.4em;
    border-radius: 0.68em 0 0 0.68em;
  }
}
@media screen and (max-width: 767px) {
  .fixed_button {
    line-height: 1.2222222222;
    letter-spacing: 0.03em;
    text-align: center;
    border-radius: 0.83em 0.83em 0 0;
    height: 3.56em;
    justify-content: center;
    font-feature-settings: "palt";
  }
  .fixed_button .no_sp {
    display: none;
  }
}
.fixed_button:hover {
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .fixed_button:hover::before {
    transform: translateX(-30%);
  }
}
@media screen and (max-width: 767px) {
  .fixed_button:hover::before {
    transform: translate(20%, -50%);
  }
}
.fixed_button::before {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  width: 0.9em;
  background: url(../img/icon_arrow_circle.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .fixed_button::before {
    bottom: 1.36em;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .fixed_button::before {
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
  }
}
.fixed_button .target {
  font-weight: 700;
  color: #e95504;
  background: url(../img/cta_target_vertical.svg) no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fixed_button .target {
    top: 1.36em;
    left: 0;
    transform: translateX(-50%);
    aspect-ratio: 34/144;
    width: 1.55em;
  }
}
@media screen and (max-width: 767px) {
  .fixed_button .target {
    top: 0;
    left: 0.6em;
    transform: translateY(-80%);
    background-image: url(../img/cta_target.svg);
    width: 6.67em;
    height: 1.6em;
    font-size: 0.83em;
  }
}
.fixed_button .text {
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1818181818;
}
@media screen and (max-width: 767px) {
  .fixed_button .text {
    line-height: 1.2222222222;
  }
}

/*======================================
    modal
======================================*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 2.5rem 0 2.5rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal_body {
  width: 99%;
  max-width: 86.25rem;
  display: inline-block;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal_body {
    width: 96%;
  }
}

.modal-close {
  width: 4.625rem;
  aspect-ratio: 1/1;
  background: url(../img/modal_close.svg) no-repeat center/contain;
  cursor: pointer;
  position: absolute;
  top: 3.125rem;
  right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .modal-close {
    width: 2.5rem;
    top: 2.5rem;
    right: 1.25rem;
  }
}

.modal_contents {
  text-align: left;
  max-width: 67.5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.modal_open {
  cursor: pointer;
}

.modal_wrapper {
  padding: 4.375rem 0 3.75rem;
  max-width: 67.5rem;
  margin-left: auto;
  margin-right: auto;
}

.modal_lead {
  font-size: 1.75rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.08em;
  line-height: 1.3571428571;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .modal_lead {
    font-size: 1.25rem;
  }
}

.modal_from {
  font-size: 1.25rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-feature-settings: "palt";
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.5em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .modal_from {
    font-size: 1rem;
  }
}
.modal_from .lg {
  font-size: 1.4em;
}

.modal_coiu {
  max-width: 9.375rem;
  margin-top: 0.625rem;
}

.modal_interview {
  margin-top: 2.5rem;
}
.modal_interview dt {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.083em;
  font-feature-settings: "palt";
}
.modal_interview dd {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .modal_interview dd {
    font-size: 0.9375rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  transition: background-color 0.3s ease, filter 0.3s ease;
}
.header.bg {
  background-color: #fff;
  filter: drop-shadow(0 0 0.5em rgba(0, 0, 0, 0.16));
}

.h_inner {
  max-width: 115rem;
  width: 96%;
}

.h_nav_lists {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1em;
  height: 6.25rem;
}
@media screen and (max-width: 767px) {
  .h_nav_lists {
    justify-content: center;
    height: 3.75rem;
    column-gap: 0.75em;
  }
}

.h_nav_list a {
  display: block;
  transition: opacity 0.3s ease;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.123em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .h_nav_list a {
    font-size: 0.75rem;
  }
}
.h_nav_list a:hover {
  opacity: 0.7;
}

.footer {
  padding: 4.75rem 0 6.25rem;
}

.f_logo {
  max-width: 14.625rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.f_text {
  text-align: center;
  letter-spacing: 0.068em;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7333333333;
  margin-top: 1.5em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .f_text {
    font-size: 0.9375rem;
  }
}
.f_text a {
  font-weight: inherit;
}

.message {
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 500;
  width: 100%;
  height: 100svh;
  background: url(../img/fv.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}
.message.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .message {
    background-image: url(../img/fv_sp.jpg);
  }
}
.message .inner {
  padding: 6.25rem 0;
  min-height: 100svh;
}
@media screen and (max-width: 767px) {
  .message .inner {
    padding: 3.125rem 0;
  }
}

.message_logo {
  max-width: 15.375rem;
}
@media screen and (max-width: 767px) {
  .message_logo {
    max-width: 6.375rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.message_texts {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .message_texts {
    margin-top: 1.875rem;
  }
}

.message_text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .message_text {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0.06em;
  }
}
.message_text.-name {
  margin-top: 2em;
}

.message_close {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  font-feature-settings: "palt";
  line-height: 1.9047619048;
  width: fit-content;
  border-bottom: 1px solid #4b4b4b;
  transition: opacity 0.3s ease;
  cursor: pointer;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .message_close {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
  }
}
.message_close:hover {
  opacity: 0.7;
}

.fv_wrapper {
  position: relative;
}

.fv {
  background: url(../img/fv.jpg) no-repeat center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv {
    background-image: url(../img/fv_sp.jpg);
  }
}

.fv_inner {
  min-height: 100svh;
  max-width: 67.5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 8vh;
}
@media screen and (max-width: 767px) {
  .fv_inner {
    padding: 5rem 0 10rem;
  }
}

.fv_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .fv_wrap {
    display: flex;
    flex-direction: column;
    row-gap: 1.875rem;
  }
}

.fv_logos {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv_logo_main {
  width: min(26.6666666667vw, 32rem);
  transform: translateY(1.5svh);
}
@media screen and (max-width: 767px) {
  .fv_logo_main {
    width: 16rem;
    transform: translate(0);
  }
}

.fv_texts {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .fv_texts {
    padding-right: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .fv_texts {
    padding-right: 0;
    justify-content: center;
  }
}

.fv_texts_text {
  width: min(6.1458333333vw, 7.375rem);
}
@media screen and (max-width: 767px) {
  .fv_texts_text {
    width: 14.5rem;
  }
}

.fv_video {
  max-width: 37.5rem;
  width: 88%;
}
@media screen and (min-width: 768px) {
  .fv_video {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
@media screen and (max-width: 767px) {
  .fv_video {
    margin: 2.5rem auto 1.875rem;
  }
}

.fv_video_frame {
  aspect-ratio: 600/338;
}

.fv_video_text {
  width: fit-content;
  text-align: center;
  white-space: nowrap;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 0.5em;
  font-weight: 700;
  letter-spacing: 0.105em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .fv_video_text {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .fv_video_text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 1em));
  }
}
@media screen and (max-width: 767px) {
  .fv_video_text {
    font-size: 1rem;
    position: relative;
    text-align: center;
    width: 100%;
    line-height: 1.5625;
    margin-bottom: 0.875rem;
  }
}
.fv_video_text::before, .fv_video_text::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1em;
  background-color: #505050;
}
@media screen and (max-width: 767px) {
  .fv_video_text::before, .fv_video_text::after {
    display: none;
  }
}
.fv_video_text::before {
  left: 0;
  transform: rotate(-15deg);
}
.fv_video_text::after {
  right: 0;
  transform: rotate(15deg);
}

.about {
  padding: 16.25rem 0 7.25rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 1.875rem;
    padding-bottom: 5rem;
  }
}

.about_inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .about_title_en {
    position: absolute;
    top: 0;
    left: 0;
    width: 5.375rem;
    transform: translate(-154%, -2%);
  }
}
@media screen and (max-width: 767px) {
  .about_title_en {
    width: 100%;
    max-width: 20.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.875rem;
  }
}

.about-section_title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #60c0bd;
  letter-spacing: 0.125em;
  line-height: 1.1428571429;
  border-bottom: 2px solid #60c0bd;
  width: fit-content;
  font-feature-settings: "palt";
  padding-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  .about-section_title {
    font-size: 1.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.about_lead {
  font-size: 3.5rem;
  letter-spacing: 0.133em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  display: flex;
  align-items: center;
  column-gap: 0.3em;
  margin-top: 1.875rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .about_lead {
    font-size: 2.125rem;
    flex-direction: column;
    row-gap: 0.625rem;
  }
}
.about_lead .cross {
  width: 1.36em;
  display: inline-block;
  margin-right: 0.1em;
}
@media screen and (max-width: 767px) {
  .about_lead .cross {
    margin-left: 0.5em;
  }
}

.about-feature {
  margin-top: 5.25rem;
}

.features {
  width: 95%;
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -4.125rem;
}
@media screen and (max-width: 1200px) {
  .features {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .features {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .features {
    width: 90%;
  }
}

.feature {
  display: flex;
  column-gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .feature {
    flex-direction: column;
    align-items: start;
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .feature.-feature1, .feature.-feature3 {
    transform: translateX(5%);
  }
  .feature.-feature1 .feature_texts, .feature.-feature3 .feature_texts {
    padding-left: 0.25em;
  }
}
@media screen and (max-width: 767px) {
  .feature.-feature1 {
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .feature.-feature2 {
    transform: translateX(-6%);
    flex-direction: row-reverse;
    margin-top: 1.875rem;
    column-gap: 3.125rem;
  }
  .feature.-feature2 .feature_texts {
    margin-right: -0.625rem;
  }
  .feature.-feature2 .feature_img {
    transform: translateY(-11%);
  }
}
@media screen and (min-width: 768px) {
  .feature.-feature3 {
    margin-top: 2.5rem;
  }
}

.feature_map {
  margin-right: -8%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .feature_map {
    order: 5;
    margin-right: 0;
    width: 100%;
    margin-top: 1.25rem;
    width: 22.6875rem;
  }
}

.feature_texts {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .feature_texts {
    display: contents;
  }
}

.feature_title {
  font-size: 1.5625rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  width: fit-content;
  border-bottom: 1px solid rgba(96, 192, 186, 0.83);
  padding-bottom: 0.1em;
}
@media screen and (max-width: 767px) {
  .feature_title {
    font-size: 1.5rem;
    order: 2;
  }
}
.feature_title .num {
  display: inline-block;
  font-size: 2.6em;
}
@media screen and (max-width: 767px) {
  .feature_title .num {
    font-size: 2.5em;
  }
}
.feature_title .num img {
  height: 1em;
  min-width: 1em;
  width: auto;
  object-fit: contain;
}

.feature_lead {
  font-size: 2.8125rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.133em;
  line-height: 1.3555555556;
  font-feature-settings: "palt";
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .feature_lead {
    order: 3;
    font-size: 1.75rem;
    margin-right: -1em;
  }
}

.feature_text {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  letter-spacing: 0.15em;
  line-height: 1.8666666667;
  text-align: justify;
  font-feature-settings: "palt";
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .feature_text {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .feature_text {
    order: 4;
  }
}

.feature_img {
  width: 55.34%;
}
@media screen and (max-width: 767px) {
  .feature_img {
    order: 1;
    width: 100%;
    max-width: 20.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-pj {
  margin-left: -0.6875rem;
  margin-right: -0.6875rem;
  margin-top: -5.5rem;
  position: relative;
  z-index: 1;
  padding: 5.5rem 4.75rem 6rem;
}
@media screen and (max-width: 1024px) {
  .about-pj {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .about-pj {
    margin-top: -2.5rem;
    padding: 5rem 5%;
    margin-left: 0;
    margin-right: 0;
  }
}
.about-pj::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/fv.jpg) no-repeat center/cover;
  opacity: 0.12;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about-pj::before {
    background-image: url(../img/fv_sp.jpg);
  }
}

.about-pj_title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.133em;
  line-height: 1.2;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .about-pj_title {
    font-size: 0.9375rem;
    letter-spacing: 0.033em;
  }
}
.about-pj_title .lg {
  display: block;
  font-weight: 700;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  margin-top: 0.35em;
}
@media screen and (max-width: 767px) {
  .about-pj_title .lg {
    font-size: 1.93em;
  }
}

.about-pj_lead {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 1em;
  letter-spacing: 0.133em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .about-pj_lead {
    font-size: 0.9375rem;
  }
}

.about-pj_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .about-pj_lists {
    grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  }
}

.about-pj_list {
  padding: 1.625rem 1.875rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .about-pj_list {
    padding: 1.625rem 1.25rem;
  }
}

.about-pj_list_lead {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  letter-spacing: 0.135em;
  font-feature-settings: "palt";
  line-height: 1.6;
  margin-top: -0.3em;
}
@media screen and (max-width: 767px) {
  .about-pj_list_lead {
    font-size: 0.9375rem;
  }
}

.about-pj_list_head {
  margin-right: -1.875rem;
  display: grid;
  grid-template-columns: 16rem auto;
  column-gap: 1.5rem;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .about-pj_list_head {
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem;
    margin-right: 0;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(75, 75, 75, 0.3);
  }
}

.about-pj_list_head_main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(75, 75, 75, 0.3);
}
@media screen and (max-width: 767px) {
  .about-pj_list_head_main {
    display: contents;
  }
}

.about-pj_list_head_theme {
  background-color: #4b4b4b;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  min-height: 2.375rem;
  padding: 0.25em 0.5em;
}
@media screen and (max-width: 767px) {
  .about-pj_list_head_theme {
    order: 1;
  }
}
.about-pj_list_head_theme dt {
  font-size: 0.75rem;
  font-weight: 700;
}
.about-pj_list_head_theme dd {
  font-size: 1.0625rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .about-pj_list_head_texts {
    order: 3;
  }
}

.about-pj_list_head_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.55;
  font-feature-settings: "palt";
}

.about-pj_list_head_lead {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-top: 0.75em;
}
@media screen and (max-width: 767px) {
  .about-pj_list_head_lead {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .about-pj_list_head_img {
    order: 2;
  }
}

.about-pj_list_text {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  margin-top: 0.75em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .about-pj_list_text {
    font-size: 0.9375rem;
  }
}

.about-pj_list_bottom {
  margin-top: 1.25rem;
}

.about-pj_list_ex dt {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background-color: #60c0bd;
  height: 2.07em;
  padding: 0 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  position: relative;
}
.about-pj_list_ex dt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(calc(100% - 1px));
  width: 1.14em;
  height: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #60c0bd;
}
.about-pj_list_ex dd {
  margin-top: 0.5em;
}

.about-pj_list_items li {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 0.5em;
  position: relative;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .about-pj_list_items li {
    font-size: 0.9375rem;
  }
}
.about-pj_list_items li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
}

.dates {
  background-color: #f6f6f6;
  padding: 6.875rem 0 8.125rem;
}
@media screen and (max-width: 767px) {
  .dates {
    padding: 5rem 0 3.125rem;
  }
}
.dates .section_title {
  color: #60c0bd;
}

@media screen and (max-width: 767px) {
  .dates_table_wrap {
    overflow: auto;
    padding-bottom: 0.625rem;
    margin-right: calc(50% - 50vw);
    padding-right: 2.5rem;
  }
}

.dates_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .dates_table {
    width: 50rem;
  }
}
.dates_table tr:first-child th {
  background-color: #f6f3ea;
  height: 3.33em;
}
.dates_table tr th:first-child {
  width: 12.625rem;
}
.dates_table tr th:nth-child(2) {
  width: 7rem;
}
.dates_table tr th:nth-child(3) {
  width: 5.5rem;
}
.dates_table th {
  background-color: #e5e5e6;
}
.dates_table th, .dates_table td {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  border: 1px solid rgba(76, 73, 72, 0.66);
  height: 4.133em;
  padding: 0.2em;
  vertical-align: middle;
  font-feature-settings: "palt";
}

.admission_wrap {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .admission_wrap {
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }
}

.admission_lists {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.admission_list {
  border-top: 1px solid rgba(96, 192, 186, 0.66);
  padding: 0.65em 0;
}
.admission_list:last-child {
  border-bottom: 1px solid rgba(96, 192, 186, 0.66);
}

.admission_list_dl {
  display: grid;
  grid-template-columns: 6em auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .admission_list_dl {
    grid-template-columns: 1fr;
  }
}
.admission_list_dl dt, .admission_list_dl dd {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .admission_list_dl dt, .admission_list_dl dd {
    font-size: 0.9375rem;
  }
}
.admission_list_dl dd {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .admission_list_dl dd .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .admission_list_dl dd {
    font-size: 1.1875rem;
  }
  .admission_list_dl dd .pc {
    display: none;
  }
}
.admission_list_dl dd .sm {
  font-size: 0.72em;
}
@media screen and (max-width: 767px) {
  .admission_list_dl dd .sm {
    font-size: 1em;
  }
}

.admission_note_title {
  font-size: 1.25rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #60c0bd;
}

.admission_note_text {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .admission_note_text {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .admission_note_text {
    margin-top: 0.625rem;
  }
}
.admission_note_text .sm {
  font-size: 0.72em;
}

.underline {
  padding-bottom: 0.2em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, #e95504 61%, #e95504 100%);
}

.admission_result_title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #60c0bd;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  margin-top: 3.25em;
}

.admission_result_texts {
  background-color: #fff;
  color: #60c0bd;
  border: 1px solid #60c0bd;
  padding: 1.5em 1em;
  margin-top: 1em;
  text-align: center;
  margin-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .admission_result_texts {
    padding: 0.625rem;
    text-align: left;
    margin-bottom: 4.375rem;
  }
}

.admission_result_text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .admission_result_text {
    font-size: 0.875rem;
  }
}

.cta_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6.625rem;
}
@media screen and (max-width: 767px) {
  .cta_buttons {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta_button_link {
  background-color: #e95504;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.875rem;
  font-size: 1.375rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  border-radius: 0.9375rem;
  box-shadow: 0.4375rem 0.4375rem 0.3125rem rgba(0, 0, 0, 0.3);
  position: relative;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cta_button_link {
    height: 5rem;
    font-size: 1.125rem;
    padding: 0 1.5em;
    border-radius: 1.0625rem;
  }
}
.cta_button_link:hover {
  opacity: 0.7;
  box-shadow: 0.25rem 0.25rem 0.125rem rgba(0, 0, 0, 0.3);
}
.cta_button_link:hover::before {
  transform: translate(0.2em, -50%);
}
.cta_button_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  aspect-ratio: 1/1;
  width: 1.25rem;
  background: url(../img/icon_arrow_circle.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.cta_button_target {
  color: #e95504;
  background: url(../img/cta_target.svg) no-repeat center/contain;
  aspect-ratio: 144/34;
  font-size: 1.375rem;
  width: 6.54em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 1.36em;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .cta_button_target {
    font-size: 1rem;
    left: 1em;
  }
}

.scholarship {
  background-color: #60c0bd;
  color: #fff;
  padding: 6.25rem 0 7.25rem;
}
@media screen and (max-width: 767px) {
  .scholarship {
    padding: 1.25rem 0 3.125rem;
  }
}

.scholarship_section {
  margin-top: 2.25rem;
  position: relative;
}

.scholarship_section_target {
  font-size: 1.875rem;
  letter-spacing: 0.083em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
@media screen and (min-width: 768px) {
  .scholarship_section_target {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .scholarship_section_target {
    font-size: 1.875rem;
    width: fit-content;
    margin-left: 1em;
    margin-top: 0.625rem;
  }
}
.scholarship_section_target span.sm {
  font-size: 0.6em;
  transform: translateY(-50%);
  display: inline-block;
}

.scholarship_section_title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffcc;
  letter-spacing: 0.083em;
  line-height: 1.2142857143;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scholarship_section_title {
    line-height: 1.2857142857;
  }
}
.scholarship_section_title::before {
  content: "▶︎";
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
}

.scholarship_blocks {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 1.75rem;
}

.scholarship_block {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1.25rem 0 0 1.625rem;
  min-height: 6.625rem;
  position: relative;
}
.scholarship_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: calc(100% - 1rem);
  background-color: #fff;
}

.scholarship_block_arrow {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .scholarship_block_arrow {
    grid-template-columns: 1fr;
  }
}

.scholarship_block_arrow_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 1.25rem;
  padding-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scholarship_block_arrow_head {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.scholarship_block_arrow_head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.5rem;
  transform: translate(50%, -50%);
  aspect-ratio: 30/98;
  width: 1.875rem;
  background: url(../img/scholarship_arrow.svg) no-repeat center/contain;
}

.scholarship_block_arrow_head_contents {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.scholarship_block_arrow_area {
  font-size: 1.0625rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.083em;
  color: #60c0bd;
  background-color: #fff;
  min-width: 7.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.125rem;
  border-radius: 0.375rem;
  width: fit-content;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .scholarship_block_arrow_area {
    margin-bottom: 0.625rem;
  }
}

.scholarship_block_arrow_title {
  font-size: 1.75rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: 1.2857142857;
}
.scholarship_block_arrow_title .sm {
  font-size: 0.57em;
}

.scholarship_block_arrow_support {
  font-size: 1.375rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.083em;
  line-height: 1.1818181818;
}
@media screen and (max-width: 767px) {
  .scholarship_block_arrow_support {
    margin-top: 0.625rem;
  }
}
.scholarship_block_arrow_support .price {
  font-size: 2.5em;
  display: inline-block;
  margin-left: 0.1em;
}
.scholarship_block_arrow_support .price img {
  width: auto;
  height: 1em;
  object-fit: contain;
}

.scholarship_block_detail:nth-child(n+2) {
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .scholarship_block_detail:nth-child(n+2) {
    margin-top: 0.875rem;
  }
}

.scholarship_block_detail_dl {
  display: grid;
  grid-template-columns: 2.75rem auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .scholarship_block_detail_dl {
    align-items: start;
    grid-template-columns: 2.5rem auto;
  }
}
.scholarship_block_detail_dl dt {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  aspect-ratio: 1/1;
  width: 3em;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .scholarship_block_detail_dl dt {
    font-size: 0.6875rem;
  }
}
.scholarship_block_detail_dl dd {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: -0.25em;
}
@media screen and (max-width: 767px) {
  .scholarship_block_detail_dl dd {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
    margin-right: -1em;
  }
}
.scholarship_block_detail_dl dd .sm {
  font-size: 0.78em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .scholarship_block_detail_dl dd .sm {
    font-size: 0.86em;
  }
}

.scholarship_area_transfer {
  display: flex;
  column-gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scholarship_area_transfer {
    flex-direction: column;
  }
}
.scholarship_area_transfer::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.6;
}

.scholarship_area_transfer_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scholarship_area_transfer_body {
  padding-right: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.scholarship_area_transfer_text {
  font-size: 1.375rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.083em;
}
@media screen and (max-width: 767px) {
  .scholarship_area_transfer_text {
    font-size: 1.375rem;
    display: flex;
    flex-direction: column;
    margin-top: 0.875rem;
  }
}
.scholarship_area_transfer_text .max {
  display: inline-block;
  font-size: 1.86em;
  margin-left: 0.25em;
}
@media screen and (max-width: 767px) {
  .scholarship_area_transfer_text .max {
    margin-left: 0;
    font-size: 3.5em;
    margin-top: 0.625rem;
  }
}
.scholarship_area_transfer_text .max img {
  width: auto;
  height: 1em;
}

.scholarship_area_transfer_note {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .scholarship_area_transfer_note {
    text-align: left;
    font-size: 0.8125rem;
  }
}

.scholarship_section_com {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  font-weight: 700;
  font-feature-settings: "palt";
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .scholarship_section_com {
    font-size: 0.8125rem;
  }
}
.scholarship_section_com span.kome {
  display: block;
  padding-left: 1em;
  position: relative;
}
.scholarship_section_com span.kome::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.scholarship_categories {
  margin-top: 2.125rem;
  display: flex;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .scholarship_categories {
    flex-direction: column;
  }
}

.scholarship_category {
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .scholarship_category {
    padding-left: 0;
  }
}
.scholarship_category:not(:first-child) {
  position: relative;
}
@media screen and (max-width: 767px) {
  .scholarship_category:not(:first-child) {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}
.scholarship_category:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .scholarship_category:not(:first-child)::after {
    width: 100%;
    height: 1px;
  }
}
@media screen and (min-width: 768px) {
  .scholarship_category:not(:last-child) {
    flex: 1;
  }
}

.scholarship_category_title {
  font-size: 1.75rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.scholarship_category_title .en {
  font-size: 1.14em;
  display: inline-block;
  margin-left: 0.25em;
}
.scholarship_category_title .en img {
  width: auto;
  height: 1em;
  object-fit: contain;
}

.scholarship_category_text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.028em;
  line-height: 1.2222222222;
  margin-top: 0.625rem;
  white-space: nowrap;
  font-feature-settings: "palt";
}
.scholarship_category_text .sm {
  font-size: 0.83em;
}

.scholarship_category_support {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.scholarship_category_support .head {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: 1.0833333333;
  letter-spacing: 0.083em;
  display: inline-block;
}
.scholarship_category_support .details {
  display: inline-block;
  font-size: 2.083em;
  margin-left: 0.625rem;
}
.scholarship_category_support .details img {
  width: auto;
  height: 1em;
  object-fit: contain;
}

.scholarship_block_column2 {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  margin-top: 2.125rem;
  padding-bottom: 2.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 767px) {
  .scholarship_block_column2 {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}
.scholarship_block_column2 .scholarship_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .scholarship_block_column2 .scholarship_block {
    flex-direction: column;
    align-items: start;
  }
}
.scholarship_block_column2 .scholarship_block:first-child {
  padding-right: 2.75em;
}

.scholarship_block_reduction {
  font-size: 1.375rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.083em;
  line-height: 1.0909090909;
}
@media screen and (max-width: 767px) {
  .scholarship_block_reduction {
    font-size: 1.125rem;
    margin-top: 0.625rem;
    display: flex;
    align-items: flex-end;
    column-gap: 0.625rem;
    margin-top: 0.25rem;
  }
}
.scholarship_block_reduction .num {
  font-size: 1.9em;
  display: block;
  margin-top: 10px;
}
.scholarship_block_reduction .num img {
  width: auto;
  height: 1em;
  object-fit: contain;
}

.fund {
  margin-top: 5.25rem;
  position: relative;
  border: 2px solid #fff;
  border-radius: 1.0625rem;
}

.fund_title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #60c0bd;
  color: #ffffcc;
  padding: 0 0.5em;
  z-index: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fund_title {
    width: 100%;
    height: 1.5em;
    text-align: center;
    transform: translate(-50%, -40%);
  }
}

.fund_wrap {
  padding: 2.875rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 52% auto;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .fund_wrap {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    padding: 2.875rem 1.625rem 2.5rem;
  }
}

.fund_head_lead {
  max-width: 28.25rem;
}
@media screen and (max-width: 767px) {
  .fund_head_lead {
    font-size: 1.375rem;
  }
  .fund_head_lead img {
    height: 1em;
    width: 100%;
    object-fit: contain;
  }
}

.fund_head_text {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: justify;
  font-feature-settings: "palt";
  font-weight: 700;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .fund_head_text {
    font-size: 0.9375rem;
  }
}

.fund_head_bottom {
  display: flex;
  margin-top: 1.25rem;
  column-gap: 1.25rem;
  row-gap: 0.625rem;
  flex-wrap: wrap;
}

.fund_head_dl dt {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  letter-spacing: 0.07em;
  line-height: 1.8666666667;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .fund_head_dl dt {
    font-size: 0.9375rem;
  }
}
.fund_head_dl dd {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.fund_people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .fund_people {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    max-width: 17.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .fund_people_list {
    display: grid;
    grid-template-columns: 6.375rem auto;
    column-gap: 0.625rem;
  }
}

.fund_people_list_img {
  max-width: 8.75rem;
  margin-left: auto;
  margin-right: auto;
}

.fund_people_list_name {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .fund_people_list_name {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .fund_people_list_name {
    font-size: 0.625rem;
    text-align: left;
  }
}
.fund_people_list_name .lg {
  font-size: 1.87em;
  display: inline-block;
  margin-right: 0.1em;
}
@media screen and (max-width: 767px) {
  .fund_people_list_name .lg {
    font-size: 2.4em;
  }
}

.fund_people_list_text {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: justify;
  font-feature-settings: "palt";
  letter-spacing: 0.028em;
  line-height: 1.4;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .fund_people_list_text {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .fund_people_list_text {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-right: -1em;
  }
}

.voice {
  background: url(../img/fv.jpg) no-repeat center/cover;
  padding: 6.25rem 0;
}

.voice_lists {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .voice_lists {
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
    column-gap: 1.875rem;
    row-gap: 3.75rem;
  }
}

.voice_list {
  transition: opacity 0.3s ease;
}
.voice_list:hover {
  opacity: 0.9;
}
.voice_list:hover .voice_list_img img {
  transform: scale(1.05);
}
.voice_list:hover .voice_list_more::before {
  transform-origin: left center;
  transform: scale(1, 1);
}

.modal-open {
  cursor: pointer;
}

.voice_list_img {
  aspect-ratio: 488/326;
  overflow: hidden;
}
.voice_list_img img {
  transition: transform 0.3s ease;
}

.voice_list_lead {
  font-size: 1.75rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.08em;
  line-height: 1.3571428571;
  font-feature-settings: "palt";
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .voice_list_lead {
    font-size: 1.25rem;
  }
}

.voice_list_from {
  font-size: 1.25rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-feature-settings: "palt";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .voice_list_from {
    font-size: 1rem;
    column-gap: 0.5em;
    row-gap: 0.375rem;
  }
}
.voice_list_from .lg {
  display: inline-block;
  margin-left: 0.35em;
  font-size: 1.4em;
}
@media screen and (max-width: 767px) {
  .voice_list_from .lg {
    margin-left: 0;
  }
}

.voice_list_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 1.25rem;
  margin-top: 1.25rem;
}

.voice_list_bottom_coiu {
  max-width: 9rem;
}
@media screen and (max-width: 767px) {
  .voice_list_bottom_coiu {
    max-width: 6.25rem;
  }
}

.voice_list_more {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.083em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice_list_more {
    font-size: 1rem;
  }
}
.voice_list_more::before {
  content: "";
  position: absolute;
  bottom: -0.25em;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4b4b4b;
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

/*# sourceMappingURL=style.css.map */
