@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 400;
}

body {
  color: #000;
  background-color: #F5F5F2;
}

h1 {
  font-family: "";
  font-weight: 600;
  font-size: clamp(62px, 8.0729166667vw, 80px);
}

h2 {
  font-family: "";
  font-weight: 600;
  font-size: clamp(40px, 5.2083333333vw, 60px);
}

h3 {
  font-family: "";
  font-weight: 600;
  font-size: 32px;
}

h4 {
  font-family: "";
  font-weight: 600;
  font-size: 24px;
}

p {
  font-family: "";
  font-weight: 400;
  font-size: 16px;
}

main {
  margin-top: 100px;
}

@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.9416195857vw;
  }
}
@media (max-width: 1062px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header-title {
  color: #0F4EA2;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
  padding: 12px;
  background-color: #EAE9E7;
  border-radius: 50px;
}

@media screen and (max-width: 768px) {
  .nav-menu:last-child {
    margin-top: 12px;
  }
}

.nav-menu:last-child a {
  color: #fff;
  padding: 24px;
  background-color: #F07628;
}

.nav-menus {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .nav-menus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .nav-wrapper {
    width: 120vw;
    height: 120vh;
    position: fixed;
    top: 0;
    left: 120%;
    z-index: 11;
    background-color: #F5F5F2;
    transition: 0.5s;
  }
}

.nav-wrapper.active {
  border-radius: 0;
  top: 0%;
  left: -10%;
}

.hamburger-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 12;
  }
}

.hamburger {
  width: 50px;
  height: 50px;
  background-color: #EAE9E7;
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition: 0.5s;
}

.hamburger span:nth-child(1) {
  top: 25%;
  left: 25%;
}

.hamburger span:nth-child(2) {
  top: 50%;
  left: 25%;
}

.hamburger span:nth-child(3) {
  top: 75%;
  left: 25%;
}

.hamburger.active {
  background-color: initial;
}

.hamburger.active span {
  background-color: #000;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

/* 通常時のヘッダー */
/* スクロール後の背景 */
footer {
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F07628;
  padding: 48px 40px;
  border-radius: 28px;
}

.footer-flex-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 52px;
}

.flex-list {
  width: clamp(340px, 44.2708333333vw, 445px);
  background-color: #fff;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
}
@media screen and (max-width: 768px) {
  .flex-list {
    padding: 32px 20px;
  }
}

footer .flex-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
}

footer .address {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #0F4EA2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
}

footer .small-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  color: #000;
  width: 111px;
  background-color: #F5F5F2;
  border-radius: 28px;
}

footer .address:nth-of-type(2) {
  margin-top: 20px;
}

footer .footer-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 24px;
  color: #fff;
}

.inner {
  max-width: 1062px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.page-inner {
  max-width: 1240px;
  margin: 100px auto 0;
  padding: 50px 20px 0;
}

.page-pankuzu {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.pankuzu-text, .pankuzu-yazirusi {
  font-size: 14px;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  color: #000;
}

.pankuzu-yazirusi {
  font-size: 12px;
}

.page-title {
  color: #000;
  font-size: 54px;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .page-title {
    text-align: center;
  }
}

section {
  margin-top: 100px;
  margin-bottom: 80px;
}

.title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 64px;
  letter-spacing: 4px;
  color: #0F4EA2;
}

.title-small {
  display: block;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 64px;
  letter-spacing: 4px;
  color: #000;
}

.page-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 43px;
}
@media screen and (max-width: 768px) {
  .page-tab {
    justify-content: center;
  }
}

.tab-btn {
  width: 120px;
  height: 50px;
  border: 1px solid #EAE9E7;
  border-radius: 50px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.tab-btn:hover {
  background: #0F4EA2;
  color: #fff;
}

.tab-btn.active {
  background: #0F4EA2;
  color: #fff;
}

/* ページネーション全体の配置 */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: sans-serif;
  margin: 40px 0;
}

