@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: #323232;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
  flex-direction: column;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container-base {
    padding: 0 40px;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.site_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* テキストの裏に回す */
  /* 背景の設定 */
  background-image: image-set(url(../img/common/header_back.png) 1x, url(../img/common/header_back@2x.png) 2x);
  background-size: 100%;
  background-repeat: repeat;
  background-color: #F7F7F7;
  /* 初期状態は透明 */
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.site_header {
  /* メニューが開いたとき、背景レイヤーを不透明にする */
}
.site_header.is-open::before {
  opacity: 1;
}
@media (min-width: 920px) {
  .site_header {
    padding: 40px;
  }
}
.site_header_logo {
  width: 46.4102564103vw;
  width: clamp(181px, 46.4102564103vw, 200px);
  transition: opacity 0.3s ease-out;
}
@media (min-width: 920px) {
  .site_header_logo {
    width: clamp(200px, 18.7142857143vw, 312px);
  }
}
.site_header_logo:hover {
  opacity: 0.6;
}
.site_header_logo_link {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media (min-width: 1200px) {
  .site_header_logo_link {
    flex-direction: row;
    gap: 16px;
    align-items: flex-end;
  }
}
.site_header_logo_img {
  width: 100%;
}
.site_header_logo_img img {
  width: 100%;
}

.global_nav {
  position: relative;
  z-index: 99;
  display: none;
}
@media (max-width: 1026px) {
  .global_nav {
    display: block;
  }
}
.global_nav_toggle {
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: none;
  position: relative;
  z-index: 1001;
  background: #004098;
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
  border-radius: 4px;
  touch-action: manipulation;
}
@media (min-width: 1026px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  display: block;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  width: 20px;
  height: 2px;
  background: #FDD000;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translate(-2px, -4px) rotate(-45deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translate(-2px, 4px) rotate(45deg);
}
@media (max-width: 1026px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: var(--header-height, 100px);
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    transition: all 0.3s ease-out;
    overflow-y: hidden;
    background: rgba(202, 202, 202, 0.6);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
}
@media (max-width: 1026px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
.global_nav_overlay.is-open .global_nav_container {
  transform: translateX(0);
}
@media (max-width: 1026px) {
  .global_nav_container {
    position: relative;
    z-index: 0;
    margin: 0 0 0 auto;
    width: 81%;
    height: 100%;
    background: #004098;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1026px) {
  .global_nav_inner {
    display: flex;
    flex-direction: column;
    min-height: 101%;
    padding: 40px 36px 80px;
  }
  .global_nav_inner > * {
    flex-shrink: 0;
  }
}
@media (max-width: 389px) {
  .global_nav_inner {
    padding: 24px 40px 60px;
  }
}
.global_nav_list {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-bottom: 40px;
}
.global_nav_list_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: opacity 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
.global_nav_list_link_text {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.global_nav_list_link_text.privacy {
  position: relative;
}
.global_nav_list_link_text.privacy::after {
  position: absolute;
  content: "";
  background-image: url(../img/common/link_icon_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 2px;
  right: -14px;
  width: 10px;
  height: 10px;
}
.global_nav .global_nav_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #FFFFFF;
  width: 100%;
}

.menu_sns_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.menu_sns_list_item_link_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu_to_corporate_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 3px;
  padding: 10px;
  border: 1px solid #FFFFFF;
  width: 100%;
}
.menu_to_corporate_text {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}
.menu_to_corporate_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu_address {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 389px) {
  .menu_address {
    font-size: 10px;
  }
}

.layout_wrapper {
  flex: 1;
  /* 空いているスペースをすべて埋める */
  min-width: 0;
  position: relative;
  z-index: 15;
  /* 背景より上 */
  justify-content: center;
  /* 中央寄せ */
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.section_title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
}
.section_title_wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section_title_en {
  color: #004098;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.to_subPage_link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.to_subPage_link_text {
  color: #004098;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: right;
}
.to_subPage_link_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.common_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.common_text .strong {
  font-weight: 700;
}

.text_center {
  text-align: center;
}

.text_justify {
  text-align: justify;
}

.no_link {
  pointer-events: none;
}

.back_top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.back_top_text {
  color: #004098;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.back_top_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry_section {
  background-image: image-set(url(../img/top/entry_back.jpg) 1x, url(../img/top/entry_back@2x.jpg) 2x);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 680px;
}
@media (min-width: 600px) {
  .entry_section {
    background-image: image-set(url(../img/top/entry_back_pc.jpg) 1x, url(../img/top/entry_back_pc@2x.jpg) 2x);
  }
}
.entry_section .entry_main {
  min-height: 680px;
  display: flex;
  align-items: end;
  padding-bottom: 24px;
}

.hidden {
  display: none !important;
}

/*フッターのスタイル*/
.footer_layout_wrapper {
  position: relative;
  z-index: 10;
  /* 背景より上 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 中央寄せ */
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}

.site_footer {
  background: #f2f2f2;
  width: 100%;
  background-image: image-set(url(../img/common/footer_back.png) 1x, url(../img/common/footer_back@2x.png) 2x);
  background-size: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.site_footer_top {
  padding: 40px 45px 24px;
  border-bottom: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 600px) {
  .site_footer_top {
    gap: 48px;
  }
}
.site_footer_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .site_footer_logo {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
  }
}
.site_footer_logo_text {
  color: #004098;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 920px) {
  .site_footer_logo_text {
    padding-bottom: 6px;
  }
}
.site_footer_menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 600px) {
  .site_footer_menu {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}
.site_footer_nav_wrap {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 389px) {
  .site_footer_nav_wrap {
    gap: 40px;
  }
}
.site_footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site_footer_nav_list_item_link {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
.site_footer_nav_list_item_link.privacy {
  position: relative;
}
.site_footer_nav_list_item_link.privacy::after {
  position: absolute;
  content: url(../img/common/link_icon.svg);
  top: 0;
  right: -14px;
  width: 10px;
  height: 10px;
}
.site_footer_sns_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 600px) {
  .site_footer_sns_list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: baseline;
    gap: 16px;
  }
}
.site_footer_sns_list_item_link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site_footer_sns_list_item_link_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site_footer_sns_list_item_link_text {
  display: none;
}
@media (min-width: 600px) {
  .site_footer_sns_list_item_link_text {
    display: block;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
  }
}
.site_footer_bottom {
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (min-width: 600px) {
  .site_footer_bottom {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
  }
}
.site_footer_bottom .to_corporate_and_copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site_footer_bottom .to_corporate_link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #323232;
}
.site_footer_bottom .to_corporate_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site_footer_bottom .to_corporate_text {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}
.site_footer_address {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 600px) {
  .site_footer_address {
    text-align: left;
  }
}

.copyright {
  color: #969696;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
}

/* --- サイドメニュー（PC用） --- */
.sticky_container {
  display: none;
}
@media (min-width: 1026px) {
  .sticky_container {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    /* 画面中央(50%) + 540pxの半分(270px) + 隙間(40px) */
    left: calc(50% + 280px);
    max-width: 231px;
    width: 100%;
    margin-top: 141px;
  }
}
@media (min-width: 1050px) {
  .sticky_container {
    left: calc(50% + 290px);
  }
}
@media (min-width: 1200px) {
  .sticky_container {
    margin-top: 161px;
    left: calc(50% + 310px);
  }
}
@media (min-width: 1920px) {
  .sticky_container {
    margin-top: 327px;
  }
}

@media (min-width: 1026px) {
  .side_menu {
    background: #004098;
    display: flex;
    flex-direction: column;
    position: sticky;
    position: -webkit-sticky;
    top: max(20px, 100vh - 567px - 40px);
    max-height: calc(100vh - 20px - 40px);
    bottom: auto;
    z-index: 100;
    max-width: 231px;
    width: 100%;
    padding: 40px 20px 20px;
    border-radius: 4px;
    overflow: hidden;
    /* ---------------------- */
  }
  .side_menu_link_container {
    margin-top: 40px;
    overflow-y: auto;
    /* ここだけスクロールを許可する */
    min-height: 0;
    height: min(409px, 53.2552083333vh);
  }
  .side_menu_link_container::-webkit-scrollbar {
    width: 0;
    /* バーの横幅（0にすれば完全に消えます） */
  }
  .side_menu_link_list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-bottom: 40px;
  }
  .side_menu_link_list_item .side_menu_link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
  }
  .side_menu_link_list_item .side_menu_link.is-active {
    color: #FDD000 !important;
  }
  .side_menu_link_list_item .side_menu_link.privacy {
    position: relative;
  }
  .side_menu_link_list_item .side_menu_link.privacy::after {
    position: absolute;
    content: "";
    background-image: url(../img/common/link_icon_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 2px;
    right: -14px;
    width: 10px;
    height: 10px;
  }
}
.side_menu_logo {
  max-width: 171px;
  margin: 0 auto;
}
.side_menu_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #FFFFFF;
}

.archive_section {
  padding: 120px 0 80px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .archive_section {
    padding: 80px 0;
  }
}

.news_list {
  margin-top: 24px;
}
.news_list.archive_news_list {
  margin-top: 40px;
}
.news_list_item:last-child .news_list_item_link {
  border-bottom: 1px solid #E3E3E3;
}
.news_list_item_link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid #E3E3E3;
}
.news_list_item_link .news_date {
  color: #969696;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.news_list_item_link .news_title {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: -webkit-box;
  /* 必須 */
  -webkit-box-orient: vertical;
  /* 必須 */
  -webkit-line-clamp: 1;
  /* 行数を制限 */
  overflow: hidden;
  /* はみ出た部分を非表示 */
}

