
@charset "UTF-8";
/* ▼ 共通設定 ブラウザ毎にデフォルトのマージンが効いている為、リセット ▼ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  opacity: 0;
  transition: opacity 0.3s ease;

  background: #f5f5f7;
  padding-top: var(--header-height);
  color: #333;
  overflow-x: hidden;
}

body.is-show {
  opacity: 1;
}

body.is-hide {
  opacity: 0;
}

:root {
  --lambda-blue: #0168b7;
  --default-gray: #333333;
  --key-red: #a31414;
  --bg-red: #dc143c;
  --primary-red: #b31b1b;
  --light-gray: #e0e0e0;
  --text-gray: #666;
  --inactive-gray: #ccc;
}

/* ▼ 共通設定 margin,padding,text-align など ▼ */

.a-text-left {text-align: left !important;}
.a-text-center {text-align: center !important;}
.a-text-right {text-align: right !important;}

.a-fw-nm {font-weight: normal !important;}
.a-fw-br {font-weight: bolder !important;}
.a-fw-b {font-weight: bold !important;}

.a-fz-xs { font-size: 0.67rem !important; }
.a-fz-s  { font-size: 0.83rem !important; }
.a-fz-m  { font-size: 1.15rem !important; }
.a-fz-l  { font-size: 1.38rem !important; }
.a-fz-xl { font-size: 1.66rem !important; }
.a-fz-xxl { font-size: 1.99rem !important; }
.a-fz-xxxl { font-size: 2.39rem !important; }

.a-fz-24 {font-size: clamp(12px, 1.25vw, 24px) !important;}
.a-fz-28 {font-size: clamp(14px, 1.46vw, 28px) !important;}
.a-fz-30 {font-size: clamp(24px, 1.5vw, 30px) !important;}
.a-fz-32 {font-size: clamp(28px, 1.667vw, 32px) !important;}
.a-fz-34 {font-size: clamp(30px, 1.771vw, 34px);}
.a-fz-36 {font-size: clamp(32px, 1.875vw, 36px) !important;}
.a-fz-40 {font-size: clamp(20px, 2.08vw, 40px) !important;}
.a-fz-60 {font-size: clamp(24px, 3.125vw, 60px) !important;}
.a-fz-80 {font-size: clamp(48px, 4.17vw, 80px) !important;}
.a-fz-90 {font-size: clamp(56px, 3.5vw, 90px) !important;}
.a-fz-100 {font-size: clamp(60px, 4vw, 100px) !important;}
.a-fz-120 {font-size: clamp(72px, 4.5vw, 120px) !important;}
.a-fz-140 {font-size: clamp(80px, 7.29vw, 140px) !important;}

