/* -----
変数
-----*/
:root {
  --color-primary: #17243b;
  --color-secondary: #ccf454;
}

/* setting */
.sp-displaynone {
  display: none !important;
}

@media screen and (max-width: 500px) {
  .pc-displaynone {
    display: none !important;
  }
  .sp-displaynone {
    display: initial !important;
  }
}

@media screen and (min-width: 501px) {
  .sp-displaynone {
    display: none !important;
  }
  .pc-displaynone {
    display: initial !important;
  }
}

/* -----
レイアウト
----- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  justify-content: center;
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.9;
  font-feature-settings: "palt";
  letter-spacing: 0.09em;
}

/* 左右 */
.pc-left,
.pc-right {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  width: calc((100vw - 500px) / 2);
  height: 100vh;
}

.pc-left {
  left: 0;
  flex-direction: column;
}

.pc-left__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.pc-left__inner img {
  width: 100%;
  max-width: 300px;
}

.pc-right {
  right: 0;
}

.pc-left img {
  display: block;
  width: 360px;
  margin: auto;
}

.pc-right img {
  display: block;
  width: 160px;
  margin: auto;
}

.pc-right p {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-family: san-serif;
  text-align: center;
}

@media screen and (max-width: 1400px) and (min-width: 1101px) {
  .pc-left img {
    width: 260px;
  }

  .pc-right img {
    width: 120px;
  }
}

@media screen and (max-width: 1100px) {
  .pc-left,
  .pc-right {
    display: none;
  }
}

/* ページ固定ボタン */
.cta-btn-list {
  display: flex;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 10px 0 8px;
  background-color: #fff;
  z-index: 10;
  filter: drop-shadow(0px -2px 5px #00000010);
}

.cta-btn-list li {
  width: calc(100% / 2 - 10px);
}

.cta-btn-list img {
  width: 100%;
  display: block;
}

/* -----
色ヘルパー
----- */
.bgColor-00 {
  background-color: #8ab6c3;
}
.bgColor-01 {
  background-color: #becacc;
}

.bgColor-02 {
  background-color: #e2e9ee;
}

/* -----
ボタンアニメーション
----- */
.btn img {
  transition: all ease 0.3s;
}

.btn img:hover {
  filter: brightness(1.1);
}

/* -----
LPのコンテンツ
----- */
.container {
  position: relative;
  max-width: 500px;
}
@media screen and (min-width: 1101px) {
  .filter {
    filter: drop-shadow(0 0 15px #00000011);
  }
}
/* ヘッダー */
.header {
  width: 100%;
  max-width: 500px;
  height: 60px;
  z-index: 3;
  position: absolute; /* fixedからabsoluteに変更 */
  top: 0; /* 上部に配置 */
  left: 0; /* 左端に配置 */
  transition: background-color 0.3s ease;
}

.header__inner {
  width: inherit;
  height: inherit;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
    width: calc(200 / 750 * 100%);
}

.header__logo a img {
  display: block;
  width: 100%;
}

.header__text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  letter-spacing: 0.09em;
  text-align: center;
}

.header__menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: none;
  cursor: pointer;
  z-index: 20; /* z-indexを上げて常に最前面に */
  transition: background-color 0.3s ease;
  padding: 0;
}

.header__menu-line {
  width: 45px;
  height: 1px;
  background-color: #de7e2b;
  transition: transform 0.3s ease;
}
.header__menu-line:nth-child(2) {
  margin-top: 5px;
}

.header__menu-button.is-open .header__menu-line:first-child {
  transform: rotate(15deg);
  background-color: #fff;
}

.header__menu-button.is-open .header__menu-line:nth-child(2) {
  transform: translateY(-6px) rotate(-15deg);
  background-color: #fff;
}

.header__menu-button.is-open .header__menu-text {
  color: #fff;
}

.header__menu-text {
  color: #de7e2b;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: Robot, sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  letter-spacing: 0.09em;
  text-align: center;
  line-height: 1;
  margin-top: 8px;
}

.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #de7e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.header__nav.is-open {
  opacity: 1;
  visibility: visible;
}