.pagenation {
  margin-top: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.page-numbers {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.page-numbers.current {
  background: #FDD000;
  border-radius: 2px;
  padding: 4px 8px;
}

/* 通常時の色 */
.page-numbers .svg-bg {
  fill: #FDD000;
}

.page-numbers .svg-arrow {
  fill: #004098;
}

/* 無効化（disabled）時の色 */
.page-numbers.disabled .svg-bg {
  fill: #E3E3E3;
}

.page-numbers.disabled .svg-arrow {
  fill: #FFFFFF;
}

.single_section {
  padding: 120px 0 80px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .single_section {
    padding: 80px 0;
  }
}

.news_single_link {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post_contents {
  margin-top: 40px;
}

.post_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  padding-bottom: 16px;
  border-bottom: 1px solid #323232;
}

.post_body {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #323232;
}
.post_body > *:first-child {
  margin-top: 0 !important;
}
.post_body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: justify;
  margin-top: 40px;
}
.post_body h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 40px;
}
.post_body h3 {
  color: #004098;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 40px;
}
.post_body h4 {
  color: #004098;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 40px;
  padding-left: 34px;
  position: relative;
}
.post_body h4::before {
  position: absolute;
  content: "";
  top: 0.8em;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #004098;
}
.post_body a {
  color: #004098;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: justify;
  border-bottom: 1px solid #004098;
}
.post_body img,
.post_body figure {
  margin-top: 40px;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.post_body img:first-child,
.post_body figure:first-child {
  margin-top: 0;
}
.post_body figcaption {
  font-weight: 400;
  margin: 12px auto 0;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
}

.post_pagenation {
  padding-top: 24px;
}
.post_pagenation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 600px) {
  .post_pagenation .nav-links {
    gap: 64px;
  }
}
.post_pagenation .nav-links .page-numbers {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.post_pagenation .nav-links .page-numbers .svg-bg {
  fill: #FDD000;
}
.post_pagenation .nav-links .page-numbers .svg-arrow {
  fill: #004098;
}
.post_pagenation .nav-links .page-numbers.disabled {
  color: #E3E3E3;
  cursor: default;
}
.post_pagenation .nav-links .page-numbers.disabled .svg-bg {
  fill: #FFFFFF;
}
.post_pagenation .nav-links .page-numbers.disabled .svg-arrow {
  fill: #E3E3E3;
}
.post_pagenation .nav-links .page-numbers.list {
  padding: 0 10px;
}

.subPage_back_visual {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: image-set(url(../img/common/fixed_back.png) 1x, url(../img/common/fixed_back@2x.png) 2x);
  background-size: 100%;
  background-repeat: repeat;
  background-color: #F7F7F7;
}
@media (min-width: 1024px) {
  .subPage_back_visual {
    min-height: 768px;
  }
}
.subPage_back_visual picture {
  width: 100%;
  height: 100%;
}
.subPage_back_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subPage_back_visual_white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  background: rgba(255, 255, 255, 0.7);
}
.subPage_back_visual_textImg {
  position: absolute;
  top: 110px;
  left: 20px;
  width: clamp(199px, 51.0256410256vw, 280px);
  z-index: 5;
}
@media (min-width: 920px) {
  .subPage_back_visual_textImg {
    top: 16.796875%;
    left: 2.8571428571%;
    width: clamp(280px, 24.8571428571vw, 348px);
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_textImg {
    top: 17.3447537473%;
    left: 4.1666666667%;
    width: 26.5104166667vw;
  }
}
.subPage_back_visual_img {
  position: absolute;
  position: absolute;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}
.subPage_back_visual_img.num_1 {
  animation-delay: 0.2s;
}
.subPage_back_visual_img.num_2 {
  animation-delay: 0.4s;
}
.subPage_back_visual_img.num_3 {
  animation-delay: 0.6s;
}
.subPage_back_visual_img.num_4 {
  animation-delay: 0.8s;
}
.subPage_back_visual_img.num_5 {
  animation-delay: 1s;
}
.subPage_back_visual_img.num_6 {
  animation-delay: 1.2s;
}
.subPage_back_visual_img.num_7 {
  animation-delay: 1.4s;
}
.subPage_back_visual_img.num_1 {
  top: 42.0616113744%;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 73.0769230769vw);
  z-index: 4;
}
@media (min-width: 1026px) {
  .subPage_back_visual_img.num_1 {
    top: auto;
    bottom: 9.2447916667%;
    width: 49.2857142857vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_img.num_1 {
    top: 21.4132762313%;
    width: 49.4791666667vw;
  }
}
.subPage_back_visual_img.num_2 {
  top: 21.4454976303%;
  left: 0;
  width: min(400px, 47.4358974359vw);
  z-index: 1;
}
@media (min-width: 1026px) {
  .subPage_back_visual_img.num_2 {
    top: -0.78125%;
    left: 25.3571428571%;
    width: 23.9285714286vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_img.num_2 {
    top: -14.0256959315%;
    left: 25.2604166667%;
    width: 24.21875vw;
  }
}
.subPage_back_visual_img.num_3 {
  top: 11.7298578199%;
  right: 0;
  width: min(400px, 47.4358974359vw);
  z-index: 1;
}
@media (min-width: 1026px) {
  .subPage_back_visual_img.num_3 {
    top: -9.5052083333%;
    right: 25.3571428571%;
    width: 23.9285714286vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_img.num_3 {
    top: -23.8758029979%;
    right: 25.2604166667%;
    width: 24.21875vw;
  }
}
.subPage_back_visual_img.num_4 {
  top: 28.672985782%;
  right: 0;
  width: min(400px, 47.4358974359vw);
  z-index: 3;
}
@media (min-width: 1026px) {
  .subPage_back_visual_img.num_4 {
    top: 23.046875%;
    width: 23.9285714286vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_img.num_4 {
    top: 12.8479657388%;
    width: 24.21875vw;
  }
}
.subPage_back_visual_img.num_5 {
  bottom: 17.5355450237%;
  right: 0;
  width: min(300px, 35.8974358974vw);
  z-index: 1;
}
@media (min-width: 1026px) {
  .subPage_back_visual_img.num_5 {
    bottom: 0;
    width: 23.9285714286vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_img.num_5 {
    width: 24.21875vw;
  }
}
.subPage_back_visual_img.num_6 {
  bottom: 0;
  left: 0;
  width: min(500px, 73.8461538462vw);
  z-index: 1;
}
@media (min-width: 1026px) {
  .subPage_back_visual_img.num_6 {
    bottom: 0;
    left: 2.7857142857%;
    width: 34.5714285714vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_img.num_6 {
    left: 4.1666666667%;
    width: 34.5833333333vw;
  }
}
.subPage_back_visual_img.num_7 {
  bottom: 11.6113744076%;
  left: 0;
  width: min(300px, 55.1282051282vw);
  z-index: 2;
}
@media (min-width: 1026px) {
  .subPage_back_visual_img.num_7 {
    bottom: 30.7291666667%;
    width: 23.9285714286vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_img.num_7 {
    bottom: 34.26124197%;
    width: 24.21875vw;
  }
}

.subPage_back_visual_area {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .subPage_back_visual_area {
    min-height: 768px;
  }
}
.subPage_back_visual_area .subPage_back_visual_area_title {
  position: absolute;
  bottom: 25.355450237%;
  left: 8.2051282051%;
  width: 73.8461538462vw;
}
@media (min-width: 1026px) {
  .subPage_back_visual_area .subPage_back_visual_area_title {
    width: 59.3571428571vw;
    bottom: 5.2083333333%;
    left: 16.2857142857%;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_area .subPage_back_visual_area_title {
    bottom: 5.9957173448%;
    left: 15.5208333333%;
    width: 56.3020833333vw;
  }
}
.subPage_back_visual_area .subPage_back_visual_area_title img {
  width: 100%;
}
.subPage_back_visual_area .subPage_back_visual_area_text {
  position: absolute;
}
.subPage_back_visual_area .subPage_back_visual_area_text img {
  width: 100%;
}
.subPage_back_visual_area .subPage_back_visual_area_text.num_1 {
  top: 24.8815165877%;
  right: 12.5641025641%;
  width: 36.9230769231vw;
}
@media (min-width: 1026px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_1 {
    top: 24.7395833333%;
    right: 22.0714285714%;
    width: 18.2857142857vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_1 {
    top: 14.7751605996%;
    right: 22.8645833333%;
    width: 17.5vw;
  }
}
.subPage_back_visual_area .subPage_back_visual_area_text.num_2 {
  top: 40.9952606635%;
  left: 5.1282051282%;
  width: 46.1538461538vw;
}
@media (min-width: 1026px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_2 {
    top: auto;
    bottom: 34.375%;
    left: 18%;
    width: 22.8571428571vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_2 {
    bottom: 38.5438972163%;
    left: 17.6041666667%;
    width: 21.875vw;
  }
}
.subPage_back_visual_area .subPage_back_visual_area_text.num_3 {
  bottom: 41.2322274882%;
  right: 5.1282051282%;
  width: 4.6153846154vw;
}
@media (min-width: 1026px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_3 {
    bottom: 18.4895833333%;
    right: 20.5%;
    width: max(32px, 2.2857142857vw);
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_3 {
    bottom: 22.4839400428%;
    right: 20.46875%;
    width: 2.1875vw;
  }
}
.subPage_back_visual_area .subPage_back_visual_area_text.num_4 {
  bottom: 90px;
  right: 20px;
  width: 23.0769230769vw;
}
@media (min-width: 1026px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_4 {
    bottom: 20px;
    right: 20px;
    width: 12.3571428571vw;
  }
}
@media (min-width: 1920px) {
  .subPage_back_visual_area .subPage_back_visual_area_text.num_4 {
    bottom: 4.2826552463%;
    right: 2.0833333333%;
    width: 11.8229166667vw;
  }
}

.subPage_contents {
  max-width: 540px;
  margin: 0 auto;
}

.subPage_layout_wrapper {
  flex: 1;
  /* 空いているスペースをすべて埋める */
  min-width: 0;
  position: relative;
  z-index: 15;
  /* 背景より上 */
  justify-content: center;
  /* 中央寄せ */
  width: 100%;
  margin: 0 auto;
}

.subPage_chile_section_title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.subPage_chile_section_title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: calc(100% - 10px);
  background-color: #FDD000;
}
.subPage_chile_section_title_wrap {
  padding: 8px 16px;
  border-radius: 4px;
  background: #004098;
  width: 100%;
}

.subPage_section {
  padding: 120px 0 80px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .subPage_section {
    padding: 80px 0;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  width: 100%;
}
.breadcrumb_item:last-child {
  flex-shrink: 1;
  min-width: 0;
}
.breadcrumb_item_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.breadcrumb_item_link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about_mv {
  width: 100%;
  margin-top: 40px;
}

.data_section {
  padding: 64px 0 40px;
}
.data_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  margin: 24px auto 0;
}
@media (min-width: 500px) {
  .data_list {
    gap: 20px;
  }
}
.data_content {
  background-image: image-set(url(../img/about/data_bg.png) 1x, url(../img/about/data_bg@2x.png) 2x);
  background-size: 100%;
  background-repeat: repeat;
  background-color: #F7F7F7;
  padding: 10px 10px 20px;
  position: relative;
}
@media (min-width: 500px) {
  .data_content {
    padding: 20px;
  }
}
.data_content .graph_list {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 8px;
  right: 8px;
}
@media (min-width: 500px) {
  .data_content .graph_list {
    top: 10px;
    right: 10px;
  }
}
.data_content .graph_list_item {
  padding-left: 8px;
  position: relative;
  font-weight: 400;
  font-size: 8px;
  line-height: 1.4;
}
.data_content .graph_list_item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: hsl(33, 100%, 45%);
}
.data_content .graph_list_item.yellow_circle::before {
  background-color: hsl(41, 82%, 64%);
}
.data_content .graph_list_item.liteGreen_circle::before {
  background-color: hsl(90, 61%, 72%);
}
.data_content .graph_list_item.green_circle::before {
  background-color: hsl(133, 34%, 64%);
}
.data_content .graph_list_item.liteBlue_circle::before {
  background-color: hsl(202, 55%, 65%);
}
.data_content .graph_list_item.blue_circle::before {
  background-color: hsl(204, 45%, 50%);
}
.data_content .graph_list_item.purple_circle::before {
  background-color: hsl(266, 51%, 69%);
}
.data_content .data_content_o4_textWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.data_content .data_hobby_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 2px;
  margin-top: 22px;
}
@media (min-width: 500px) {
  .data_content .data_hobby_list {
    gap: 8px;
    margin-top: 12px;
  }
}
.data_content .data_hobby_list_item {
  padding: 4px 8px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #004098;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.4;
}
@media (min-width: 500px) {
  .data_content .data_hobby_list_item {
    padding: 8px 12px;
  }
}
.data_title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
.data_num {
  text-align: center;
  color: #004098;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}
@media (min-width: 390px) {
  .data_num {
    font-size: 32px;
  }
}
.data_jp {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: #323232;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-left: 5px;
}
.data_jp.data_04_text {
  margin-left: 0;
  margin-top: 4px;
}
.data_jp.small {
  font-size: 13px;
}
@media (min-width: 500px) {
  .data_jp.small {
    font-size: 16px;
  }
}
.data_jp.small.left {
  margin-left: 0;
  margin-right: 5px;
}
.data_img01 {
  width: fit-content;
  margin: 18px auto;
}
.data_img02 {
  max-width: 110px;
  width: fit-content;
  margin: 42px auto 32px;
}
@media (min-width: 500px) {
  .data_img02 {
    max-width: none;
    margin: 24px auto;
  }
}
.data_img03 {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 500px) {
  .data_img03 {
    margin-top: 13px;
  }
}
.data_img03 picture img {
  width: 100%;
  max-width: none;
}
.data_img04 {
  width: fit-content;
  margin: 28px auto 18px;
}
@media (min-width: 500px) {
  .data_img04 {
    margin: 18px auto;
  }
}
.data_img05 {
  width: fit-content;
  margin: 34px auto 24px;
}
@media (min-width: 500px) {
  .data_img05 {
    margin: 24px auto;
  }
}
.data_img06 {
  width: fit-content;
  margin: 24px auto 14px;
}
@media (min-width: 500px) {
  .data_img06 {
    margin: 14px auto;
  }
}
.data_img07 {
  width: fit-content;
  margin: 24px auto 14px;
}
@media (min-width: 500px) {
  .data_img07 {
    margin: 14px auto 10px;
  }
}
.data_img08 {
  width: 100%;
  max-width: 180px;
  margin: 36px auto 31px;
}
@media (min-width: 500px) {
  .data_img08 {
    margin: 20px auto 27px;
  }
}
.data_img08 picture img {
  width: 100%;
  max-width: none;
}

.flow_section {
  padding: 40px 0;
}
.flow_main {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.flow_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flow_img {
  flex: 1;
}
.flow_img_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.benefit_section {
  padding: 40px 0;
}
.benefit_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px auto 0;
}
@media (min-width: 500px) {
  .benefit_container {
    gap: 20px;
  }
}
.benefit_content {
  background-image: image-set(url(../img/about/data_bg.png) 1x, url(../img/about/data_bg@2x.png) 2x);
  background-size: 100%;
  background-repeat: repeat;
  background-color: #F7F7F7;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  width: 100%;
  height: 100%;
}
@media (min-width: 500px) {
  .benefit_content {
    padding: 20px;
    gap: 16px;
  }
}
.benefit_content_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 10px;
}
@media (min-width: 500px) {
  .benefit_content_wrap {
    gap: 20px;
  }
}
.benefit_content_head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit_content_title {
  color: #004098;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}

.overview_section {
  padding-top: 40px;
}
.overview_main {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.overview_list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.overview_item {
  padding-bottom: 16px;
  border-bottom: 1px solid #EBEFF3;
  display: flex;
  align-items: center;
  gap: 40px;
}
.overview_item:nth-child(n+2) {
  padding-top: 16px;
}
.overview_title {
  color: #004098;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  min-width: 80px;
}
.overview_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.subPage_to_corporate {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 28px;
  background: #FFFFFF;
  border: 1px solid #323232;
  border-radius: 3px;
}
.subPage_to_corporate_text {
  color: #323232;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
}
.subPage_to_corporate_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.job_section {
  padding: 120px 0 80px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .job_section {
    padding: 80px 0;
  }
}

.job_mv {
  width: 100%;
  margin-top: 40px;
}

.job_section {
  padding: 64px 0 40px;
}

.job_text_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.job_text_main {
  color: #004098;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.job_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job_type_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.job_type_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E3E3E3;
}
.job_type_content:last-child {
  padding: 0;
  border-bottom: none;
}
.job_type_content_title {
  color: #004098;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.swiper.job_swiper {
  position: relative;
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  overflow: hidden;
}

/* スライド内の画像設定 */
.swiper.job_swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 矢印共通スタイル（ここを大きく変更） --- */
.job-swiper-button-prev,
.job-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 25px;
  height: 20px;
  /* 例：縦幅50px */
  /* 背景画像として設定 */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: opacity 0.3s;
  margin: 0;
}

.job-swiper-button-prev::after,
.job-swiper-button-next::after {
  display: none;
}

.job-swiper-button-prev {
  left: 10px;
  background-image: url("../img/job/swiper_prev.svg");
}

.job-swiper-button-next {
  right: 10px;
  background-image: url("../img/job/swiper_next.svg");
}

.job-swiper-button-prev:hover,
.job-swiper-button-next:hover {
  opacity: 0.7;
}

.swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
  pointer-events: none;
}

.image_section {
  padding: 40px 0;
}

.image_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}

.staff_section {
  padding-top: 40px;
}

.staff_modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  cursor: pointer;
}
.staff_modal_wrapper {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 10px;
}
@media (min-width: 500px) {
  .staff_modal_wrapper {
    gap: 20px;
  }
}
.staff_modal_img {
  aspect-ratio: 1/1;
}
.staff_modal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.staff_modal_name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.staff_modal_job {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.staff_modal_more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}
.staff_modal_more_text {
  color: #004098;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: right;
}
.staff_modal_more_plus {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* モーダル全体の重なり */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

/* 背景を暗くする */
.modal_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 540px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(150, 150, 150, 0.7);
}

.modal_back_ground {
  width: 100%;
  height: 100%;
  background: transparent;
}

.modal_content_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  padding: 0 20px;
  width: 100%;
}

.modal_content_wrapper {
  position: relative;
}

/* コンテンツの中身 */
.modal_content {
  background: #FFFFFF;
  padding: 20px;
  width: 100%;
  position: relative;
  overflow-y: auto;
  max-height: 70vh;
  overscroll-behavior: contain;
  /* モーダル端でのスクロール連鎖を防ぐ */
  /* スクロールバーのデザイン（任意：iOSなどで綺麗に見せる） */
  -webkit-overflow-scrolling: touch;
}

.modal_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal_inner_top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal_inner_top_img {
  aspect-ratio: 1/1;
  max-width: 170px;
}
@media (min-width: 500px) {
  .modal_inner_top_img {
    max-width: 220px;
  }
}
.modal_inner_top_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal_inner_top_name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.modal_inner_top_job {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.modal_inner_bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal_inner_bottom_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal_inner_question {
  color: #004098;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.modal_inner_question_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.modal_inner_question_header {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.title_and_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.title_and_text_bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .title_and_text_bottom {
    flex-direction: row;
    align-items: end;
    gap: 42px;
  }
}

.modal_cross {
  background: #004098;
  position: absolute;
  top: -44px;
  right: 0;
}

.modal_close {
  background: #004098;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 3px;
  box-shadow: none;
  border: none;
  margin: 0 auto;
  touch-action: manipulation;
}
.modal_close_text {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.modal_close_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 3px;
  box-shadow: none;
  border: none;
  touch-action: manipulation;
}
.modal_cross_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_cross_text {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.entry_mv {
  width: 100%;
  margin-top: 40px;
}

.entry_form_section {
  padding: 40px 0 80px;
}

.entry_form_explain_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.entry_form_explain_text.attention {
  color: hsl(0, 100%, 50%);
}
.entry_form_explain_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E3E3E3;
}
.entry_form_main {
  padding-top: 40px;
}

.entry_form_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.entry_form_content .entry_form_title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.entry_form_content .entry_form_title span {
  color: hsl(0, 100%, 50%);
}
.entry_form_content_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.entry_form_content_container .entry_form_file_content_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.entry_form_content_container .entry_form_file_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.entry_form_content_container .entry_form_file_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.entry_form_content {
  /* ラジオボタン全体の調整 */
}
.entry_form_content .wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 500px) {
  .entry_form_content .wpcf7-radio {
    gap: 24px;
  }
}
.entry_form_content .wpcf7-list-item {
  display: flex;
  align-items: center;
  color: #323232;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin: 0;
}
.entry_form_content .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
}
.entry_form_content {
  /* ラジオボタン本体（外側の32pxの円） */
}
.entry_form_content .wpcf7-list-item input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: hsl(213, 25%, 94%);
  margin: 0 8px 0 0;
  position: relative;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  /* チェックが入った時に出る中の黒丸（10px） */
}
.entry_form_content .wpcf7-list-item input[type=radio]::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #323232;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.entry_form_content .wpcf7-list-item input[type=radio] {
  /* チェックが入った時の状態 */
}
.entry_form_content .wpcf7-list-item input[type=radio]:checked::after {
  opacity: 1;
}
.entry_form_content .wpcf7-text,
.entry_form_content .wpcf7-email {
  width: 100%;
  padding: 24px 20px;
  background: #EBEFF3;
  border-radius: 4px;
  box-shadow: none;
  border: none;
  font-size: 16px;
  line-height: 1.8;
  color: #323232;
}
.entry_form_content .wpcf7-text::placeholder,
.entry_form_content .wpcf7-email::placeholder {
  color: hsl(0, 0%, 59%);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.privacy_policy {
  border: 1px solid #E3E3E3;
  max-height: 240px;
  overflow-y: auto;
  margin-top: 40px;
}
.privacy_policy_inner {
  padding: 20px;
}
.privacy_policy_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.privacy_policy_detail {
  margin: 0;
  padding: 0;
}

.privacy_list_sub {
  margin-bottom: 16px;
}
.privacy_list_sub li {
  position: relative;
  padding-left: 16px;
}
.privacy_list_sub li::before {
  position: absolute;
  content: "";
  top: 0.7em;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: #323232;
}

.acceptance_and_submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

/* acceptance全体のレイアウト */
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* チェックボックス本体（外枠32px） */
.wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  background-color: #FFFFFF;
  border: 1px solid #323232;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  /* チェックマークを擬似要素で作る */
}
.wpcf7-acceptance input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 11px;
  /* 1px右へ寄せる */
  top: 6px;
  /* 1px下へ寄せる */
  width: 8px;
  /* 10px → 8px (少し小さく) */
  height: 15px;
  /* 18px → 15px (少し短く) */
  border-right: 1.5px solid #323232;
  /* 2px → 1.5px (線を細く) */
  border-bottom: 1.5px solid #323232;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.wpcf7-acceptance input[type=checkbox] {
  /* チェックが入った時 */
}
.wpcf7-acceptance input[type=checkbox]:checked::after {
  opacity: 1;
}