.a-fc-red {color: var(--key-red) !important;}
.a-fc-blue {color: var(--lambda-blue) !important;}
.a-fc-gray {color: var(--default-gray) !important;}
.a-fc-price {color: #e84a19 !important;}

.a-fs-nm {font-style: normal !important;}
.a-fs-itl {font-style: italic !important;}

.a-mt-10 {margin-top: 10px !important;}
.a-mt-20 {margin-top: 20px !important;}
.a-mt-30 {margin-top: 30px !important;}
.a-mt-40 {margin-top: 40px !important;}
.a-mt-60 {margin-top: 60px !important;}
.a-mt-80 {margin-top: 80px !important;}
.a-mt-100 {margin-top: 100px !important;}
.a-mt-120 {margin-top: 120px !important;}
.a-mt-140 {margin-top: 140px !important;}
.a-mt-160 {margin-top: 160px !important;}
.a-mt-180 {margin-top: 180px !important;}
.a-mt-200 {margin-top: 200px !important;}
.a-mt-220 {margin-top: 220px !important;}
.a-mt-240 {margin-top: 240px !important;}

.a-mt--10 {margin-top: -10px !important;}
.a-mt--20 {margin-top: -20px !important;}
.a-mt--30 {margin-top: -30px !important;}
.a-mt--40 {margin-top: -40px !important;}
.a-mt--50 {margin-top: -50px !important;}

.a-ml-s {margin-left: 2em !important;}
.a-ml-m {margin-left: 4em !important;}
.a-ml-l {margin-left: 6em !important;}

.a-wd-50p {width: 50%; margin: 0 auto;}
.a-wd-60p {width: 60%; margin: 0 auto;}
.a-wd-70p {width: 70%; margin: 0 auto;}
.a-wd-80p {width: 80%; margin: 0 auto;}
.a-wd-90p {width: 90%; margin: 0 auto;}
.a-wd-100p {width: 100%;}
.a-wd-840 {width: min(60vw, 840px); margin: 0 auto;}
.a-wd-960 {width: min(50vw, 960px); margin: 0 auto;}
.a-wd-1100 {width: 1100px; margin: 0 auto;}
.a-wd-1200 {width: min(62.5vw, 1200px); margin: 0 auto;}

.fig__100 {width: 100%;}
.fig__100 img {width: 100%;}

.border-none {border: none !important;}
.a-pl-5p {padding-left: 5% !important}

/* ▼ ローディング */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  transition: opacity 0.3s ease;
}
#loading.is-hide {
  opacity: 0;
  pointer-events: none;
}
#loading .wrap {
  position: relative;
}
#loading .bg {
  padding: 30px 30px 30px 0;
  animation: bg 1.5s linear infinite;
  box-shadow: inset 0 0 45px 30px #ffffff;
}
#loading .loading {
  position: relative;
  text-align: right;
  text-shadow: none;
  height: 20px;
  width: 150px;
  color: #666;
}
#loading .loading span {
  display: block;
  text-transform: uppercase;
  position: absolute;
  right: 30px;
  height: 20px;
  width: 200px;
  line-height: 20px;
}
#loading .loading span:after {
  content: "";
  position: absolute;
  top: -2px;
  right: -21px;
  height: 20px;
  width: 16px;
  background: #999;
  box-shadow: none;
  animation: blink 3.4s infinite;
}
#loading .loading .title {
  animation: title 3.4s linear infinite;
}
#loading .loading .text {
  animation: title 3.4s linear 1.7s infinite;
  opacity: 0;
}
@keyframes bg {
  0% { background-color: #f2f2f2; }
  50% { background-color: #e6e6e6; }
  90% { background-color: #dcdcdc; }
}
@keyframes title {
  0%,48% { opacity: 0; right: 130px; }
  52%,70% { opacity: 1; right: 30px; }
  100% { opacity: 0; right: 30px; }
}
@keyframes blink {
  0%,10%,20%,30%,40%,50%,60%,70%,80%,90%,100% { opacity: 0; }
  5%,15%,25%,35%,45%,55%,65%,75%,85%,95% { opacity: 1; }
}

/* ▼ 設定 ▼ */
html {
  font-size: 16px;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.05em;
  color: #333;
  scroll-behavior: smooth;
}
.mincho {
  font-family: "Yu Mincho", "游明朝", serif !important;
}
p.a-text {
  font-size: 1.15rem;
  line-height: 1.8
}

/* ▼ ヘッダー ▼ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  letter-spacing: 0.2em;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  transition: 0.3s;
  transition: transform 0.3s ease;
}
header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ▼ 上段メニュー ▼ */
.header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding: 8px 8px 0;
  font-size: 13px;
}
.header-top a {
  text-decoration: none;
  color: #666;
}
.header__top--link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  transition: color 0.3s, transform 0.3s;
}
.header__top--link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bg-red);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.header__top--link:hover {
  transform: translateY(-3px);
}
.header__top--link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header__btn-support {
  display: inline-block;
  background: #fff;
  padding: 6px 19px 3px 16px;
  border-radius: 8px;
}
.header-top img {
  width: 100%;
  max-height:24px;
}

/* ▼ メインヘッダー ▼ */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.header-main > .logo--box {
  position: relative;
  top: -1.1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logo--box > .logo img {
  width: 100%;
  max-width: 238px;
}

.privacy-header ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  margin-left: 40px;
  gap: 10px;
  position: relative;
  top: -4px;
}

.privacy-header img {
  width: 65px;
}

/* ▼ ナビゲーション ▼ */
.header-main > .nav {
  display: flex;
  gap: 60px;
}
.header-main > .nav-item {
  position: relative;
}
.nav-item > a {
  position: relative;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
}
.nav-item > a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: var(--bg-red);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.nav-item:hover > a::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

/* ▼ メガメニュー ▼ */
.mega {
  position: fixed;
  top: 105%;
  left: 0;
  width: 100%;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: 0.35s;
}
.nav-item.open .mega {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px 40px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.mega ul {
  list-style: none;
}
.mega li {
  margin: 0;
}

/* ▼ メガメニューリンク ▼ */
.mega a {
  display: block;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  font-size: 12px;

  position: relative;

  transition: 0.2s;
}
.mega a:hover {
  background: rgba(220, 20, 60, 0.7);
  color: #fff;
}
a.mega-title {
  font-size: 16px !important;
  font-weight: 500;
}
a.mega-title:hover {
  font-weight: normal;
}
li.mega-child {
  margin-left: 1em !important;
}
li.mega-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
li.mega-child {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
li.mega-child::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #dc143c;
  font-size: 0.5em;
}
li.mega-child::after {
  content: "";
  position: absolute;
  left: 0.5em; 
  top: 50%;
  width: 1em;
  height: 1px;
  background-color: var(--bg-red);
  z-index: -1;
}

/* ▼ メガメニュー内ポップアップ ▼ */
.popup {
  position: absolute;
  left: 0;
  bottom: 130%;

  width: 240px;
  padding: 12px 14px;

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

  font-size: 13px;
  line-height: 1.5;
  color: #555;

  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);

  transition: 0.25s;
}