/* リストのスタイルをリセット */
.pagination-list {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

/* ボタン共通スタイル（前へ/次へ、および数字ボタン） */
.pagination-container button {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #0F4EA2;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn {
  color: #F5F5F2;
}

/* ホバー時のスタイル */
.pagination-container button:hover:not(:disabled) {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}

/* アクティブ（現在選択中）のページ番号 */
.pagination-container button.active {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* 非活性（disabled）時のスタイル */
.pagination-container button:disabled {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

.btn-block {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.blue-btn a {
  background-color: #0F4EA2;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 66px 16px 28px;
  border-radius: 28px;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  position: relative;
}

.blue-btn a::before {
  display: flex;
  content: "";
  background-image: url(../img/yazirusi.png);
  background-position: center;
  background-size: cover;
  width: 11px;
  height: 8px;
  position: absolute;
  right: 30px;
  transition: 0.5s;
}

.blue-btn:hover a::before {
  right: 25px;
}

.blue-btn a img {
  display: block;
  width: 15px;
  height: 11px;
}

.fv-inner {
  max-width: 1294px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv-inner {
    position: initial;
  }
}

.fv-title {
  position: absolute;
  top: 128px;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 29px;
}
@media screen and (max-width: 768px) {
  .fv-title {
    position: initial;
    gap: 0;
  }
}

.fv-title .title-parts {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 64px;
  letter-spacing: 4px;
  background-color: #F5F5F2;
  padding: 10px 12px;
  border-radius: 28px 28px 28px 28px;
  width: 306px;
  text-align: end;
}
@media screen and (max-width: 768px) {
  .fv-title .title-parts {
    text-align: initial;
    font-size: 36px;
  }
}

.fv-title .title-parts:nth-child(2) {
  width: 384px;
}
@media screen and (max-width: 768px) {
  .fv-title .title-parts:nth-child(2) {
    width: 100%;
  }
}

.fv-img {
  position: relative;
  overflow: hidden;
}

.fv-img .fv-slide {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 3s ease;
}

.fv-img .fv-slide:first-child {
  position: relative;
}

.fv-img .fv-slide.is-active {
  opacity: 1;
}

.about .about-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 99px;
}

.about-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 74px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .about-cards {
    justify-content: center;
  }
}

.about-card {
  width: 285px;
}

.about-card-img {
  width: 23px;
  margin-left: 14px;
}

.about-card-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
  color: #0F4EA2;
  margin-top: 30px;
}

.about-card-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  margin-top: 10px;
}

.worries-inner {
  background-color: #fff;
  padding: 40px;
}

.worries .worries-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #0F4EA2;
}

.worries .worries-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 50px;
}

.worries-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 56px 42px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .worries-cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.worries-card {
  width: 285px;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}

.worries .card-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  height: 110px;
}

.worries .card-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 16px;
}

.job-search .job-search-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  color: #0F4EA2;
}

.job-search .job-search-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 56px;
}

.job-search-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 37px;
  margin-top: 52px;
}

.job-search-card {
  width: 316px;
  background-color: #fff;
  padding: 22px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 28px;
}

.job-search .card-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  margin-top: 16px;
}

.job-search .card-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 16px;
}

.introduction {
  background-color: #fff;
  padding: 92px 0;
}

.introduction-lists {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 53px;
  margin-top: 83px;
}
@media screen and (max-width: 768px) {
  .introduction-lists {
    justify-content: center;
  }
}

.introduction-list {
  width: 305px;
}

.introduction-list-img {
  position: relative;
}

.occupation {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0px;
  background-color: #fff;
  border-radius: 0px 40px 40px 0px;
  padding: 10px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.introduction-list-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  margin-top: 20px;
}

.introduction-list-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 10px;
}

.introduction .introduction-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 40px;
}

.introduction .introduction-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 37px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .introduction .introduction-cards {
    justify-content: center;
  }
}

.introduction .introduction-card {
  width: 316px;
  padding: 20px 40px;
  background-color: #F5F5F2;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.introduction .card-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 16px;
}

