@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: #2d2d2d;
  --white: #fff;
  --main: #1d2088;
  --accent: #f31f39;
  --yellow: #ffdb00;
  --orange: #ffa54b;
  --pink: #f88492;
  --green: #1cc198;
  --transition: 0.3s ease;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-26: 1.625rem;
  --fs-30: 1.875rem;
  --fs-40: 2.5rem;
  --fs-70: 4.375rem;
  --lh-20: 1.8;
  --header-height: 100px;
  --br-20: 20px;
}

@media (max-width: 1300px) {
  :root {
    --header-height: 80px;
  }
}
@media (max-width: 1024px) {
  :root {
    --fs-17: 1rem;
    --fs-18: 1.0625rem;
    --fs-19: 1.125rem;
    --fs-20: 1.1875rem;
    --fs-24: 1.3125rem;
    --fs-26: 1.4375rem;
    --fs-30: 1.6875rem;
    --fs-40: 2.3125rem;
    --fs-70: 4.0625rem;
    --br-20: 15px;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-17: 0.9375rem;
    --fs-18: 1rem;
    --fs-19: 1rem;
    --fs-20: 1.0625rem;
    --fs-24: 1.1875rem;
    --fs-26: 1.25rem;
    --fs-30: 1.3125rem;
    --fs-40: 1.75rem;
    --fs-70: 2.875rem;
    --br-20: 10px;
    --header-height: 50px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  position: relative;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.5555555556;
  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--m {
  max-width: 1100px;
}
.inner--l {
  max-width: 1200px;
}
@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;
  display: grid;
  place-content: center;
  width: fit-content;
  min-width: 260px;
  min-height: 70px;
  padding: 1em;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent);
  text-align: center;
  background: url("../images/icon_arrow_right_accent.svg") no-repeat calc(100% - 1em) center/0.5em, var(--white);
  border: 1px solid var(--accent);
  transition: color var(--transition), background-color var(--transition);
}
@media (max-width: 1024px) {
  .btn {
    font-size: 1.0625rem;
  }
}
@media (max-width: 768px) {
  .btn {
    min-height: 60px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    color: var(--white);
    background-color: var(--accent);
  }
}
@media (hover: none) {
  .btn:active {
    color: var(--white);
    background-color: var(--accent);
  }
}

.heading-container {
  margin-bottom: 65px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .heading-container {
    margin-bottom: 40px;
  }
}

.heading {
  font-size: var(--fs-40);
}
.heading::before {
  display: inline-block;
  width: 0.34em;
  aspect-ratio: 1;
  margin-right: 0.25em;
  vertical-align: baseline;
  content: "";
  background-color: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.heading-en {
  font-family: Outfit, Arial, Helvetica, sans-serif;
  margin-bottom: 0.1em;
  font-size: var(--fs-70);
  color: var(--white);
}
.heading-en::first-letter {
  text-transform: uppercase;
}

.sub-heading {
  width: fit-content;
  padding: 0.3em 2em;
  margin: 0 auto 1.5em;
  font-size: var(--fs-30);
  line-height: 1.3;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.05em;
  background-color: var(--main);
}

.lead {
  margin-bottom: 100px;
  font-size: var(--fs-20);
  line-height: var(--lh-20);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .lead {
    margin-bottom: 60px;
  }
}

.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;
    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: 145px;
  min-height: 70px;
  padding: 1em;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3333333333;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_chevron_right.svg") no-repeat calc(100% - 0.7em) 52%/0.42em, var(--accent);
  transition: filter 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (max-width: 1024px) {
  .entry-btn {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .entry-btn {
    width: 100%;
    min-height: unset;
    padding: 0.9em 0.2em 1em;
    font-size: 16px;
    background-position: calc(100% - 1.5em) 48%;
  }
}
@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: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-right: 15px;
}
.header_logo {
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  padding-inline: 35px 43px;
  background-color: var(--white);
  border-bottom-right-radius: var(--br-20);
  transition: opacity var(--transition);
}
@media (max-width: 768px) {
  .header_logo {
    width: 150px;
    height: auto;
    padding-inline: 0;
    margin-left: 12px;
    border-radius: 0;
  }
}
@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: 64%;
}

.header-nav {
  background-color: var(--white);
  border-radius: var(--br-20);
  transition: transform var(--transition);
}
.header-nav_list {
  display: flex;
  gap: 0 1.5em;
  align-items: center;
  padding: 20px 40px;
  font-size: 1.0625rem;
  text-align: center;
}
@media (max-width: 1300px) {
  .header-nav_list {
    font-size: 1rem;
  }
}
.header-nav_link {
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header-nav_link:active {
    opacity: 0.7;
  }
}
.header-nav_btn-wrap {
  display: none;
}
.header-nav_btn {
  width: 13em;
  padding: 0.9em 1em;
  font-size: 1.125rem;
  color: var(--white);
  background-color: var(--accent);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_btn:hover, .header-nav_btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header-nav_btn:active {
    opacity: 0.7;
  }
}