/* ▼ 吹き出し ▼ */
.popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;

  border: 8px solid transparent;
  border-top-color: #fff;
}
.mega a:hover .popup {
  opacity: 1;
  transform: scale(1);
}

/* ▼ ハンバーガー ▼ */
.hamburger-grid {
  display: none;
  width: 28px;
  height: 28px;
  position: relative;
  cursor: pointer;
}
.hamburger-grid--dots {
  display: grid;
  grid-template: repeat(3, 1fr) / repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;

  transition: 0.25s;
}
.hamburger-grid--dots span {
  width: 6px;
  height: 6px;
  background: #444;
  border-radius: 50%;
}

/* ▼ 閉じるアイコン ▼ */
.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 22px;
  height: 2px;
  background: #000;

  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;

  transition: 0.25s;
}

.close-icon::after {
  content: "";
  position: absolute;

  width: 22px;
  height: 2px;
  background: #444;

  transform: rotate(-90deg);
}

/* ▼ ハンバーガー アクティブ ▼ */
.hamburger-grid.active .hamburger-grid--dots {
  opacity: 0;
  transform: scale(0.7);
}
.hamburger-grid.active .close-icon {
  opacity: 1;
}

/* ▼ モバイル ▼ */
@media (max-width: 768px) {
.nav {
  position: fixed;
  top: 0;
  right: -100%;

  width: 260px;
  height: 100vh;

  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 30px;

  background: rgba(255,255,255,0.9);
  transition: 0.3s;
}
.nav.active {
  right: 0;
}
.hamburger-grid {
  display: block;
  position: absolute;
  right: 20px;
}
.mega {
  position: static;
  width: 100%;
  display: none;

  opacity: 1;
  transform: none;
}
.nav-item.open .mega {
  display: block;
}
.mega-inner {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 20px 0;
}
.header-top {
  display: none;
}
.nav-item {
  display: none;
}

.sp__menu {
  position: absolute;
  top: 60px;
  width: 70%;
}

.sp__menu li {
  list-style: none;
}

.sp__menu a:link {
  text-decoration: none;
  color: #333;
  display: block;
  width: 100%;
  border-bottom: 2px dotted #e7e7e7;
  padding: 14px 0;
  position: relative;
  top: -2px;
}

.sp__menu a:visited {
  text-decoration: none;
  color: #333;
}
.sp__menu a {
  padding-left: 20px;
  font-size: 14px;
}

.sp__menu a::before {
  content: "▶";
  margin-right: 8px;
  color: #333;
  font-size: 8px;
}
}

/* ▼ テキストリンク ここから ▼ */
.lib__modal--btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #c1272d;
  font-size: 1.15rem;
  transition: opacity 0.3s;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.lib__modal--btn:hover {
  opacity: 0.7;
}
.lib__modal--text {
  margin-right: 12px;
}
.lib__modal--line-unit {
  display: flex;
  align-items: center;
}
.lib__modal--dot {
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}
.lib__modal--line {
  width: 50px;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}
.lib__modal--plus {
  width: 28px;
  height: 28px;
  background-color: currentColor;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lib__modal--plus::before,
.lib__modal--plus::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.lib__modal--plus::before {
  width: 14px;
  height: 1px;
}
.lib__modal--plus::after {
  width: 1px;
  height: 14px;
}
.lib__modal--btn--blue {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--lambda-blue) !important;
  font-size: 1.15rem;
  transition: opacity 0.3s;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.lib__modal--btn--blue:hover {
  opacity: 0.7;
}
.lib__modal--dot--blue {
  background-color: var(--lambda-blue) !important;
}
.lib__modal--line--blue {
  background-color: var(--lambda-blue) !important;
}
.lib__modal--plus--blue {
  background-color: var(--lambda-blue) !important;
}
.lib__modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.lib__modal.is-open {
  opacity: 1;
  visibility: visible;
}
.lib__modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
}
.lib__modal__content {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  border-radius: 20px;
  padding: 40px 30px 50px;

  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s ease;
}
.lib__modal.is-open .lib__modal__content {
  transform: translateY(0);
  opacity: 1;
}
.lib__modal__header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lib__modal__header img {
  width: 30%;
}
.lib__modal__header h2 {
  color: #fff;
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: normal;
  width: 50%;
  font-style: normal !important;
}
.lib__modal__header h2 span {
  font-size: 24px;
}
.lib__modal__body {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 8px 32px;
  line-height: 2;
  color: #333;
}
.lib__modal__body h3 {
  margin: 30px 0 20px;
  padding-left: 18px;
  position: relative;
}
.lib__modal__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 5px;
  height: 40px;
}
.lib__modal__body ul {
  margin-left: 24px;
}
.lib__modal__close {
  position: fixed;
  top: 10px;
  right: 20px;
  font-size: 42px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.close--blue {
  /*top: auto;
  right: auto;*/
}
.lib__modal--red .lib__modal__content {
  background: #e85c4b;
}
.lib__modal--red .lib__modal__body h3::before {
  background: #e85c4b;
}

.lib__modal--blue .lib__modal__content {
  background: #4793d4;
}
.lib__modal--blue .lib__modal__body h3::before {
  background: #4793d4;
}
.lambda_modal {
  padding: 24px 32px;
}
.costTitle {
  font-size: 28px !important;
}

/* ▼ アンカーナビゲーション ここから ▼ */
.anchor-nav {
    max-width: 1200px;
    margin: 40px auto;
    border-bottom: 1.5px solid #e8a8a8;
}

.border-lambda--bottom {
    border-bottom: 1.5px solid var(--lambda-blue) !important;
}

.nav-inner {
    display: flex;
    border-left: 1px solid var(--light-gray);
}

.nav-item--anchor {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0; 
    text-decoration: none;
    color: var(--text-gray);
    font-size: 1.15rem;
    border-right: 1px solid var(--light-gray);
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.nav-item--anchor:hover {
    background-color: #fffafb;
    color: var(--primary-red);
}

.anchor--lambda:hover {
    background-color: #fafcff !important;
    color: var(--lambda-blue) !important;
}

.nav-text {
    font-weight: 500;
    text-align: center;
}

.nav-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #aaa;
    border-bottom: 1.5px solid #aaa;
    transform: translateY(-50%) rotate(45deg);
    transition: border-color 0.3s ease;
}

.nav-item--anchor:hover .nav-arrow {
    border-color: var(--primary-red);
}

/* ▼ 見出しデザイン ここから ▼ */
.heading__box {
  text-align: center;
}

h1.heading-lv1 {
  position: relative;
  font-size: 28px;
  display: inline-block;
  margin-bottom: 1em;
}

h1.heading-lv1:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}

