@charset "UTF-8";
/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: clip;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

a {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-tab {
  display: none;
}
@media (max-width: 1024px) {
  .u-tab {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

:root {
  --base-font-color: #000;
  --white: #fff;
  --main: #0074eb;
  --sub: #00b7ff;
  --accent: #ff0;
  --transition: 0.3s ease;
  --fs-15: 0.9375rem;
  --fs-17: 1.0625rem;
  --fs-19: 1.1875rem;
  --fs-23: 1.4375rem;
  --fs-30: 1.875rem;
  --fs-55: 3.4375rem;
  --header-height: 70px;
}

@media (max-width: 1024px) {
  :root {
    --fs-17: 1rem;
    --fs-19: 1.125rem;
    --fs-23: 1.25rem;
    --fs-30: 1.5625rem;
    --fs-55: 2.5rem;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-15: 0.875rem;
    --fs-17: 1rem;
    --fs-19: 1.0625rem;
    --fs-23: 1.125rem;
    --fs-30: 1.375rem;
    --fs-55: 1.8125rem;
    --header-height: 50px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", "Meiryo", sans-serif;
  position: relative;
  font-size: var(--fs-17);
  font-weight: 500;
  color: var(--base-font-color);
  background-color: var(--white);
}

main {
  position: relative;
  overflow: clip;
}

.section {
  padding-top: 125px;
  padding-bottom: 130px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.inner {
  width: 92%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}
.inner--l {
  max-width: 1100px;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.btn-container {
  max-width: 465px;
  margin-inline: auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .btn-container {
    margin-top: 30px;
  }
}

.btn {
  position: relative;
  width: fit-content;
  min-width: 300px;
  padding: 1.1em 3.5em;
  margin-inline: auto;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: var(--main);
  border-radius: 9999px;
  transition: opacity var(--transition);
}
.btn--school {
  background-color: var(--sub);
}
@media (max-width: 768px) {
  .btn {
    min-width: 250px;
    font-size: 0.9375rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    opacity: 0.85;
  }
}
@media (hover: none) {
  .btn:active {
    opacity: 0.85;
  }
}

.heading-container {
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
@media (max-width: 768px) {
  .heading-container {
    margin-bottom: 40px;
  }
}

.heading {
  font-size: var(--fs-55);
  line-height: 1.2727272727;
}

.heading-en {
  width: fit-content;
  padding: 0 0.2em;
  margin-bottom: 0.4em;
  font-size: 1.1875rem;
  color: var(--main);
  background-color: var(--accent);
}

.entry-btn-group {
  position: fixed;
  right: 0;
  bottom: 13%;
  z-index: 30;
  display: grid;
  gap: 20px 0;
}
@media (max-width: 768px) {
  .entry-btn-group {
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    transform: translateY(100%);
    transition: transform var(--transition);
  }
  .entry-btn-group.is-show {
    transform: translateY(0);
  }
}

.entry-btn {
  display: grid;
  place-content: center;
  min-width: 190px;
  padding: 1em;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3333333333;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_arrow_02.svg") no-repeat calc(100% - 0.65em) center/1em, var(--main);
  transition: filter 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.entry-btn--beppu {
  background-color: var(--sub);
}
@media (max-width: 1024px) {
  .entry-btn {
    min-width: 150px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .entry-btn {
    display: flex;
    width: 100%;
    padding: 1.5em 0.2em;
    font-size: 12px;
    text-align: center;
    background-position-x: calc(100% - 1.5em);
  }
  .entry-btn br {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn:hover, .entry-btn:focus {
    filter: brightness(1.1);
  }
}
@media (hover: none) {
  .entry-btn:active {
    filter: brightness(1.1);
  }
}

/* ------------------------
    header
------------------------ */
.header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 7px 1.875% 7px 2.75%;
  margin-bottom: calc(var(--header-height) * -1);
  background-color: var(--white);
}
.header_logo-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .header_logo-wrap {
    gap: 10px;
  }
}
.header_logo {
  width: auto;
  height: 75%;
  transition: opacity var(--transition);
}
@media (max-width: 768px) {
  .header_logo {
    height: 65%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.7;
  }
}
.header_logo img {
  width: auto;
  height: 100%;
}
.header_site-name {
  padding: 0.4em 1.4em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sub);
  border: 1px solid var(--sub);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .header_site-name {
    padding: 0.2em 1.2em;
    font-size: 0.625rem;
  }
}

.header-nav-container {
  position: fixed;
  inset: 0;
  z-index: 99;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  overflow: clip auto;
  overscroll-behavior-y: none;
  content: "";
  background: rgba(0, 67, 134, 0.6) !important;
  opacity: 0;
  backdrop-filter: unset;
  transition: opacity var(--transition);
}
.js-active .header-nav-container {
  visibility: visible;
  opacity: 1;
}
.header-nav-container::after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 1px);
  pointer-events: none;
  content: "";
}

.header-nav {
  display: grid;
  align-content: center;
  width: min(90%, 400px);
  min-height: 100%;
  padding: var(--header-height) 2em 50px;
  margin-left: auto;
  background-color: var(--white);
  transform: translateX(110%);
  transition: transform var(--transition);
}
.js-active .header-nav {
  transform: translateX(0);
}
.header-nav_list {
  display: flex;
  flex-direction: column;
  row-gap: 1.8em;
  align-items: center;
  font-size: 1.125rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .header-nav_list {
    font-size: 1.0625rem;
  }
}
.header-nav_item {
  width: 100%;
}
.header-nav_item + .header-nav_btn-wrap {
  margin-top: 1em;
}
.header-nav_link {
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    color: var(--main);
  }
}
@media (hover: none) {
  .header-nav_link:active {
    color: var(--main);
  }
}
.header-nav_btn {
  width: 13em;
  padding: 0.9em 1em;
  font-size: 0.875rem;
  color: var(--white);
  background-color: var(--main);
  border-radius: var(--radius20);
  transition: filter 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.header-nav_btn--beppu {
  background-color: var(--sub);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_btn:hover, .header-nav_btn:focus {
    filter: brightness(1.1);
  }
}
@media (hover: none) {
  .header-nav_btn:active {
    filter: brightness(1.1);
  }
}

.hamburger {
  position: fixed;
  top: 12px;
  right: 10px;
  z-index: 150;
  width: calc(var(--header-height) - 30px);
  height: calc(var(--header-height) - 25px);
}
@media (max-width: 768px) {
  .hamburger {
    top: 6px;
    width: calc(var(--header-height) - 20px);
    height: calc(var(--header-height) - 15px);
  }
}
.hamburger > span {
  position: absolute;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: ease 0.4s;
}
.hamburger > span:nth-of-type(1) {
  top: 25%;
}
.hamburger > span:nth-of-type(2) {
  top: 50%;
}
.hamburger > span:nth-of-type(3) {
  top: 75%;
}
.hamburger.js-close > span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(35deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-35deg);
}

/* ------------------------
    footer
------------------------ */
.footer {
  position: relative;
  padding: 50px 5% 60px;
  font-size: 0.9375rem;
  color: var(--white);
  background-color: var(--main);
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 2% 80px;
    font-size: 0.75rem;
  }
}
@media (max-width: 500px) {
  .footer {
    font-size: 0.6875rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 2em;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-bottom: 10px;
  }
}
.footer-nav a {
  position: relative;
}
.footer-nav a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1em;
  display: block;
  width: 1px;
  height: 0.9em;
  content: "";
  background: var(--white);
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:not(:last-child)::after:hover, .footer-nav a:not(:last-child)::after:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:not(:last-child)::after:active {
    opacity: 0.75;
  }
}
@media (width <= 600px) {
  .footer-nav a:nth-last-child(2)::after {
    display: none;
  }
}

.copyright {
  line-height: 1.3;
  text-align: center;
}

/* ------------------------
    mv
------------------------ */
.mv {
  margin-top: var(--header-height);
}

/* ------------------------
    message
------------------------ */
.message {
  position: relative;
  max-width: 1700px;
  padding-bottom: max(200px, 14.2857142857vw);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .message {
    padding-bottom: 100px;
  }
}
.message::before {
  position: absolute;
  top: -3.5714285714%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 144.7857142857%;
  aspect-ratio: 2027/980;
  content: "";
  background: url("../images/bg_01.jpg") no-repeat center/contain;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .message::before {
    top: 9%;
  }
}
@media (max-width: 768px) {
  .message::before {
    top: 5%;
    width: 185%;
  }
}
.message_txt {
  font-size: var(--fs-19);
  line-height: 2.1052631579;
}
.message_txt + .message_txt {
  margin-top: 2em;
}
.message_img {
  position: absolute;
  z-index: -1;
}
@media (max-width: 768px) {
  .message_img {
    position: relative;
  }
}
.message_img--01 {
  top: 120px;
  right: 0;
  width: 38.7142857143%;
}
@media (max-width: 768px) {
  .message_img--01 {
    top: 50px;
    right: unset;
    left: -6%;
    width: 65%;
  }
}
.message_img--02 {
  top: clamp(200px, 37vw, 620px);
  right: 7.1428571429%;
  display: grid;
  grid-template-columns: 308fr 279fr;
  width: 39.7142857143%;
}
@media (max-width: 1024px) {
  .message_img--02 {
    right: 3%;
  }
}
@media (max-width: 768px) {
  .message_img--02 {
    top: -3vw;
    right: -29%;
    z-index: -2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 67%;
  }
}
.message_img--02 img:last-child {
  position: relative;
  z-index: -1;
  margin-top: 60%;
  transform: translateX(-15%);
}
@media (max-width: 768px) {
  .message_img--02 img:last-child {
    order: -1;
    width: 60%;
    margin-top: 0;
    margin-left: 65%;
  }
}

/* ------------------------
    interview
------------------------ */
.interview {
  padding-bottom: 90px;
  background: url("../images/bg_02.jpg") no-repeat center bottom/100% 515px;
}
@media (max-width: 768px) {
  .interview {
    background-size: 100% 80%;
  }
}

.staff-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
@media (max-width: 768px) {
  .staff-group {
    grid-template-columns: 85%;
    justify-content: center;
  }
}

.staff {
  position: relative;
}
.staff_img {
  position: relative;
  overflow: clip;
}
.staff_img img {
  transition: transform 0.2s ease-in;
}
@media (hover: hover) and (pointer: fine) {
  .staff_img:hover img, .staff_img:focus img {
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .staff_img:active img {
    transform: scale(1.05);
  }
}
.staff_annotation {
  position: absolute;
  right: 1em;
  bottom: 0.8em;
  font-size: 0.6875rem;
  color: var(--white);
}
.staff_info {
  padding-block: 1.1em 0.5em;
  font-size: var(--fs-19);
  line-height: 1.4210526316;
}
@media (max-width: 768px) {
  .staff_info {
    padding-bottom: 0;
  }
}
.staff_link {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  aspect-ratio: 1;
  background: url("../images/icon_arrow.svg") no-repeat center/40%, var(--main);
  border-radius: 50%;
  transition: filter 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (max-width: 1024px) {
  .staff_link {
    width: 42px;
  }
}
@media (max-width: 768px) {
  .staff_link {
    width: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .staff_link:hover, .staff_link:focus {
    filter: brightness(1.1);
  }
}
@media (hover: none) {
  .staff_link:active {
    filter: brightness(1.1);
  }
}

/* ------------------------
    environment
------------------------ */
.environment {
  position: relative;
  overflow: clip;
}
.environment::before {
  position: absolute;
  bottom: -10%;
  left: 50%;
  z-index: -1;
  display: block;
  height: calc(100% - 400px);
  aspect-ratio: 2962/2005;
  content: "";
  background: url("../images/bg_03.jpg") no-repeat center top/contain;
  transform: translateX(-44%);
}
@media (min-width: 1600px) {
  .environment::before {
    height: 100%;
  }
}

.environment-cont {
  padding: 37px;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
}
@media (max-width: 768px) {
  .environment-cont {
    padding: 30px 22px;
  }
}
.environment-cont + .environment-cont {
  margin-top: 40px;
}
.environment-cont_inner {
  display: grid;
  grid-template-columns: 1fr 40.8163265306%;
  gap: 20px 5%;
}
@media (max-width: 768px) {
  .environment-cont_inner {
    grid-template-columns: 1fr;
  }
}
.environment-cont--reverse .environment-cont_inner {
  grid-template-columns: 40.8163265306% 1fr;
}
@media (max-width: 768px) {
  .environment-cont--reverse .environment-cont_inner {
    grid-template-columns: 1fr;
  }
}
.environment-cont--reverse .environment-cont_img {
  order: -1;
}
@media (max-width: 768px) {
  .environment-cont_img {
    order: -1;
  }
}
.environment-cont_txt-container {
  align-self: center;
}
.environment-cont_heading {
  margin-bottom: 0.4em;
  font-size: var(--fs-30);
  font-weight: 700;
  color: var(--main);
}
.environment-cont_heading .emphasis {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: var(--accent);
  text-decoration-skip-ink: none;
  text-underline-offset: -0.2em;
}
.environment-cont_txt {
  line-height: 2;
  text-align: justify;
}
@media (max-width: 768px) {
  .environment-cont_txt {
    font-size: 0.9375rem;
  }
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 1px;
  margin-top: 40px;
  margin-bottom: 10px;
  counter-reset: step-num;
}
@media (max-width: 1024px) {
  .step-list {
    width: 104%;
    margin-left: -2%;
  }
}
@media (max-width: 768px) {
  .step-list {
    width: 100%;
    margin-left: 0;
  }
}

.step {
  display: grid;
  gap: 10px;
  align-content: flex-start;
  justify-items: center;
  width: calc(50% - 1px);
  padding-inline: 30px;
  padding-bottom: 1.5em;
  counter-increment: step-num;
}
@media (max-width: 1024px) {
  .step {
    padding-inline: 20px;
  }
}
@media (max-width: 768px) {
  .step {
    padding-inline: 12px;
  }
}
@media (max-width: 500px) {
  .step {
    width: 100%;
  }
}
.step:nth-child(-n+3) {
  width: calc((100% - 2px) / 3);
}
@media (max-width: 768px) {
  .step:nth-child(-n+3) {
    width: calc(50% - 1px);
  }
}
@media (max-width: 500px) {
  .step:nth-child(-n+3) {
    width: 100%;
  }
}
.step:nth-child(1), .step:nth-child(2), .step:nth-child(4) {
  border-right: 1px solid #dfdfdf;
}
@media (max-width: 768px) {
  .step:nth-child(1), .step:nth-child(2), .step:nth-child(4) {
    border: none;
  }
}
@media (max-width: 768px) {
  .step:nth-child(1), .step:nth-child(3) {
    border-right: 1px solid #dfdfdf;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .step:nth-child(1), .step:nth-child(3) {
    border: none;
  }
}
.step::before {
  display: block;
  width: fit-content;
  min-width: 175px;
  padding: 0.3em;
  font-size: 0.9375rem;
  text-align: center;
  content: "STEP." counter(step-num, decimal-leading-zero);
  background-color: #e2f4ff;
}
.step--support::before {
  content: "SUPPORT";
}
.step_heading {
  font-size: var(--fs-23);
  font-weight: 700;
}
.step_img {
  width: 97px;
  padding-block: 5px;
}
.step_txt {
  font-size: var(--fs-15);
  line-height: 1.8666666667;
}

/* ------------------------
    qa
------------------------ */
.qa {
  background-color: #f7f7f8;
}
.qa_item + .qa_item {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .qa_item + .qa_item {
    margin-top: 22px;
  }
}
.qa_question {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 4em;
  padding: 15px 85px;
  font-size: var(--fs-23);
  font-weight: 700;
  cursor: pointer;
  background: url("../images/icon_plus.svg") no-repeat calc(100% - 20px) 30px/30px, url("../images/icon_minus.svg") no-repeat calc(100% - 20px) 30px/0, var(--white);
  border: 1px solid #dfdfdf;
}
@media (max-width: 1024px) {
  .qa_question {
    background-size: 20px, 0;
  }
}
@media (max-width: 768px) {
  .qa_question {
    padding: 15px 45px 15px 65px;
    font-size: 1.0625rem;
    background-position: calc(100% - 15px) center;
    background-size: 18px, 0;
  }
}
.qa_question.is-open {
  background-size: 0, 30px;
}
@media (max-width: 1024px) {
  .qa_question.is-open {
    background-size: 0, 20px;
  }
}
@media (max-width: 768px) {
  .qa_question.is-open {
    background-size: 0, 18px;
  }
}
.qa_question::before {
  position: absolute;
  top: 19px;
  left: 15px;
  display: grid;
  place-content: center;
  width: 2.5em;
  aspect-ratio: 1;
  font-size: 0.8695652174em;
  color: var(--white);
  content: "Q";
  background-color: var(--main);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .qa_question::before {
    top: 15px;
    width: 2.4em;
    font-size: 14px;
  }
}
.qa_answer {
  position: relative;
  display: none;
  padding: 30px 85px;
  font-size: var(--fs-15);
}
@media (max-width: 768px) {
  .qa_answer {
    padding: 20px 20px 20px 65px;
  }
}
.qa_answer::before {
  position: absolute;
  top: 18px;
  left: 15px;
  display: grid;
  place-content: center;
  width: 2.5em;
  aspect-ratio: 1;
  font-size: 1.3333333333em;
  color: var(--white);
  content: "A";
  background-color: var(--sub);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .qa_answer::before {
    top: 15px;
    width: 2.4em;
    font-size: 14px;
  }
}

.flow_list {
  counter-reset: flow-list;
}
.flow_item {
  position: relative;
  padding-left: 35px;
  counter-increment: flow-list;
}
.flow_item + .flow_item {
  margin-top: 10px;
}
.flow_item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  width: 1.8em;
  aspect-ratio: 1;
  content: counter(flow-list);
  background-color: #d0d0d0;
  transform: translateY(-4%);
}
.flow_item-desc {
  width: fit-content;
  min-width: 490px;
  padding: 1em 1.2em;
  margin-block: 0.8em 1.2em;
  background-color: #ebebed;
}
@media (max-width: 768px) {
  .flow_item-desc {
    min-width: 100%;
  }
}
.flow_item-desc--dot li {
  padding-left: 1.2em;
  text-indent: -0.5em;
}
.flow_item-desc--dot li::before {
  display: inline-block;
  content: "・";
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: rgba(230, 230, 230, 0.8);
}

.remodal {
  padding-top: 80px;
  padding-bottom: 250px;
  margin-bottom: 0;
  overflow-x: clip;
}

[data-remodal-target] {
  cursor: pointer;
}

.modal {
  position: relative;
  width: min(92%, 980px);
  margin-inline: auto;
  text-align: left;
  background: url("../images/bg_05.jpg") no-repeat left -5%/118%, var(--white);
}
@media (max-width: 768px) {
  .modal {
    padding-top: 50px;
    background-size: 160% 730px;
  }
}
.modal_top {
  display: grid;
  grid-template-columns: 1fr 41.1764705882%;
  padding-top: 60px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .modal_top {
    grid-template-columns: 1fr;
    padding-top: 0;
    margin-bottom: 55px;
  }
}
.modal_top-body {
  margin-top: 55px;
}
@media (max-width: 768px) {
  .modal_top-body {
    margin-top: -58px;
  }
}
.modal_info {
  margin-top: 0.8em;
  font-size: 1.3125rem;
  line-height: 1.4761904762;
}
@media (max-width: 768px) {
  .modal_info {
    font-size: 1.0625rem;
  }
}
.modal_comment {
  position: relative;
  display: inline;
  padding: 0.1em 0.6em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.9;
  color: var(--white);
  white-space: nowrap;
  background-color: var(--main);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 1024px) {
  .modal_comment {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .modal_comment {
    font-size: min(5.3vw, 1.625rem);
  }
}
@media (max-width: 768px) {
  .modal_img {
    order: -1;
  }
}
.modal_inner {
  padding-inline: 5.5% 6%;
  padding-bottom: 75px;
}
.modal_qa-list {
  margin-bottom: 85px;
}
.modal_question {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.5em;
  font-size: var(--fs-23);
  font-weight: 700;
}
@media (max-width: 768px) {
  .modal_question {
    font-size: 1.0625rem;
  }
}
.modal_question::before {
  position: absolute;
  top: -0.1em;
  left: 0;
  display: block;
  display: grid;
  place-content: center;
  width: 1.8em;
  aspect-ratio: 1;
  padding-bottom: 0.3em;
  font-size: 0.9583333333em;
  font-weight: 500;
  color: var(--white);
  content: "Q";
  background-color: var(--main);
  border-radius: 50%;
}
.modal_answer {
  padding: 1em;
  line-height: 1.7647058824;
  text-align: justify;
  background-color: #f0f0f0;
}
@media (max-width: 768px) {
  .modal_answer {
    font-size: 0.9375rem;
  }
}
.modal_answer + .modal_question {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .modal_answer + .modal_question {
    margin-top: 35px;
  }
}
.modal .btn {
  display: block;
  margin-top: 70px;
  font-size: var(--fs-17);
  font-weight: 500;
}
@media (max-width: 768px) {
  .modal .btn {
    min-width: 220px;
  }
}
.modal_close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  aspect-ratio: 1;
  background: url("../images/icon_close.svg") no-repeat center/35%, var(--main);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
@media (max-width: 768px) {
  .modal_close-btn {
    width: 45px;
    transform: translate(20%, -50%);
  }
}

.schedule {
  padding-bottom: 40px;
  border-bottom: #a3a3a3 1px solid;
}
@media (max-width: 768px) {
  .schedule {
    padding-bottom: 10px;
  }
}
.schedule_heading {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 40px;
  font-size: var(--fs-23);
  font-weight: 700;
  color: var(--sub);
}
@media (max-width: 768px) {
  .schedule_heading {
    font-size: 1.25rem;
    margin-bottom: 22px;
  }
}
.schedule_heading::after {
  display: block;
  flex: 1;
  height: 1px;
  content: "";
  background: #a3a3a3;
  transform: translateY(1px);
}
.schedule_list {
  display: flex;
  justify-content: space-between;
  width: 105%;
  margin-left: -2.5%;
}
@media (max-width: 768px) {
  .schedule_list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
  }
}
.schedule_item {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .schedule_item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: flex-start;
    padding-bottom: 15px;
  }
}
.schedule_item::after {
  position: absolute;
  top: 13px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #dcdcdc;
}
@media (max-width: 768px) {
  .schedule_item::after {
    top: unset;
    bottom: 0;
    left: 1.875rem;
    width: 2px;
    height: 100%;
  }
}
.schedule_item:first-of-type::after {
  right: 0;
  left: auto;
  width: 50%;
}
@media (max-width: 768px) {
  .schedule_item:first-of-type::after {
    right: unset;
    left: 1.875rem;
    width: 2px;
  }
}
.schedule_item:last-of-type::after {
  left: 0;
  left: auto;
  width: 50%;
}
@media (max-width: 768px) {
  .schedule_item:last-of-type::after {
    display: none;
  }
}
.schedule_time {
  width: 5em;
  padding: 0.1em 0.2em;
  margin-inline: auto;
  margin-bottom: 5px;
  font-size: var(--fs-15);
  color: var(--white);
  background-color: var(--sub);
  border-radius: 9999px;
}
@media (max-width: 1024px) {
  .schedule_time {
    font-size: 0.8125rem;
  }
}
@media (max-width: 768px) {
  .schedule_time {
    margin-inline: 0;
    font-size: 0.75rem;
  }
}
.schedule_txt {
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .schedule_txt {
    font-size: 0.8125rem;
  }
}
@media (max-width: 768px) {
  .schedule_txt {
    text-align: left;
  }
  .schedule_txt br {
    display: none;
  }
}

/* ------------------------
    search
------------------------ */
.search {
  position: relative;
}
.search::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 144.7857142857%;
  padding-bottom: 206.8367346939%;
  content: "";
  background: url("../images/bg_04.jpg") no-repeat center/contain;
  transform: translate(-50%, -36%);
}
@media (max-width: 768px) {
  .search::before {
    width: 155%;
  }
}
.search_btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 6%;
  justify-content: center;
}
@media (max-width: 768px) {
  .search_btn-group {
    gap: 16px;
  }
}
.search_btn-wrap {
  width: 47%;
  min-width: 260px;
}
.search_btn {
  position: relative;
  width: 100%;
  margin-inline: unset;
}
.search_btn::before {
  position: absolute;
  top: 50%;
  left: calc(100% - 35px);
  display: block;
  width: 13px;
  aspect-ratio: 1;
  content: "";
  background: url("../images/icon_arrow-down.svg") no-repeat center/contain;
  transform: translateY(-50%);
}
.search_btn.is-open::before {
  transform: translateY(-50%) scale(-1);
}
.search_list {
  display: none;
  overflow: hidden;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
}
.search_item + .search_item {
  border-top: #dfdfdf 1px solid;
}
.search_link {
  padding: 1em;
  font-weight: 700;
  text-align: center;
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .search_link:hover, .search_link:focus {
    background-color: var(--accent);
  }
}
@media (hover: none) {
  .search_link:active {
    background-color: var(--accent);
  }
}

/* ------------------------
    gallery
------------------------ */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
}/*# sourceMappingURL=style.css.map */