.hamburger {
  position: fixed;
  top: 14px;
  right: 10px;
  z-index: 150;
  display: none;
  width: calc(var(--header-height) - 15px);
  height: calc(var(--header-height) - 15px);
  background-color: var(--main);
}
.hamburger > span {
  position: absolute;
  left: 50%;
  display: block;
  width: 50%;
  height: 2px;
  background: var(--white);
  transform: translateX(-50%);
  transition: ease 0.3s;
}
.hamburger > span:nth-of-type(1) {
  top: 35%;
}
.hamburger > span:nth-of-type(2) {
  top: 50%;
}
.hamburger > span:nth-of-type(3) {
  top: 65%;
}
.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);
}

@media (max-width: 1200px) {
  .header {
    position: relative;
    padding: 4px 10px;
    margin-bottom: calc(var(--header-height) * -1);
    background-color: unset;
  }
  .header-nav-container {
    position: fixed;
    inset: 0;
    z-index: 99;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    overflow: hidden auto;
    overscroll-behavior-y: none;
    content: "";
    background: rgba(29, 32, 136, 0.7) !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) 1em 50px;
    margin-left: auto;
    border-radius: 0;
    transform: translateX(110%);
    transition: transform var(--transition);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    flex-direction: column;
    row-gap: 1.8em;
    font-size: 1.125rem;
  }
  .header-nav_item {
    width: 100%;
  }
  .header-nav_item + .header-nav_btn-wrap {
    margin-top: 1em;
  }
  .header-nav_btn-wrap {
    display: block;
  }
  .hamburger {
    display: block;
  }
}
/* ------------------------
    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_item {
  position: relative;
}
.footer-nav_item::before {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: -1em;
  width: 1px;
  height: 1.1em;
  content: "";
  background-color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%);
}
.footer-nav_item:first-child::before,
.footer-nav_item .is-first-in-row::before {
  opacity: 0;
}
.footer-nav_item:not(.is-first-in-row)::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav_item:hover, .footer-nav_item:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer-nav_item:active {
    opacity: 0.7;
  }
}

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

/* ------------------------
    mv
------------------------ */
.mv {
  position: relative;
  width: 100%;
  background-color: var(--white);
  clip-path: url("#mv-clip");
}
@media (max-width: 768px) {
  .mv {
    padding-top: 10vw;
    clip-path: url("#mv-clip-sp");
  }
}
.mv_slider {
  position: relative;
  aspect-ratio: 14/8;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mv_slider {
    aspect-ratio: 14/15;
  }
}
.mv_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.mv_slide.is-active {
  z-index: 1;
  opacity: 1;
}
.mv_slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv_txt-container {
  position: absolute;
  top: 43%;
  left: 2%;
  z-index: 5;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .mv_txt-container {
    top: 26%;
    left: 7%;
  }
}
.mv_copy {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", Meiryo, sans-serif;
  font-size: 4.6428571429vw;
  font-style: italic;
  font-weight: 900;
  line-height: 1.6769230769;
  color: var(--main);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .mv_copy {
    font-size: 8.4vw;
    line-height: 1.4;
  }
}
.mv_site-name {
  width: fit-content;
  padding: 0.1em 1em;
  margin-top: 5vw;
  font-size: max(19px, 1.2857142857vw);
  color: var(--white);
  letter-spacing: 0.025em;
  background-color: var(--main);
}
@media (max-width: 768px) {
  .mv_site-name {
    margin-top: 2.2vw;
    font-size: 2.6530612245vw;
    letter-spacing: 0.075em;
  }
}
.mv-line {
  position: relative;
  z-index: 6;
  display: block;
  width: 100vw;
  aspect-ratio: 20/3;
  margin-top: -14.4vw;
  content: "";
  background: url("../images/bg_message_01.svg") no-repeat center top/100%;
}
@media (max-width: 768px) {
  .mv-line {
    aspect-ratio: 300/49;
    margin-top: -15.95vw;
    background-image: url("../images/bg_message_01_sp.svg");
  }
}