/* ▼ セクション見出し（共通） ▼*/
.heading-lv2 {
  text-align: center;
  font-family: "Yu Mincho", "游明朝", serif;
}

/* ▼ メインタイトル ▼ */
.heading-lv2__main {
  font-size: clamp(20px, 2.5vw, 48px);
  font-family: serif;
  font-style: italic;
  color: #333;
  letter-spacing: 0.1rem;
  margin: 0;
}

/* ▼ 先頭1文字 ▼ */
.heading-lv2__first {
  color: #8C1A25;
  font-size: clamp(24px, 3.125vw, 60px);
}

/* ▼ サブタイトル ▼ */
.heading-lv2__sub {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #333;
  letter-spacing: 0.1em;
  margin-top: -0.4vw;
  
}

/* ▼ 下線 ▼ */
.heading-lv2::after {
  content: "";
  display: block;
  width: 8vw;
  height: 0.4vw;
  background: #333;
  margin: 1vw auto 0;
  border-radius: 4px;
}

/* ▼ メインタイトル（白） ▼ */
.heading-lv2__main--wh {
  font-size: clamp(20px, 2.5vw, 48px);
  font-family: serif;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.1rem;
  margin: 0;
  font-family: "Yu Mincho", "游明朝", serif;
}

/* ▼ 先頭1文字（白） ▼ */
.heading-lv2__first--wh {
  font-size: clamp(24px, 3.125vw, 60px);
}

/* ▼ サブタイトル（白） ▼ */
.heading-lv2__sub--wh {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: -0.4vw;
  font-family: "Yu Mincho", "游明朝", serif;
}

/* ▼ セクション見出し（白） ▼ */
.heading-lv2--wh {
  text-align: center;
  font-family: "Yu Mincho", "游明朝", serif;
}

/* ▼ 下線（白） ▼ */
.heading-lv2--wh::after {
  content: "";
  display: block;
  width: 8vw;
  height: 0.4vw;
  background: #fff;
  margin: 1vw auto 0;
  border-radius: 4px;
}

.heading-lv2--blue {
  font-size: clamp(20px, 1.25vw, 24px);
  font-family: "Yu Mincho", "游明朝", serif;
}

.heading-lv2__main--blue {
  padding: 0.25em 0.8em;
  background: transparent;
  border-left: solid 12px var(--lambda-blue);
}

.heading-lv3 {
  font-size: clamp(20px, 1.25vw, 24px);
  font-family: "Yu Mincho", "游明朝", serif;
}

.heading-lv3__main {
  padding: 0.25em 0.8em;
  background: transparent;
  border-left: solid 12px #bf272d;
}

.heading-lv3--blue {
  font-size: clamp(20px, 1.25vw, 24px);
  font-family: "Yu Mincho", "游明朝", serif;
}

.heading-lv3__main--blue {
  padding: 0.25em 0.8em;
  background: transparent;
  border-left: solid 12px var(--lambda-blue);
}

.heading-lv4 {
  font-size: clamp(20px, 1.25vw, 24px);
  font-family: "Yu Mincho", "游明朝", serif;
}

