@charset "UTF-8";

:root {
/*-------------------------
  色
-------------------------*/
  --main-blue: #2464bc;
  --yellow: #ffdc14;
  --accent-red: #c60018;
  --accent-red-hover: #dd0620;

/*-------------------------
  フォント
-------------------------*/
  --font-sub:
    "Zen Kaku Gothic New",
    "Noto Sans JP",
    sans-serif;
}

/*-------------------------
  全体にかかる設定
-------------------------*/
html {
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  padding: 0 15px 40px 15px;
}

h1 {
  margin: 3rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 1.16rem + 3.58vw, 3.4rem); 
  font-weight: 900;
  text-align: center;
  font-optical-sizing: auto;
}

h2 {
  margin: 3rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.8rem);
  font-weight: 900;
  font-optical-sizing: auto;
}

h3 {
  margin: 3rem 0;
  font-size: 1.4rem;
}

table {
  margin: 0;
  width: 100%;
}

th, td {
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ccc;
}

th {
  width: 25%;
}

td {
  padding-left: 15px;
}

/*-------------------------
  ヘッダー
-------------------------*/
header {
  min-height: clamp(80px, 12vw, 100px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

header .container div:first-child {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}

header .container div:first-child img {
  width: clamp(120px, 25vw, 200px);
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.4rem;
  margin-right: 0.7rem;
}
header .container div:first-child a {
  color: #333;
}

header .contact_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-red);
  color: #fff !important;
  padding: 0.6em 1.5em;
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

header .contact_btn a:hover {
  background-color: var(--accent-red-hover);
}

/*-------------------------
  フッター
-------------------------*/
footer {
  margin: 0 auto -4rem auto;
  width: fit-content;
}

footer .container {
  margin: 0 auto 2rem auto;
  width: fit-content;
}

.footer_content {
  align-items: center;
  padding: 1rem 0;
}

.footer_content img {
  margin: 0 auto 1rem auto;
  max-width: 200px;
}

/*-------------------------
  リンク色
-------------------------*/
a { text-decoration: none; }
a:link { color: #36f; }
a:visited { color: #69f; }
a:hover { color: #f30; }
a:active { color: #fc0; }

.black_link a:link { color: #333; }
.black_link a:visited { color: #666; }
.black_link a:hover { color: #36f; }
.black_link a:active { color: #f30; }

.white_link a:link, .white_link a:visited { color: #fff; }
.white_link a:hover { color: #fc0; }
.white_link a:active { color: #f30; }

/*-------------------------
  文字
-------------------------*/
.site_title {
  display: block;
  margin: 0 0;
  font-size: clamp(0.8rem, 0.26rem + 1vw, 1.4rem);
  text-align: center;
}
.lead { font-size: 1.6rem; }
.text_center { text-align: center; }
.text_right { text-align: right; }

/*-------------------------
  ボタン
-------------------------*/
.btn {
  display: block;
  position: relative;
  margin: 2rem auto !important;
  padding: 20px 45px 20px 25px;
  font-size: clamp(1rem, 0.76rem + 1vw, 1.4rem);
  text-decoration: none;
  color: #fff !important;
  background: var(--main-blue);
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.btn::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
.btn:hover::before { right: 25px; }
.btn:hover { background: #1d6dda; }

.form_btn {
  position: relative;
  margin: 4rem auto 2rem auto;
  padding: 20px 35px;
  max-width: 280px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  background: var(--main-blue);
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}
.form_btn:hover { background: #1d6dda; }

.btn02 {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: .9em 2em;
  font-size: 1.2rem;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
}
.btn02::after {
  content: '';
  position: absolute;
  right: 30px;
  top: calc(50% - 2.5px);
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}
.btn02:link, .btn02:visited { color: #000; }
.btn02:hover { color: #999; }

/*-------------------------
  フォーム
-------------------------*/
strong {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FF0000;
  font-optical-sizing: auto;
}

.form_box .tit {
  padding-top: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
}

.form_element {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding: 15px;
  width: 100%;
  font-size: 1rem;
  background-color: #f4f4f4;
  border: none;
  border-radius: 5px;
}
.radio_box { padding: 10px 0 20px 0; }
.radioItem {
  display: flex;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.radioItem:not(:last-of-type) { margin-bottom: 16px; }

.radioButton {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 9999px;
  cursor: pointer;
  appearance: none;
}
.radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background-color: var(--main-blue);
  border-radius: 9999px;
}
.form_element_radio { margin-top: 0.5rem; }
.p-postal-code { width: fit-content; }

/*-------------------------
  動画
-------------------------*/
.youtube iframe {
  display: block;
  margin: 0 auto 2.5rem auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 16 / 9;
}

/*-------------------------
  Flex & Tabs
-------------------------*/
.flex_container {
  display: flex;
  gap: 2rem 5%;
  margin-bottom: 4rem;
}
.flex_item {
  flex: 1 1 auto;
  width: 50%;
}

.tab_content { display: flex; flex-wrap: wrap; }
.tab_content>label {
  flex: 1 1;
  order: -1;
  margin: 0 10px;
  padding: 0.6rem 1rem;
  min-width: 70px;
  text-align: center;
  color: #fff;
  background-color: #000;
  opacity: 0.5;
  cursor: pointer;
}
.tab_content>label:hover { opacity: 0.8; }
.tab_content input { display: none; }
.tab_content>div {
  display: none;
  padding: 1.5rem 2rem;
  width: 100%;
  background-color: #fff;
  border: 1px solid #000;
}
.tab_content label:has(:checked) { opacity: 1; }
.tab_content label:has(:checked)+div { display: block; }

/*-------------------------
  内部ページ
-------------------------*/
.syoukai_text_area {
  margin-top: 0.3rem;
  padding: clamp(2rem, 1vw, 4rem) 0;
  background-image: url(images/main_visual_bg01.webp);
  background-position: left top;
  background-size: clamp(50%, 100%, 60%);
  background-repeat: no-repeat;
}

.syoukai_text div { padding: 0 1rem 1rem 1rem; }
.syoukai_text h1 {
  margin-top: -1rem;
  margin-bottom: 1rem;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(8vw, 3rem);
  font-weight: 900;
  text-align: center;
}
.syoukai_text span {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.3rem 1.5rem 0.6rem 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
.syoukai_text div:first-child strong {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--main-blue);
}
.syoukai_text div:last-child strong { color: #ff6600; }

.photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: -3rem;
}
.photo .josei {
  position: relative;
  margin: -1.55rem 0 0 0;
  font-family: var(--font-sub);
}
.photo .josei .fukidashi {
  display: inline-block;
  position: absolute;
  left: clamp(1vw, 4vw, 23vw);
  padding: clamp(0.2rem, 1vw, 0.8rem);
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  font-weight: bold;
  color: #fff;
  background-color: #2e94c7;
  border: 3px solid #2e94c7;
}
.photo .josei .fukidashi:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  z-index: 2;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #2e94c7;
}

.gray_bg {
  padding: clamp(1rem, 2vw, 1rem) 0 0.1rem 0;
  background-color: #bcf0ff;
}
.gray_bg.seizo_bg { padding: clamp(3rem, 5vw, 7rem) 0 3rem 0; }
.gyoumu_seizo_bg {
  padding-bottom: clamp(18vw, 5rem, 10rem) !important;
  background-image: url(seizo/images/sagyou.webp);
  background-position: center bottom;
  background-size: clamp(80%, 80%, 500px);
  background-repeat: no-repeat;
}
.gray_bg .staff_schedule {
  padding: 2rem;
  background-color: #fff;
  border-radius: 30px;
}

.seizo_bg, .instructor_bg {
  margin-top: 0;
  padding-top: 4rem;
  background-image: url(images/schedule_bg.webp);
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.seizo_bg h2, .instructor_bg h2, .gray_bg .staff_schedule h2 {
  position: relative;
  margin: 0 0 3rem 0;
  padding-bottom: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.8rem);
  font-weight: 900;
  text-align: center;
}
.seizo_bg h2:before, .instructor_bg h2:before, .gray_bg .staff_schedule h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  border-bottom: 15px dotted var(--yellow);
  transform: translateX(-50%);
}
.gyoumu_instructor_bg { 
padding-bottom: 1rem ; 
background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0) 35%
    ),
    linear-gradient(
      135deg,
      #e8f8ff 0%,
      #c3e7ff 40%,
      #8fd6ff 75%,
      #dff6ff 100%
    );
}

.timeline {
  margin: clamp(3rem, 5vw, 6rem) auto 2rem auto;
  width: clamp(70%, 98%, 98%);
}
.event {
  position: relative;
  padding-bottom: 50px;
}
.event::before {
  content: "";
  position: absolute;
  left: calc(0 / 2);
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
  transform: translateX(-50%);
}

.event .time { position: relative; }
.event .time .hhmm {
  padding-left: 2rem;
  padding-bottom: clamp(1rem, 1.5vw, 1.8rem);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 1rem + 2.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  text-align: left;
  color: var(--main-blue);
  border-bottom: 2px solid #dedede;
}
.event .time .hhmm span {
  font-size: clamp(1.2rem, 0.96rem + 1vw, 1.6rem);
}
.event .time::after {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border: 8px solid var(--yellow);
  border-radius: 50%;
  transform: translateX(-50%);
}

.event .content .title {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 2rem;
  font-size: clamp(1.2rem, 0.84rem + 1.5vw, 1.8rem);
  font-weight: bold;
}
.event .content p {
  margin-bottom: 0;
  padding-left: 2rem;
  line-height: clamp(1.4, 1.6vw, 1.8);
}

.shift_rei {
  margin-top: 3rem;
}
.shift_rei div {
  margin-bottom: 1rem;
  padding: 0 1rem 0 1rem;
  background-color: #fff;
  border: 2px solid #dedede;
}
.shift_rei p { margin-bottom: 1rem; }
.shift_rei h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 0;
  font-size: clamp(1rem, 0.76rem + 1vw, 1.4rem);
  font-weight: bold;
  color: var(--main-blue);
}
.staff_schedule .small { font-size: 0.9rem; }

.interview {
  margin-top: 3rem;
  color: #333;
}
.interview .instructor {
  margin: 0 auto;
  width: 260px;
}
.interview .profile {
  padding: 1rem;
  font-size: 1.1rem;
}
.interview .profile p { margin: 0; }

.interview h2 {
  margin: -4rem auto 0 auto;
  padding: 5rem 0;
  width: 50%;
  font-size: clamp(1.4rem, 1.16rem + 1vw, 1.8rem);
  text-align: center;
  color: #333;
  background-image: url(images/diamond.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.interview .catch {
  font-family: var(--font-sub);
  font-size: 1.1rem;
}
.interview .interview_box {
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.interview .interview_box h3 {
  margin: 0;
  padding: 18px 20px 10px;
  font-size: clamp(1.1rem, 0.92rem + 0.75vw, 1.4rem);
  font-weight: bold;
  line-height: 1.6;
}
.interview .interview_box h3 span { color: #fcd542; }
.answer p {
  padding: 0 20px 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.youkou_area { padding: 1rem 0 3rem 0; }
.youkou_area h2 {
  position: relative;
  margin: clamp(1rem, 2vw, 3rem) 0;
  padding-bottom: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.8rem);
  font-weight: 900;
  text-align: center;
}
.youkou_area h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  border-bottom: 15px dotted var(--yellow);
  transform: translateX(-50%);
}

.lightblue_bg {
  padding: clamp(3rem, 4vw, 4rem) 0 1rem 0;
  background-color: #ffd90a;
}
.lightblue_bg h2 {
  position: relative;
  margin: 3rem 0;
  padding-bottom: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.8rem);
  font-weight: 900;
  text-align: center;
}
.lightblue_bg h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  border-bottom: 15px dotted #fff;
  transform: translateX(-50%);
}
.gyoumu {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  width: 100%;
  box-sizing: border-box;
}

.gyoumu div {
  margin: 0 auto;
  width: min(35vw, 220px);
  aspect-ratio: 1 / 1;
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important; 
  font-family: var(--font-sub);
  background-image: linear-gradient(270deg, #009bdc, #2dc1f1);
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
}

.gyoumu div h3 {
  margin: 0;
  padding: 0 10px;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem); 
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  transform: translateY(0); 
}

@media (min-width: 500px) {
  .interview h2 {
    margin-top: -2rem;
    margin-bottom: 2rem;
  }
}

/* 900px以上での調整 */
@media (min-width: 900px) {
  .gyoumu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .gyoumu div {
    width: min(20vw, 220px);
  }
}

.entry_area a {
  display: block;
  position: relative;
  padding: clamp(2rem, 3vw, 4rem) clamp(3rem, 4vw, 4rem) clamp(2rem, 3vw, 4rem) clamp(2rem, 3vw, 4rem);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.04rem + 1.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  color: #fff;
  background-color: var(--accent-red);
  transition: 0.3s ease-in-out;
}
.entry_area a::before {
  content: "";
  position: absolute;
  right: 60px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
.entry_area a:hover { background-color: var(--accent-red-hover); }
.entry_area a:hover::before { right: 50px; }

/*-------------------------
  表示・非表示
-------------------------*/
.disp_pc { display: none; }

@media (min-width: 600px) {
  .disp_pc { display: inline-block; }
  .disp_sp { display: none; }
}

/*-------------------------
  メディアクエリ
-------------------------*/
@media (max-width: 599px) {
  .container {
    padding: 0 10px;
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1200px) {
  .container {
    padding: 0 15px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    margin: 0 auto;
    width: 1200px;
  }
}

/* === MailForm =============== */
.margin_top_60 { margin-top: 60px; }

.formPartsBtn {
  display: inline-block;
  margin: 3rem auto 2rem auto;
  padding: 10px 25px;
  width: auto;
  text-decoration: none;
  color: #fff;
  background: var(--main-blue);
  border: 0 solid;
  border-radius: 3px;
}
.formPartsBtn:hover {
  color: #fff;
  background-color: #1d6dda;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.formPartsSubmit { margin: 2rem 1rem; padding: 1rem 1.5rem; }
.formParts {
  padding: 15px;
  width: 100%;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.formPartsZip {
  padding: 15px;
  width: 30%;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .formPartsZip { width: 100%; }
}

table.formTable th {
  width: 25%;
  white-space: nowrap;
  background-color: #eee;
}
table.formTable tr {
  display: flex;
  flex-wrap: wrap;
}
table.formTable th, table.formTable td {
  flex: 1 1 100%;
  padding: 10px;
  min-height: 2.3rem;
  border: 1px solid #ccc;
}
table.formTable { border: 1px solid #ccc; }
table.formTable tr:last-child :last-child { border: 1px solid #ccc; }

.formPartsBack {
  margin-left: 20px;
  margin-right: 20px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
}

.formPartsBack:hover {
  color: #333;
  background-color: #f1f1f1;
  border: 1px solid #999;
}

/*-------------------------
  PC版
-------------------------*/
@media (min-width: 980px) {
  
  .footer_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0 0 0;
  }
  
  .syoukai_text { display: grid;
    grid-template-columns: 4fr 6fr; }
  .syoukai_text div { padding: 2rem 1rem 0 1rem; }
  .photo { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .seizo_photo { margin-top: 1rem; }

  .timeline { width: 70%; }
  .event {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .event .time .hhmm { text-align: right; }
  .event .time::after { top: 60px; }
  .event .content .title { margin-top: 0; }

  .shift_rei {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .shift_rei div { padding: 0 1.5rem 1rem 1.5rem; }

  .interview {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    gap: 2rem 4rem;
  }
  .interview.seizo_interview {
    width: 800px;
    margin: 3rem auto 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 2rem 0rem;
  }
  .interview.seizo_interview h2 {
    margin-left: -3rem;
    margin-bottom: 0;
  }
  .interview > div:first-child { display: contents; }
  .interview h2 {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
  }
  .interview .catch {
    grid-row: 1;
    grid-column: 2;
    margin: -3rem 0 4rem 0;
    text-align: center;
  }
  .interview .instructor {
    display: block;
    grid-row: 1;
    grid-column: 3;
    width: 300px;
  }
  .interview .profile {
    grid-row: 1;
    grid-column: 2;
    align-self: end;
    padding: 0;
    text-align: center;
  }
  .interview > div:last-child {
    grid-row: 2;
    grid-column: 1 / -1;
  }
  .interview .interview_box { padding: 1rem; }
  .interview .interview_box h3 { padding: 20px 30px; }
  .answer p { padding: 0 30px; }

  .gyoumu {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .gyoumu div {
    margin: 0 auto 0 0;
    padding: 75px 0 0 0;
    background-color: #000;
  }

  table.formTable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  table.formTable tr { display: table-row; }
  
  .btn { max-width: 420px; padding: 20px 55px 20px 35px; }
  
  th, td { padding: 25px 0; }
  th { width: 20%; }
  .form_box {
    display: grid;
    grid-template-columns: 2fr 8fr;
  }

}