.introduction .card-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 16px;
}

.message-flex-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .message-flex-box {
    flex-direction: column-reverse;
  }
}

.message-flex-box .text-box {
  flex: 1.5;
}

.message-flex-box .text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
}

.representative {
  display: flex;
  flex-direction: column;
  align-items: end;
  flex: 1;
}

.representative .representative-img {
  box-shadow: 10px 10px 0 #0F4EA2;
  border-radius: 28px;
}

.representative .union-name {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 30px;
}

.representative .representative-name {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0px;
  margin-top: 20px;
}

.consultation-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 84px;
}

.consultation-text:nth-of-type(2) {
  margin-top: 36px;
}

.consultation-flex-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .consultation-flex-box {
    flex-direction: column;
  }
}

.consultation-list {
  background-color: #fff;
  border-radius: 28px;
  padding: 24px 40px;
  width: 312px;
  height: 396px;
}

.fast-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  height: 120px;
}

.consultation .number {
  display: flex;
  flex-direction: column;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #0F4EA2;
}

.consultation .number-step {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #000;
}

.consultation .list-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #0F4EA2;
}

.consultation .list-text {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
}

.list-text:nth-of-type(2) {
  margin-top: 30px;
}

.consultation .list-name {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-top: 12px;
}

.consultation .blue-yazirusi {
  width: 17px;
  height: 12px;
}
@media screen and (max-width: 768px) {
  .consultation .blue-yazirusi {
    transform: rotate(90deg);
  }
}

.news-list-wrapper {
  margin-top: 0;
}

.news-list-wrapper .title {
  font-size: 36px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news-list-wrapper .title {
    font-size: 28px;
    text-align: center;
  }
}

.date-number {
  font-size: 22px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .date-number {
    display: block;
    margin-top: 10px;
    font-size: 18px;
  }
}

.news-lists {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.news-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border-bottom: 1px solid #EAE9E7;
}
@media screen and (max-width: 768px) {
  .news-list {
    flex-direction: column;
    align-items: flex-start;
  }
}

.news-list:last-child {
  border-bottom: none;
}

.day {
  color: #0F4EA2;
  font-size: 16px;
}

.category {
  width: 90px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  margin-left: 20px;
}

.zyuyou {
  background: #F07628;
}

.kyuzin {
  background: #0F4EA2;
}

.osirase {
  background: #EAE9E7;
}

.text {
  font-size: 16px;
}

.company-lists {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.company-list a {
  display: block;
  width: 220px;
  padding: 10px;
  box-shadow: 0 0 5px #F5F5F2;
  border-radius: 10px;
}

.company-list .list-title {
  font-size: 24px;
}

.company-list .category {
  color: #fff;
  font-size: 16px;
  background-color: #F07628;
}

.single-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 64px;
  letter-spacing: 4px;
}