.heading-lv4__main {
  padding: 0.25em 0.8em;
  background: transparent;
  border-left: solid 12px #bf272d;
}

.heading-lv4--blue {
  font-size: clamp(18px, 1.2vw, 22px);
  font-family: "Yu Mincho", "游明朝", serif;
  margin-left: 1em;
}

.heading-lv4__main--blue {
  padding: 0.25em 0.8em;
  background: transparent;
  border-left: solid 12px var(--lambda-blue);
}


/* ▼ セクション ▼ */
section.content-Box {
  width: clamp(320px, 75vw, 1440px);
  max-width: 1440px;
  margin: 0 auto;
}
section.content-inner {
  margin: 0 auto;
}

section.content-Box--pages {
  width: min(62.5vw, 1200px);
  margin: 0 auto;
}



/* ▼ カラム ▼ */
.column__1 {
  margin: 0 auto;
}
.column__2 {
  display: flex;
}

/* ▼ カード（横長） ▼ */
.card--img {
  padding: 30px;
}
.card--img img {
  width: 100%;
}
.card__horizontal {
  width: min(62.5vw, 1200px);
  margin: 0 auto;
  border: 1px solid #e7e7e7;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.05);
}
.card__horizontal--inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.card--text {
  font-size: clamp(14px, 0.83vw, 16px);
  padding-right: 30px;
  font-family: "Yu Mincho", "游明朝", serif;
}
.logo--card {
  width: 240px;
  margin: 20px 0;
}

/* ▼ カード-Line up（横長） ▼ */
.card-lineup-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card-lineup {
  display: flex;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card-lineup-image-content {
  flex: 0 0 40%;
  position: relative;
  min-height: 250px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #555;
  text-align: center;
}

.image-placeholder img {
  width: 90%;
}

.bg--lineup {
  background: url(/assets/img/img-card-lineup--bg.png) no-repeat center / cover;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  display: block;
  width: 95%;
  padding: 10px 0 18px;
}

.card-title__bg--blue {
  background: #0068B5;
}

.card-title__bg--red {
  background: #a31414;
}

.card-title__logo-alfa img{
  width: 75%;
}

.card-lineup-text-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.card-lineup-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  font-style: normal;
}

.card-lineup-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
}

.title-blue {
  color: #2c5282;
}

.title-blue::after {
  background-color: #2c5282;
}

.title-red {
  color: #9b2c2c;
}

.title-red::after {
  background-color: #9b2c2c;
}

.card-lineup-description {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666;
}

.card-lineup-img-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 15px 0;
}

.card-lineup-img-list img {
  width: 80%;
}

.lineup-img-list-lambda {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin-top: 10px;
}

.lineup-img-list-lambda li {
  flex: 0 0 33.3333%;
  padding: 0 10px 10px;
}

.lineup-img-list-lambda img {
  width: 70%;
}

.detail-button {
  display: block;
  align-items: center;
  padding: 10px 0 10px 0px;
  background-color: #fff;
  position: relative;
  font-size: 1rem;
  margin: 20px auto 0;
  width: 60%;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-button:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.arrow-right, .arrow-down {
  margin-left: 8px;
}

.ico-arrow-right::before {
  content: "";
  background: url(/assets/img/ico-arrow--r-01.svg) no-repeat center / contain ;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 32%;
  right: 20px;
}

.button-blue {
  color: #2c5282;
}

.button-red {
  color: #9b2c2c;
}

.card-lambda-desc {
  color: #0068B5;
  font-size: clamp(12px, 1.25vw, 24px);
  font-weight: bold;
  margin-bottom: 20px;
}
/* ▼ ボタンリンク ▼ */
.card__horizontal--btnBox a:link,
.card__horizontal--btnBox a:visited {
  color: #333;
}
/* ▼ ボタン（小） ▼ */
.a-btn-s {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  width: 180px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #333;
  padding: 8px 0 8px 16px;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}
/* ▼ PDFアイコン（赤） ▼ */
.a-btn-s::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/assets/img/ico-pdf--red.svg) no-repeat center / contain;
  flex-shrink: 0;
}

