@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* 除算math.divを使うのに必要な記述 */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  font-family: system-ui;
}
body a {
  color: #0f0f0f;
}
body a :hover {
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
  opacity: 0.8;
}
body img {
  max-width: 100%;
  height: auto;
}
body .mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
}

/* 非表示状態 */
.inactive {
  display: none;
  opacity: 0;
}

/* 表示状態 */
.active {
  display: block;
  opacity: 1;
}

#navigation {
  opacity: 0;
  visibility: hidden; /* 見えなくするが、スペースを維持 */
  transition: opacity 0.5s ease-in-out;
}

#navigation.visible {
  opacity: 1;
  visibility: visible; /* 表示状態 */
  transition: opacity 0.5s ease-in-out;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 8px;
  background-color: white;
  z-index: 99999;
  box-shadow: 0px 0px 15px -5px #777777;
}
.nav__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.nav__wrap .logo img {
  height: 50px;
}
@media screen and (max-width: 576px) {
  .nav__wrap .logo img {
    height: 30px;
  }
}
.nav__wrap .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 576px) {
  .nav__wrap .menu {
    display: none;
  }
}

.drawer-hamburger {
  top: unset;
  width: 30px;
  display: none;
}
@media screen and (max-width: 576px) {
  .drawer-hamburger {
    display: block;
  }
}

.drawer-nav {
  background-color: #fafafa;
}
.drawer-nav ul .logo {
  padding-left: 10px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
}
.drawer-nav ul li {
  border-bottom: 1px gray dotted;
}
.drawer-nav ul li a {
  padding-left: 16px;
  padding-top: 16px;
  padding-right: 8px;
  padding-bottom: 16px;
  display: block;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.drawer-nav ul li a::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-repeat: no-repeat;
}
.drawer-nav ul li a:hover {
  background-color: white;
  text-decoration: none;
  color: black;
}

/* ナビの背景を前面に出す */
.drawer--right.drawer-open .drawer-nav {
  width: 100%;
}

/* アイコンの位置 */
.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

body {
  line-height: normal;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

input, textarea, select {
  font-family: inherit;
  font-size: 16px;
}

input[type=button], input[type=text], input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

th, td {
  border-collapse: collapse;
}

table th, table td {
  white-space: nowrap;
}

ul, ol {
  list-style-type: none;
}

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width: auto;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: unset;
  font-weight: unset;
  line-height: unset;
}

