@charset "UTF-8";
/* ------------------------
    type selector
------------------------ */
html,
body {
  overflow-x: hidden;
}

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

a {
  display: block;
}

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

textarea {
  resize: vertical;
}

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

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

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

.u-grid-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px max(5%, 20px);
}

:root {
  --black: #46403b;
  --white: #fff;
  --yellow: #fdf001;
  --blue: #0064c8;
  --bg-light-blue: #d7fcff;
  --transition: 0.3s;
  --baseFontSize: 17;
  --headerHeight: 93px;
  --border-radius: 20px;
}

@media (max-width: 1024px) {
  :root {
    --headerHeight: 75px;
  }
}
@media (max-width: 1024px) {
  :root {
    --baseFontSize: 16;
  }
}
@media (max-width: 767px) {
  :root {
    --baseFontSize: 15;
    --headerHeight: 78px;
    --border-radius: 15px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-size: calc(var(--baseFontSize) / 16 * 1rem);
  font-weight: 400;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  line-height: 1.7647058824;
  color: var(--black);
  background-color: var(--white);
}
@media (max-width: 767px) {
  body {
    line-height: 1.7333333333;
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 94%;
}
@media (max-width: 767px) {
  .inner {
    width: 90%;
  }
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1024px) {
  .btn-group {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .btn-group {
    gap: 15px 10px;
  }
}

.btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
  background: url(../images/icon_arrow-black-circle.svg) no-repeat calc(100% - 1em) center/1.2em;
  background-color: var(--yellow);
  border-radius: 9999px;
  min-width: 304px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2.3em;
  position: relative;
  transition: opacity var(--transition);
}
@media (max-width: 1200px) {
  .btn {
    min-width: 290px;
  }
}
@media (max-width: 1024px) {
  .btn {
    font-size: 16px;
    min-width: 240px;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 17px;
    line-height: 1.5;
    width: 100%;
    max-width: 320px;
    min-width: unset;
    background-size: 1.5em;
    padding: 0.6em 2.5em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .btn:active {
    opacity: 0.7;
  }
}

.heading-wrap {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .heading-wrap {
    font-size: 2.625rem;
  }
}
@media (max-width: 767px) {
  .heading-wrap {
    font-size: 1.625rem;
  }
}

.heading::before {
  content: "";
  display: block;
  width: 3em;
  aspect-ratio: 300/131;
  background: url(../images/image_deco_01.svg) no-repeat center/contain;
  margin: 0 auto 0.3em;
}
@media (max-width: 767px) {
  .heading::before {
    width: 4.5em;
    margin-bottom: 0.9em;
  }
}

@media (max-width: 767px) {
  .u-grid-col2 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}
.u-grid-col2 p + .bl-ttl {
  margin-top: 1em;
}

.rounded-img {
  border-radius: var(--border-radius);
}

.speech-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--black);
  background-color: var(--yellow);
  border-radius: 9999px;
  padding: 0.2em 1.5em;
  width: max-content;
  min-width: 11em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .speech-ttl {
    font-size: 1.0625rem;
    line-height: 1.4705882353;
    padding: 0.4em 1.5em;
  }
}
.speech-ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 35px;
  aspect-ratio: 1/0.8191520443;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: var(--yellow);
  top: 100%;
  left: 50%;
  transform: translate(-50%, -30%);
  z-index: -1;
}
@media (max-width: 767px) {
  .speech-ttl::after {
    width: 22px;
  }
}

.bl-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
  padding-left: 15px;
  margin-bottom: 0.2em;
  position: relative;
}
@media (max-width: 767px) {
  .bl-ttl {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }
}
.bl-ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #9fd7ee;
  top: 50%;
  left: 0;
  transform: translateY(-45%);
}