/* ▼ ボタン（中） ▼ */
.a-btn-m {
  display: block;
  gap: 8px;
  margin: 0 auto;
  width: 80%;
  text-decoration: none;
  text-align: center;
  border: 1px solid #333;
  padding: 12px 0 ;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.a-btn-m:hover {
  background: #a31414;
  color: #fff;
  transition: 0.3s;
}
.card__horizontal--btnBox a:hover {
  color: #a31414;
  border: 1px solid #a31414;
}
.card__horizontal--btnBox a:hover::after {
  background-color: #fff;
}


/* ▼ CTA ▼ */
.section__cta {
  margin-top: 48px;
  text-align: center;
}

/* ▼ ライン付きアイコンボタン ▼ */
.button--icon__line{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px 12px 36px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  font-size: 16px;
}
/* ▼ 始点 ▼ */
.start-dot{
  position: relative;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}
/* ▼ 線 ▼ */
.start-dot::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 80px;
  height: 1px;
  background: #333;

  transform: translateY(-50%) scaleX(0);
  transform-origin: left;

  transition: transform .4s ease;
}
/* ▼ 終点 ▼ */
.end-circle{
  position: absolute;
  top: 50%;
  left: calc(100% + 80px);

  width: 34px;
  height: 34px;

  border-radius: 50%;
  background: #333;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-50%) scale(.6);
  opacity: 0;

  transition: opacity .2s ease, transform .2s ease;
}
/* ▼ ライン付きアイコンボタン-アイコン- ▼ */
.end-circle img{
  width: 18px !important;
}
/* ▼ hover ▼ */
.button--icon__line:hover{
  background: #fff;
  transition: 0.3s;
}
.button--icon__line:hover .start-dot::after{
  transform: translateY(-50%) scaleX(1);
}
/* ▼ hover時遅延 ▼ */
.button--icon__line:hover .end-circle{
  opacity: 1;
  transform: translateY(-50%) scale(1);
  transition-delay: .35s;
}
/* ▼ ライン付きアイコンボタン-赤- ▼ */
.icon__line--red {
  border: 1px solid #bf272d;
  color: #bf272d;
}

.icon__line--red:hover {
  background: #bf272d;
  color: #fff;
}

.bg-red, .start-dot.bg-red::after {
  background: #a80014;
}

/* ▼ ライン付きアイコンボタン-青- ▼ */
.icon__line--blue {
  border: 1px solid var(--lambda-blue);
  color: var(--lambda-blue);
}

.icon__line--blue:hover {
  background: var(--lambda-blue);
  color: #fff;
}

.bg-blue, .start-dot.bg-blue::after {
  background: var(--lambda-blue);
}

/* ▼ フッター ▼ */
.footer {
  width: 100%;
  padding-top: 160px;
}

/* ▼ フッター内ラッパー ▼ */
.footer-inner {
  width: clamp(320px, 92%, 1280px);
  margin: 0 auto;
}
.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 10vw, 150px);
  padding-bottom: 80px;
}
.footer-logo img {
  height: auto;
  width: clamp(180px, 12.5vw, 240px);
}
.footer-logo-text {
  font-size: 12px;
  text-align: center;
  color: #333;
  letter-spacing: 0.1rem;
}
.footer-certification {
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-mark-text {
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: center;
  color: #333;
  font-weight: bold;
}
.p-mark-logo img {
  height: 70px;
  width: auto;
}
.footer-copyright {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(145, 27, 37, 1),
    rgba(218, 37, 44, 1),
    rgba(192, 39, 45, 1)
  );
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.footer-copyright small {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
  }
  
  .p-mark-text {
    text-align: left;
  }
}

/* ▼ JS用ここから ▼ */

/* ▼ 左の縦文字 ▼ */
:root {
  --vertical-font-size: clamp(56px, 5vw, 140px);
  --vertical-lines: 2;
  --vertical-bg-ratio: 0.7;
  --vertical-safe: 24px;

  --vertical-width: max(
    calc(
      var(--vertical-font-size)
      * var(--vertical-lines)
      * var(--vertical-bg-ratio)
      + var(--vertical-safe)
    ),
    80px
  ); 
}

.vertical-wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1000;
  pointer-events: none;
}

.vertical-wrap::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: var(--vertical-width);
  height: 100vh;
  background: #a31414;
  z-index: -1;
}

.vertical-lambda-bg::before {
  background: var(--lambda-blue) !important;
}

.vertical-inner {
  position: relative;
  writing-mode: vertical-rl;
  font-size: var(--vertical-font-size);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
}

.vertical-text {
  display: inline-block;
  transition: opacity 0.4s ease;
  text-shadow: #c7c7c7 2px 3px 10px;
}

.vertical-fixed {
  position: relative;
  margin-top: 1em;
}

.vertical-scroll {
  position: absolute;
  top: 0;
  left: 100%;
  will-change: transform, filter;
}


body.is-active main {
  margin-left: var(--vertical-width);
  width: calc(100% - var(--vertical-width));
}

.imgBox img {
  width: 100%;
  height: auto;
  display: block;
}

main {
  margin-left: 0;
  width: 100%;
  transition: margin-left 0.9s ease, width 0.9s ease;
}

body.is-intro .vertical-wrap {
  transform: translateX(-100%);
  opacity: 0;
}

.vertical-wrap {
  transition: transform 0.9s ease, opacity 0.6s ease;
}

body.is-active .vertical-wrap {
  transform: translateX(0);
  opacity: 1;
}

/* ▼ スクロールアニメーション ▼ */

.delay-1 { }
.delay-2 { }
.delay-3 { }
.delay-4 { }
.delay-5 { }