/* ------------------------
    message
------------------------ */
.message {
  padding-top: 16.4285714286vw;
  padding-bottom: 8.9285714286vw;
  margin-top: -12.4vw;
  color: var(--white);
  background: url("../images/bg_message_02.png") no-repeat center 108%/100% auto, linear-gradient(45deg, rgb(29, 32, 136) 0%, rgb(33, 35, 138) 19.62%, rgb(43, 46, 144) 37.16%, rgb(62, 64, 153) 53.91%, rgb(87, 89, 167) 70.07%, rgb(97, 99, 172) 75.24%, rgb(99, 101, 173) 90.63%, rgb(106, 108, 176) 96.16%, rgb(117, 119, 182) 100%);
  background-blend-mode: multiply;
}
@media (max-width: 768px) {
  .message {
    margin-top: -16.2vw;
    padding-top: 30vw;
    background: url("../images/bg_message_02_sp.png") no-repeat center 68%/100% auto, linear-gradient(45deg, rgb(29, 32, 136) 0%, rgb(33, 35, 138) 19.62%, rgb(43, 46, 144) 37.16%, rgb(62, 64, 153) 53.91%, rgb(87, 89, 167) 70.07%, rgb(97, 99, 172) 75.24%, rgb(99, 101, 173) 90.63%, rgb(106, 108, 176) 96.16%, rgb(117, 119, 182) 100%);
  }
}
.message_body {
  display: grid;
  grid-template-columns: 51.6666666667% 1fr;
  gap: 50px 5%;
}
@media (max-width: 768px) {
  .message_body {
    grid-template-columns: 1fr;
  }
}
.message_container {
  max-width: 1600px;
  margin-inline: auto;
}
.message_inner {
  position: relative;
}
.message_copy {
  margin-bottom: 1em;
  font-size: 2.1875rem;
  font-weight: 700;
  color: var(--yellow);
}
@media (max-width: 768px) {
  .message_copy {
    font-size: 1.25rem;
  }
}
.message_copy-en {
  margin-top: 0.55em;
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--yellow);
}
@media (max-width: 768px) {
  .message_copy-en {
    font-size: 2.25rem;
  }
}
.message_txt {
  font-size: var(--fs-20);
  line-height: var(--lh-20);
}
.message_txt + .message_txt {
  margin-top: 2em;
}
.message_txt .emphasis {
  color: var(--yellow);
}
.message_img-container {
  display: grid;
  align-items: start;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .message_img-container {
    margin-top: 0;
  }
}
.message_img {
  position: relative;
  z-index: 1;
}
.message_img::before {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgb(195, 25, 31) 3.81%, rgb(196, 28, 34) 21.38%, rgb(200, 38, 44) 35.31%, rgb(206, 54, 61) 48%, rgb(214, 77, 84) 59.95%, rgb(225, 107, 115) 71.37%, rgb(239, 143, 152) 82.25%, rgb(251, 177, 186) 90.7%);
}
@media (max-width: 768px) {
  .message_img::before {
    top: 7px;
    left: 7px;
  }
}
.message_img--01 {
  width: 73.0769230769%;
  margin-top: -18.2692307692%;
}
@media (max-width: 768px) {
  .message_img--01 {
    width: 45%;
  }
}
.message_img--01::before {
  left: -12px;
  background: linear-gradient(270deg, rgb(195, 25, 31) 3.81%, rgb(196, 28, 34) 21.38%, rgb(200, 38, 44) 35.31%, rgb(206, 54, 61) 48%, rgb(214, 77, 84) 59.95%, rgb(225, 107, 115) 71.37%, rgb(239, 143, 152) 82.25%, rgb(251, 177, 186) 90.7%);
}
@media (max-width: 768px) {
  .message_img--01::before {
    left: -7px;
  }
}
.message_img--02 {
  order: -1;
  width: 81.1320754717%;
  margin-left: 15%;
}
@media (max-width: 768px) {
  .message_img--02 {
    width: 60%;
    margin-right: 5%;
    margin-left: auto;
  }
}

/* ------------------------
    inside
------------------------ */
.inside {
  position: relative;
  padding-block: 140px;
  margin-top: 120px;
  background-color: #efeff7;
  border-top-right-radius: 60px;
}
@media (max-width: 1024px) {
  .inside {
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .inside {
    margin-top: 0;
    padding-block: 140px 70px;
  }
}
.inside::before {
  position: absolute;
  top: -145px;
  left: 0;
  display: block;
  width: 37.8571428571%;
  aspect-ratio: 1060/881;
  content: "";
  background: url("../images/image_03.jpg") no-repeat center/contain;
}
@media (max-width: 1300px) {
  .inside::before {
    width: 35%;
  }
}
@media (max-width: 1024px) {
  .inside::before {
    top: -95px;
  }
}
@media (max-width: 768px) {
  .inside::before {
    top: -20px;
    right: 0;
    left: unset;
    width: min(50%, 220px);
  }
}
.inside_top-heading-container {
  padding-left: 32%;
}
@media (max-width: 1024px) {
  .inside_top-heading-container {
    padding-top: 25px;
    padding-left: 0;
  }
}
.inside .heading-container {
  text-align: right;
}
@media (max-width: 768px) {
  .inside .heading-container {
    text-align: left;
  }
}
.inside .heading::before {
  background-color: #33f;
}
.inside .heading-en {
  color: var(--accent);
}
.inside .lead {
  text-align: right;
}
@media (max-width: 768px) {
  .inside .lead {
    text-align: left;
  }
}

.inside-cont + .inside-cont {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .inside-cont + .inside-cont {
    margin-top: 100px;
  }
}
.inside-cont_lead {
  font-size: var(--fs-20);
  text-align: center;
  letter-spacing: 0.05em;
}

.data_group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 5%;
}
@media (max-width: 1024px) {
  .data_group {
    gap: 30px 3%;
  }
}
@media (max-width: 768px) {
  .data_group {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 3%;
  }
}
.data_item {
  position: relative;
  background-color: var(--white);
  filter: drop-shadow(0 0 4px rgba(170, 170, 170, 0.5));
}
.data_ttl {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 90%;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
  transform: translateX(-50%);
}
.data_ttl .tag {
  display: block;
  font-size: 0.6666666667em;
}
@media (max-width: 768px) {
  .data_item--03 .data_ttl {
    font-size: min(3.8vw, 1.3125rem);
  }
}