.top-btn {
  position: fixed;
  width: 60px;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  right: 1%;
  bottom: 3%;
  z-index: 10;
  transition: opacity var(--transition);
  display: none;
}
.top-btn::before {
  content: "";
  display: block;
  position: absolute;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--black);
  mask-image: url("../images/icon_arrow-head_top-btn.svg");
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mask-size: 35%;
  mask-position: center;
}
@media (max-width: 1024px) {
  .top-btn {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .top-btn {
    bottom: 65px;
    width: 45px;
  }
}
.top-btn:hover {
  opacity: 0.7;
}

.entry-btn {
  font-weight: 700;
  text-align: center;
  background-color: var(--yellow);
  justify-content: center;
  align-items: center;
  transition: opacity var(--transition);
  position: fixed;
  z-index: 30;
  display: flex;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1024px) {
  .entry-btn {
    font-size: 20px;
    width: 7em;
  }
}
@media (min-width: 768px) {
  .entry-btn {
    font-size: 16px;
    width: 6em;
    aspect-ratio: 1;
    border-radius: 50%;
    right: 1%;
    bottom: calc(3% + 60px + 15px);
  }
}
@media (max-width: 767px) {
  .entry-btn {
    font-size: 15px;
    letter-spacing: 0.12em;
    border-top-right-radius: 20px;
    padding: 0.5em 1.5em 0.7em 1em;
    left: 0;
    bottom: 0 !important;
    position: fixed !important;
  }
}
.entry-btn.js-active {
  visibility: visible;
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn:hover, .entry-btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .entry-btn:active {
    opacity: 0.7;
  }
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.remodal {
  padding-top: 130px;
  padding-bottom: 350px;
  margin-bottom: 0;
  overflow-x: clip;
}
@media (max-width: 767px) {
  .remodal {
    padding-top: 80px;
  }
}
.remodal[data-remodal-id=movie] {
  padding-top: 70px;
  padding-bottom: 50px;
}

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

.modal {
  position: relative;
  text-align: left;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 90px 6%;
}
@media (max-width: 767px) {
  .modal {
    padding: 65px 5% 60px;
  }
}
.modal.inner {
  max-width: 1200px;
}
.modal .btn {
  font-size: 1.125rem;
  color: var(--white);
  background-color: #43bbef;
  background-image: url(../images/icon_close.svg);
  background-position-x: calc(100% - 1.5em);
  background-size: 1em;
}
@media (max-width: 767px) {
  .modal .btn {
    max-width: 12.3em;
  }
}
.modal-top {
  position: relative;
  margin-bottom: 40px;
}
.modal_img {
  border-top-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  overflow: hidden;
}
@media (max-width: 767px) {
  .modal_img {
    border-radius: 15px;
  }
}
.modal_ttl {
  font-weight: 700;
  font-size: 1.125rem;
  background: var(--white);
  border-bottom-right-radius: var(--border-radius);
  padding: 0.5em 2em 0.5em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .modal_ttl {
    position: static;
    font-size: 0.9375rem;
    display: block;
    padding-left: 0;
    margin-bottom: 0.6em;
  }
}
.modal_ttl::before {
  content: "●";
  font-size: 0.55em;
  vertical-align: 0.3em;
  color: var(--pink);
  margin-right: 8px;
}
@media (max-width: 767px) {
  .modal_ttl::before {
    font-size: 0.8em;
    vertical-align: 0;
    margin-right: 4px;
  }
}

.close-btn {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../images/icon_close.svg) no-repeat center/18px, #43bbef;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width: 1200px) {
  .close-btn {
    transform: translate(30%, -50%);
  }
}
@media (max-width: 767px) {
  .close-btn {
    width: 40px;
    transform: translate(-50%, 50%);
  }
}

/* ------------------------
    header
------------------------ */
.header {
  height: var(--headerHeight);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transition: background-color var(--transition);
}
.header.js-bg {
  background: rgba(255, 255, 255, 0.9);
}
.header_logo {
  width: min(14vw, 181px);
  align-content: center;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .header_logo {
    width: 80px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.8;
  }
}

.header-nav {
  transition: transform var(--transition);
}
.header-nav_list {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0 1.3em;
}
.header-nav_link {
  font-weight: 500;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .header-nav_link:active {
    opacity: 0.75;
  }
}
.header-nav_btn {
  font-weight: 700;
  background-color: var(--yellow);
  align-content: center;
  border-radius: 8px;
  padding: 1em;
  margin-top: 20px;
  transition: opacity var(--transition);
  display: none;
}
@media (max-width: 1024px) {
  .header-nav_btn {
    display: block;
  }
}
@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 {
  width: calc(var(--headerHeight) - 20px);
  height: calc(var(--headerHeight) - 20px);
  background: var(--pink);
  position: fixed;
  top: 9px;
  right: 0;
  z-index: 150;
  display: none;
}
.hamburger > span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 35%;
  height: 2px;
  background: var(--black);
  top: 50%;
  transition: ease 0.4s;
}
.hamburger > span:nth-of-type(1) {
  top: 35%;
}
.hamburger > span:nth-of-type(3) {
  top: 65%;
}
.hamburger.js-close > span {
  top: 50%;
}
.hamburger.js-close > span:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header {
    position: relative;
    margin-bottom: calc(var(--headerHeight) * -1);
    padding-left: 5%;
  }
  .header_logo {
    width: 93px;
  }
  .header::before {
    content: "";
    position: fixed;
    width: 100vh;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
  }
  .header.js-active::before {
    display: block;
  }
  .header-nav {
    position: relative;
    width: 90%;
    height: 100vh;
    padding: calc(var(--headerHeight) - 1em) 1.6em 0 1.6em;
    margin-top: 0;
    background: var(--white);
    display: grid;
    align-content: center;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(110%);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    font-size: 1rem;
    flex-direction: column;
    margin-top: calc(var(--headerHeight) * -1 - 3em);
  }
  .header-nav_item {
    width: 100%;
  }
  .header-nav_link {
    line-height: 1.8;
    border-bottom: 1px rgba(70, 64, 59, 0.5) solid;
    padding: 0.8em;
  }
  .hamburger {
    display: block;
  }
}
/* ------------------------
    footer
------------------------ */
.footer {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 40px 2% 40px 3%;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    font-size: 0.8125rem;
    padding: 30px 5% 55px;
    flex-direction: column;
  }
}
.footer_logo {
  width: 144px;
}
@media (max-width: 767px) {
  .footer_logo {
    width: 115px;
  }
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.4em 3em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .footer-nav[data-nun="01"] {
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .footer-nav[data-nun="01"] {
    justify-content: center;
    gap: 0.4em 2em;
  }
}
@media (max-width: 767px) {
  .footer-nav[data-nun="02"] {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer-nav[data-nun="02"] {
    flex-direction: column;
    align-items: center;
  }
}
.footer-nav[data-nun="02"] a {
  position: relative;
}
.footer-nav[data-nun="02"] a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0.9em;
  background: var(--black);
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .footer-nav[data-nun="02"] a:not(:last-child):after {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover, .footer-nav a:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:active {
    opacity: 0.75;
  }
}

@media (max-width: 767px) {
  .copyright {
    font-size: 0.6875rem;
  }
}

/* ------------------------
    mv
------------------------ */
.mv {
  position: relative;
}
.mv_entry-btn {
  font-size: 1.7142857143vw;
  font-weight: 700;
  text-align: center;
  background-color: var(--yellow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.6em;
  aspect-ratio: 1;
  transition: opacity var(--transition);
  position: absolute;
  right: 6.9%;
  bottom: 17.9%;
}
@media (max-width: 767px) {
  .mv_entry-btn {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .mv_entry-btn:hover, .mv_entry-btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .mv_entry-btn:active {
    opacity: 0.7;
  }
}

/* ------------------------
    intro
------------------------ */
.intro {
  background: url(../images/bg_intro.svg) no-repeat center 35%/80%;
  padding-top: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .intro {
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  .intro {
    padding-top: 10px;
    padding-bottom: 20px;
    background: unset;
  }
}

.intro-box {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.2222222222;
  letter-spacing: 0.06em;
  text-align: center;
  width: 80%;
  background: url(../images/image_deco_01.svg) no-repeat center 48px/150px, #f9f8dc;
  border-radius: var(--border-radius);
  box-shadow: 12px 12px 0 #9fd7ee;
  padding: 160px 1em;
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: -140px;
  position: relative;
}
@media (max-width: 767px) {
  .intro-box {
    line-height: 1.6666666667;
    width: 81%;
    background-position-y: 40px;
    background-size: 124px;
    padding: 130px 1em;
    margin-bottom: 0;
  }
}
.intro-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  aspect-ratio: 300/131;
  background: url(../images/image_deco_01.svg) no-repeat center/contain;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%) scale(-1);
}
@media (max-width: 767px) {
  .intro-box::after {
    width: 124px;
    bottom: 44px;
  }
}

/* ------------------------
    about
------------------------ */
#about {
  padding-top: 50px;
  margin-top: -50px;
}

.about {
  background: url(../images/image_deco_02.svg) no-repeat 94% 54%/13%, url(../images/bg_about_top.svg) no-repeat center top/100%, url(../images/bg_about_bottom.svg) no-repeat center bottom/100%, var(--bg-light-blue);
}
@media (max-width: 767px) {
  .about {
    background: url(../images/image_deco_12.svg) no-repeat -2.5% 85%/45%, url(../images/bg_about_top_sp.png) no-repeat center top/100%, url(../images/bg_about_bottom_sp.svg) no-repeat center bottom/101%, var(--bg-light-blue);
  }
}
.about .inner {
  max-width: 900px;
  padding-top: 300px;
  padding-bottom: 260px;
}
@media (min-width: 1600px) {
  .about .inner {
    padding-top: 19vw;
    padding-bottom: 17vw;
  }
}
@media (max-width: 767px) {
  .about .inner {
    width: 81%;
    padding-top: 32vw;
    padding-bottom: 50vw;
  }
}
.about .u-grid-col2 {
  grid-template-columns: 53.3333333333% 1fr;
}
.about_img {
  border-radius: var(--border-radius);
  box-shadow: -30px 20px 0 #fff;
}
@media (max-width: 767px) {
  .about_img {
    box-shadow: -15px 15px 0 #fff;
    margin-bottom: 40px;
  }
}
.about_txt {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .about_txt {
    font-size: 1.125rem;
    text-align: center;
  }
}
.about .btn-group {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .about .btn-group {
    justify-content: center;
  }
}

.about-modal .heading-wrap {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .about-modal .heading-wrap {
    margin-bottom: 2.5em;
  }
}
.about-modal_item {
  position: relative;
  border-top: 4px dotted var(--black);
  border-bottom: 4px dotted var(--black);
  padding: 70px 0 40px;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .about-modal_item {
    padding-top: 52px;
    margin-bottom: 65px;
  }
}
.about-modal_box {
  background-color: #f9f8dc;
  border-radius: var(--border-radius);
  padding: 40px 9%;
  margin-bottom: 90px;
  position: relative;
}
@media (max-width: 767px) {
  .about-modal_box {
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .about-modal_box .speech-ttl + .u-grid-col2 {
    padding-top: 20px;
  }
}
.about-modal_box .u-grid-col2 {
  grid-template-columns: 39.263803681% 1fr;
  padding: 40px 0;
}
.about-modal_box .u-grid-col2 + .u-grid-col2 {
  border-top: 4px dotted var(--black);
}
.about-modal_box .bl-ttl {
  margin-bottom: 0.4em;
}

/* ------------------------
    work
------------------------ */
.work {
  padding: 0 0 145px;
  background: url(../images/image_deco_03.svg) no-repeat -5.5% 42%/17%, url(../images/image_deco_04.svg) no-repeat 103% 67%/16%;
}
@media (max-width: 767px) {
  .work {
    background: unset;
  }
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  gap: 10px;
  min-height: 135px;
  padding-top: 35px;
  margin-top: -35px;
}
@media (max-width: 767px) {
  .tab-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-bottom: 3px;
  }
}

.tab {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3888888889;
  text-align: center;
  min-height: 85px;
  display: grid;
  align-content: center;
  color: var(--blue);
  background-color: #c2e6ff;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .tab {
    font-size: 0.8125rem;
    min-height: 48px;
    border-radius: 10px;
  }
}
.tab.js-active {
  color: var(--white);
  background-color: var(--blue);
}
@media (min-width: 768px) {
  .tab.js-active {
    font-size: 1.375rem;
    min-height: 100px;
  }
}

.panel-area {
  background-color: #f9f8dc;
  position: relative;
}
.panel-area_top-btn {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  background-color: #46403b;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 14.5em;
  padding: 0.8em;
  position: absolute;
  top: 100%;
  right: 0;
}
@media (max-width: 767px) {
  .panel-area_top-btn {
    font-size: 1rem;
  }
}
.panel-area_top-btn::after {
  content: "";
  width: 1.3em;
  display: inline-block;
  aspect-ratio: 1;
  background: url(../images/icon_arrow-circle.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 1;
}

.panel {
  padding: 75px 8%;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media (max-width: 767px) {
  .panel {
    padding: 35px 6% 45px;
  }
}
.panel.js-active {
  visibility: visible;
  position: static;
  opacity: 1;
}
.panel_ttl {
  font-size: 1.875rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .panel_ttl {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .panel .btn-group {
    width: 105%;
    margin-left: -2.5%;
  }
}
.panel .btn {
  padding: 0 3.9em;
}
@media (max-width: 767px) {
  .panel .btn {
    padding: 0 2.3em;
    background-position-x: calc(100% - 0.6em);
  }
}
.panel .btn[data-type=search] {
  color: var(--white);
  background-color: #43bbef;
  background-image: url(../images/icon_arrow-circle.svg);
}
.panel .btn[data-type=interview] {
  border: 1px solid currentColor;
}

.panel-top {
  margin-bottom: 40px;
}
.panel-top + .point {
  margin-top: 60px;
}

.point {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 12px 12px 0 #9fd7ee;
  padding: 85px 6% 60px;
  margin-bottom: 50px;
  position: relative;
}
.point .speech-ttl {
  color: var(--white);
  background-color: var(--blue);
  min-width: max-content;
}
.point .speech-ttl::after {
  background-color: var(--blue);
}

.point-item {
  grid-template-columns: 43.656207367% 1fr;
}
@media (max-width: 767px) {
  .point-item {
    grid-template-columns: 1fr;
  }
}
.point-item + .point-item {
  margin-top: 40px;
}

.day {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 12px 12px 0 #9fd7ee;
  padding: 55px 6%;
  margin-bottom: 70px;
}
.day_ttl {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--blue);
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .day_ttl {
    font-size: 1.25rem;
  }
}
.day_ttl::before, .day_ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: radial-gradient(circle farthest-side, var(--blue), var(--blue) 38%, transparent 40%, transparent);
  background-size: 8px 3px;
}
.day_ttl::before {
  margin-bottom: 0.1em;
}
.day_ttl::after {
  margin-top: 0.1em;
}
.day .u-grid-col2 {
  grid-template-columns: 1fr 41.768707483%;
}

.schedule {
  font-weight: 500;
  line-height: 1.4117647059;
}
@media (max-width: 767px) {
  .schedule {
    order: 2;
  }
}
.schedule_row {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
}
.schedule_row + .schedule_row {
  margin-top: 1em;
}
.schedule .time {
  text-align: center;
  color: var(--blue);
  background-color: #c2e6ff;
  padding: 0.1em 0;
  border-radius: 9999px;
  min-width: 4em;
}
@media (max-width: 767px) {
  .schedule .time {
    font-size: 0.75rem;
  }
}

.interview_ttl {
  font-size: 1.125rem;
  color: #43bbef;
  margin-bottom: 0.7em;
}
@media (max-width: 767px) {
  .interview_ttl {
    font-size: 0.9375rem;
    margin-bottom: 1.3em;
    position: absolute;
    top: -22px;
    left: 0;
  }
}
.interview_ttl::before {
  content: "●";
  font-size: 0.55em;
  vertical-align: 0.3em;
  color: currentColor;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .interview_ttl::before {
    font-size: 1em;
    vertical-align: unset;
  }
}
.interview_comment {
  font-size: 2.25rem;
  line-height: 1.72;
  background: #fdf001;
  border-radius: 10px;
  padding: 0 0.5em;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 1200px) {
  .interview_comment {
    font-size: 1.875rem;
  }
}
@media (max-width: 1024px) {
  .interview_comment {
    font-size: 1.6875rem;
  }
}
@media (max-width: 767px) {
  .interview_comment {
    font-size: 1.1875rem;
    border-radius: 5px;
  }
}
.interview_info {
  line-height: 1.7;
  padding-left: 21px;
  margin-top: 1em;
  position: relative;
}
@media (max-width: 767px) {
  .interview_info {
    padding-left: 13px;
  }
}
.interview_info::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 87%;
  border-radius: 3px;
  background-color: #43bbef;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.interview_job-type {
  font-size: 1.0588235294em;
}
@media (max-width: 767px) {
  .interview_job-type {
    font-size: 0.875rem;
  }
}
.interview_post {
  font-size: 0.9411764706em;
  display: block;
}
@media (max-width: 767px) {
  .interview_post {
    font-size: 0.875rem;
  }
}
.interview_name {
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .interview_name {
    font-size: 0.625rem;
  }
}
.interview_name .emphasis {
  font-size: 2.2666666667em;
}
@media (max-width: 767px) {
  .interview_name .emphasis {
    font-size: 1.8em;
  }
}
.interview .schedule {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 60px;
}
.interview .schedule_ttl {
  font-size: 1.4375rem;
  font-weight: 700;
  text-align: center;
  background-color: #c2e6ff;
  padding: 0.5em;
}
@media (max-width: 1024px) {
  .interview .schedule_ttl {
    font-size: 1.3125rem;
  }
}
@media (max-width: 767px) {
  .interview .schedule_ttl {
    font-size: 1.0625rem;
  }
}
.interview .schedule_body {
  padding: 15px 5% 20px;
  background-color: #f9f8dc;
}
@media (max-width: 767px) {
  .interview .schedule_body {
    padding: 10px 7% 10px;
  }
}
.interview .schedule .time {
  min-width: 3.2em;
}
.interview .schedule_row {
  padding: 1em 0;
}
@media (max-width: 767px) {
  .interview .schedule_row {
    padding: 0.65em 0;
  }
}
.interview .schedule_row + .schedule_row {
  border-top: 2px dotted #bac8e1;
  margin-top: 0;
}

.interview-top {
  display: flex;
  gap: 0 40px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .interview-top {
    position: relative;
    flex-direction: column-reverse;
    padding-top: 20px;
    margin-bottom: 35px;
    z-index: 3;
  }
}
.interview-top_body {
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .interview-top_body {
    margin-top: -3.2em;
  }
}
.interview-top .rounded-img {
  overflow: hidden;
}
@media (max-width: 767px) {
  .interview-top .rounded-img {
    position: relative;
    z-index: -1;
  }
}
.interview-top .rounded-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.question {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.2173913043;
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .question {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .question {
    font-size: 1.0625rem;
    padding-left: 1.9em;
  }
}
.question::before {
  content: "Q";
  display: block;
  position: absolute;
  font-size: 1.0434782609em;
  line-height: 1;
  text-align: center;
  display: grid;
  align-items: center;
  color: var(--white);
  background-color: #43bbef;
  border-radius: 50%;
  padding-bottom: 0.1em;
  width: 1.73em;
  aspect-ratio: 1;
  top: -0.25em;
  left: 0;
}
@media (max-width: 767px) {
  .question::before {
    width: 1.45em;
    top: -0.15em;
  }
}

.answer {
  background-color: #f9f8dc;
  border-radius: 10px;
  padding: 0.8em 1.2em;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .answer {
    font-size: 0.9375rem;
    padding: 1em 1.2em;
    margin-bottom: 40px;
  }
}

/* ------------------------
    environment
------------------------ */
#environment {
  padding-top: 50px;
  margin-top: -50px;
}

.environment {
  background: url(../images/image_deco_05.svg) no-repeat -4% 15%/19%, url(../images/image_deco_06.svg) no-repeat 102% 8%/25%, url(../images/image_deco_07.svg) no-repeat 28% 82%/105%, url(../images/bg_environment_top.svg) no-repeat center top/100%, url(../images/bg_environment_bottom.svg) no-repeat center bottom/100%, linear-gradient(to bottom, #fff 5px, var(--bg-light-blue) 5px, var(--bg-light-blue) 100%);
}
@media (max-width: 767px) {
  .environment {
    background: url(../images/bg_environment_top.svg) no-repeat center top/150%, url(../images/bg_environment_bottom_sp.svg) no-repeat center bottom/100%, linear-gradient(to bottom, #fff 5px, var(--bg-light-blue) 5px, var(--bg-light-blue) 100%);
  }
}
.environment .inner {
  padding-top: 170px;
  padding-bottom: 350px;
}
@media (min-width: 1600px) {
  .environment .inner {
    padding-bottom: 23vw;
  }
}
@media (max-width: 767px) {
  .environment .inner {
    width: 80%;
    padding-top: 16vw;
    padding-bottom: 53vw;
  }
}
.environment .heading-wrap {
  margin-bottom: 1.5em;
}

.environment-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 12px 12px 0 #9fd7ee;
  padding: 80px 7% 80px;
  position: relative;
}
@media (max-width: 767px) {
  .environment-box {
    padding: 40px 7% 25px;
  }
}
.environment-box + .environment-box {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .environment-box + .environment-box {
    margin-top: 60px;
  }
}

.environment-item {
  grid-template-columns: 37.6470588235% 1fr;
}
.environment-item + .environment-item {
  margin-top: 40px;
}
.environment-item .bl-ttl {
  margin-bottom: 0.4em;
}
@media (max-width: 767px) {
  .environment-item .bl-ttl {
    font-size: 1.125rem;
  }
}

[data-remodal-target=movie] {
  position: relative;
}
@media (max-width: 767px) {
  [data-remodal-target=movie] {
    margin-top: 55px;
  }
}
[data-remodal-target=movie] .rounded-img {
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  [data-remodal-target=movie]:hover .rounded-img, [data-remodal-target=movie]:focus .rounded-img {
    opacity: 0.8;
  }
}
@media (hover: none) {
  [data-remodal-target=movie]:active .rounded-img {
    opacity: 0.8;
  }
}

.speech-movie {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  text-align: center;
  background-color: #ffcae0;
  border-radius: 33px;
  width: max-content;
  padding: 0.7em 0.8em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .speech-movie {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .speech-movie {
    transform: translate(-50%, -60%);
  }
}
.speech-movie::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  aspect-ratio: 1/0.8191520443;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #ffcae0;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -30%);
  z-index: -1;
}
@media (max-width: 767px) {
  .speech-movie::after {
    width: 20px;
    transform: translate(-50%, -30%);
  }
}

.remodal[data-remodal-id=movie] .modal {
  padding: 50px 5%;
}
@media (max-width: 767px) {
  .remodal[data-remodal-id=movie] .modal {
    padding: 30px 5% 20px;
  }
}
@media (max-width: 767px) {
  .remodal[data-remodal-id=movie] .close-btn {
    transform: translate(30%, -50%);
  }
}

.movie {
  width: 100%;
}

/* ------------------------
    message
------------------------ */
.message {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .message {
    padding-top: 35px;
    padding-bottom: 180px;
    background: url(../images/image_deco_14.svg) no-repeat 85% 96%/165px;
  }
}
.message .inner {
  width: 87%;
}
@media (max-width: 767px) {
  .message .inner {
    width: 80%;
  }
}
.message .heading-wrap {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .message .u-grid-col2 {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .message_ttl-wrap {
    text-align: center;
  }
}
.message_ttl {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 0 0.1em;
  background: radial-gradient(circle at calc(100% - 6px) calc(100% - 6px), var(--yellow) 6px, rgba(255, 255, 255, 0) 6px), radial-gradient(circle at 6px calc(100% - 6px), var(--yellow) 6px, rgba(254, 252, 252, 0) 6px), linear-gradient(to bottom, #fff calc(100% - 12px), rgba(255, 255, 255, 0) calc(100% - 12px)), linear-gradient(to right, rgba(255, 255, 255, 0) 6px, var(--yellow) 6px, var(--yellow) calc(100% - 6px), rgba(255, 255, 255, 0) calc(100% - 6px));
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-position-y: -0.02em;
}
@media (max-width: 1024px) {
  .message_ttl {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .message_ttl {
    font-size: 1.125rem;
    line-height: 1.9;
    background: radial-gradient(circle at calc(100% - 3px) calc(100% - 3px), var(--yellow) 3px, rgba(255, 255, 255, 0) 3px), radial-gradient(circle at 3px calc(100% - 3px), var(--yellow) 3px, rgba(254, 252, 252, 0) 3px), linear-gradient(to bottom, #fff calc(100% - 6px), rgba(255, 255, 255, 0) calc(100% - 6px)), linear-gradient(to right, rgba(255, 255, 255, 0) 3px, var(--yellow) 3px, var(--yellow) calc(100% - 3px), rgba(255, 255, 255, 0) calc(100% - 3px));
    background-position-y: -0.04em;
    margin-bottom: 1em;
  }
}
.message_img-wrap {
  position: relative;
}
@media (max-width: 767px) {
  .message_img-wrap {
    order: -1;
  }
}
.message_img-wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 105%;
  aspect-ratio: 49/75;
  background: url(../images/image_deco_08.svg) no-repeat center/contain;
  top: 0;
  right: 0;
  transform: translate(50%, -15%);
  z-index: -1;
}
@media (max-width: 767px) {
  .message_img-wrap::before {
    aspect-ratio: 59/150;
    width: 57%;
    background-image: url(../images/image_deco_13.svg);
    transform: translate(72%, -15%);
  }
}
.message_img {
  border-radius: var(--border-radius);
  box-shadow: 12px 12px 0 #9fd7ee;
}
.message_txt {
  font-size: 1.0588235294em;
  font-weight: 500;
  line-height: 2.2222222222;
  margin-top: 1.4em;
}

/* ------------------------
    search
------------------------ */
#search {
  padding-top: 70px;
  margin-top: -70px;
}
@media (max-width: 767px) {
  #search {
    padding-top: 50px;
    margin-top: -50px;
  }
}

.search {
  background: url(../images/image_deco_09.svg) no-repeat 8% 13%/25%, url(../images/image_deco_10.svg) no-repeat 92% 15%/25%, url(../images/image_deco_11.svg) no-repeat 12% 85%/15%, url(../images/bg_search_top.svg) no-repeat center top/100%, linear-gradient(to bottom, #fff 5px, #1bd5ff 5px, #1bd5ff 100%);
  padding-bottom: 130px;
}
@media (max-width: 767px) {
  .search {
    background: url(../images/image_deco_15.png) no-repeat -20% 4%/144px, url(../images/image_deco_16.png) no-repeat 106% 5%/122px, url(../images/image_deco_11.svg) no-repeat -12% 99%/155px, url(../images/bg_search_top.svg) no-repeat center top/150%, linear-gradient(to bottom, #fff 5px, #1bd5ff 5px, #1bd5ff 100%);
    padding-top: 70px;
    padding-bottom: 110px;
  }
}
.search .inner {
  width: 87%;
  padding-top: 150px;
}
@media (max-width: 767px) {
  .search .inner {
    width: 80%;
    padding-top: 0;
  }
}
.search .heading-wrap {
  margin-bottom: 1.5em;
}
.search .heading {
  color: var(--white);
}
.search .heading::before {
  background: unset;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--white);
  mask-image: url("../images/image_deco_01.svg");
}
.search .u-grid-col2 {
  grid-template-columns: 300px 1fr;
  gap: 40px 7%;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .search .btn-group {
    gap: 20px;
  }
}
.search .btn {
  min-height: 85px;
  min-width: 300px;
}
@media (max-width: 1200px) {
  .search .btn {
    min-width: 280px;
  }
}
@media (max-width: 767px) {
  .search .btn {
    min-height: 60px;
  }
}

.search-element[data-type=employment] .search-ttl::before {
  background-image: url(../images/icon_employment.svg);
}
.search-element[data-type=employment] .btn {
  color: var(--white);
  background-color: var(--blue);
  background-image: url(../images/icon_arrow-circle.svg);
}
.search-element[data-type=job] .search-ttl::before {
  background-image: url(../images/icon_job.svg);
}

.search-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .search-ttl {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.1em;
  }
}
.search-ttl::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  vertical-align: -0.3em;
  aspect-ratio: 1;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .search-ttl::before {
    width: 2em;
    display: block;
    margin-inline: auto;
  }
}
.search-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: radial-gradient(circle farthest-side, var(--white), var(--white) 40%, transparent 40%, transparent);
  background-size: 8px 3px;
  margin-top: 0.3em;
}/*# sourceMappingURL=style.css.map */