.js-fade-left,
.js-fade-right {
  opacity: 0;
  will-change: transform, opacity;
  clip-path: inset(0 0 0 0);
}

.js-img-mask {
  overflow: hidden;
}

.js-img-mask img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.2);
}

.js-char-split {
  display: inline-block;
}

.js-marker {
  display: inline;
  background-image: linear-gradient(transparent 60%, #ffcfdf 60%);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.6s ease-in-out;
}
.js-marker.is-active {
  background-size: 100% 100%;
}
.js-typing-marker {
  display: inline-block;
  font-size: clamp(28px, 1.667vw, 32px);
  line-height: 1.5;
  position: relative;
  top: 10px;
  margin-left: 100px;
}
.typing-marker__first--v1::before {
  content: "1";
  font-size: 100px;
  color: #b30000;
  position: absolute;
  left: -80px;
  top: -35px;
  margin-right: 40px;
}
.lambda--vc::before {
  color: var(--lambda-blue) !important;
}
.typing-marker__first--v2::before {
  content: "2";
  font-size: 100px;
  color: #b30000;
  position: absolute;
  left: -80px;
  top: -35px;
  margin-right: 40px;
}
.typing-marker__first--v3::before {
  content: "3";
  font-size: 100px;
  color: #b30000;
  position: absolute;
  left: -80px;
  top: -35px;
  margin-right: 40px;
}
.typing-marker__first--v4::before {
  content: "4";
  font-size: 100px;
  color: #b30000;
  position: absolute;
  left: -80px;
  top: -35px;
  margin-right: 40px;
}
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.char.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-typing-marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 10px;
  background-color: #b30000;
  z-index: -1;
  transition: width 0.6s ease-out;
}

.lambda--vc::after {
  background-color: var(--lambda-blue) !important;
}
.js-typing-marker.is-marked::after {
  width: 100%;
}

.image-wrapper {
  perspective: 1000px; 
  overflow: visible;
  display: flex;
  justify-content: center;
}

