@charset "UTF-8";
/* CSS Document */
/* ==================================================
　header
================================================== */
header a {
  display: block;
  width: 100px;
  margin: 0 auto;
}
/* ==================================================
　共通セクション設定（CSS変数対応）
================================================== */
.mainContents {
  background: url(../img/bk.webp) no-repeat center top;
  background-size: 100% auto;
  background-attachment: scroll;
}
section {
  padding: var(--sec-padding);
}
/* 各セクション共通の内包ブロック */
section .inner {
  width: 90%;
  max-width: 440px;
  margin: 0 auto;
  box-sizing: border-box;
}
section h2 {
  font-size: 2.8rem;
  font-weight: bold;
}
/* ---------- テキスト ---------- */
p {
  font-size: 1.6rem;
}
.note {
  font-size: 1.4rem;
}
b {
  font-weight: bold;
}
@media (max-width:499px) {
  section h2 {
    font-size: 2.4rem;
  }
  p {
    font-size: 1.5rem;
  }
  .note {
    font-size: 1.35rem;
  }
}
/* ---------- リンク ---------- */
.textLink {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  font-weight: 600;
  margin-left: .2em;
}
.textLink .arrow {
  font-size: 0.75em;
  line-height: 1;
  transform: translateY(1px);
}
/* ==================================================
　animation＊強調マーカー
================================================== */
.important {
  position: relative;
  display: inline-block;
  font-weight: 700;
  z-index: 1;
}
.important::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 35%; /* ← 高さを全体の1/3程度に */
  background: #fff100;
  z-index: -1;
  transition: width 0.8s ease-out;
}
.important.is-active::before {
  width: 100%;
}
@keyframes markerSlide {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* ==================================================
　animation＊フェードイン
================================================== */
.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
}
/* ==================================================
　section top：mv
================================================== */
.mvArea {
  position: relative;
  bottom: -1px;
  padding: 0;
}
/* ==================================================
　section01：キャンペーン概要セクション
================================================== */
.presentArea {
  text-align: center;
}
.presentArea .inner {
  background: #fff;
  border-radius: 20px;
  padding: 3em;
  box-shadow: var(--sec-box-shadow);
}
.presentArea .lead {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.presentArea .lead span {
  color: var(--text-accent-color);
}
.presentArea .presentImg img {
  width: 100%;
  height: auto;
  margin: 0 auto 1.5em;
}
@media (max-width:499px) {
  .presentArea .inner .note {
    width: 92%;
    margin: 0 auto;
    text-align: left;
  }
}
/* ==================================================
　section02：キャンペーン期間、section03：キャンペーン期間
================================================== */
/* ---------- inner ---------- */
.campaignArea .inner, .applicationArea .inner {
  background: #fff;
  border-radius: 40px;
  box-shadow: var(--sec-box-shadow);
}
.campaignArea .inner {
  /* ▼ グラデーション枠線設定 ▼ */
  border: 6px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--sec-inner-campaign-gradation);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.applicationArea .inner {
  /* ▼ グラデーション枠線設定 ▼ */
  border: 6px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--sec-inner-application-gradation);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
/* ---------- title ---------- */
.campaignTit, .applicationTit {
  color: #fff;
  text-align: center;
  padding: 0.2em 0 0.4em;
  border-radius: 30px 30px 0 0;
}
.campaignTit {
  background: var(--sec-inner-campaign-gradation);
}
.applicationTit {
  background: var(--sec-inner-application-gradation);
}
@media (max-width:499px) {
  .campaignTit, .applicationTit {
    position: relative;
    width: 101%;
    top: -1px;
    left: -1px;
  }
}
/* ---------- 共通ボックス ---------- */
.campaignBox, .applicationBox {
  margin: 4em 0 5em;
}
.campaignBoxInner, .applicationBoxInner {
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
}
/* ---------- label ---------- */
.campaignBox .label, .applicationBox .label {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1.5em;
  z-index: 1;
}
/* 横ライン（枠全体） */
.campaignBox .label::before, .applicationBox .label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  z-index: -1;
}
.campaignBox .label::before {
  background: var(--sec-inner-campaign-gradation);
}
.applicationBox .label::before {
  background: var(--sec-inner-application-gradation);
}
/* 帯 */
.campaignBox .label span, .applicationBox .label span {
  padding: 0.4em 1.2em;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.campaignBox .label span {
  background: var(--sec-inner-campaign-gradation);
}
.applicationBox .label span {
  background: var(--sec-inner-application-gradation);
}
/* 白い空白（左右の抜け部分） */
.campaignBox .label span::before, .campaignBox .label span::after, .applicationBox .label span::before, .applicationBox .label span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 100%;
  background: #fff;
  z-index: -1;
}
.campaignBox .label span::before, .applicationBox .label span::before {
  left: -8px;
}
.campaignBox .label span::after, .applicationBox .label span::after {
  right: -8px;
}
/* ---------- キャンペーン期間（日付） ---------- */
.campaignBox .date {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}
.campaignArea .note {
  position: relative;
  line-height: 1.7;
  padding-top: 1.5em;
  margin: 2em 0;
}
.campaignArea .note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  /* ▼ グラデーション下地 */
  background: var(--sec-inner-campaign-gradation);
  /* ▼ 丸ドットマスク */
  -webkit-mask-image: repeating-radial-gradient(circle, #000 0 2px, transparent 3px 12px);
  -webkit-mask-size: 12px 6px;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: 0 center;
  mask-image: repeating-radial-gradient(circle, #000 0 2px, transparent 3px 12px);
  mask-size: 12px 6px;
  mask-repeat: repeat-x;
  mask-position: 0 center;
  border-radius: 3px;
  opacity: 1;
}
@media (max-width:499px) {
  .campaignBox .date {
    font-size: 2rem;
  }
}
/* ---------- 申請条件 ---------- */
.applicationArea .courseList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8em;
  margin: 2.5em 0;
}
.applicationArea .courseList li {
  border: 2px solid var(--text-accent-color);
  color: var(--text-accent-color);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0;
  padding: 0.4em .6em;
}
/* ==================================================
　section04：プレミアム フリー・フルタイムについて
================================================== */
/* ---------- title ---------- */
.premiumTit {
  /*margin-bottom: 1.5em;*/
}
/* ---------- 共通ボックス ---------- */
.premiumBox {
  margin: 6em 0;
}
.premiumBoxInner {
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
}
.premiumCta {
  margin: 6em 0 2em !important;
}
/* ---------- 5ブランド ---------- */
.premiumIntroHead {
  position: relative;
  background: var(--bg-color);
  border-radius: 10px 10px 0 0;
  padding: 1.2em 0 1em;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.premiumIntroHead::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-radius: 10px 10px 0 0;
  background: var(--sec-gradation);
}
.premiumIntroHead p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.premiumIntroHead p span {
  color: var(--text-accent-color);
}
.premiumIntroInner {
  border-radius: 0 0 40px 40px;
  background: rgba(255, 255, 255, 0.6);
  border: 4px solid #fff;
  padding: 4em 0;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* Safari対策 */
}
.premiumIntroInner p {
  margin-top: 1.5em;
}
.premiumIntroInner p b {
  color: var(--text-accent-color);
}
@media (max-width:499px) {
  .premiumIntroHead {
    padding: .8em 0 .6em;
  }
}
/* ---------- 通い放題詳細 ---------- */
.premiumTable {
  background: rgba(255, 255, 255, 0.6);
  border: 4px solid #fff;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* Safari対策 */
}
.premiumTable dt {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  background: #686868;
  border-bottom: 4px solid #fff;
  padding: .4em 0;
}
.premiumTable dd {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  padding: .3em 0 .5em;
}
.premiumTable dd.flexContent {
  padding: .2em 0 .6em;
}
.premiumTable .flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.premiumTable .flex::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; /* ドットの太さ（線幅） */
  height: 100%;
  background-image: radial-gradient(circle, #fff 25%, transparent 26%);
  background-size: 12px 12px; /* ドットの間隔（横×縦） */
  background-repeat: repeat-y;
}
.premiumTable .flex p {
  width: 48%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
}
.premiumTable .flex p small {
  font-size: 1.4rem;
}
.priceTag {
  display: inline-block;
  background: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: .2em .6em .3em;
  margin-right: .6em;
  vertical-align: middle;
}
.premiumCta .premiumBoxInner .note .textLink {}
@media (max-width:499px) {
  .premiumTable dt {
    font-size: 2rem;
  }
  .premiumTable dd {
    font-size: 2.4rem;
  }
}
/* ---------- CTA ---------- */
.ctaArea {
  text-align: center;
  margin-top: 6em;
  animation: floatBtn 3s ease-in-out infinite;
}
.ctaArea a {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: .6em 0em .6em 0em;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #fff100;
  border-radius: 100px;
  background: linear-gradient(90deg, #ff579b 0%, #e3004f 100%);
  border: 6px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.ctaArea a:hover {
  transform: translateY(2px);
}
.ctaArea a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 16px;
  background: url(../img/arrow.webp) no-repeat center center / contain;
}
.ctaArea a span {
  display: block;
  color: #fff;
  font-size: 1.8rem;
}
/* ▼ふわふわアニメーション */
@keyframes floatBtn {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width:499px) {
  .ctaArea a {
    font-size: 2.5rem;
  }
  .ctaArea a span {
    font-size: 1.5rem;
  }
}
/* ==================================================
　section05：LINE申請方法
================================================== */
.lineArea {
  background: #60c391;
  padding: 6em 0;
}
/* ---------- title ---------- */
.lineHeading {
  position: relative;
  display: block;
  width: fit-content;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  background: #00a55a;
  border: 4px solid #fff;
  border-radius: 100px;
  padding: 0.4em 2.2em;
  margin: 0 auto 2em;
}
.lineHeading::after {
  content: "";
  position: absolute;
  bottom: -2.5px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
  width: 18px;
  height: 18px;
  background: #00a55a;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
/* ---------- STEP ---------- */
.lineStep {
  position: relative;
  margin: 6em 0;
}
.lineStep .stepInner {
  position: relative;
}
/* 白い点線 */
.step01::after {
  content: "";
  position: absolute;
  left: 28px;
  transform: translateX(-50%);
  bottom: -60px;
  width: 12px;
  height: 520px;
  background-image: radial-gradient(circle, #ffffff 3px, transparent 3px);
  background-size: 12px 22px;
  background-repeat: repeat-y;
}
.step01:last-of-type::after {
  display: none;
}
/* 丸バッジ */
.stepCircle {
  position: absolute;
  top: 55px;
  left: 30px;
  width: 90px;
  height: 90px;
  background: #fff;
  border: 6px solid #60c391;
  border-radius: 50%;
  transform: translate(-40%, 0);
  z-index: 5;
}
.stepCircle p {
  color: #00a55a;
  font-size: 3rem;
  font-weight: bold;
  font-family: "A P-OTF つぶてん Min2 H", "Noto Sans JP", serif;
  text-align: center;
  line-height: 1;
  letter-spacing: -2px;
  margin-top: 3px;
}
.stepCircle p span {
  font-size: 1.4rem;
  letter-spacing: 0;
}
/* 本文部分 */
.stepContent {
  position: relative;
  width: 88%;
  max-width: 380px;
  margin-left: auto;
  background: #fff;
  border-radius: 20px;
  padding: 3.5em 5em 5em 7.5em;
}
.stepContent h3 {
  position: relative;
  color: #d73657;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}
.stepContent h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #60c391;
  -webkit-mask-image: repeating-radial-gradient(circle, #000 0 2px, transparent 3px 12px);
  -webkit-mask-size: 12px 6px;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: 0 center;
  mask-image: repeating-radial-gradient(circle, #000 0 2px, transparent 3px 12px);
  mask-size: 12px 6px;
  mask-repeat: repeat-x;
  mask-position: 0 center;
  border-radius: 3px;
  opacity: 1;
}
.stepContent h3 b {
  color: #00a55a;
}
.stepContent .whiteBox p {
  margin-bottom: 1.4em;
}
.stepContent .whiteBox p .btnLink {
  display: block;
  width: 160px;
  margin-top: 4px;
}
.stepContent .whiteBox p .textLink {
  color: #00a55a;
  font-weight: bold;
}
.step02 .stepContent .whiteBox figure {
  margin-bottom: 3em;
}
.stepContent .whiteBox .arrowDown img {
  width: 28px;
  margin: 0 auto;
}
@media (max-width:499px) {
  /* 白い点線 */
  .lineStep::after {
    left: 14px;
    bottom: -66px;
    height: 500px;
  }
  /* 丸バッジ */
  .stepCircle p {
    margin-top: 0;
  }
  @supports (-webkit-touch-callout: none) { /* Safari */
    .stepCircle p {
      margin-top: -2px;
    }
  }
  /* 本文部分 */
  .stepContent h3, .stepContent .whiteBox p {
    margin-bottom: 1em;
  }
}
@supports (-webkit-touch-callout: none) { /* Safari */
  .stepContent {
    padding: 3em 3.5em 4em 7em;
  }
}
/* ---------- 注意事項 ---------- */
.lineNote {
  background: rgba(255, 255, 255, 0.86);
  border: 4px solid #fff;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* Safari対策 */
  padding: 4em 4.5em;
}
.lineNote h3 {
  color: #00a55a;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: .2em;
}
.lineNote p {
  margin-bottom: 1.2em;
}