.contact-form-box {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
  font-family: sans-serif;
  color: #333;
}
@media screen and (max-width: 768px) {
  .contact-form-box {
    padding: 20px 15px;
  }
}
.contact-form-box .contact-form-lead {
  text-align: center;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.contact-form-box .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact-form-box .contact-item {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.contact-form-box .contact-item .contact-label-area {
  width: 180px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .contact-form-box .contact-item .contact-label-area {
    width: 100%;
    margin-bottom: 6px;
    padding-top: 0;
  }
}
.contact-form-box .contact-item .contact-label-area .contact-label {
  font-size: 0.95rem;
  font-weight: 500;
  margin-right: 10px;
}
.contact-form-box .contact-item .contact-label-area .required {
  background-color: #e65c00;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}
.contact-form-box .contact-item .contact-input-area {
  flex: 1;
  width: 100%;
}
.contact-form-box .contact-item .contact-input-area input[type=text],
.contact-form-box .contact-item .contact-input-area input[type=email],
.contact-form-box .contact-item .contact-input-area input[type=tel],
.contact-form-box .contact-item .contact-input-area select,
.contact-form-box .contact-item .contact-input-area textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.contact-form-box .contact-item .contact-input-area input[type=text]:focus,
.contact-form-box .contact-item .contact-input-area input[type=email]:focus,
.contact-form-box .contact-item .contact-input-area input[type=tel]:focus,
.contact-form-box .contact-item .contact-input-area select:focus,
.contact-form-box .contact-item .contact-input-area textarea:focus {
  outline: none;
  border-color: #e65c00;
}
.contact-form-box .contact-item .contact-input-area input[type=text]::-moz-placeholder, .contact-form-box .contact-item .contact-input-area input[type=email]::-moz-placeholder, .contact-form-box .contact-item .contact-input-area input[type=tel]::-moz-placeholder, .contact-form-box .contact-item .contact-input-area select::-moz-placeholder, .contact-form-box .contact-item .contact-input-area textarea::-moz-placeholder {
  color: #aaa;
}
.contact-form-box .contact-item .contact-input-area input[type=text]::placeholder,
.contact-form-box .contact-item .contact-input-area input[type=email]::placeholder,
.contact-form-box .contact-item .contact-input-area input[type=tel]::placeholder,
.contact-form-box .contact-item .contact-input-area select::placeholder,
.contact-form-box .contact-item .contact-input-area textarea::placeholder {
  color: #aaa;
}
.contact-form-box .contact-item .contact-input-area select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 30px;
  cursor: pointer;
}
.contact-form-box .contact-item .contact-input-area textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-box .contact-item .contact-input-area.radio-group {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 10px;
}
.contact-form-box .contact-item .contact-input-area.radio-group span.wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-right: 20px;
}
.contact-form-box .contact-item .contact-input-area.radio-group span.wpcf7-list-item input[type=radio] {
  accent-color: #0044cc;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact-form-box .contact-privacy {
  text-align: center;
  margin: 30px 0 24px;
  font-size: 0.95rem;
}
.contact-form-box .contact-privacy span.wpcf7-list-item {
  margin: 0 6px 0 0;
}
.contact-form-box .contact-privacy span.wpcf7-list-item input[type=checkbox] {
  accent-color: #0044cc;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  cursor: pointer;
}
.contact-form-box .contact-privacy a {
  color: #0044cc;
  text-decoration: underline;
}
.contact-form-box .contact-privacy a:hover {
  opacity: 0.8;
}
.contact-form-box .contact-submit-btn {
  text-align: center;
}
.contact-form-box .contact-submit-btn input[type=submit] {
  background-color: #ff6624;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 16px 0;
  width: 100%;
  max-width: 400px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 102, 36, 0.3);
  transition: background-color 0.2s, transform 0.1s;
}
.contact-form-box .contact-submit-btn input[type=submit]:hover {
  background-color: #e05518;
}
.contact-form-box .contact-submit-btn input[type=submit]:active {
  transform: translateY(1px);
}

.contact-page-content .contact-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 64px;
  letter-spacing: 4px;
}

.coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 197px;
}

.coming-title {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 64px;
  letter-spacing: 4px;
  text-align: center;
}

.coming a {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 64px;
  letter-spacing: 4px;
  text-align: center;
  border-bottom: 1px solid #000;
}

/* =========================================================
   APPLY section only
   他ページへ移植しやすいよう、APPLY専用クラスにスコープしています。
   ========================================================= */
#apply,
#applyPrivacyModal {
  --apply-primary: #2c5aa0;
  --apply-primary-dark: #1e3f66;
  --apply-accent: #ff8c42;
  --apply-fg: #333333;
  --apply-muted: #777777;
  --apply-border: #e0e0e0;
  --apply-card-bg: #f5f7fa;
  --apply-section-bg: #f0f4fa;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--apply-fg);
  line-height: 1.7;
}

#apply *,
#apply *::before,
#apply *::after,
#applyPrivacyModal *,
#applyPrivacyModal *::before,
#applyPrivacyModal *::after {
  box-sizing: border-box;
}