.js-image-reveal {
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.img__list--Box {
  width: clamp(320px, 75vw, 1440px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 40px);
}

.img__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.img__list--item {
  margin-bottom: clamp(10px, 1.4vw, 40px);
  text-align: center;
}

.img__list--item img {
  width: 75%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

.arrow__list--item--01 {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.arrow__list--item--01 img {
  width: 30px;
}

.img__list--item h5 {
  font-size: 20px;
  margin-top: 20px;
}

.img__list--item p {
  margin-top: 10px;
  text-align: left;
  display: flex;
  justify-content: center;
}

.card__list--Box{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px;
}

.card__list--text{
  max-width:1100px;
  margin:0 auto;
  display:grid;
}

/* ▼ カード本体 ▼ */
.card{
  position:relative;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 16px rgba(0,0,0,0.15);
}

/* ▼ 番号ラベル ▼ */
.card__num{
  position:absolute;
  top:-10px;
  left:-10px;
  background:#c40000;
  color:#fff;
  font-size:32px;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ▼ 画像 ▼ */
.card__img{
  height:120px;
  background:#f5f5f5;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card__img img{
  max-height:80px;
}

/* ▼ タイトル帯 ▼ */
.card__title{
  background:#c40000;
  color:#fff;
  text-align:center;
  padding:14px 10px;
  font-size:20px;
  letter-spacing:2px;
}

/* ▼ テキスト ▼ */
.card__body{
  padding:20px;
  color:#333;
  line-height:1.8;
}

/* ▼ ＋ボタン ▼ */
.card__btn{
  position:absolute;
  bottom:15px;
  right:15px;
  width:40px;
  height:40px;
  background: #c40000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
  cursor:pointer;
  transition:.3s;
  padding-top: 3px;
}

.card__btn:hover{
  background:#fff;
  border: 1px solid #c40000;
  color:#c40000;
}

/* ▼ 2段目だけ中央寄せ ▼ */
.wrapper .card:nth-child(4),
.wrapper .card:nth-child(5){
  grid-column: span 1;
}

/* ▼ レスポンシブ ▼ */
@media (max-width:900px){
  .wrapper{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px){
  .wrapper{
    grid-template-columns: 1fr;
  }
}

:root {
  --bg-color: #f5f5f5;
  --card-bg: #ffffff;
  --accent-color: #333333;
  --text-color: #555555;
  --shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card--lv2-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.info-card--lv2 {
  background: var(--card-bg);
  border: 1px solid #ddd;
  position: relative;
  padding: 40px 25px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.info-card--lv2:hover {
  transform: translateY(-5px);
}

.card--lv2-number {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent-color);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 25px;
}

.card--lv2-text {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 40px;
  letter-spacing: 0.05em;
  padding: 30px 0;
}

.card--lv2-image {
  margin-top: auto;
  text-align: center;
}

.card--lv2-image img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.timeline-Box {
  position: relative;
  padding-left: 140px;
  margin-left: 50px;
  padding-top: 100px;
  max-width: 900px;
}

.line-container {
  position: absolute;
  left: 100px;
  top: 108px;
  width: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.main-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-red);
  transform-origin: top;
}

.year-block {
  position: relative;
  margin-bottom: 100px;
}

.year-label {
  position: absolute;
  left: -140px;
  top: -4px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--inactive-gray);
  transition: color 0.4s ease;
}

.year-dot {
  position: absolute;
  left: -46px; 
  top: 8px;
  width: 14px;
  height: 14px;
  background-color: var(--inactive-gray);
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.year-block.is-active .year-label { color: var(--primary-red); }
.year-block.is-active .year-dot {
  background-color: var(--primary-red);
  transform: scale(1.4);
}

.event-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(40px);
}

.month-box {
  display: flex;
  align-items: center;
  width: 110px;
  flex-shrink: 0;
}

.month-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: bold;
  min-width: 45px;
}

.note-star {
  color: var(--primary-red);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  visibility: hidden;
}
.event-item.has-star .note-star { visibility: visible; }

.month-bar {
  width: 1px;
  height: 14px;
  background-color: var(--light-gray);
  margin-left: auto;
  margin-right: 15px;
}

.event-content { font-size: 1rem; color: #333; }
.footer-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: -50px;
  margin-left: 3em;
}

/* ▼ CTAコンポーネント ▼ */
.cta-content-inner {
  margin-top: 60px;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
}
.cta-content-inner--left {
  width: 30%;
}
.cta-content-inner--right {
  width: 70%;
  margin-left: 40px;
}
.cta--img img {
  width: 100%;
  max-width: 280px;
}

.cta-content-inner--right h4 {
  font-size: 24px;
  color:#a80014;
}

.cta-content-inner--right h4::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(/assets/img/pic-hint--circle.svg) no-repeat;
  display: inline-block;
  align-items: center;
  position: relative;
  top: 11px;
  right: 10px;
}

.cta-content-inner--blue {
  width: 70%;
  margin-left: 40px;
}

.cta-content-inner--blue h4 {
  font-size: 24px;
  color: var(--lambda-blue);
}

.cta-content-inner--blue h4::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(/assets/img/pic-hint--circle-blue.svg) !important;
  padding-right: 60ox;
  display: inline-block;
  align-items: center;
  position: relative;
  top: 11px;
  right: 10px;
}

.cta-content-btn-Box {
  text-align: center;
}


.notice-list--red {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list--red li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.notice-list--red li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: #c40000;
  border-radius: 50%;
}

input.contact_footer[type=checkbox] {
  display: none;
}
.checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.checkbox01::before {
  background: #fff;
  border: 1px solid #ccc;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.checkbox01::after {
  border-right: 6px solid #a31414;
  border-bottom: 3px solid #a31414;
  content: '';
  display: block;
  height: 20px;
  left: 7px;
  margin-top: -20px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
  width: 9px;
}
input[type=checkbox]:checked + .checkbox01::before {
  border-color: #666;
}
input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1,1,1);
}

.recruit__modal-wrapper {
  text-align: center;
}

.recruit__modal-link {
  color: #a31414;
  text-decoration: underline;
  cursor: pointer;
}

.recruit__modal-link:hover {
  color: #d80f0f;
  transition: 0.3s;
  text-decoration: none;
}

.recruit__modal-submit-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 16px;
  background-color: #a31414;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s;
  margin-top: 40px;
}

.recruit__modal-submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.recruit__modal-submit-btn:not(:disabled):hover {
  background-color: #d80f0f;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05);
}
.recruit__modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.recruit__modal-overlay.is-active {
  opacity: 1;
}
.recruit__modal-container {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  width: 90%;
  max-width: 800px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);

  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease-in, opacity 0.4s ease-in;
}

.recruit__modal--title {
  text-align: center;
  margin-bottom: 20px;
}

.recruit__modal-overlay.is-active .recruit__modal-container {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.recruit__modal-close-x {
  position: absolute;
  top: -8%;
  right: -2%;
  background: none; border: none;
  font-size: 48px; cursor: pointer; color: #aaa;
}
.recruit__modal-close-x:hover { color: #333; }

.recruit__modal-scroll-area {
  height: 400px;
  overflow-y: auto;
  border: 1px solid #eee;
  padding: 15px;
  margin-bottom: 20px;
  background: #fdfdfd;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}

.recruit__modal-agreement-box {
  display: none;
  background: #fff9e6;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #ffeeba;
  text-align: center;
  animation: recruitFadeIn 0.5s ease forwards;
}

@keyframes recruitFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.modal-btn--Box {
  text-align: center;
}

.recruit__modal-close-trigger {
  margin-top: 10px;
  background: #666;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.recruit__modal-close-trigger:hover { 
  background-color: #444;
  transition: 0.3s;
}

.footer-content {
  text-align: center;
  margin-top: 120px;
}