/* 送信ボタンの基本スタイル（活性時：例として青色） */
#main-submit {
  background-color: #007bff;
  color: #FFFFFF;
  transition: background-color 0.3s;
  cursor: pointer;
  /* 無効化されている時のスタイル */
}
#main-submit.disabled, #main-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.wpcf7-submit {
  box-shadow: none;
  border: none;
  border-radius: 3px;
  padding: 24px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  max-width: 226px;
  width: 100%;
  display: block;
  background: #004098 !important;
  color: #FFFFFF;
  opacity: 1;
  filter: none;
  transition: all 0.3s;
  cursor: pointer;
  /* --- 押せない状態（ここが重要） --- */
}
.wpcf7-submit:disabled, .wpcf7-submit.disabled {
  background: #004098 !important;
  filter: grayscale(1) !important;
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

.thanks_section {
  height: 100vh;
}
.thanks_section_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.thanks_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.thanks_main_text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 600px) {
  .thanks_main_text {
    font-size: 28px;
  }
}

.thanks_text_wrapper_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.thanks_text_wrapper_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #EBEFF3;
  padding: 20px;
  border-radius: 10px;
}
.thanks_text_wrapper_bottom .thanks_bottom_text {
  color: #004098;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.thanks_text_wrapper_bottom .to_entry_link {
  color: #004098;
  text-decoration: underline;
}
@media (min-width: 600px) {
  .thanks_text_br {
    display: none;
  }
}

.wpcf7-response-output {
  border: none !important;
}

.noFound_section {
  height: 100vh;
}
.noFound_section_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.noFound_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.noFound_text_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.noFound_text_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.noFound_text_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.noFound_title_en {
  color: #004098;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.noFound_title_num {
  color: #FDD000;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.4;
}
.noFound_title_jp {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (min-width: 600px) {
  .noFound_title_jp br {
    display: none;
  }
}
@media (min-width: 600px) {
  .noFound_text .br_sp {
    display: none;
  }
}/*# sourceMappingURL=base.css.map */