#apply h2,
#apply h3,
#apply p,
#applyPrivacyModal h2,
#applyPrivacyModal h3,
#applyPrivacyModal p,
#applyPrivacyModal ul {
  margin: 0;
}

#apply {
  background: var(--apply-section-bg);
  padding: 5rem 0;
}

#apply .apply-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#apply .apply-section-header {
  margin-bottom: 3rem;
}

#apply .apply-section-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 140, 66, 0.1);
  color: var(--apply-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

#apply .apply-section-title {
  color: var(--apply-primary-dark);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.35;
}

#apply .apply-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

#apply .apply-info h3 {
  margin-bottom: 1rem;
  color: var(--apply-primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

#apply .apply-info p {
  margin-bottom: 1.5rem;
  color: var(--apply-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

#apply .apply-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--apply-primary);
  font-size: 0.88rem;
}

#apply .apply-contact-item span {
  color: var(--apply-fg);
}

#apply .apply-contact-item a {
  color: var(--apply-primary);
  font-weight: 700;
  text-decoration: none;
}

#apply .apply-contact-item a:hover {
  text-decoration: underline;
}

#apply .apply-info .apply-hours {
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: var(--apply-muted);
  font-size: 0.82rem;
}

#apply .apply-form-card {
  padding: 2rem 2rem 2.5rem;
  border: 1px solid var(--apply-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(44, 90, 160, 0.07);
}

#apply .apply-form-card > h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--apply-section-bg);
  color: var(--apply-primary-dark);
  font-size: 1rem;
  font-weight: 700;
}

#apply .apply-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#apply .apply-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

#apply .apply-form-group.apply-full {
  grid-column: 1/-1;
}

#apply .apply-form-group[hidden] {
  display: none !important;
}

#apply .apply-form-group label {
  color: var(--apply-primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

#apply .apply-req {
  margin-left: 0.2rem;
  color: var(--apply-accent);
}

#apply .apply-field-note {
  color: var(--apply-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

#apply .apply-form-group input,
#apply .apply-form-group select,
#apply .apply-form-group textarea {
  width: 100%;
  margin: 0;
  padding: 0.7rem 1rem;
  border: 1px solid var(--apply-border);
  border-radius: 8px;
  background: #fff;
  color: var(--apply-fg);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#apply .apply-form-group input:focus,
#apply .apply-form-group select:focus,
#apply .apply-form-group textarea:focus {
  outline: none;
  border-color: var(--apply-primary);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.12);
}

#apply .apply-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

#apply .apply-form-error {
  color: #c0392b;
  font-size: 0.8rem;
}

#apply .apply-privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  row-gap: 0.35rem;
  align-items: start;
  padding: 0.75rem 1rem;
  border: 1px solid var(--apply-border);
  border-radius: 8px;
  background: var(--apply-card-bg);
}

#apply .apply-privacy-check > input[type=checkbox] {
  width: auto;
  margin-top: 0.25rem;
  padding: 0;
  flex-shrink: 0;
}

#apply .apply-privacy-check > label {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
}

#apply .apply-privacy-error {
  grid-column: 1/-1;
}

#apply .apply-privacy-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--apply-primary);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

#apply ._formrun_gotcha {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#apply .apply-form-submit-wrap {
  margin-top: 1.5rem;
  text-align: center;
}

#apply .apply-submit {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: 0;
  border-radius: 6px;
  background: var(--apply-accent);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

#apply .apply-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

#apply .apply-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

#apply .apply-form-note {
  margin-top: 0.75rem;
  color: var(--apply-muted);
  font-size: 0.75rem;
  text-align: center;
}

/* Privacy modal */
#applyPrivacyModal.apply-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.55);
}

#applyPrivacyModal.apply-modal-overlay.is-open {
  display: flex;
}

#applyPrivacyModal .apply-modal-box {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem 2rem 1.5rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

#applyPrivacyModal .apply-modal-box h2 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--apply-section-bg);
  color: var(--apply-primary-dark);
  font-size: 1.1rem;
}