@media (max-width: 768px) {
  .job {
    margin-bottom: 140px;
  }
}

.jobtabs {
  margin-top: 50px;
}
.jobtabs_nav {
  display: flex;
  gap: 5%;
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 18px;
}
.jobtabs_button {
  position: relative;
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0.9em 1em;
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.3;
  color: var(--main);
  cursor: pointer;
  background: var(--white);
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
@media (max-width: 768px) {
  .jobtabs_button {
    padding: 0.7em 1em;
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .jobtabs_button:hover, .jobtabs_button:focus {
    border-color: currentcolor;
  }
}
@media (hover: none) {
  .jobtabs_button:active {
    border-color: currentcolor;
  }
}
.jobtabs_button--active {
  border-color: currentcolor;
}
.jobtabs_button-icon {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 1.5em;
  aspect-ratio: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .jobtabs_button-icon {
    right: 0.2em;
    width: 1.3em;
  }
}
.jobtabs_panels {
  position: relative;
  padding: 55px 40px 80px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .jobtabs_panels {
    padding: 35px 7% 50px;
  }
}
.jobtabs_panel {
  display: none;
}
.jobtabs_panel .btn {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .jobtabs_panel .btn {
    margin-top: 60px;
  }
}
.jobtabs_panel--active {
  display: block;
  animation: fadeIn 0.25s ease;
}

.other-job-btn {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 0.6em 1.5em;
  color: var(--main);
  background-color: var(--yellow);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.jobpanel_title {
  margin: 0 0 1.5em;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--main);
  text-align: center;
}
@media (max-width: 1024px) {
  .jobpanel_title {
    font-size: 1.8125rem;
  }
}
@media (max-width: 768px) {
  .jobpanel_title {
    font-size: 1.4375rem;
  }
}
.jobpanel_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.jobitem {
  display: grid;
  grid-template-columns: 41.7582417582% 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .jobitem {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.jobitem_heading {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 4px 0 1em;
  font-size: var(--fs-26);
  font-weight: 700;
}
@media (max-width: 768px) {
  .jobitem_heading {
    margin: 4px 0 10px;
    font-size: 1.25rem;
  }
}
.jobitem_dot {
  flex-shrink: 0;
  width: 0.68em;
  aspect-ratio: 1;
  border-radius: 50%;
}
.jobitem_dot--orange {
  background: var(--orange);
}
.jobitem_dot--pink {
  background: var(--pink);
}
.jobitem_dot--yellow {
  background: var(--yellow);
}
.jobitem_dot--green {
  background: var(--green);
}
.jobitem_txt {
  font-size: var(--fs-19);
  line-height: 1.8947368421;
  text-align: justify;
}

.other-job_container {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 65px;
}
@media (max-width: 1024px) {
  .other-job_container {
    grid-template-columns: 260px 1fr;
  }
}
@media (max-width: 768px) {
  .other-job_container {
    grid-template-columns: 1fr;
  }
}
.other-job_nav {
  position: sticky;
  top: 140px;
}
@media (max-width: 768px) {
  .other-job_nav {
    position: static;
  }
}
.other-job_nav-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 768px) {
  .other-job_nav-list {
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .other-job_nav-item {
    width: 33.3333333333%;
  }
}
.other-job_nav-link {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 1.4em;
  font-size: var(--fs-26);
  color: #969696;
  transition: color 0.25s ease;
}
@media (max-width: 768px) {
  .other-job_nav-link {
    flex-direction: column;
    gap: 0;
    justify-content: center;
    height: 100%;
    padding: 0.7em;
    font-size: 1rem;
    background-color: var(--white);
  }
}
.other-job_nav-link::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  display: block;
  width: 0.8em;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
}
@media (max-width: 768px) {
  .other-job_nav-link::before {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .other-job_nav-link .small {
    display: block;
    font-size: 0.8em;
  }
}
.other-job_nav-link--active {
  color: var(--base-font-color);
}
.other-job_nav-link--active::before {
  background-color: var(--orange);
}
.other-job_cont {
  padding: 45px 32px 50px;
  background-color: var(--white);
}
@media (max-width: 1024px) {
  .other-job_cont {
    padding: 30px 20px 40px;
  }
}
.other-job_cont + .other-job_cont {
  margin-top: 40px;
}
.other-job_cont-head {
  display: grid;
  grid-template-columns: 1fr 41.3138686131%;
  gap: 20px 6%;
  align-items: start;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .other-job_cont-head {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}
.other-job_cont-ttl {
  margin-bottom: 0.3em;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--main);
}
@media (max-width: 768px) {
  .other-job_cont-ttl {
    font-size: 1.3125rem;
  }
}
.other-job_cont-txt {
  line-height: 1.6111111111;
  text-align: justify;
}
.other-job_highlight-ttl {
  margin-bottom: 0.6em;
  font-size: var(--fs-24);
  color: var(--main);
  text-align: center;
  letter-spacing: 0.075em;
}
@media (max-width: 768px) {
  .other-job_highlight-ttl {
    font-size: 1.1875rem;
  }
}
.other-job_highlight {
  padding: 26px 12%;
  background: linear-gradient(90deg, rgba(229, 250, 224, 0.7) 0%, rgba(223, 247, 229, 0.7) 3.88%, rgba(205, 237, 243, 0.7) 18.71%, rgba(194, 232, 252, 0.7) 34.23%, rgba(190, 230, 255, 0.7) 51.41%, rgba(188, 229, 255, 0.7) 75.55%, rgba(181, 224, 255, 0.7) 84.24%, rgba(170, 216, 255, 0.7) 90.43%, rgba(153, 205, 255, 0.7) 95.41%, rgba(131, 190, 255, 0.7) 99.65%, rgba(129, 189, 255, 0.7) 100%);
}
@media (max-width: 768px) {
  .other-job_highlight {
    padding: 20px 6%;
  }
}
.other-job_highlight-item {
  position: relative;
  padding-left: 1em;
  font-size: var(--fs-19);
}
@media (max-width: 768px) {
  .other-job_highlight-item {
    font-size: 0.9375rem;
  }
}
.other-job_highlight-item + .other-job_highlight-item {
  margin-top: 0.5em;
}
.other-job_highlight-item::before {
  position: absolute;
  top: 0.54em;
  left: 0;
  display: block;
  width: 0.53em;
  aspect-ratio: 1;
  content: "";
  background-color: #a5dfff;
  border-radius: 50%;
}
.other-job .btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .other-job .btn {
    margin-top: 40px;
  }
}

.atmosphere_cont {
  padding: 45px 5% 340px;
  background-color: #fff8cd;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}
@media (max-width: 768px) {
  .atmosphere_cont {
    padding: 40px 6% 170px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}
.atmosphere_txt {
  font-size: var(--fs-20);
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .atmosphere_txt {
    font-size: 1rem;
  }
}
.atmosphere_txt .emphasis {
  color: var(--accent);
}
.atmosphere_slider-wrap {
  position: relative;
  display: flex;
  margin-top: -270px;
  overflow: hidden;
}
@media (max-width: 768px) and (max-width: 768px) {
  .atmosphere_slider-wrap {
    margin-top: -130px;
  }
}
.atmosphere_slider {
  display: flex;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}
.atmosphere .slide-pic {
  flex: 0 0 auto;
  width: 310px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .atmosphere .slide-pic {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .atmosphere .slide-pic {
    width: 150px;
    margin-right: 8px;
  }
}
.atmosphere .slide-pic img {
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------------
    learn
------------------------ */
.learn {
  padding-block: 95px 135px;
  background-color: #fff;
  background-image: radial-gradient(rgba(190, 220, 217, 0.9) 7%, transparent 10%);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
}
.learn .heading::before {
  background-color: #33f;
}
.learn .heading-en {
  color: var(--accent);
}
.learn_item-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 5%;
  counter-reset: learn-item;
}
@media (max-width: 1024px) {
  .learn_item-group {
    gap: 20px 3%;
  }
}
@media (max-width: 768px) {
  .learn_item-group {
    grid-template-columns: min(90%, 450px);
    justify-content: center;
  }
}
.learn_item {
  padding: 72px 20px 30px;
  background-color: var(--white);
  filter: drop-shadow(0 0 4px rgba(170, 170, 170, 0.5));
  counter-increment: learn-item;
  position: relative;
}
@media (max-width: 768px) {
  .learn_item {
    padding: 30px 20px;
  }
}
.learn_item::before {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", Meiryo, sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: var(--white);
  content: counter(learn-item, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 2px;
  paint-order: stroke;
  line-height: 1;
  transform: translateY(-10%);
}
@media (max-width: 1024px) {
  .learn_item::before {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .learn_item::before {
    top: 5px;
    left: 5px;
    font-size: 68px;
  }
}
.learn_item:nth-child(1)::before {
  -webkit-text-stroke: 3px var(--pink);
}
.learn_item:nth-child(2)::before {
  -webkit-text-stroke: 3px var(--green);
}
.learn_item:nth-child(3)::before {
  -webkit-text-stroke: 3px var(--orange);
}
.learn_item-img {
  display: block;
  width: min(60%, 200px);
  margin-inline: auto;
}
.learn_item-ttl {
  padding-block: 0.3em 0.4em;
  font-size: var(--fs-26);
  font-weight: 700;
  text-align: center;
}
.learn_item--pink .learn_item-ttl {
  color: var(--pink);
}
.learn_item--green .learn_item-ttl {
  color: var(--green);
}
.learn_item--orange .learn_item-ttl {
  color: var(--orange);
}
.learn_item-txt {
  font-size: var(--fs-17);
}

/* ------------------------
    voice
------------------------ */
.voice {
  padding-top: 95px;
  padding-bottom: 130px;
  background: linear-gradient(to bottom, var(--main) calc(100% - 350px), var(--white) calc(100% - 350px));
}
.voice .heading-container {
  color: var(--white);
  text-align: center;
}
.voice .lead {
  position: relative;
  display: grid;
  grid-template-columns: 20% 1fr 20%;
  gap: 0 4%;
  align-items: end;
  margin-top: -8vw;
  color: var(--white);
  text-align: center;
}
@media (max-width: 1024px) {
  .voice .lead {
    grid-template-columns: 15% 1fr 15%;
    margin-top: -6vw;
  }
}
@media (max-width: 768px) {
  .voice .lead {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 100px;
  }
}
.voice .lead::before, .voice .lead::after {
  display: block;
  aspect-ratio: 1;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 768px) {
  .voice .lead::before, .voice .lead::after {
    position: absolute;
    top: 100%;
  }
}
.voice .lead::before {
  justify-self: end;
  width: 52%;
  aspect-ratio: 31/50;
  background-image: url("../images/deco_01.svg");
}
@media (max-width: 768px) {
  .voice .lead::before {
    left: 0;
    width: 60px;
    transform: translateY(10%);
  }
}
.voice .lead::after {
  width: 103%;
  aspect-ratio: 99/50;
  background-image: url("../images/deco_02.svg");
}
@media (max-width: 768px) {
  .voice .lead::after {
    right: 0;
    width: 90px;
    transform: translateY(100%);
  }
}

.swiper .swiper-slide {
  width: 530px;
  height: auto;
}
@media (max-width: 1024px) {
  .swiper .swiper-slide {
    width: 420px;
  }
}
@media (max-width: 768px) {
  .swiper .swiper-slide {
    width: 320px;
  }
}
.swiper_controller {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .swiper_controller {
    justify-content: center;
    margin-top: 20px;
  }
}
.swiper .swiper-pagination {
  position: static;
}
.swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 8px !important;
  background-color: var(--white);
  border: 1px solid var(--accent);
  opacity: 1;
}
@media (max-width: 768px) {
  .swiper .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    margin: 0 6px !important;
  }
}
.swiper .swiper-pagination-bullet-active {
  background-color: var(--accent);
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  position: static;
  width: 45px;
  height: 45px;
  margin-top: 0;
  background: url("../images/icon_chevron_left.svg") no-repeat 46% center/25%, var(--main);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    width: 33px;
    height: 33px;
  }
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: none;
}
.swiper .swiper-button-next {
  transform: scale(-1);
}

.staff {
  position: relative;
}
.staff::before {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: block;
  width: 70px;
  aspect-ratio: 1;
  content: "";
  background: url("../images/icon_arrow_right.svg") no-repeat center 48%/38%, url("../images/icon_arrow_right_white.svg") no-repeat center 48%/0 var(--white);
  border-radius: 50%;
  transition: background-color 0.2s ease, background-image 0.2s ease;
}
@media (max-width: 1024px) {
  .staff::before {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .staff::before {
    width: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .staff:hover::before, .staff:focus::before {
    background-color: var(--staff-color);
    background-size: 0, 38%;
  }
}
@media (hover: none) {
  .staff:active::before {
    background-color: var(--staff-color);
    background-size: 0, 38%;
  }
}
.staff_txt-wrap {
  position: absolute;
  bottom: 15px;
  left: 5%;
  font-weight: 700;
}
.staff_name {
  width: fit-content;
  padding: 0.1em 1.5em;
  font-size: 1.3125rem;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .staff_name {
    font-size: 1.0625rem;
  }
}
.staff_info {
  padding: 0.1em 1.1em;
  margin-top: 8px;
  font-size: var(--fs-24);
  color: var(--staff-color);
  background-color: var(--staff-bg-color);
}
@media (max-width: 768px) {
  .staff_info {
    font-size: 1.0625rem;
  }
}

[data-remodal-target=staff_km],
[data-remodal-id=staff_km] {
  --staff-color: #33f;
  --staff-bg-color: #d4eef6;
}

[data-remodal-target=staff_mn],
[data-remodal-id=staff_mn] {
  --staff-color: var(--accent);
  --staff-bg-color: #ffe5e9;
}

[data-remodal-target=staff_ks],
[data-remodal-id=staff_ks] {
  --staff-color: var(--green);
  --staff-bg-color: #dcf6f0;
}

[data-remodal-target=staff_yk-sn],
[data-remodal-id=staff_yk-sn] {
  --staff-color: #ff9123;
  --staff-bg-color: #fff8dc;
}

[data-remodal-target=staff_ys],
[data-remodal-id=staff_ys] {
  --staff-color: var(--pink);
  --staff-bg-color: #feebed;
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: #a5dfff;
}

.remodal {
  padding-top: 80px;
  padding-bottom: 250px;
  margin-bottom: 0;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .remodal {
    padding-top: 40px;
    padding-bottom: 130px;
  }
}

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

.modal {
  position: relative;
  width: min(92%, 980px);
  margin-inline: auto;
  text-align: left;
  background-color: var(--white);
}
.modal_top {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 20px 5%;
  padding: 75px 5%;
  background-color: #fff8cd;
}
@media (max-width: 768px) {
  .modal_top {
    grid-template-columns: 1fr;
    padding: 35px 5% 45px;
  }
}
.modal_top-body {
  align-self: end;
}
.modal_name {
  margin-top: 3vw;
  margin-bottom: 0.3em;
  font-size: var(--fs-24);
}
[data-remodal-id=staff_yk-sn] .modal_name {
  margin-top: 1vw;
}
@media (max-width: 768px) {
  [data-remodal-id=staff_yk-sn] .modal_copy + .modal_name {
    margin-top: 20px;
  }
}
.modal_name .small {
  font-size: 0.875em;
}
.modal_info {
  width: fit-content;
  padding: 0.1em 1.1em;
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--white);
  background-color: var(--staff-color);
}
@media (max-width: 768px) {
  .modal_info {
    font-size: 1rem;
  }
}
.modal_copy {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 768px) {
  .modal_copy {
    font-size: 1.375rem;
  }
}
.modal_copy span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.modal_copy span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.32em;
  content: "";
}
[data-remodal-id=staff_km] .modal_copy span::after {
  background: linear-gradient(-90deg, rgb(229, 250, 224) 0%, rgb(223, 247, 229) 3.88%, rgb(205, 237, 243) 18.71%, rgb(194, 232, 252) 34.23%, rgb(190, 230, 255) 51.41%, rgb(188, 229, 255) 75.55%, rgb(181, 224, 255) 84.24%, rgb(170, 216, 255) 90.43%, rgb(153, 205, 255) 95.41%, rgb(131, 190, 255) 99.65%, rgb(129, 189, 255) 100%);
}
[data-remodal-id=staff_mn] .modal_copy span::after {
  background: linear-gradient(90deg, rgb(246, 94, 112) 4.17%, rgb(246, 99, 116) 17.43%, rgb(247, 112, 128) 32.25%, rgb(249, 134, 148) 47.76%, rgb(249, 142, 155) 52.15%, rgb(252, 176, 160) 69.91%, rgb(254, 204, 164) 87.8%, rgb(255, 215, 165) 98.14%);
}
[data-remodal-id=staff_ks] .modal_copy span::after {
  background: linear-gradient(90deg, rgb(28, 193, 152) 4.17%, rgb(83, 208, 177) 19.56%, rgb(128, 221, 198) 34.29%, rgb(157, 229, 211) 45.6%, rgb(167, 232, 216) 52.15%, rgb(176, 232, 234) 76.14%, rgb(187, 231, 255) 98.14%);
}
[data-remodal-id=staff_yk-sn] .modal_copy span::after {
  background: linear-gradient(90deg, rgb(255, 170, 85) 4.17%, rgb(255, 199, 128) 43.95%, rgb(255, 205, 137) 52.21%, rgb(255, 217, 145) 80.79%, rgb(255, 226, 151) 98.14%);
}
[data-remodal-id=staff_ys] .modal_copy span::after {
  background: linear-gradient(90deg, rgb(248, 132, 146) 4.17%, rgb(248, 137, 150) 16.73%, rgb(249, 150, 162) 30.76%, rgb(250, 172, 182) 45.46%, rgb(251, 185, 193) 52.15%, rgb(251, 186, 193) 53.19%, rgb(254, 214, 189) 81.68%, rgb(255, 225, 187) 98.14%);
}
@media (max-width: 768px) {
  .modal_img {
    order: -1;
  }
}
.modal_body {
  padding: 100px 7% 80px 6%;
  background: url("../images/deco_05.svg") no-repeat left top/42%, url("../images/deco_06.svg") no-repeat right bottom/42%;
}
@media (max-width: 768px) {
  .modal_body {
    padding: 50px 7% 80px 5%;
  }
}
.modal_question {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.9em;
  font-size: var(--fs-24);
}
@media (max-width: 768px) {
  .modal_question {
    padding-left: 2.1em;
    font-size: 1.0625rem;
  }
}
.modal_question::before {
  font-family: Outfit, Arial, Helvetica, sans-serif;
  position: absolute;
  top: -0.1em;
  left: 0;
  display: block;
  display: grid;
  place-content: center;
  width: 1.8em;
  aspect-ratio: 1;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  content: "Q";
  background-color: var(--main);
}
@media (max-width: 768px) {
  .modal_question::before {
    top: 0;
    width: 1.6em;
  }
}
.modal_answer {
  padding-left: calc(var(--fs-24) * 2.5);
  line-height: 1.7222222222;
  text-align: justify;
}
@media (max-width: 768px) {
  .modal_answer {
    padding-left: calc(var(--fs-24) * 0.5);
    font-size: 0.9375rem;
  }
}
.modal_answer + .modal_question {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .modal_answer + .modal_question {
    margin-top: 40px;
  }
}
.modal_answer:has(.speaker) {
  display: flex;
}
.modal_answer .speaker {
  flex-shrink: 0;
  color: var(--staff-color);
}
.modal_answer .speaker::after {
  color: var(--base-font-color);
  content: "：";
}
.modal .btn {
  display: block;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .modal .btn {
    margin-top: 70px;
  }
}
.modal .btn + .btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .modal .btn + .btn {
    margin-top: 30px;
  }
}
.modal .btn[data-remodal-action=close] {
  color: var(--main);
  background-image: url("../images/icon_close.svg");
  background-size: 0.7em;
  border-color: var(--main);
}
@media (hover: hover) and (pointer: fine) {
  .modal .btn[data-remodal-action=close]:hover, .modal .btn[data-remodal-action=close]:focus {
    color: var(--white);
    background-color: var(--main);
  }
}
@media (hover: none) {
  .modal .btn[data-remodal-action=close]:active {
    color: var(--white);
    background-color: var(--main);
  }
}

/* ------------------------
    qa
------------------------ */
.qa {
  padding-top: 65px;
  padding-bottom: 140px;
  background: linear-gradient(90deg, rgba(165, 166, 207, 0.8), rgba(165, 166, 207, 0.8)), url("../images/bg_qa.jpg") no-repeat 90% top/118%;
}
@media (max-width: 768px) {
  .qa {
    background-size: cover;
  }
}
.qa .heading::before {
  background-color: #33f;
}
.qa .heading-en {
  color: var(--accent);
}
.qa_item + .qa_item {
  margin-top: 15px;
}
.qa_question {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 4em;
  padding: 0.5em 90px 0.5em 110px;
  font-size: var(--fs-24);
  color: var(--white);
  cursor: pointer;
  background: url("../images/icon_plus.svg") no-repeat calc(100% - 20px) 30px/35px, url("../images/icon_minus.svg") no-repeat calc(100% - 20px) 30px/0, var(--main);
}
@media (max-width: 1024px) {
  .qa_question {
    background-size: 20px, 0;
  }
}
@media (max-width: 768px) {
  .qa_question {
    min-height: 3em;
    padding: 0.5em 30px 0.5em 40px;
    font-size: 1rem;
    background-position: calc(100% - 15px) 17px;
    background-size: 14px, 0;
  }
}
.qa_question.is-open {
  background-size: 0, 35px;
}
@media (max-width: 1024px) {
  .qa_question.is-open {
    background-size: 0, 20px;
  }
}
@media (max-width: 768px) {
  .qa_question.is-open {
    background-size: 0, 14px;
  }
}
.qa_question::before {
  font-family: Outfit, Arial, Helvetica, sans-serif;
  position: absolute;
  top: 1.1em;
  left: 30px;
  display: block;
  display: grid;
  place-content: center;
  width: 1.75em;
  aspect-ratio: 1;
  font-weight: 700;
  color: var(--accent);
  content: "Q";
  background-color: var(--white);
}
@media (max-width: 768px) {
  .qa_question::before {
    top: 0.7em;
    left: 8px;
    width: 1.6em;
  }
}
.qa_answer {
  display: none;
  padding: 25px 65px 25px 110px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .qa_answer {
    padding: 18px 20px 18px 25px;
    font-size: 0.9375rem;
  }
}

/* ------------------------
    search
------------------------ */
.search {
  padding-top: 100px;
  padding-bottom: 120px;
  background: url("../images/deco_03.svg") no-repeat -1% top/35%, url("../images/deco_04.svg") no-repeat 101% bottom/35%, #efeff7;
}
.search .heading {
  font-size: 2.25rem;
  line-height: 1.8;
  color: var(--main);
  text-align: center;
}
.search .heading::before {
  display: none;
}
@media (max-width: 768px) {
  .search .heading {
    font-size: 1.5625rem;
    line-height: 1.5;
  }
}
.search .sub-heading {
  margin-bottom: 0.9em;
}
.search_cont {
  padding: 50px 6% 60px;
  margin-bottom: 45px;
  background-color: #fff8cd;
}
.search_cont-heading {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .search_cont-heading {
    font-size: 1.25rem;
  }
}
.search_cont-heading::before {
  position: absolute;
  top: 50%;
  right: 105%;
  display: block;
  width: 1.6em;
  aspect-ratio: 1;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.search_cont-heading--kyoto::before {
  background-image: url("../images/deco_kyoto.svg");
}
.search_cont-heading--shiga::before {
  background-image: url("../images/deco_shiga.svg");
}
.search_btn-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px 5%;
}
@media (max-width: 768px) {
  .search_btn-group {
    gap: 0 5%;
  }
  .search_btn-group--col2 {
    max-width: 640px;
    margin-inline: auto;
  }
}
.search_btn-wrap {
  margin-bottom: 18px;
}
.search_btn {
  position: relative;
  width: 100%;
  padding-inline: 2.3em;
  background-image: none;
}
.search_btn::before {
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width: 1.1em;
  aspect-ratio: 1;
  content: "";
  background-color: currentcolor;
  mask: url("../images/icon_chevron_down.svg") no-repeat center/contain;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .search_btn::before {
    width: 0.9em;
  }
}
.search_list {
  display: none;
}
.search_item {
  margin-top: 9px;
}
.search_link {
  display: grid;
  place-content: center;
  min-height: 70px;
  color: var(--accent);
  background-color: #feedef;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .search_link:hover, .search_link:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .search_link:active {
    opacity: 0.8;
  }
}/*# sourceMappingURL=style.css.map */