.contactArea {
  margin-top: 40px;
}
.contactArea .titleArea {
  text-align: center;
  margin-bottom: 40px;
}
.contactArea .titleArea .title {
  font-size: clamp(4rem, 3.9346938776rem + 0.2040816327vw, 4.2rem);
}
.contactArea .titleArea .sub {
  color: black;
}
.contactArea form {
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  .contactArea form {
    padding: 0px;
  }
}
.contactArea form .wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap {
    flex-direction: column;
  }
}
.contactArea form .wrap .head {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .head {
    width: 100%;
  }
}
.contactArea form .wrap .contents {
  display: flex;
  width: 70%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .contents {
    width: 100%;
  }
}
.contactArea form .wrap .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .head {
    justify-content: start;
    gap: 8px;
  }
}
.contactArea form .wrap .head label {
  font-weight: bold;
}
.contactArea form .wrap .head span {
  color: white;
  font-size: clamp(1rem, 0.9346938776rem + 0.2040816327vw, 1.2rem);
  background: #183C94;
  padding: 3px 10px;
  border-radius: 15px;
}
.contactArea form .wrap.submit {
  flex-direction: column;
  align-items: center;
}
.contactArea form .wrap .wpcf7-tel, .contactArea form .wrap .wpcf7-text, .contactArea form .wrap .wpcf7-email, .contactArea form .wrap .wpcf7-textarea {
  border: none;
  background-color: #f4f4f4;
  width: 100%;
  padding: 10px;
}
.contactArea form .wrap .wpcf7-form-control-wrap {
  width: 100%;
}
.contactArea form .wrap input[type=text] {
  width: 100% !important;
  box-sizing: border-box;
}
.contactArea form .wrap .wpcf7-select {
  border: none;
  background-color: #f4f4f4;
  width: 50%;
  padding: 10px;
}
.contactArea form .wrap .wpcf7-submit {
  background-color: #183C94;
  width: 50%;
  padding: 5px 0px;
  font-weight: bold;
  color: white;
  text-align: center;
  border-radius: 25px;
  border: none;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .wpcf7-submit {
    width: 100%;
  }
}
.contactArea form .btnArea {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contactArea form .btnArea {
    flex-direction: column;
  }
}
.contactArea form .btnArea button, .contactArea form .btnArea input {
  background-color: #183C94;
  width: 50%;
  padding: 5px 0px;
  font-weight: bold;
  color: white;
  text-align: center;
  border-radius: 25px;
  border: none;
}
@media screen and (max-width: 768px) {
  .contactArea form .btnArea button, .contactArea form .btnArea input {
    width: 100%;
  }
}
.contactArea form .btnArea .wpcf7-spinner {
  display: none;
}
.contactArea .thanks {
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.contactArea .thanks .title {
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
  color: #183C94;
  margin-bottom: 40px;
  font-weight: bold;
}
.contactArea .thanks .textArea {
  line-height: 150%;
}
.contactArea .thanks .textArea .name {
  font-weight: bold;
  margin-bottom: 20px;
  margin-right: 10px;
}
.contactArea .thanks .textArea .name span {
  font-size: clamp(1.8rem, 1.7346938776rem + 0.2040816327vw, 2rem);
}

.mainTitle {
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  text-align: center;
}

.subtitle {
  margin-top: 16px;
  text-align: center;
}

.loader {
  position: fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 999999;
}
.loader .spinner {
  animation: spin 2s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.kv {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

:root {
  --bs-primary: #212121; /* 好きな色コードに */
  --bs-primary-rgb: 33, 33, 33;
}

footer {
  margin-top: 80px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
footer .cr {
  text-align: center;
}

.df-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

#plan-nav.nav-floater {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#plan-nav.nav-floater.is-visible {
  transform: translateY(0);
}
#plan-nav.nav-floater .wrap {
  min-height: 64px;
}
#plan-nav.nav-floater::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#plan-nav.nav-floater.is-open::after {
  opacity: 1;
  pointer-events: auto;
}
#plan-nav.nav-floater [data-role=plan-menu] {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 76px;
  margin: 0;
  padding: 12px 16px;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#plan-nav.nav-floater [data-role=plan-menu] li {
  margin: 0;
  padding: 0;
}
#plan-nav.nav-floater [data-role=plan-menu] li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
#plan-nav.nav-floater [data-role=plan-menu] a {
  display: block;
  padding: 12px 6px;
  text-decoration: none;
}
#plan-nav.nav-floater.is-open [data-role=plan-menu] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (min-width: 992px) {
  #plan-nav.nav-floater::after {
    display: none;
  }
  #plan-nav.nav-floater .wrap {
    gap: 24px;
  }
  #plan-nav.nav-floater [data-role=plan-menu-toggle] {
    display: none;
  }
  #plan-nav.nav-floater [data-role=plan-menu] {
    position: static;
    inset: auto;
    display: flex;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  #plan-nav.nav-floater [data-role=plan-menu] li + li {
    border-top: 0;
  }
  #plan-nav.nav-floater [data-role=plan-menu] a {
    padding: 8px 0;
  }
}
.plan .title {
  letter-spacing: 0.02em;
}

/* 上から16px→0へ＆不透明に（-16px→0） */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 1s ease-out 0.5s forwards;
}

.fade-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 1s ease-out 2s forwards;
}

/* 1〜8個目まで段階ディレイ（必要数だけ伸ばす） */
.fade-stagger > *:nth-child(1) {
  animation-delay: 1s;
}

.fade-stagger > *:nth-child(2) {
  animation-delay: 1.2s;
}

.fade-stagger > *:nth-child(3) {
  animation-delay: 1.4s;
}

.fade-stagger > *:nth-child(4) {
  animation-delay: 1.6s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 安全領域（iOS等） */
:root {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* 100vhの代わりにsvhで高さ確保（URLバーに縮まない） */
.min-svh-100 {
  min-height: 100svh;
}

/* ヒーローの下メニュー：安全に下寄せ */
#plan-logo {
  position: relative;
  /* 下メニューぶんの余白も確保（被らないように） */
  padding-bottom: calc(56px + var(--safe-bottom));
}

#plan-logo .hero-menu {
  position: absolute;
  left: 0;
  right: 0;
  /* URLバーやホームインジケータに隠れない */
  bottom: max(16px, var(--safe-bottom));
}