#applyPrivacyModal .apply-modal-box h3 {
  margin: 1.2rem 0 0.4rem;
  color: var(--apply-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

#applyPrivacyModal .apply-modal-box p,
#applyPrivacyModal .apply-modal-box li {
  color: #444;
  font-size: 0.85rem;
  line-height: 1.8;
}

#applyPrivacyModal .apply-modal-box ul {
  padding-left: 1.2rem;
}

#applyPrivacyModal .apply-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--apply-border);
  border-radius: 50%;
  background: var(--apply-card-bg);
  color: var(--apply-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

#applyPrivacyModal .apply-modal-close:hover {
  background: var(--apply-border);
}

#applyPrivacyModal .apply-modal-date {
  margin-top: 1.5rem;
  color: var(--apply-muted);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  #apply .apply-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  #apply {
    padding: 3.5rem 0;
  }
  #apply .apply-form-grid {
    grid-template-columns: 1fr;
  }
  #apply .apply-form-card {
    padding: 1.5rem 1.25rem 2rem;
  }
  #applyPrivacyModal .apply-modal-box {
    padding: 1.75rem 1.25rem 1.25rem;
  }
}
/* =========================================================
   THANKS section only
   リセットCSS・共通CSSは含めていません。
   ========================================================= */
#thanks {
  --thanks-primary: #2c5aa0;
  --thanks-primary-dark: #1e3f66;
  --thanks-fg: #333333;
  --thanks-muted: #777777;
  --thanks-border: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 5rem 1.5rem;
  color: var(--thanks-fg);
  background: linear-gradient(160deg, rgba(28, 62, 130, 0.06) 0%, rgba(255, 140, 66, 0.06) 100%), #fff;
  line-height: 1.8;
}

#thanks .thanks-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 520px;
  padding: 3rem 2.25rem 2.5rem;
  border: 1px solid var(--thanks-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(44, 90, 160, 0.1);
  text-align: center;
}

#thanks .thanks-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  text-decoration: none;
}

#thanks .thanks-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--thanks-primary);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

#thanks .thanks-logo-text {
  text-align: left;
}

#thanks .thanks-logo-name,
#thanks .thanks-logo-sub {
  display: block;
}

#thanks .thanks-logo-name {
  color: var(--thanks-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

#thanks .thanks-logo-sub {
  color: var(--thanks-muted);
  font-size: 0.68rem;
}

#thanks .thanks-check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
}

#thanks .thanks-check-circle svg {
  width: 40px;
  height: 40px;
  color: #2e7d32;
}

#thanks .thanks-title {
  margin: 0 0 1rem;
  color: var(--thanks-primary-dark);
  font-size: 1.5rem;
  line-height: 1.5;
}

#thanks .thanks-text {
  margin: 0 0 0.6rem;
  color: var(--thanks-fg);
  font-size: 0.92rem;
}

#thanks .thanks-muted {
  color: var(--thanks-muted);
  font-size: 0.85rem;
}

#thanks .thanks-divider {
  height: 1px;
  margin: 1.75rem 0;
  background: var(--thanks-border);
}

#thanks .thanks-btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  background: var(--thanks-primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

#thanks .thanks-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

#thanks .thanks-redirect-note {
  margin: 1.25rem 0 0;
  color: var(--thanks-muted);
  font-size: 0.8rem;
}

#thanks .thanks-redirect-note strong {
  color: var(--thanks-primary);
  font-weight: 700;
}

#thanks .thanks-contact-line {
  margin: 1.5rem 0 0;
  color: var(--thanks-muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

#thanks .thanks-contact-line a {
  color: var(--thanks-primary);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 640px) {
  #thanks {
    min-height: 60vh;
    padding: 3.5rem 1rem;
  }
  #thanks .thanks-card {
    padding: 2.5rem 1.25rem 2rem;
  }
}
.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

.color-blue {
  color: #0F4EA2;
}/*# sourceMappingURL=style.css.map */