.header__navList {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.header__navItem a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.lp-main-image img {
  width: 100%;
}

/*---------------
main
---------------*/
.lp-main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lp-main-visual__image {
}

.mv-text {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2; /* 動画より手前 */
}

.mv-text img {
  width: 101%;
  height: auto;
  display: block;
}

.mv-video {
  position: absolute;
  top: 0px;
  left: 0; 
  width: calc(100% + 100px);
  height: 80%;
  object-fit: cover;
  z-index: 1;
}

.lp-main-visual__percent {
  position: absolute;
  bottom: 25px;
  right: 0;
  width: max(190px, calc(190 / 375 * 100%)) !important;
}

.lp-buttons {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.learn-point {
  margin-top: 35px;
}

.learn-point__title {
  font-size: clamp(18px, calc(100vw * 32 / 375), 42px);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  line-height: 1.7;
}

.learn-point__text {
  margin-top: 20px;
  font-size: clamp(14px, calc(100vw * 24 / 375), 20px);
  line-height: 1.7;
}

.lp-different {
  margin-top: 10px;
}

.lp-employment {
  margin-top: 0px;
}

.lp-interview {
  margin-top: 0px;
}

.lp-interview__title {
}

.lp-interview__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lp-interview__item {
  border-radius: 3px;
}
.lp-interview__item:not(:first-child) {
  margin-top: 32px;
}

.lp-interview__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-interview__details {
  margin-top: 10px;
  list-style: none;
}

/* アコーディオンスタイルを整理 */
.lp-interview__accordion {
  margin-top: 6px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-left: 20px;
  margin-right: 20px;
}

.lp-interview__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.3em 1em;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem;
  background-color: #fff;
  color: #211816;
  border-radius: 6px;
  transition: border-radius 0.3s ease;
}

.lp-interview__summary.is-open {
  border-radius: 6px 6px 0 0;
}

.summary-icon {
  width: 20px;
  height: 20px;
  color: #211816;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  stroke: #211816;
}

.lp-interview__summary.is-open .summary-icon {
  transform: rotate(0);
}

.lp-interview__text {
  display: none;
  padding: .5em 1.4em 1.4em;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  font-size: 1.6rem;
}

.lp-interview__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #3e3a39;
  padding: 8px;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  position: relative;
}

.lp-interview__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  left: calc(50% + 60px);
  top: 50%;
  transform: translateY(-50%);
}

.lp-interview__link:hover {
  background-color: #2a2625;
}



.lp-interview-voice {
  margin-top: 30px;
}

.lp-interview-voice__link {
  margin-top: 20px;
}

.lp-interview-voice__link {
  padding: 0 20px;
}

.lp-interview-voice__link a img {
  transition: filter 0.3s ease;
}

.lp-interview-voice__link a:hover img {
  filter: brightness(1.1);
}

.lp-cg {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

/* フッター */
.footer {
  z-index: 12;
  padding-bottom: 60px;
  background-color: #fff;
}

.footer img {
  display: block;
  width: 100%;
  margin: auto;
}

.footer p {
  margin-top: 10px;
}

.footer__inner {
}

.access {
  color: #3e3a39;
  background-color: #fff;
}

.access__inner {
  padding: 0px 20px 40px;
  margin: auto;
}

.access-location {
  margin-top: 20px;
}

.access-location:nth-child(3) {
  margin-top: 30px;
}

.access-location__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

.access-location__map {
  width: 100%;
  margin-top: 10px;
}
.access-location__map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.access-location__info {
  margin-top: 10px;
}

.access-location__info h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.access-location__info p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 9px;
}

.footer-contact {
  padding: 10px;
  display: flex;
flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.footer-contact__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer-contact__info a {
  font-size: 3rem;
  font-weight: 700;
  color: #ffef46;
  text-align: center;
  font-family: Roboto;
  line-height: 1.2;
}

.footer__footer {
  background-color: #3a93ab;
}

.footer__footer-inner {
  padding: 10px 20px 10px;
}

.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logos a {
  width: calc(100% / 2 - 20px);
  height: auto;
}

.footer__buttons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer__copyright {
  font-size: 1rem;
  color: #999;
  background-color: #fff;
  width: 100%;
}

.footer__copyright p {
  text-align: center;
  margin-top: 0;
  padding: 20px 0;
}

/*---------------
web
---------------*/

.lp-about-section {
  background-color: #fff;
}

.lp-schedule-section {
    background-color: #fff;
}

.l-cta-area {
  width: calc(560 / 750 * 100%);
  margin: auto;
  padding: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.l-cta-area a img {
  width: 100%;
  display: block;
}

.lp-interview__remark {
  padding-top: 20px;
  padding-bottom: 30px;
}