/* ついでにフッターナビも安全に（必要なら） */
.kv-menu {
  --menu-pos: 75svh; /* ここを70〜85svhで微調整 */
  top: var(--menu-pos);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.member {
  margin-bottom: 72px;
}
.member .header.wrap h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.member .main-contents .box .small {
  font-size: clamp(0.8rem, 0.7346938776rem + 0.2040816327vw, 1rem);
}
.member .main-contents .box .movie {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.member .main-contents .box .movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.member-navigation {
  min-height: 56px;
  padding: 8px;
  background-color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99999;
}
.member-navigation li a img {
  width: 100%;
  max-width: 30px;
}
.member-navigation li a i {
  font-size: clamp(1.6rem, 1.5346938776rem + 0.2040816327vw, 1.8rem);
}

.join .top-image img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .join .box {
    margin-top: 40px;
  }
}
.join .box .title {
  font-weight: bold;
  margin-bottom: 4px;
}
.join .box p {
  font-size: clamp(0.8rem, 0.7346938776rem + 0.2040816327vw, 1rem);
}
.join .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.join .last {
  height: 400px;
  width: 100%;
}
.join .last .caution {
  font-size: clamp(0.8rem, 0.7346938776rem + 0.2040816327vw, 1rem);
}

.sponser .main-contents-title {
  display: flex;
  align-items: center;
}
.sponser .main-contents-title::after {
  content: "";
  height: 1px;
  width: 80px;
  background-color: black;
  margin-left: 16px;
}
.sponser .main-area {
  /* 枠全体：高さアニメ */
  /* パネル重ね・クロスフェード */
  /* 本音側の見た目 */
  /* 画像の縦横比（任意） */
  /* モーション軽減 */
}
.sponser .main-area .panel img {
  max-width: 500px;
}
@media screen and (max-width: 576px) {
  .sponser .main-area .panel img {
    max-width: 100%;
  }
}
.sponser .main-area .swap {
  --dur: .35s;
}
.sponser .main-area .swap .swap-panels {
  position: relative;
  overflow: hidden;
  transition: height var(--dur) ease;
  will-change: height;
}
.sponser .main-area .swap .panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sponser .main-area .swap .panel.is-active {
  position: relative;
  opacity: 1;
  transform: none;
}
.sponser .main-area .honest-box {
  background: #0f0f0f;
  color: #fff;
  border-radius: 0.75rem;
}
.sponser .main-area .vision .head img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .sponser .main-area .swap .swap-panels {
    transition: none;
  }
  .sponser .main-area .swap .panel {
    transition: none;
  }
}
.sponser .history .img img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .sponser .history .img img {
    max-width: 50%;
  }
}
.sponser .return .grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .sponser .return .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .sponser .return .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.sponser .return .card img {
  width: 100%;
  height: auto;
  display: block;
}
.sponser .return .card .contents {
  padding: 0.75rem 1rem;
  flex: 1 1 auto;
}
.sponser .return .card .contents ul {
  margin: 0;
  padding-left: 1.2rem;
}
.sponser .return .card .contents li {
  margin: 0.3rem 0;
}
.sponser .return .card .action {
  padding: 0.75rem 1rem;
  border-top: 1px solid #f1f3f5;
}
.sponser .last {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 下矢印のやわらかフェード＋上下フロート */
.blink {
  pointer-events: none;
} /* クリックを邪魔しない */
.blink i {
  display: inline-block;
  animation: scroll-blink 2.2s ease-in-out infinite;
}

@keyframes scroll-blink {
  0% {
    opacity: 1;
    transform: translateY(-8px);
  }
  80% {
    opacity: 0;
    transform: translateY(0);
  }
  85% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(-8px);
  }
}
/* 動きが苦手な人向け：OS設定でアニメ軽減なら静止 */
@media (prefers-reduced-motion: reduce) {
  .blink i {
    animation: none;
  }
}/*# sourceMappingURL=custom.css.map */