@charset "UTF-8";
/* ********************
修正履歴
20250930 コンテンツ幅調整（768px → 608px）
******************** */

/* ////////////////////////////// */
/* Basic全般
////////////////////////////// */
:root {
  --white: #fefefe;
  --backC: #eaeaea;
  --contentC1: #2e308b;
  --contentC2: #5457ff;
}
html {
  scroll-padding-top: 114px;
  scroll-behavior: smooth;
  background-color: var(--backC);
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  background: url(../img/bg.png) center top no-repeat;
  background-size: contain;
  background-attachment: fixed;
}
img {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 82px;
  }
  body {
    font-size: 16px;
  }
}
/* ////////////////////////////// */
/* header
////////////////////////////// */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.headerWrap {
  padding: 32px;
  margin: 0 auto;
  width: 100%;
  /* 20250930 <s>
  max-width: 768px;
  20250930 <e> */
  max-width: 608px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.siteTitle {
  display: flex;
  align-items: center;
  column-gap: 1em;
  z-index: 999;
}
.headerLogo {
  width: 50px;
  height: 50px;
  background: url(../img/main_logo.png) center center no-repeat;
  background-size: contain;
}
#navBtn {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.4s ease-in-out all;
  cursor: pointer;
  z-index: 999;
}
.scrolled #navBtn {
  background-color: var(--backC);
}
#navBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s ease-out;
  width: 30px;
  height: 2px;
  background-color: var(--contentC1);
}
#navBtn span:nth-of-type(1) {
  top: 30%;
}
#navBtn span:nth-of-type(3) {
  top: 70%;
}
.navOpen #navBtn span {
  background-color: var(--contentC1);
}
.navOpen #navBtn span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.navOpen #navBtn span:nth-of-type(2) {
  opacity: 0;
}
.navOpen #navBtn span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.navWrap {
  margin: 0 auto;
  padding: 146px 64px 64px 64px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* 20250930 <s>
  max-width: 768px;
  20250930 <e> */
  max-width: 608px;
  height: 100%;
  background-color: var(--backC);
  animation: navOpen 0.4s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  z-index: 99;
  display: none;
}
.navOpen .navWrap {
  display: flex;
}
.navWrap ul {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
/* 20250930 <s>
@media screen and (max-width: 768px) {
20250930 <e> */
@media screen and (max-width: 608px) {
  .headerWrap {
    padding: 16px 5%;
  }
  .navWrap {
    padding: 130px 0 64px 0;
  }
}
@keyframes navOpen {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* ////////////////////////////// */
/* main全般
////////////////////////////// */
.mainWrap {
  margin: 0 auto;
  /* 20250930 <s>
  max-width: 768px;
  20250930 <e> */
  max-width: 608px;
  background-color: var(--backC);
  box-shadow: 0px 0px 32px -16px var(--contentC1);
}
.secWrap {
  margin-top: 128px;
  display: flex;
  flex-direction: column;
  row-gap: 128px;
}
.basicWrap {
  padding: 0 64px;
}
.contentWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 64px;
}
.textWrap {
  line-height: 1.8;
}
.basicBtn {
  padding: 16px 32px;
  border-radius: 8px;
  background-color: var(--contentC1);
  color: var(--backC);
  font-weight: 700;
  transition: 0.2s all ease-in;
}
.basicBtn:hover {
  background-color: var(--contentC2);
}
.basicBtn span {
  display: inline-block;
}
.outlineBtn {
  padding: 16px 32px;
  border: 1px solid var(--contentC1);
  border-radius: 8px;
  color: var(--contentC1);
  font-weight: 700;
}
.head01 {
  display: inline-block;
  background-color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--contentC1);
}
.head02 {
  padding: 0 1em 8px 1em;
  display: inline-block;
  border-bottom: 2px solid var(--contentC1);
  font-size: 24px;
  font-weight: 700;
}
.head03 {
  padding-right: 1em;
  position: relative;
  display: inline-block;
  background-color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.head03::after {
  position: absolute;
  top: 0;
  right: 0.25em;
  content: ":";
}
.break {
  display: inline-block;
}
.textWrap h3 {
  margin-bottom: 32px;
}
/* 20250930 <s>
@media screen and (max-width: 768px) {
20250930 <e> */
@media screen and (max-width: 608px) {
  #main {
    padding-bottom: 64px;
  }
  .secWrap {
    margin-top: 64px;
    row-gap: 64px;
  }
  .basicWrap {
    padding: 0 5%;
  }
  .contentWrap {
    row-gap: 32px;
  }
  .head01,
  .head02 {
    font-size: 20px;
  }
  .head03 {
    font-size: 18px;
  }
  .textWrap h3 {
    margin-bottom: 16px;
  }
}
/* 20250930 <s>
@media screen and (max-width: 768px) {
20250930 <e> */
@media screen and (max-width: 608px) {
  .basicBtn,
  .outlineBtn {
    padding: 16px;
  }
}
/* ////////////////////////////// */
/* Swiper全般
////////////////////////////// */
.swiper {
  width: 100%;
  height: auto;
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--backC);
}
/* ////////////////////////////// */
/* .layout01
////////////////////////////// */
.coNameWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}
.mainLogo {
  width: 100px;
  height: 100px;
  background: url(../img/main_logo.png) center center no-repeat;
  background-size: contain;
}
.coName {
  font-size: 24px;
  font-weight: 700;
}
/* 20250930 <s>
@media screen and (max-width: 768px) {
20250930 <e> */
@media screen and (max-width: 608px) {
  .coName {
    font-size: 24px;
  }
}
/* ////////////////////////////// */
/* .layout02
////////////////////////////// */
.layout02 .contentWrap {
  margin-top: 64px;
}
.l02_interviewee {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
/* 20250930 <s>
@media screen and (max-width: 768px) {
20250930 <e> */
@media screen and (max-width: 608px) {
  .l02_interviewee {
    margin-bottom: 16px;
  }
}
/* ////////////////////////////// */
/* .layout03
////////////////////////////// */
.layout03 ul {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
/* ////////////////////////////// */
/* .layout_form
////////////////////////////// */
.layout_form a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.layout_form form {
  width: 100%;
}
.layout_form label {
  color: var(--contentC1);
}
.layout_form input:not([type="radio"]),
.layout_form textarea {
  padding: 0.25em;
  width: 100%;
  border: 1px solid var(--contentC1);
  background-color: var(--white);
}
.layout_form textarea {
  resize: none;
}
.layout_form input[type="radio"] {
  margin-right: 0.5em;
  width: 0.8em;
  height: 0.8em;
  border: 1px solid var(--contentC1);
  border-radius: 50%;
  background-color: var(--white);
}
.layout_form input[type="radio"]:checked {
  background-color: var(--contentC1);
}
.input_required::before {
  content: "※";
}
.formTextWrap {
  text-align: center;
  color: var(--contentC1);
}
.formWrap {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.subjectWrap {
  display: flex;
  column-gap: 32px;
}
.subjectList {
  display: flex;
  flex-direction: column;
}
.submitBtnWrap {
  margin-top: 16px;
  text-align: center;
}
.telBtnWrap {
  text-align: center;
}
.telBtnWrap .outlineBtn {
  display: block;
}
.telNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5em;
  font-size: 24px;
}
.telNumber svg {
  width: 1em;
  height: 1em;
  fill: var(--contentC1);
}
.busHours {
  margin-top: 8px;
}
/* ////////////////////////////// */
/* #footer
////////////////////////////// */
#footer {
  margin-top: 128px;
  padding: 64px 0 32px 0;
  background-color: #2e308b;
  color: var(--backC);
}
.footerWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}
#footer .coName {
  font-size: 20px;
}
.coInfoWrap {
  text-align: center;
}
.footerLogo {
  width: 100px;
  height: 100px;
  background: url(../img/footer_logo.png) center center no-repeat;
  background-size: contain;
}
/* 後で削除 <s> */
.copyLightWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}
.copyLightWrap a {
  color: #fffc54;
}
.copyLightWrap a:hover {
  opacity: 0.7;
}
/* 後で削除 <e> */
/* 20250930 <s>
@media screen and (max-width: 768px) {
 20250930 <e> */
@media screen and (max-width: 608px) {
  #footer .coName {
    font-size: 18px;
  }
}
