@charset "UTF-8";
/* ---------------------------------
  全ページ共通
----------------------------------- */
/*---------------------------------------------
Reset
---------------------------------------------*/
html {
  color: #333;
  overflow-y: scroll;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

div, dl, dt, dd, form, input, ul, ol, li, p, select, textarea, span, th, td {
  margin: 0;
  padding: 0;
}

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

/*---------------------------------------------
Style
---------------------------------------------*/
body {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  body body {
    font-size: 1.5rem;
  }
}

/* =========================================================
ヘッダー
========================================================= */
.header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header {
    height: 50px;
  }
}
.header__logo {
  max-width: 255px;
  margin-left: 10%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__logo {
    margin-left: 2.4%;
    max-width: 55%;
  }
}
.header__logo a {
  display: block;
}

.l-hamburger,
.l-hamburger *,
.l-hamburger *::before,
.l-hamburger *::after {
  box-sizing: border-box;
}

/* ---------- トリガーボタン ---------- */
.l-hamburger__trigger {
  position: relative;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 7rem;
  height: 7rem;
  padding: 0.4rem 0.25rem;
  background: #000;
  border: none;
  color: #FFEE00;
  cursor: pointer;
}
@media (max-width: 767px) {
  .l-hamburger__trigger {
    gap: 4px;
  }
}
.l-hamburger__trigger-label {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .l-hamburger__trigger-label {
    font-size: 1rem;
    font-weight: 400;
  }
}
.l-hamburger__trigger-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 43px;
}
@media (max-width: 767px) {
  .l-hamburger__trigger-icon {
    width: 30px;
    gap: 6px;
  }
}
.l-hamburger__trigger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: #FFEE00;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 767px) {
  .l-hamburger__trigger-icon span {
    height: 2px;
  }
}
.l-hamburger.is-open .l-hamburger__trigger-icon span:nth-child(1) {
  transform: translateY(10px) rotate(24deg);
}
@media (max-width: 767px) {
  .l-hamburger.is-open .l-hamburger__trigger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(24deg);
  }
}
.l-hamburger.is-open .l-hamburger__trigger-icon span:nth-child(2) {
  opacity: 0;
}
.l-hamburger.is-open .l-hamburger__trigger-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-24deg);
}
@media (max-width: 767px) {
  .l-hamburger.is-open .l-hamburger__trigger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-24deg);
  }
}
.l-hamburger {
  /* ---------- オーバーレイ ---------- */
}
.l-hamburger__overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.l-hamburger.is-open .l-hamburger__overlay {
  opacity: 1;
  visibility: visible;
}
.l-hamburger {
  /* ---------- メニューパネル（PC：コンパクトな縦型） ---------- */
}
.l-hamburger__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  max-width: 400px;
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  border: solid 4px #000;
}
.l-hamburger.is-open .l-hamburger__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-hamburger__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-hamburger__item a {
  display: block;
  padding: 2.5rem 1rem;
  text-align: center;
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.l-hamburger__item a:hover {
  background-color: #FFEE00;
}
.l-hamburger__item a--current a {
  background-color: #FFEE00;
}
.l-hamburger__item a--current a:hover {
  background-color: yellow;
}

/* ---------- SP：タップしやすいサイズに調整 ---------- */
@media screen and (max-width: 767px) {
  .l-hamburger__trigger {
    width: 5rem;
    height: 5rem;
  }
  .l-hamburger__panel {
    width: 100%;
  }
  .l-hamburger__item a {
    font-size: 2rem;
  }
}
/* =========================================================
ページトップ リンク
========================================================= */
/*リンクの形状*/
#page-top a {
  padding: 6px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  width: 120px;
  height: 120px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  color: #E73372;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1em;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 100%;
  border: solid 4px #E73372;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #page-top a {
    font-size: 1.6rem;
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  #page-top a {
    font-size: 1.4rem;
    width: 76px;
    height: 76px;
    border-width: 2px;
  }
}
#page-top a::before {
  content: "";
  width: 105px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #fff;
  border: solid 2px #E73372;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #page-top a::before {
    width: 88px;
    height: 88px;
  }
}
@media (max-width: 767px) {
  #page-top a::before {
    width: 66px;
    height: 66px;
    border-width: 1px;
  }
}
#page-top a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 2px #E73372;
  border-left: solid 2px #E73372;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  z-index: 3;
}
@media (max-width: 767px) {
  #page-top a::after {
    width: 10px;
    height: 10px;
    top: 14px;
  }
}

#page-top a:hover {
  opacity: 0.75;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: -20px;
  z-index: 50;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(300px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
  bottom: 30px;
}
@media (max-width: 767px) {
  #page-top.UpMove {
    bottom: 80px;
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(300px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(300px);
  }
}
/*---------------------------------------------
フッター
---------------------------------------------*/
footer {
  width: 100%;
  padding: 20px 0;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: normal;
  background: #E73372;
}

footer small {
  color: #fff;
  text-decoration: none;
}

footer address {
  color: #fff;
}

/* sp */
@media screen and (max-width: 520px) {
  footer {
    padding: 20px 0 100px;
  }
  footer a {
    font-size: 1.2rem;
  }
  #page-top a {
    margin: 0 -10px 0 0;
  }
}
/* ---------- 追従 ---------- */
.floating {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  z-index: 80;
}
@media (max-width: 767px) {
  .floating {
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
  }
}
.floating__area {
  position: relative;
  z-index: 1;
}
.floating__area::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 16px 0 0 16px;
  position: absolute;
  right: 0;
  bottom: -4px;
  z-index: -1;
}
.floating__area::after {
  content: "";
  width: 90%;
  max-width: 134px;
  aspect-ratio: 268/123;
  background: url(../img/charactor.png) no-repeat center/contain;
  position: absolute;
  left: 54%;
  top: -32px;
  transform: translateX(-50%);
  z-index: 5;
}
@media (max-width: 767px) {
  .floating__area::after {
    max-width: 120px;
    left: 18%;
    top: -42px;
    transform: rotate(-8deg) translateX(-50%);
  }
}
.floating__text {
  padding: 30px 23px 17px 37px;
  background-color: #E73372;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(25 / 20 * 1em);
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 2 * (100vw - 767px) / 1153, 20px);
  color: #FFEE00;
  border-radius: 16px 0 0 16px;
  border-top: solid 4px #000;
  border-left: solid 4px #000;
  border-bottom: solid 4px #000;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .floating__text {
    padding: 28px 8px 18px 20px;
  }
}
@media (max-width: 767px) {
  .floating__text {
    font-size: 21px;
    width: 100%;
    padding: 19px 0;
    border-radius: 0;
    border-top-width: 3px;
    border-left: none;
    border-bottom: none;
  }
}
.floating__text::before {
  content: "";
  width: 97%;
  height: 46px;
  border-radius: 8px 0 0 0;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .floating__text::before {
    content: none;
  }
}
.floating__text span {
  color: #fff;
}

.l-main,
.l-main *,
.l-main *::before,
.l-main *::after {
  box-sizing: border-box;
}

.l-main {
  --sec-yellow: #FFEE00;
  --sec-red: #E60012;
  --sec-blue: #00A0E9;
  --sec-blue-dark: #0f3a70;
  --sec-black: #000;
  margin-top: 70px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .l-main {
    margin-top: 50px;
  }
}

.l-main img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- セクション：キービジュアル ---------- */
.kv {
  background: url(../img/kv-bg.png) no-repeat top center/cover;
}
@media (max-width: 767px) {
  .kv {
    padding: 20px 0 0;
  }
}
.kv__inner {
  max-width: 1000px;
  width: 95%;
  margin-inline: auto;
  position: relative;
  transform: translateX(-20px);
}
@media (max-width: 767px) {
  .kv__inner {
    transform: none;
  }
}
.kv__main {
  max-width: 985px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  transform: translateX(-50px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .kv__main {
    transform: translateX(-20px);
  }
}
@media (max-width: 767px) {
  .kv__main {
    width: 95%;
    transform: none;
  }
}
.kv__main-cha {
  max-width: 250px;
  width: 17.01vw;
  aspect-ratio: 491/273;
  position: absolute;
  top: 55%;
  left: 57%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .kv__main-cha {
    max-width: 92px;
    width: 24.53%;
  }
}
.kv__pic01 {
  width: 240px;
  position: absolute;
  bottom: -10px;
  left: 20%;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .kv__pic01 {
    max-width: 240px;
    width: 21.52vw;
    bottom: 0;
    left: 18%;
  }
}
@media (max-width: 767px) {
  .kv__pic01 {
    max-width: 84px;
    width: 22.6%;
    bottom: 0;
    left: 22%;
  }
}
.kv__pic02 {
  width: 348px;
  position: absolute;
  top: 16px;
  right: -8%;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .kv__pic02 {
    max-width: 348px;
    width: 32.19vw;
    right: -4%;
  }
}
@media (max-width: 767px) {
  .kv__pic02 {
    max-width: 136px;
    width: 36.26%;
    top: 0;
    right: -3%;
  }
}
.kv__pic03 {
  width: 364px;
  position: absolute;
  top: -12px;
  left: 10%;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .kv__pic03 {
    max-width: 364px;
    width: 38.2vw;
    left: 8%;
  }
}
@media (max-width: 767px) {
  .kv__pic03 {
    max-width: 125px;
    width: 33.26%;
    left: 13%;
  }
}
.kv__pic04 {
  width: 208px;
  position: absolute;
  top: 40px;
  left: -5%;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .kv__pic04 {
    max-width: 208px;
    width: 19.5vw;
    left: -5%;
  }
}
@media (max-width: 767px) {
  .kv__pic04 {
    max-width: 85px;
    width: 20.46%;
    top: -20px;
    left: 0;
  }
}
.kv {
  /* KVアニメーション */
}
.kv .js-anim01,
.kv .js-anim02,
.kv .js-anim03,
.kv .js-anim04,
.kv .js-anim05 {
  display: block;
  opacity: 0;
  visibility: hidden;
}
.kv {
  /* ① メイン画像：左から右 */
}
.kv .js-anim01.is-anim {
  animation: kvFadeRight 0.8s ease-out forwards;
}
.kv {
  /* ② 左イラスト：左から右 */
}
.kv .js-anim02.is-anim {
  animation: kvFadeRight 0.8s ease-out forwards;
}
.kv {
  /* ③ 右イラスト：右から左 */
}
.kv .js-anim03.is-anim {
  animation: kvFadeLeft 0.8s ease-out forwards;
}
.kv {
  /* ④ 左イラスト：左から右 */
}
.kv .js-anim04.is-anim {
  animation: kvFadeRight 0.8s ease-out forwards;
}
.kv {
  /* ⑤ キャッチコピー：下から左上 */
}
.kv .js-anim05.is-anim {
  animation: kvFadeUpLeft 0.6s ease-out forwards;
}
.kv {
  /* ⑥ キャラクター：左右にゆらゆら */
}
.kv .js-anim06.is-floating {
  transform-origin: center bottom;
  animation: kvFloating 1.8s ease-in-out infinite;
}
.kv {
  /* 左から右 */
}
@keyframes kvFadeRight {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.kv {
  /* 右から左 */
}
@keyframes kvFadeLeft {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.kv {
  /* 下から少し左上 */
}
@keyframes kvFadeUpLeft {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate(10px, 30px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
}
.kv {
  /* フェードインのみ */
}
@keyframes kvFadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.kv {
  /* 左右にゆらゆら */
}
@keyframes kvFloating {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ---------- セクション：企画アンカー ---------- */
.sec-project {
  background-color: #FFEE00;
  padding-bottom: 24px;
  border-bottom: solid 8px #000;
}
@media (max-width: 767px) {
  .sec-project {
    padding-bottom: 20px;
  }
}
.sec-project__head {
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: #E73372;
  padding: 10px 0;
  position: relative;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sec-project__head {
    margin-bottom: 20px;
  }
}
.sec-project__head::after {
  content: "";
  width: 0;
  height: 0;
  border-top: solid 10px #E73372;
  border-right: solid 12px transparent;
  border-left: solid 12px transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.sec-project__head-txt {
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 1153, 24px);
  display: inline-block;
  position: relative;
}
.sec-project__head-txt span {
  color: #FFEE00;
}
.sec-project__head-txt::before {
  content: "";
  width: 0;
  height: 0;
  border-top: solid 18px #fff;
  border-right: solid 14px transparent;
  border-left: solid 14px transparent;
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sec-project__head-txt::before {
    border-top-width: 14px;
    border-right-width: 9px;
    border-left-width: 9px;
  }
}
.sec-project__head-txt::after {
  content: "";
  width: 0;
  height: 0;
  border-top: solid 18px #fff;
  border-right: solid 14px transparent;
  border-left: solid 14px transparent;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sec-project__head-txt::after {
    border-top-width: 14px;
    border-right-width: 9px;
    border-left-width: 9px;
  }
}
.sec-project__dtl {
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec-project__dtl {
    margin-bottom: 15px;
  }
}
.sec-project__dtl::before {
  content: "";
  width: 126px;
  aspect-ratio: 126/102;
  background: url(../img/bg-star-left.png) no-repeat center/contain;
  position: absolute;
  top: 80%;
  left: 38%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .sec-project__dtl::before {
    width: 71px;
    aspect-ratio: 71/96;
    background-image: url(../img/bg-star-left-sp.png);
    top: -10px;
    left: 4%;
    transform: none;
  }
}
.sec-project__dtl::after {
  content: "";
  width: 121px;
  aspect-ratio: 121/114;
  background: url(../img/bg-star-right.png) no-repeat center/contain;
  position: absolute;
  top: 70%;
  left: 61%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .sec-project__dtl::after {
    width: 94px;
    aspect-ratio: 9/10;
    background-image: url(../img/bg-star-right-sp.png);
    top: -14px;
    left: auto;
    right: -2%;
    transform: none;
  }
}
.sec-project__dtl-sub {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 1153, 24px);
  color: #000;
}
.sec-project__dtl-sub .num {
  color: #E73372;
}
.sec-project__dtl-sub .num span {
  font-size: 36px;
  font-size: clamp(32px, 32px + 4 * (100vw - 767px) / 1153, 36px);
}
.sec-project__dtl-main {
  margin-top: 10px;
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 54px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(40px, 40px + 14 * (100vw - 767px) / 1153, 54px);
  color: #E73372;
}
@media (max-width: 767px) {
  .sec-project__dtl-main {
    margin-top: 5px;
  }
}
.sec-project__dtl-main span {
  display: inline-block;
  position: relative;
}
.sec-project__dtl-main span::before {
  content: "";
  width: 45px;
  aspect-ratio: 46/41;
  background: url(../img/sparkle-left.png) no-repeat center/contain;
  position: absolute;
  bottom: -5px;
  right: 100%;
}
@media (max-width: 767px) {
  .sec-project__dtl-main span::before {
    width: 31px;
  }
}
.sec-project__dtl-main span::after {
  content: "";
  width: 46px;
  aspect-ratio: 92/87;
  background: url(../img/sparkle-right.png) no-repeat center/contain;
  position: absolute;
  top: -5px;
  left: 100%;
}
@media (max-width: 767px) {
  .sec-project__dtl-main span::after {
    width: 32px;
  }
}
.sec-project__btn a {
  padding: 18px 70px;
  border-radius: 60px;
  display: inline-block;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 4 * (100vw - 767px) / 1153, 24px);
  border: solid 4px #000;
  background-color: #00A0E9;
  color: #FFEE00;
  box-shadow: 0 8px 0 0 #000;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .sec-project__btn a {
    width: 74%;
    display: block;
    margin-inline: auto;
    padding: 16px;
    border-width: 3px;
    box-shadow: 0 4px 0 0 #000;
  }
}
.sec-project__btn a::before {
  content: "";
  width: 90%;
  height: 50%;
  display: block;
  border-radius: 40px;
  background: #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.sec-project__btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 2px #FFEE00;
  border-right: solid 2px #FFEE00;
  position: absolute;
  top: 48%;
  right: 30px;
  transform: rotate(45deg) translateY(-50%);
}
@media (max-width: 767px) {
  .sec-project__btn a::after {
    width: 8px;
    height: 8px;
    top: 48%;
    right: 20px;
  }
}
.sec-project__btn a span {
  color: #FFEE00;
}
.sec-project__btn a:hover {
  opacity: 0.75;
}

/* ---------- セクション：イベント アンカーリンク ---------- */
.sec-anchor {
  padding: 4.8rem 0;
  background-color: #FDD13D;
}
@media (max-width: 767px) {
  .sec-anchor {
    padding: 1.8rem 0 2.3rem;
  }
}
.sec-anchor__contents {
  position: relative;
}
.sec-anchor__picture {
  display: block;
  position: relative;
  max-width: 1004px;
  width: 92%;
  margin-inline: auto;
}
.sec-anchor__link {
  max-width: 924px;
  width: 84%;
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .sec-anchor__link {
    bottom: auto;
    top: 110px;
    width: 80%;
    max-width: 100%;
  }
}
.sec-anchor__link-list {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .sec-anchor__link-list {
    flex-direction: column;
    gap: 8px;
  }
}
.sec-anchor__link-list li {
  width: calc((100% - 16px) / 3);
}
@media (max-width: 767px) {
  .sec-anchor__link-list li {
    width: 100%;
  }
}
.sec-anchor__link-list li a {
  display: block;
  position: relative;
}
.sec-anchor__link-list li a::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: solid 4px #fff;
  border-bottom: solid 4px #fff;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: rotate(45deg) translateX(-50%);
}
@media (max-width: 767px) {
  .sec-anchor__link-list li a::after {
    border-width: 3px;
    bottom: 14px;
  }
}

/* ---------- セクション：イベント 増量セール・欲ばり盛 ---------- */
.sec-increase {
  padding: 9.6rem 0 6.4rem;
  background: url(../img/plan01-bg.jpg) no-repeat top center/100%;
}
@media (max-width: 767px) {
  .sec-increase {
    padding: 2.7rem 0 2.4rem;
    background-image: url(../img/plan01-bg-sp.jpg);
  }
}
.sec-increase__head {
  max-width: 900px;
  width: 62.5vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-increase__head {
    width: 95%;
  }
}
.sec-increase__date {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .sec-increase__date {
    margin-top: 1rem;
  }
}
.sec-increase__date-txt {
  display: inline-block;
  background-color: #fff;
  border: solid 5px #DD2627;
  padding: 21px 40px;
  border-radius: 50px;
  color: #DD2627;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 16 * (100vw - 767px) / 1153, 32px);
}
@media (max-width: 767px) {
  .sec-increase__date-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px;
    width: 92%;
    margin-inline: auto;
    border-width: 3px;
  }
}
.sec-increase__date span {
  display: inline-block;
  padding: 8px 16px;
  font-size: 24px;
  font-size: clamp(14px, 14px + 10 * (100vw - 767px) / 1153, 24px);
  background-color: #DD2627;
  color: #fff;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .sec-increase__date span {
    margin-right: 0;
    padding: 6px 8px;
  }
}
.sec-increase__txt {
  text-align: center;
  margin-top: 2.4rem;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 700;
  line-height: calc(55 / 40 * 1em);
  letter-spacing: normal;
  font-size: clamp(28px, 28px + 12 * (100vw - 767px) / 1153, 40px);
}
@media (max-width: 767px) {
  .sec-increase__txt {
    margin-top: 1.6rem;
  }
}
.sec-increase__txt span {
  color: #DD2627;
}
.sec-increase__btn {
  margin-top: 2.4rem;
  max-width: 500px;
  width: 92%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-increase__btn {
    margin-top: 1.6rem;
  }
}
.sec-increase__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 16 * (100vw - 767px) / 1153, 32px);
  color: #fff;
  background-color: #626262;
  border: solid 4px #000;
  box-shadow: 0 8px 0 0 #000;
  padding: 33px;
  border-radius: 60px;
  position: relative;
  text-decoration: none;
}
@media (max-width: 767px) {
  .sec-increase__btn a {
    padding: 22px;
    font-size: 2.4rem;
  }
}
.sec-increase__btn a::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  position: absolute;
  top: 49%;
  right: 30px;
  transform: rotate(45deg) translateX(-50%);
}
@media (max-width: 767px) {
  .sec-increase__btn a::after {
    right: 18px;
  }
}
/* ---------- セクション：イベント 秋のインナーバーゲン ---------- */
.sec-bargain {
  padding: 5.3rem 0;
  background: url(../img/bg-autumn.jpg) no-repeat center top/100%, #FEEFD3;
}
@media (max-width: 767px) {
  .sec-bargain {
    padding: 1.1rem 0 2.8rem;
    background-image: url(../img/bg-autumn-sp.png);
  }
}
.sec-bargain__head {
  max-width: 560px;
  width: 38.8vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-bargain__head {
    max-width: 200px;
    width: 53.3vw;
  }
}
.sec-bargain__date {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .sec-bargain__date {
    margin-top: 1rem;
  }
}
.sec-bargain__date-txt {
  display: inline-block;
  background-color: #fff;
  border: solid 5px #6A3907;
  padding: 21px 40px;
  border-radius: 50px;
  color: #6A3907;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 16 * (100vw - 767px) / 1153, 32px);
}
@media (max-width: 767px) {
  .sec-bargain__date-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px;
    width: 92%;
    margin-inline: auto;
    border-width: 3px;
  }
}
.sec-bargain__date span {
  display: inline-block;
  padding: 8px 16px;
  font-size: 24px;
  font-size: clamp(14px, 14px + 10 * (100vw - 767px) / 1153, 24px);
  background-color: #6A3907;
  color: #fff;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .sec-bargain__date span {
    margin-right: 0;
    padding: 6px 8px;
  }
}
.sec-bargain__detail {
  margin-top: 5rem;
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-bargain__detail {
    margin-top: 1.2rem;
  }
}
.sec-bargain__detail-ttl {
  position: relative;
  z-index: 1;
  width: 58.19vw;
  max-width: 838px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-bargain__detail-ttl {
    width: 98%;
  }
}
.sec-bargain__detail-ct {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-bargain__detail-ct {
    margin-top: -40px;
  }
}
@media (max-width: 767px) {
  .sec-bargain__detail-ct {
    margin-top: -30px;
  }
}
.sec-bargain__att {
  margin-top: 2.4rem;
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 400;
  line-height: calc(32 / 24 * 1em);
  letter-spacing: calc(40 / 1000 * 1em);
  font-size: clamp(14px, 14px + 10 * (100vw - 767px) / 1153, 24px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-bargain__att {
    text-align: left;
    margin-top: 1.6rem;
  }
}
.sec-bargain__btn {
  margin-top: 2.4rem;
  max-width: 500px;
  width: 92%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-bargain__btn {
    max-width: 100%;
    margin-top: 1.6rem;
    width: 100%;
  }
}
.sec-bargain__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 12 * (100vw - 767px) / 1153, 32px);
  color: #fff;
  background-color: #E73372;
  border: solid 4px #000;
  box-shadow: 0 8px 0 0 #000;
  padding: 33px;
  border-radius: 60px;
  position: relative;
  text-decoration: none;
}
@media (max-width: 767px) {
  .sec-bargain__btn a {
    padding: 22px;
    font-size: 2.4rem;
  }
}
.sec-bargain__btn a::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  position: absolute;
  top: 49%;
  right: 30px;
  transform: rotate(45deg) translateX(-50%);
}
@media (max-width: 767px) {
  .sec-bargain__btn a::after {
    right: 18px;
  }
}
.sec-bargain__btn a span {
  color: #FFEE00;
}

/* ---------- セクション：メインビジュアル ---------- */
.mainv {
  position: relative;
  padding: 194px 0 40px;
  background: url(../img/mainv-bg-pc.jpg) no-repeat center/cover;
}
@media (max-width: 767px) {
  .mainv {
    padding: 18px 0 23px;
    background-image: url(../img/mainv-bg-sp.jpg);
  }
}
.mainv__inner {
  max-width: 980px;
  margin-inline: auto;
}
.mainv__subtxt {
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .mainv__subtxt {
    margin-top: 0;
  }
}
.mainv__subtxt::before {
  content: "";
  width: 450px;
  height: 92px;
  background: linear-gradient(to bottom, #E73372 0, #E73372 40%, #fff 40%, #fff 100%);
  border-radius: 8px;
  border: solid 4px #000;
  position: absolute;
  top: 66%;
  left: calc(50% - 5px);
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .mainv__subtxt::before {
    width: 343px;
    height: 70px;
    top: 65%;
    left: calc(50% - 2px);
  }
}
.mainv__subtxt::after {
  content: "";
  width: 450px;
  height: 92px;
  border-radius: 8px;
  background-color: #000;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
@media (max-width: 767px) {
  .mainv__subtxt::after {
    width: 343px;
    height: 70px;
    top: 68%;
  }
}
.mainv__subtxt-wrap {
  display: inline-block;
}
.mainv__subtxt-main {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(30px, 30px + 10 * (100vw - 767px) / 1153, 40px);
  color: #fff;
  -webkit-text-stroke: 10px #000;
  paint-order: stroke fill;
}
@media (max-width: 767px) {
  .mainv__subtxt-main {
    -webkit-text-stroke: 8px #000;
  }
}
.mainv__subtxt-main .c-yellow {
  color: #FFEE00;
}
.mainv__subtxt-main .c-yellow span {
  font-size: 5.6rem;
  font-size: clamp(43px, 43px + 13 * (100vw - 767px) / 1153, 56px);
}
.mainv__subtxt-sub {
  margin-top: 25px;
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 28px;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(24px, 24px + 4 * (100vw - 767px) / 1153, 28px);
  color: #E73372;
}
@media (max-width: 767px) {
  .mainv__subtxt-sub {
    margin-top: 16px;
    font-size: 2.1rem;
  }
}
.mainv__picture {
  display: block;
  max-width: 980px;
  width: 80vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .mainv__picture {
    width: 99vw;
  }
}
.mainv__picture img {
  width: 100%;
}
.mainv__anim {
  position: relative;
  max-width: 980px;
  width: 80vw;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mainv__anim {
    width: 92vw;
  }
}
@media (max-width: 767px) {
  .mainv__anim {
    width: 98%;
  }
}
.mainv__anim-pt {
  max-width: 403px;
  width: 27.99vw;
  position: absolute;
  top: -170px;
  left: 35px;
  z-index: 2;
  opacity: 0;
  transform: translateY(180px) rotate(-8deg) scale(0.9);
  transform-origin: center bottom;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mainv__anim-pt {
    width: 32.99vw;
    top: -114px;
  }
}
@media (max-width: 767px) {
  .mainv__anim-pt {
    width: 43.93vw;
    max-width: 164px;
    top: 39px;
    left: 10px;
  }
}
.mainv__anim-pt.is-active {
  animation: mainv-pt 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mainv__anim-pr {
  max-width: 440px;
  width: 30.55vw;
  position: absolute;
  top: -155px;
  right: 45px;
  z-index: 3;
  opacity: 0;
  transform: translateY(180px) rotate(8deg) scale(0.9);
  transform-origin: center bottom;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mainv__anim-pr {
    width: 32.55vw;
    top: -90px;
  }
}
@media (max-width: 767px) {
  .mainv__anim-pr {
    width: 47.5vw;
    max-width: 178px;
    top: 38px;
    right: 12px;
  }
}
.mainv__anim-pr.is-active {
  animation: mainv-pr 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mainv__anim-cha {
  max-width: 385px;
  width: 26.74vw;
  position: absolute;
  top: -145px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  opacity: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mainv__anim-cha {
    width: 34.7vw;
    top: -150px;
  }
}
@media (max-width: 767px) {
  .mainv__anim-cha {
    width: 49.06vw;
    max-width: 184px;
    top: 28px;
  }
}
.mainv__anim-cha.is-active {
  animation: mainv-cha 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mainv__anim-main {
  position: relative;
  z-index: 9;
  opacity: 0;
  transform: scale(0.72);
  transform-origin: center center;
}
.mainv__anim-main.is-active {
  animation: mainv-main 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes mainv-main {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  35% {
    opacity: 1;
    transform: scale(1.08);
  }
  65% {
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mainv-cha {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(80px) scaleY(0.7);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px) scaleY(1.03);
  }
  75% {
    transform: translateX(-50%) translateY(3px) scaleY(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scaleY(1);
  }
}
@keyframes mainv-pt {
  0% {
    opacity: 0;
    transform: translateY(180px) rotate(-8deg) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(-12px) rotate(2deg) scale(1.03);
  }
  75% {
    transform: translateY(5px) rotate(-1deg) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}
@keyframes mainv-pr {
  0% {
    opacity: 0;
    transform: translateY(180px) rotate(8deg) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(-12px) rotate(-2deg) scale(1.03);
  }
  75% {
    transform: translateY(5px) rotate(1deg) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

/* ---------- セクション：メインナビゲーション ---------- */
.sec-nav {
  padding: 15px 0;
  background: var(--sec-black);
}
@media (max-width: 767px) {
  .sec-nav {
    padding: 0;
  }
}
.sec-nav__wrap {
  max-width: 1000px;
  margin-inline: auto;
}
.sec-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .sec-nav__list {
    flex-wrap: wrap;
  }
}
.sec-nav__item {
  flex: 1 1 0;
  border-left: 1px solid #fff;
}
@media (max-width: 767px) {
  .sec-nav__item {
    flex: 1 1 50%;
    border-left: none;
    border-bottom: 1px solid #fff;
  }
  .sec-nav__item:nth-child(odd) {
    border-right: 2px solid #fff;
  }
}
.sec-nav__item:first-child {
  border-left: none;
}
.sec-nav__item a {
  display: block;
  padding: 0 10px 10px;
  text-align: center;
  color: #FFEE00;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(32 / 20 * 1em);
  letter-spacing: calc(40 / 1000 * 1em);
  font-size: clamp(16px, 16px + 4 * (100vw - 767px) / 1153, 20px);
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  position: relative;
}
@media (max-width: 767px) {
  .sec-nav__item a {
    padding: 19px 0;
  }
}
.sec-nav__item a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: rotate(45deg) translateX(-50%);
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .sec-nav__item a::after {
    left: auto;
    right: 15px;
    bottom: auto;
    top: 42%;
    transform: rotate(45deg) translateY(-50%);
    width: 7px;
    height: 7px;
  }
}
.sec-nav__item a:hover::after {
  bottom: -4px;
}

/* ---------- セクション：応募エリア ---------- */
.sec-campaign {
  background-color: #00A0E9;
  background-image: url("../img/campaign-bg-pc.png");
  background-repeat: repeat-x;
  text-align: center;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .sec-campaign {
    padding: 2.4rem 0;
    background-image: url(../img/campaign-bg-sp.png);
  }
}

.sec-campaign__entry {
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .sec-campaign__entry {
    margin-bottom: 5rem;
  }
}
.sec-campaign__entry-inner {
  width: 92%;
  max-width: 770px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sec-campaign__entry-inner {
    width: 100%;
  }
}
.sec-campaign__entry-btn {
  display: block;
  border-radius: 8px;
  border: solid 4px #000;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec-campaign__entry-btn {
    font-size: 2rem;
  }
}
.sec-campaign__entry-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #000;
  position: absolute;
  right: -7px;
  bottom: -7px;
  z-index: -1;
}
.sec-campaign__entry-btn:hover {
  opacity: 0.85;
}
.sec-campaign__entry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
@media (max-width: 767px) {
  .sec-campaign__entry-list {
    gap: 19px;
  }
}
.sec-campaign__entry-item {
  margin: 0;
  padding: 0;
  width: 366px;
}
.sec-campaign__entry-item a .main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 76px;
  border-radius: 4px 4px 0 0;
  position: relative;
}
.sec-campaign__entry-item a .main::after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
.sec-campaign__entry-item a .text span {
  color: #FFEE00;
}
.sec-campaign__entry-item a .sub {
  text-align: center;
  padding: 8px 0;
  background: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  border-radius: 0 0 4px 4px;
}
.sec-campaign__entry-item.majica a .main {
  background-color: #E60012;
}
.sec-campaign__entry-item.majica a .sub {
  color: #E60012;
}
.sec-campaign__entry-item.receipt a .main {
  background-color: #00A0E9;
}
.sec-campaign__entry-item.receipt a .sub {
  color: #00A0E9;
}
.sec-campaign__entry-att {
  margin-top: 15px;
  text-align: right;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: calc(16 / 12 * 1em);
  letter-spacing: normal;
  margin-right: 9%;
}
@media (max-width: 767px) {
  .sec-campaign__entry-att {
    text-align: center;
    font-size: 13px;
    margin-right: 0;
  }
}

/* ---------- セクション：キャンペーン概要 ---------- */
.sec-campaign__outline {
  position: relative;
}
.sec-campaign__outline-cloud {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 810px;
  aspect-ratio: 1657/888;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec-campaign__outline-cloud {
    aspect-ratio: 375/334;
  }
}
.sec-campaign__outline-cloud::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/outline-cloud-bg-pc.png") no-repeat center/100%;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .sec-campaign__outline-cloud::after {
    top: 0;
    background-image: url("../img/outline-cloud-bg-sp.png");
  }
}
.sec-campaign__outline-cloud .sec-campaign__outline-title-img {
  margin: 0 auto;
  max-width: 600px;
  width: 94vw;
  aspect-ratio: 1337/333;
}
.sec-campaign__outline-cloud .sec-campaign__outline-logo {
  margin: 0 auto 10px;
  max-width: 340px;
  width: 72%;
}
@media (max-width: 767px) {
  .sec-campaign__outline-cloud .sec-campaign__outline-logo {
    width: 92%;
    max-width: 180px;
  }
}
.sec-campaign__outline-title {
  position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}
@media (max-width: 767px) {
  .sec-campaign__outline-title {
    top: -34px;
  }
}
.sec-campaign__outline-picture {
  display: block;
}
.sec-campaign__outline-lead {
  display: inline-block;
  padding: 6px 10px;
  background-color: #E73372;
  margin: 0 0 2.4rem;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
}
@media (max-width: 767px) {
  .sec-campaign__outline-lead {
    font-size: 1.4rem;
    padding: 3px 6px;
  }
}
.sec-campaign__outline-lead {
  color: #fff;
}
@media (max-width: 767px) {
  .sec-campaign__outline-lead {
    margin-bottom: 6px;
  }
}
.sec-campaign__outline-lead .c-yellow {
  color: #FFEE00;
}
.sec-campaign__outline-lead .c-yellow span {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .sec-campaign__outline-lead .c-yellow span {
    font-size: 1.8rem;
  }
}
.sec-campaign__outline-method-ttl {
  text-align: center;
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .sec-campaign__outline-method-ttl {
    margin-bottom: 6px;
  }
}
.sec-campaign__outline-method-ttl span {
  display: inline-block;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  position: relative;
}
@media (max-width: 767px) {
  .sec-campaign__outline-method-ttl span {
    font-size: 1.4rem;
  }
}
.sec-campaign__outline-method-ttl span::before {
  content: "";
  width: 0;
  height: 0;
  border-top: solid 9px #00A0E9;
  border-right: solid 9px transparent;
  border-left: solid 9px transparent;
  position: absolute;
  top: 50%;
  right: calc(100% + 16px);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sec-campaign__outline-method-ttl span::before {
    border-width: 7px;
    right: calc(100% + 7px);
  }
}
.sec-campaign__outline-method-ttl span::after {
  content: "";
  width: 0;
  height: 0;
  border-top: solid 9px #00A0E9;
  border-right: solid 9px transparent;
  border-left: solid 9px transparent;
  position: absolute;
  top: 50%;
  left: calc(100% + 16px);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sec-campaign__outline-method-ttl span::after {
    border-width: 7px;
    left: calc(100% + 7px);
  }
}
.sec-campaign__outline-method-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
}
@media (max-width: 767px) {
  .sec-campaign__outline-method-list {
    gap: 4px;
  }
}
@media (max-width: 767px) {
  .sec-campaign__outline-method-list li {
    width: 100%;
  }
}
.sec-campaign__outline-method-list li a {
  text-decoration: none;
}
.sec-campaign__outline-pill {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 3px solid #00A0E9;
  border-radius: 999px;
  color: #00A0E9;
  background-color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(15px, 15px + 3 * (100vw - 767px) / 1153, 18px);
}
@media (max-width: 767px) {
  .sec-campaign__outline-pill {
    display: block;
    width: 100%;
    max-width: 266px;
    padding: 4px;
    border-width: 1px;
    margin-inline: auto;
  }
}
.sec-campaign__outline-target {
  max-width: 530px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDF9FF;
  gap: 14px;
  padding: 0 8px 0 0;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(14px, 14px + 4 * (100vw - 767px) / 1153, 18px);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sec-campaign__outline-target {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 265px;
    padding: 0;
    justify-content: space-between;
  }
}
.sec-campaign__outline-target {
  overflow: hidden;
}
.sec-campaign__outline-target span {
  display: inline-block;
  padding: 6px 10px;
  background-color: #00A0E9;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec-campaign__outline-target span {
    padding: 9px 10px 9px 14px;
  }
}
.sec-campaign__outline-target span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: solid 9px #00A0E9;
  border-top: solid 16px transparent;
  border-bottom: solid 16px transparent;
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .sec-campaign__outline-target span::after {
    border-left-width: 13px;
    border-top-width: 20px;
    border-bottom-width: 17px;
    right: -13px;
  }
}
.sec-campaign__outline-target-badge {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.1rem 0.5rem;
  background: var(--sec-black);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  .sec-campaign__outline-target-badge {
    font-size: 1.2rem;
    padding: 1.2rem 0.7rem;
  }
}

/* ---------- セクション：コース一覧 ---------- */
.sec-campaign__course {
  text-align: center;
}
@media (max-width: 767px) {
  .sec-campaign__course {
    margin-top: 20px;
  }
}
.sec-campaign__course-wrap {
  width: 92%;
  max-width: 860px;
  margin-inline: auto;
  padding: 48px 32px 24px;
  border-radius: 16px;
  border: solid 6px #000;
  background: #FFF100;
  background: linear-gradient(to bottom, #FFF100 0%, #FFB700 100%);
  box-shadow: 6px 6px 0 #000;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-campaign__course-wrap {
    padding: 46px 2.4% 24px;
  }
}
@media (max-width: 767px) {
  .sec-campaign__course-wrap {
    padding: 48px 16px 24px;
    box-shadow: 3px 3px 0 #000;
    border-width: 4px;
  }
}
.sec-campaign__course-head {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .sec-campaign__course-head {
    top: -40px;
  }
}
.sec-campaign__course-head .text {
  display: inline-block;
  padding: 10px 16px;
  background-color: #E73372;
  border: solid 6px #000;
  color: #fff;
  border-radius: 999px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 4 * (100vw - 767px) / 1153, 24px);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sec-campaign__course-head .text {
    line-height: 1.42em;
    padding: 6px 37px;
    border-width: 4px;
  }
}
.sec-campaign__course-head .text span {
  font-size: 3.2rem;
  font-size: clamp(28px, 28px + 4 * (100vw - 767px) / 1153, 32px);
  color: #FFEE00;
}
@media (max-width: 767px) {
  .sec-campaign__course-head .text span {
    font-size: 2.4rem;
  }
}
.sec-campaign__course-list {
  display: flex;
  gap: 1.4rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .sec-campaign__course-list {
    flex-direction: column;
  }
}
.sec-campaign__course-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.4rem 1rem 3rem;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: solid 4px #006934;
  box-shadow: 0 4px 0 #006934;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sec-campaign__course-card::before {
  content: "";
  width: 140px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #E5F5EC;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.sec-campaign__course-card::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: solid 3px #006934;
  border-bottom: solid 3px #006934;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}
.sec-campaign__course-text {
  margin-top: 15px;
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(13px, 13px + 3 * (100vw - 767px) / 1153, 16px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-campaign__course-text {
    font-size: 1.6rem;
  }
}
.sec-campaign__course-item {
  flex: 1 1 33.333%;
}
@media (max-width: 767px) {
  .sec-campaign__course-item {
    flex: 1 1 auto;
  }
}
.sec-campaign__course-item .course-title {
  position: relative;
  display: inline-block;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 4 * (100vw - 767px) / 1153, 24px);
  font-style: italic;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sec-campaign__course-item .course-title {
    font-size: 2.4rem;
  }
}
.sec-campaign__course-item .course-title__back, .sec-campaign__course-item .course-title__front {
  display: block;
}
.sec-campaign__course-item .course-title__back span, .sec-campaign__course-item .course-title__front span {
  font-size: 3.2rem;
  font-size: clamp(28px, 28px + 4 * (100vw - 767px) / 1153, 32px);
}
@media (max-width: 767px) {
  .sec-campaign__course-item .course-title__back span, .sec-campaign__course-item .course-title__front span {
    font-size: 3.2rem;
  }
}
.sec-campaign__course-item .course-title__back {
  color: #006934;
  -webkit-text-stroke: 14px #006934;
  paint-order: stroke fill;
}
.sec-campaign__course-item .course-title__front {
  position: absolute;
  inset: 0;
  color: #006934;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke fill;
}
.sec-campaign__course-item.pink .sec-campaign__course-card {
  border-color: #E73372;
  box-shadow: 0 4px 0 #E73372;
}
.sec-campaign__course-item.pink .sec-campaign__course-card::before {
  background-color: #FFD9E6;
}
.sec-campaign__course-item.pink .sec-campaign__course-card::after {
  border-color: #E73372;
}
.sec-campaign__course-item.pink .course-title__back {
  color: #E73372;
  -webkit-text-stroke: 14px #E73372;
}
.sec-campaign__course-item.pink .course-title__front {
  color: #E73372;
}
.sec-campaign__course-item.blue .sec-campaign__course-card {
  border-color: #0070D2;
  box-shadow: 0 4px 0 #0070D2;
}
.sec-campaign__course-item.blue .sec-campaign__course-card::before {
  background-color: #E2F6FF;
}
.sec-campaign__course-item.blue .sec-campaign__course-card::after {
  border-color: #0070D2;
}
.sec-campaign__course-item.blue .course-title__back {
  color: #0070D2;
  -webkit-text-stroke: 14px #0070D2;
}
.sec-campaign__course-item.blue .course-title__front {
  color: #0070D2;
}

/* ---------- セクション：コース・景品 ---------- */
.sec-course {
  padding: 56px 0;
  background: url(../img/course-bg-pc.jpg) no-repeat top center/cover;
}
@media (max-width: 767px) {
  .sec-course {
    padding: 40px 0 24px;
    background-image: url(../img/course-bg-sp.jpg);
  }
}
.sec-course__inner {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.sec-course__head {
  margin-bottom: -85px;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-course__head {
    margin-bottom: -50px;
  }
}
@media (max-width: 767px) {
  .sec-course__head {
    margin-bottom: -55px;
  }
}
.sec-course__head span {
  display: inline-block;
  position: relative;
}
.sec-course__head span img {
  max-width: 396px;
  width: 27.5vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-course__head span img {
    width: 64.2%;
  }
}
.sec-course__head span::before {
  content: "";
  max-width: 139px;
  width: 9.65vw;
  aspect-ratio: 139/123;
  background: url(../img/charactor02.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec-course__head span::before {
    width: 30.5%;
    top: -26px;
    right: 75%;
    z-index: -1;
  }
}
.sec-course__head span::after {
  content: "";
  max-width: 155px;
  width: 10.76vw;
  aspect-ratio: 152/114;
  background: url(../img/charactor03.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec-course__head span::after {
    width: 36.26%;
    top: -30px;
    left: 75%;
    z-index: -1;
  }
}
.sec-course__box {
  border: solid 6px #000;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 8px 8px 0 black;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .sec-course__box {
    border-width: 4px;
  }
}
.sec-course__box:not(:last-of-type) {
  margin-bottom: 30px;
}
.sec-course__box .badge {
  width: 151px;
  aspect-ratio: 1/1;
  position: absolute;
  top: -45px;
  right: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-course__box .badge {
    width: 110px;
  }
}
@media (max-width: 767px) {
  .sec-course__box .badge {
    width: 81px;
    top: 85px;
    right: 1.2%;
  }
}
.sec-course__box-head {
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background-color: #FFF3F7;
}
@media (max-width: 767px) {
  .sec-course__box-head {
    flex-direction: column;
  }
}
.sec-course__box-head .course-plan {
  text-align: left;
  width: 300px;
  display: inline-block;
  padding: 15px 12px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 12 * (100vw - 767px) / 1153, 32px);
  font-style: italic;
  color: #fff;
  background-color: #E73372;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-course__box-head .course-plan {
    width: 230px;
  }
}
@media (max-width: 767px) {
  .sec-course__box-head .course-plan {
    text-align: center;
    width: 100%;
    font-size: 24px;
  }
}
.sec-course__box-head .course-plan .yellow {
  color: #FFEE00;
  font-size: 40px;
  font-size: clamp(25px, 25px + 15 * (100vw - 767px) / 1153, 40px);
}
@media (max-width: 767px) {
  .sec-course__box-head .course-plan .yellow {
    font-size: 32px;
  }
}
.sec-course__box-head .course-plan .yellow span {
  font-size: 32px;
  font-size: clamp(18px, 18px + 14 * (100vw - 767px) / 1153, 32px);
}
@media (max-width: 767px) {
  .sec-course__box-head .course-plan .yellow span {
    font-size: 24px;
  }
}
.sec-course__box-head .course-subhead {
  text-align: left;
  width: calc(100% - 300px);
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 4 * (100vw - 767px) / 1153, 24px);
  display: inline-block;
  padding: 14px 16px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-course__box-head .course-subhead {
    width: calc(100% - 220px);
    padding: 17px;
  }
}
@media (max-width: 767px) {
  .sec-course__box-head .course-subhead {
    text-align: center;
    width: 100%;
    font-size: 18px;
    line-height: 1.4444444444;
    padding: 8px;
  }
}
.sec-course__box-head .course-subhead span {
  color: #E73372;
}
.sec-course__box-wrap {
  max-width: 1124px;
  width: 92%;
  margin-inline: auto;
  padding: 20px 0 32px;
}
@media (max-width: 767px) {
  .sec-course__box-wrap {
    padding: 8px 0 24px;
  }
}
.sec-course__box-wrap .course01__mainv {
  position: relative;
}
.sec-course__box-wrap .course01__mainv-txt img {
  max-width: 880px;
  width: 92%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-course__box-wrap .course01__mainv-txt img {
    width: 108.4%;
    margin-left: -4.2%;
  }
}
.sec-course__box-wrap .course01__tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.sec-course__box-wrap .course01__tag span {
  display: inline-block;
  padding: 4px 16px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 12 * (100vw - 767px) / 1153, 24px);
  color: #E73372;
  background: #FFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 42%, rgb(255, 252, 206) 100%);
  border: solid 3px #E73372;
  box-shadow: 0 4px 0 0 #e73372;
  border-radius: 60px;
}
@media (max-width: 767px) {
  .sec-course__box-wrap .course01__tag span {
    padding: 4px 10px;
    box-shadow: 0 2px 0 0 #E73372;
    border-width: 2px;
  }
}
.sec-course__box-wrap .course01__link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sec-course__box .course01__app {
  margin-top: -12px;
  position: relative;
  z-index: 2;
  border: solid 4px #000;
  border-radius: 8px;
  margin-bottom: 26px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sec-course__box .course01__app {
    margin-bottom: 16px;
  }
}
.sec-course__box .course01__app-head {
  text-align: center;
  padding: 8px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 2 * (100vw - 767px) / 1153, 20px);
  color: #E73372;
  background-color: #FFEE00;
  padding: 6px;
}
.sec-course__box .course01__app-wrap {
  padding: 16px;
}
@media (max-width: 767px) {
  .sec-course__box .course01__app-wrap {
    padding: 8px 6.2%;
  }
}
.sec-course__box .course01__app-txt {
  text-align: center;
  margin-bottom: 16px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(25 / 18 * 1em);
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 2 * (100vw - 767px) / 1153, 18px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-course__box .course01__app-txt {
    font-size: 18px;
    text-align: left;
  }
}
.sec-course__box .course01__dtl {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .sec-course__box .course01__dtl {
    flex-direction: column;
    margin-bottom: 8px;
  }
}
.sec-course__box .course01__dtl dt {
  text-align: left;
  width: 338px;
  display: inline-block;
  padding: 16px 10px 16px 16px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(25 / 18 * 1em);
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 2 * (100vw - 767px) / 1153, 18px);
  color: #E73372;
  background-color: #FFF3F7;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .sec-course__box .course01__dtl dt {
    width: 100%;
    font-size: 18px;
    padding: 8px 14px;
  }
}
.sec-course__box .course01__dtl dd {
  text-align: left;
  width: calc(100% - 354px);
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(25 / 18 * 1em);
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 2 * (100vw - 767px) / 1153, 18px);
  color: #E73372;
}
@media (max-width: 767px) {
  .sec-course__box .course01__dtl dd {
    width: 100%;
    font-size: 18px;
  }
}
.sec-course__box .course01__dtl dd span {
  font-size: 15px;
  font-size: clamp(13px, 13px + 2 * (100vw - 767px) / 1153, 15px);
}
@media (max-width: 767px) {
  .sec-course__box .course01__dtl dd span {
    font-size: 15px;
  }
}
.sec-course__box .course01__att {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #111;
}
@media (max-width: 767px) {
  .sec-course__box .course01__att {
    text-align: left;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.sec-course__box .course01__link {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .sec-course__box .course01__link {
    flex-direction: column;
    gap: 22px;
  }
}
.sec-course__box .course01__link-item {
  width: calc((100% - 16px) / 2);
}
@media (max-width: 767px) {
  .sec-course__box .course01__link-item {
    width: 100%;
  }
}
.sec-course__box .course01__link-item a {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 14px;
  border: solid 4px #000;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.sec-course__box .course01__link-item a.event02 .tag span {
  color: #E73372;
}
.sec-course__box .course01__link-item a.event02 .txt {
  background-color: #E73372;
}
.sec-course__box .course01__link-item a.event02 .subtxt span {
  color: #E73372;
}
.sec-course__box .course01__link-item a:hover {
  opacity: 0.75;
}
.sec-course__box .course01__link-item .tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  padding: 5px 16px 6px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 4 * (100vw - 767px) / 1153, 16px);
  color: #000;
  white-space: nowrap;
  background-color: #fff;
  border: solid 3px #000;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .sec-course__box .course01__link-item .tag {
    padding: 6px 7px;
    top: -18px;
  }
}
.sec-course__box .course01__link-item .tag span {
  color: #E60012;
}
.sec-course__box .course01__link-item .txt {
  display: block;
  text-align: center;
  padding: 34px 0;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: calc(30 / 1000 * 1em);
  font-size: clamp(20px, 20px + 4 * (100vw - 767px) / 1153, 24px);
  color: #FFEE00;
  background-color: #E60012;
  position: relative;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 767px) {
  .sec-course__box .course01__link-item .txt {
    font-size: 24px;
    line-height: 1.3333333333;
    padding: 22px 0 14px;
  }
}
.sec-course__box .course01__link-item .txt::after {
  content: "";
  width: 15px;
  height: 15px;
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: rotate(45deg) translateY(-50%);
}
.sec-course__box .course01__link-item .subtxt {
  display: block;
  padding: 8px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: calc(30 / 1000 * 1em);
  font-size: clamp(14px, 14px + 6 * (100vw - 767px) / 1153, 20px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-course__box .course01__link-item .subtxt {
    padding: 6px;
  }
}
.sec-course__box .course01__link-item .subtxt span {
  color: #E60012;
}
.sec-course__box.course01 {
  background: url(../img/majica-point-bg.png) no-repeat top center/100%, #fff;
}
.sec-course__box.course02 .sec-course__box-head {
  background-color: #E8F6FF;
}
.sec-course__box.course02 .sec-course__box-head .course-plan {
  background-color: #0070D2;
}
.sec-course__box.course02 .sec-course__box-head .course-subhead span {
  color: #0070D2;
}
.sec-course__box.course03 .sec-course__box-head {
  background-color: #E5F5EC;
}
.sec-course__box.course03 .sec-course__box-head .course-plan {
  background-color: #006934;
}
.sec-course__box.course03 .sec-course__box-head .course-subhead span {
  color: #006934;
}
.sec-course__box.course03 .sec-course__list-item .item-num {
  background-color: #006934;
}
.sec-course__box.course03 .sec-course__list-item .item-num-in {
  background-color: #006934;
}
.sec-course__box.course03 .sec-course__list-item {
  border-color: #006934;
  background-color: #E5F5EC;
}
.sec-course__box.course03 .sec-course__list-item .item-name {
  color: #006934;
}
.sec-course__box.course03 .sec-course__list-item .item-btn span {
  border-color: #006934;
  color: #006934;
}
.sec-course__box .wchance {
  padding: 24px;
  background-color: #FFF3F7;
  border: dotted 4px #E73372;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .sec-course__box .wchance {
    padding: 12px;
    margin-bottom: 16px;
  }
}
.sec-course__box .wchance__img {
  max-width: 818px;
  width: 56.25vw;
  margin-inline: auto;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sec-course__box .wchance__img {
    width: 100%;
  }
}
.sec-course__box .wchance__txt {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #111;
}
@media (max-width: 767px) {
  .sec-course__box .wchance__txt {
    text-align: left;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.sec-course__subhead {
  text-align: center;
  margin: 32px 0 24px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(36 / 24 * 1em);
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 8 * (100vw - 767px) / 1153, 24px);
}
@media (max-width: 767px) {
  .sec-course__subhead {
    font-size: 18px;
    margin: 16px 0 24px;
  }
}
.sec-course__subhead span {
  color: #E73372;
}
.sec-course__list {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .sec-course__list {
    gap: 20px;
    flex-direction: column;
  }
}
.sec-course__list-item {
  width: calc((100% - 32px) / 3);
  position: relative;
  border: solid 4px #0070D2;
  border-radius: 16px;
  background-color: #E8F6FF;
  padding: 24px 0;
}
@media (max-width: 767px) {
  .sec-course__list-item {
    width: 100%;
  }
}
.sec-course__list-item .item-num {
  position: absolute;
  top: -30px;
  left: 15px;
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  background-color: #0070D2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 4px;
}
@media (max-width: 767px) {
  .sec-course__list-item .item-num {
    top: -20px;
  }
}
.sec-course__list-item .item-num-in {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: solid 1px #fff;
  border-radius: 100%;
  background-color: #0070D2;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(23 / 16 * 1em);
  letter-spacing: calc(-20 / 1000 * 1em);
  font-size: clamp(12px, 12px + 4 * (100vw - 767px) / 1153, 16px);
}
@media (max-width: 767px) {
  .sec-course__list-item .item-num-in {
    font-size: 16px;
  }
}
.sec-course__list-item .item-num-in span {
  color: #FFEE00;
  font-size: 26px;
  font-size: clamp(22px, 22px + 4 * (100vw - 767px) / 1153, 26px);
}
@media (max-width: 767px) {
  .sec-course__list-item .item-num-in span {
    font-size: 26px;
  }
}
.sec-course__list-item .item-img {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}
.sec-course__list-item .item-img img {
  display: inline-block;
  max-width: 200px;
  width: 13.88vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-course__list-item .item-img img {
    width: 92%;
  }
}
.sec-course__list-item .item-img span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-block;
  padding: 4px 8px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  color: #000;
  background-color: #FFEE00;
  border: solid 2px #000;
}
.sec-course__list-item .item-com {
  margin-bottom: 12px;
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(14px, 14px + 4 * (100vw - 767px) / 1153, 18px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-course__list-item .item-com {
    font-size: 18px;
  }
}
.sec-course__list-item .item-name {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 4 * (100vw - 767px) / 1153, 24px);
  color: #0070D2;
  margin-bottom: 12px;
  text-shadow: 3px 0 #fff, -3px 0 #fff, 0 3px #fff, 0 -3px #fff;
}
@media (max-width: 767px) {
  .sec-course__list-item .item-name {
    font-size: 24px;
  }
}
.sec-course__list-item .item-txt {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: calc(40 / 1000 * 1em);
  font-size: clamp(12px, 12px + 3 * (100vw - 767px) / 1153, 15px);
  color: #000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sec-course__list-item .item-txt {
    font-size: 15px;
  }
}
.sec-course__list-item .item-btn {
  text-align: center;
}
.sec-course__list-item .item-btn span {
  display: inline-block;
  padding: 8px 16px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(14px, 14px + 4 * (100vw - 767px) / 1153, 18px);
  color: #0070D2;
  border: solid 2px #0070D2;
  border-radius: 50px;
  background-color: #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .sec-course__list-item .item-btn span {
    font-size: 18px;
  }
}

/* ---------- セクション：当選確率アップ ---------- */
.sec-winning {
  padding: 40px 0;
  background: url(../img/winning-rate-bg-pc.jpg) no-repeat top center/cover;
}
@media (max-width: 767px) {
  .sec-winning {
    padding: 24px 0;
    background-image: url(../img/winning-rate-bg-sp.jpg);
  }
}
.sec-winning__inner {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.sec-winning__head {
  max-width: 747px;
  width: 51.875vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-winning__head {
    width: 92%;
  }
}
.sec-winning__intro {
  margin-top: -24px;
  text-align: center;
  max-width: 747px;
  width: 51.875vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-winning__intro {
    width: 98%;
    margin-bottom: 14px;
  }
}
.sec-winning__flow {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}
@media (max-width: 767px) {
  .sec-winning__flow {
    gap: 6px;
  }
}
.sec-winning__flow-box {
  position: relative;
  border-radius: 16px;
  border: solid 6px #E73372;
  background-color: #FFF3C3;
}
@media (max-width: 767px) {
  .sec-winning__flow-box {
    border-radius: 6px;
    border-width: 3px;
  }
}
.sec-winning__flow-box.first {
  width: 27.6%;
}
.sec-winning__flow-box.first .sec-winning__dtl-main {
  transform: translateX(10px);
}
.sec-winning__flow-box.first .sec-winning__dtl-main span {
  margin-right: 34px;
}
@media (max-width: 767px) {
  .sec-winning__flow-box.first .sec-winning__dtl-main span {
    margin-right: 20px;
  }
}
.sec-winning__flow-box.second {
  width: 34.6%;
}
@media (max-width: 767px) {
  .sec-winning__flow-box.second {
    width: 35.6%;
  }
}
.sec-winning__flow-box.second .sec-winning__dtl {
  padding: 30px 0 36px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__flow-box.second .sec-winning__dtl {
    padding: 24px 0 30px;
  }
}
@media (max-width: 767px) {
  .sec-winning__flow-box.second .sec-winning__dtl {
    padding: 12px 0 22px;
  }
}
.sec-winning__flow-box.second .sec-winning__dtl-main {
  font-size: 48px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 30 * (100vw - 767px) / 1153, 48px);
}
.sec-winning__flow-box.second .sec-winning__dtl-main span {
  font-size: 50px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(24px, 24px + 26 * (100vw - 767px) / 1153, 50px);
  margin-right: 30px;
}
@media (max-width: 767px) {
  .sec-winning__flow-box.second .sec-winning__dtl-main span {
    margin-right: 12px;
  }
}
.sec-winning__flow-box.second .sec-winning__dtl-main span::before {
  width: 94px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__flow-box.second .sec-winning__dtl-main span::before {
    width: 72px;
  }
}
@media (max-width: 767px) {
  .sec-winning__flow-box.second .sec-winning__dtl-main span::before {
    width: 47px;
  }
}
.sec-winning__flow-box.second .sec-winning__dtl-sub {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__flow-box.second .sec-winning__dtl-sub {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .sec-winning__flow-box.second .sec-winning__dtl-sub {
    margin-bottom: 17px;
  }
}
.sec-winning__flow-box.third {
  width: 37.8%;
}
@media (max-width: 767px) {
  .sec-winning__flow-box.third {
    width: 36.8%;
  }
}
.sec-winning__flow-box.third .sec-winning__dtl {
  padding: 27px 0 34px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__flow-box.third .sec-winning__dtl {
    padding: 20px 0 28px;
  }
}
@media (max-width: 767px) {
  .sec-winning__flow-box.third .sec-winning__dtl {
    padding: 15px 0 25px;
  }
}
.sec-winning__flow-box.third .sec-winning__dtl-main {
  font-size: 62px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(23px, 23px + 39 * (100vw - 767px) / 1153, 62px);
}
.sec-winning__flow-box.third .sec-winning__dtl-main span {
  font-size: 65px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(31px, 31px + 34 * (100vw - 767px) / 1153, 65px);
  margin-right: 40px;
}
@media (max-width: 767px) {
  .sec-winning__flow-box.third .sec-winning__dtl-main span {
    margin-right: 12px;
  }
}
.sec-winning__flow-box.third .sec-winning__dtl-main span::before {
  width: 125px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__flow-box.third .sec-winning__dtl-main span::before {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .sec-winning__flow-box.third .sec-winning__dtl-main span::before {
    width: 60px;
  }
}
.sec-winning__flow-box.third .sec-winning__dtl-sub {
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__flow-box.third .sec-winning__dtl-sub {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sec-winning__flow-box.third .sec-winning__dtl-sub {
    margin-bottom: 24px;
  }
}
.sec-winning__flow-box:not(:last-of-type)::after {
  content: "";
  width: 0;
  height: 0;
  border-left: solid 27px #E73372;
  border-top: solid 32px transparent;
  border-bottom: solid 32px transparent;
  position: absolute;
  top: 50%;
  right: -52px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sec-winning__flow-box:not(:last-of-type)::after {
    border-left-width: 6px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    right: -9px;
  }
}
.sec-winning__flow-head {
  padding: 7px;
  background-color: #E73372;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(28px, 28px + 12 * (100vw - 767px) / 1153, 40px);
  color: #fff;
}
@media (max-width: 767px) {
  .sec-winning__flow-head {
    font-size: 16px;
    padding: 9px;
  }
}
.sec-winning__flow-head span {
  font-size: 32px;
  font-size: clamp(20px, 20px + 12 * (100vw - 767px) / 1153, 32px);
}
@media (max-width: 767px) {
  .sec-winning__flow-head span {
    font-size: 16px;
  }
}
.sec-winning__dtl {
  padding: 16px 0 26px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__dtl {
    padding: 16px 0 22px;
  }
}
@media (max-width: 767px) {
  .sec-winning__dtl {
    padding: 3px 0 11px;
  }
}
.sec-winning__dtl-sub {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 12 * (100vw - 767px) / 1153, 32px);
  color: #E73372;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .sec-winning__dtl-sub {
    font-size: 12px;
    margin-bottom: 14px;
  }
}
.sec-winning__dtl-main {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(26px, 26px + 14 * (100vw - 767px) / 1153, 40px);
  color: #E73372;
}
@media (max-width: 767px) {
  .sec-winning__dtl-main {
    font-size: 16px;
  }
}
.sec-winning__dtl-main span {
  display: inline-block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(28px, 28px + 14 * (100vw - 767px) / 1153, 42px);
  position: relative;
  z-index: 1;
  margin-right: 20px;
  vertical-align: super;
}
@media (max-width: 767px) {
  .sec-winning__dtl-main span {
    font-size: 23px;
    margin-right: 10px;
  }
}
.sec-winning__dtl-main span::before {
  content: "";
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-winning__dtl-main span::before {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .sec-winning__dtl-main span::before {
    width: 44px;
  }
}
.sec-winning__end {
  padding: 100px 0;
  background-color: #E73372;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
@media (max-width: 767px) {
  .sec-winning__end {
    padding: 40px 0 45px;
    gap: 3px;
  }
}
.sec-winning__end .tag {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 12 * (100vw - 767px) / 1153, 28px);
  display: inline-block;
  padding: 5px 24px;
  border-radius: 40px;
  background: #fff;
  color: #E73372;
}
@media (max-width: 767px) {
  .sec-winning__end .tag {
    padding: 3px 17px;
    margin-bottom: 8px;
  }
}
.sec-winning__end .st {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(40px, 40px + 30 * (100vw - 767px) / 1153, 70px);
  color: #FFEE00;
  line-height: 1;
}
.sec-winning__end .st span {
  font-size: 40px;
  font-size: clamp(24px, 24px + 16 * (100vw - 767px) / 1153, 40px);
}
.sec-winning__end .txt {
  margin-top: -5px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 700;
  line-height: calc(49 / 40 * 1em);
  letter-spacing: normal;
  font-size: clamp(24px, 24px + 16 * (100vw - 767px) / 1153, 40px);
  color: #fff;
}
@media (max-width: 767px) {
  .sec-winning__end .txt {
    margin-top: 0;
  }
}
.sec-winning__sample {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .sec-winning__sample {
    margin-top: 16px;
  }
}
.sec-winning__sample-wrap {
  padding: 0 32px 16px;
  background-color: #fff;
  border: solid 6px #00A0E9;
}
@media (max-width: 767px) {
  .sec-winning__sample-wrap {
    padding: 0 2.4% 16px;
  }
}
.sec-winning__sample-head {
  text-align: center;
  margin-bottom: 16px;
}
.sec-winning__sample-head span {
  display: inline-block;
  padding: 10px 20px 12px;
  background-color: #00A0E9;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(14px, 14px + 6 * (100vw - 767px) / 1153, 20px);
  color: #fff;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 767px) {
  .sec-winning__sample-head span {
    font-size: 20px;
  }
}
.sec-winning__case {
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .sec-winning__case {
    flex-direction: column;
    align-items: center;
  }
}
.sec-winning__case-item {
  width: calc((100% - 16px) / 2);
  padding: 16px;
  background-color: #E7FBFF;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .sec-winning__case-item {
    width: 92%;
    margin-inline: auto;
  }
}
.sec-winning__case-ttl {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(26 / 20 * 1em);
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 8 * (100vw - 767px) / 1153, 20px);
  color: #00A0E9;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sec-winning__case-ttl {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }
}
.sec-winning__case-txt {
  text-align: left;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(26 / 18 * 1em);
  letter-spacing: normal;
  font-size: clamp(11px, 11px + 7 * (100vw - 767px) / 1153, 18px);
}
@media (max-width: 767px) {
  .sec-winning__case-txt {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }
}
.sec-winning__case-att {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(22 / 14 * 1em);
  letter-spacing: normal;
  font-size: clamp(10px, 10px + 4 * (100vw - 767px) / 1153, 14px);
}
@media (max-width: 767px) {
  .sec-winning__case-att {
    text-align: left;
    font-size: 14px;
    line-height: 1.5714285714;
    width: 92%;
    margin-inline: auto;
  }
}

/* ---------- セクション：応募方法 ---------- */
.sec-howto {
  padding: 40px 0 64px;
  background: #FFD5E0;
  background: linear-gradient(to right, #FFD5E0 0%, #FFAFC4 100%);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .sec-howto {
    padding: 24px 0;
  }
}
.sec-howto::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/app-bg-pc.png) repeat top left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .sec-howto::before {
    background-image: url(../img/app-bg-sp.png);
  }
}
.sec-howto__inner {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.sec-howto__head img {
  max-width: 418px;
  width: 28.88vw;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-howto__head img {
    width: 92%;
  }
}
.sec-howto__flow {
  margin-top: -30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .sec-howto__flow {
    margin-bottom: 24px;
  }
}
.sec-howto__flow-wrap {
  padding: 16px 32px;
  border: solid 6px #000;
  background-color: #fff;
  box-shadow: 8px 8px 0 #e73372;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .sec-howto__flow-wrap {
    flex-direction: column;
    gap: 46px;
    box-shadow: 4px 4px 0 #E73372;
    border-width: 4px;
  }
}
.sec-howto__flow-pt {
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .sec-howto__flow-pt {
    width: 100%;
  }
}
.sec-howto__flow-pt:not(:last-of-type)::after {
  content: "";
  width: 41px;
  aspect-ratio: 41/19;
  background: url(../img/icon-arrow-right2.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -36%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sec-howto__flow-pt:not(:last-of-type)::after {
    width: 14px;
    aspect-ratio: 14/30;
    background-image: url(../img/icon-arrow-bottom2.svg);
    top: auto;
    right: auto;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
  }
}
.sec-howto__flow-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #E73372;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(14px, 14px + 6 * (100vw - 767px) / 1153, 20px);
  color: #fff;
  margin-bottom: 12px;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .sec-howto__flow-tag {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.sec-howto__flow-cnt {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: calc(40 / 32 * 1em);
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 14 * (100vw - 767px) / 1153, 32px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-howto__flow-cnt {
    font-size: 24px;
  }
}
.sec-howto__flow-att {
  margin-top: 12px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14 * 1em);
  letter-spacing: normal;
  font-size: clamp(10px, 10px + 4 * (100vw - 767px) / 1153, 14px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-howto__flow-att {
    font-size: 12px;
  }
}
.sec-howto__entry-head {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(24px, 24px + 16 * (100vw - 767px) / 1153, 40px);
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sec-howto__entry-head {
    margin-bottom: 12px;
  }
}
.sec-howto__entry-head span {
  color: #E73372;
}
.sec-howto__entry-txt {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sec-howto__entry-txt {
    font-size: 13px;
    line-height: 1.5;
  }
}
.sec-howto__box {
  border: solid 7px #000;
  border-radius: 16px;
  background-color: #fff;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .sec-howto__box {
    margin-bottom: 28px;
  }
}
.sec-howto__box-wrap {
  padding: 24px 0 48px;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .sec-howto__box-wrap {
    padding: 16px 0;
  }
}
.sec-howto__box-in {
  display: inline-block;
  position: relative;
}
.sec-howto__box-in::before {
  content: "";
  max-width: 93px;
  width: 6.458vw;
  aspect-ratio: 93/177;
  background: url(../img/phone.png) no-repeat center/contain;
  position: absolute;
  bottom: -40px;
  right: calc(100% + 30px);
  z-index: 2;
}
@media (max-width: 767px) {
  .sec-howto__box-in::before {
    width: 14.6vw;
    bottom: 0;
    right: calc(100% + 14px);
  }
}
.sec-howto__box-in::after {
  content: "";
  max-width: 150px;
  width: 10.42vw;
  aspect-ratio: 150/162;
  background: url(../img/charactor04.png) no-repeat center/contain;
  position: absolute;
  bottom: -45px;
  left: calc(100% + 20px);
  z-index: 2;
}
@media (max-width: 767px) {
  .sec-howto__box-in::after {
    width: 24.8vw;
    bottom: -6px;
    left: 100%;
  }
}
.sec-howto__box-ttl {
  padding: 16px;
  border-radius: 9px 9px 0 0;
  background-color: #E60012;
  color: #fff;
  clip-path: inset(-100px 0 0 0);
}
@media (max-width: 767px) {
  .sec-howto__box-ttl {
    clip-path: none;
  }
}
.sec-howto__box-ttl .sub {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(28 / 24 * 1em);
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 1153, 24px);
}
@media (max-width: 767px) {
  .sec-howto__box-ttl .sub {
    font-size: 16px;
  }
}
.sec-howto__box-ttl .yellow {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: calc(36 / 32 * 1em);
  letter-spacing: normal;
  font-size: clamp(24px, 24px + 8 * (100vw - 767px) / 1153, 32px);
}
@media (max-width: 767px) {
  .sec-howto__box-ttl .yellow {
    font-size: 20px;
  }
}
.sec-howto__box-ttl .yellow span {
  color: #FFEE00;
}
.sec-howto__box-head {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: calc(44 / 32 * 1em);
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 12 * (100vw - 767px) / 1153, 32px);
  color: #E60012;
  margin-bottom: 8px;
}
.sec-howto__box-intro {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14 * 1em);
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sec-howto__box-intro {
    width: 90%;
    margin-inline: auto;
    text-align: left;
    margin-bottom: 16px;
  }
}
.sec-howto__box-att {
  display: inline-block;
  text-align: left;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14 * 1em);
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sec-howto__box-att {
    width: 88%;
    margin-inline: auto;
  }
}
.sec-howto__box.reciept .sec-howto__box-ttl {
  background-color: #00A0E9;
}
.sec-howto__box.reciept .sec-howto__box-head {
  color: #00A0E9;
}
.sec-howto__box.reciept .sec-howto__dtl dt {
  color: #00A0E9;
  border-color: #00A0E9;
}
.sec-howto__box.reciept .sec-howto__dtl dt::after {
  border-color: #00A0E9;
}
.sec-howto__box.reciept .sec-howto__box-in::after {
  background-image: url(../img/charactor05.png);
  max-width: 162px;
  width: 11.25vw;
  aspect-ratio: 162/176;
  bottom: -52px;
}
@media (max-width: 767px) {
  .sec-howto__box.reciept .sec-howto__box-in::after {
    width: 25.8vw;
    bottom: -12px;
  }
}
.sec-howto__box.reciept .sec-howto__box-in::before {
  background-image: url(../img/receipt.png);
  max-width: 80px;
  width: 5.55vw;
  aspect-ratio: 80/135;
  bottom: -26px;
}
@media (max-width: 767px) {
  .sec-howto__box.reciept .sec-howto__box-in::before {
    width: 14.8vw;
    bottom: 0;
    right: calc(100% + 8px);
  }
}
.sec-howto__box.reciept .sec-howto__dtl dd {
  background-color: #F0FAFF;
}
.sec-howto__box.reciept .sec-howto__step-num {
  background-color: #00A0E9;
}
.sec-howto__box.reciept .sec-howto__step:not(:last-of-type)::after {
  border-top-color: #00A0E9;
}
.sec-howto__box.reciept .sec-howto__btn-ct a {
  background-color: #00A0E9;
  max-width: 500px;
  width: 92%;
  margin-inline: auto;
}
.sec-howto__dtl {
  max-width: 1120px;
  width: 92%;
  margin-inline: auto;
}
.sec-howto__dtl dt {
  display: block;
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 1153, 24px);
  color: #E60012;
  padding: 15px;
  border: solid 2px #E60012;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .sec-howto__dtl dt {
    font-size: 15px;
    line-height: 1.6;
    padding: 10px 0;
  }
}
.sec-howto__dtl dt::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: solid 2px #E60012;
  border-bottom: solid 2px #E60012;
  position: absolute;
  top: 48%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .sec-howto__dtl dt::after {
    width: 8px;
    height: 8px;
    top: 42%;
    right: 12px;
  }
}
.sec-howto__dtl dt.active::after {
  top: 42%;
  right: 14px;
  transform: rotate(225deg) translateY(-50%);
}
@media (max-width: 767px) {
  .sec-howto__dtl dt.active::after {
    top: 37%;
    right: 8px;
  }
}
.sec-howto__dtl dd {
  overflow: hidden;
  max-height: 0;
  transition: 0.4s ease-in-out;
  padding-inline: 40px;
  background-color: #FFF1F5;
}
@media (max-width: 767px) {
  .sec-howto__dtl dd {
    padding-inline: 16px;
  }
}
.sec-howto__dtl dd.open {
  max-height: 10000px;
  padding-block: 40px;
}
@media (max-width: 767px) {
  .sec-howto__dtl dd.open {
    padding-block: 16px;
  }
}
.sec-howto__dtl-att {
  text-align: left;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14 * 1em);
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-howto__dtl-att {
    font-size: 14px;
  }
}
.sec-howto__dtl.end {
  margin-top: 48px;
}
.sec-howto__dtl.end dt {
  color: #fff !important;
  background-color: #00A0E9;
}
.sec-howto__dtl.end dt::after {
  border-color: #fff !important;
}
.sec-howto__step {
  display: flex;
  align-items: center;
  background-color: #fff;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 767px) {
  .sec-howto__step {
    flex-direction: column;
  }
}
.sec-howto__step:not(:last-of-type)::after {
  content: "";
  width: 0;
  height: 0;
  border-top: solid 24px #E60012;
  border-right: solid 30px transparent;
  border-left: solid 30px transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.sec-howto__step-img {
  width: 300px;
}
@media (max-width: 767px) {
  .sec-howto__step-img {
    width: 100%;
  }
}
.sec-howto__step-dtl {
  width: calc(100% - 300px);
  padding-left: 24px;
  padding-right: 16px;
  text-align: left;
}
@media (max-width: 767px) {
  .sec-howto__step-dtl {
    width: 100%;
    padding: 16px 21px;
  }
}
.sec-howto__step-num {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 40px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(13px, 13px + 4 * (100vw - 767px) / 1153, 17px);
  color: #fff;
  background-color: #E60012;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .sec-howto__step-num {
    font-size: 16px;
    padding: 6px 16px;
  }
}
.sec-howto__step-txt {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
  line-height: calc(30 / 17 * 1em);
  letter-spacing: calc(40 / 1000 * 1em);
  font-size: clamp(13px, 13px + 4 * (100vw - 767px) / 1153, 17px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-howto__step-txt {
    font-size: 16px;
    line-height: 1.5;
  }
}
.sec-howto__step-sub {
  text-align: left;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14 * 1em);
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #333;
  margin-top: 9px;
}
@media (max-width: 767px) {
  .sec-howto__step-sub {
    font-size: 14px;
  }
}
.sec-howto__step.end::after {
  content: none !important;
}
.sec-howto__btn {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .sec-howto__btn {
    margin-top: 16px;
  }
}
.sec-howto__btn-ct a {
  padding: 37px 62px;
  border-radius: 60px;
  display: inline-block;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(20px, 20px + 4 * (100vw - 767px) / 1153, 24px);
  border: solid 4px #000;
  background-color: #E60012;
  color: #fff;
  box-shadow: 0 8px 0 0 #000;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .sec-howto__btn-ct a {
    width: 90%;
    display: block;
    margin-inline: auto;
    font-size: 15px;
    padding: 20px;
    border-width: 2px;
    box-shadow: 0 4px 0 0 #000;
  }
}
.sec-howto__btn-ct a::before {
  content: "";
  width: 90%;
  height: 50%;
  display: block;
  border-radius: 40px;
  background: #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.sec-howto__btn-ct a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(45deg) translateY(-50%);
}
@media (max-width: 767px) {
  .sec-howto__btn-ct a::after {
    width: 8px;
    height: 8px;
    top: 48%;
    right: 20px;
  }
}
.sec-howto__btn-ct a span {
  color: #FFEE00;
}
.sec-howto__btn-ct a:hover {
  opacity: 0.75;
}
.sec-howto__opt {
  margin: 24px 0;
}
.sec-howto__opt-wrap {
  padding: 24px 32px;
  background-color: #FFF3C3;
  border: dotted 4px #00A0E9;
}
@media (max-width: 767px) {
  .sec-howto__opt-wrap {
    padding: 24px 4.2%;
  }
}
.sec-howto__opt-head {
  margin-bottom: 16px;
}
.sec-howto__opt-head span {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: calc(40 / 1000 * 1em);
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 1153, 24px);
  color: #00A0E9;
  background-color: #fff;
  border: solid 4px #00A0E9;
}
.sec-howto__opt-txt {
  text-align: left;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(36 / 24 * 1em);
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 8 * (100vw - 767px) / 1153, 24px);
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sec-howto__opt-txt {
    font-size: 19px;
    line-height: 1.5555555556;
    margin-bottom: 12px;
  }
}
.sec-howto__opt-txt span {
  color: #00A0E9;
}
.sec-howto__opt-att {
  text-align: left;
  margin-top: 24px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14 * 1em);
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #333;
}
@media (max-width: 767px) {
  .sec-howto__opt-att {
    width: 95%;
    margin-inline: auto;
    font-size: 14px;
    margin-top: 10px;
  }
}
.sec-howto__list {
  width: 92%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sec-howto__list {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sec-howto__list {
    flex-direction: column;
    gap: 10px;
  }
}
.sec-howto__list-item {
  background-color: #fff;
}
@media (max-width: 767px) {
  .sec-howto__list-item {
    width: 100%;
  }
}
.sec-howto__list-item.true {
  max-width: 355px;
}
@media (max-width: 767px) {
  .sec-howto__list-item.true {
    max-width: 100%;
  }
}
.sec-howto__list-item.bad {
  max-width: 410px;
}
@media (max-width: 767px) {
  .sec-howto__list-item.bad {
    max-width: 100%;
  }
}
.sec-howto__list-item.bad .sec-howto__list-head {
  background-color: #E60012;
}
.sec-howto__list-head {
  padding: 2px;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(32 / 20 * 1em);
  letter-spacing: normal;
  font-size: clamp(14px, 14px + 6 * (100vw - 767px) / 1153, 20px);
  background-color: #00A0E9;
  color: #fff;
}
@media (max-width: 767px) {
  .sec-howto__list-head {
    font-size: 20px;
  }
}
.sec-howto__list-dtl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}
@media (max-width: 767px) {
  .sec-howto__list-dtl {
    flex-direction: column;
  }
}
.sec-howto__list-dtl .img {
  width: 150px;
}
@media (max-width: 767px) {
  .sec-howto__list-dtl .img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sec-howto__list-dtl .detail {
    width: 100%;
  }
}
.sec-howto__list-dtl .detail-ttl {
  white-space: nowrap;
  text-align: left;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(21 / 16 * 1em);
  letter-spacing: calc(-40 / 1000 * 1em);
  font-size: clamp(13px, 13px + 3 * (100vw - 767px) / 1153, 16px);
  color: #00A0E9;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sec-howto__list-dtl .detail-ttl {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.sec-howto__list-dtl .detail-txt {
  text-align: left;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  line-height: calc(23 / 15 * 1em);
  letter-spacing: calc(-40 / 1000 * 1em);
  font-size: clamp(11px, 11px + 4 * (100vw - 767px) / 1153, 15px);
  color: #000;
}
@media (max-width: 767px) {
  .sec-howto__list-dtl .detail-txt {
    font-size: 15px;
  }
}
.sec-howto__list-ex {
  display: flex;
  gap: 5px;
  padding: 16px;
}
@media (max-width: 767px) {
  .sec-howto__list-ex {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px 0;
  }
  .sec-howto__list-ex .img:nth-of-type(1) {
    width: 82px;
  }
  .sec-howto__list-ex .img:nth-of-type(2) {
    width: 100px;
  }
  .sec-howto__list-ex .img:nth-of-type(3) {
    width: 82px;
  }
  .sec-howto__list-ex .img:nth-of-type(4) {
    width: 104px;
  }
}
@media (max-width: 767px) {
  .sec-howto .sec-campaign__entry {
    margin-bottom: 24px;
  }
}

/* ---------- セクション：バナーリンク ---------- */
.sec-banner {
  padding: 6.4rem 0;
  background: url(../img/bg-events02.png) repeat top left/100%, #FFF3C3;
}
@media (max-width: 767px) {
  .sec-banner {
    padding: 2.4rem 0;
  }
}
.sec-banner__inner {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.sec-banner__main {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  margin-bottom: 67px;
}
@media (max-width: 767px) {
  .sec-banner__main {
    gap: 12px 8px;
    margin-bottom: 32px;
  }
}
.sec-banner__main-item {
  width: calc((100% - 16px) / 2);
}
@media (max-width: 767px) {
  .sec-banner__main-item {
    width: 100%;
  }
}
.sec-banner__main-item a {
  display: block;
}
.sec-banner__link {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
}
@media (max-width: 767px) {
  .sec-banner__link {
    gap: 12px 8px;
  }
}
.sec-banner__link li {
  width: calc((100% - 48px) / 3);
}
@media (max-width: 767px) {
  .sec-banner__link li {
    width: calc((100% - 8px) / 2);
  }
}
.sec-banner__link li a {
  display: block;
}

/* ---------- セクション：受注販売・お取寄せ販売 ---------- */
.sec-order {
  padding: 64px 0;
}
@media (max-width: 767px) {
  .sec-order {
    padding: 32px 0;
  }
}
.sec-order.order01 {
  background: url(../img/order1__bg.jpg) no-repeat center/cover;
}
.sec-order.order01 .sec-order__btn a {
  border: 3px solid transparent;
  border-radius: 999px;
  background: linear-gradient(#A0141A, #A0141A) padding-box, linear-gradient(180deg, #f5d84b 0%, #c99a22 45%, #f1c83a 100%) border-box;
  color: #fff;
}
.sec-order.order01 .sec-order__btn a span {
  color: #FFEE00;
}
.sec-order.order02 {
  background-color: #005BAC;
}
.sec-order.order02 .sec-order__image {
  max-width: 1052px;
  margin-inline: auto;
}
.sec-order.order02 .sec-order__btn a {
  color: #000;
  background-color: #FFEE00;
}
.sec-order.order02 .sec-order__btn a span {
  color: #005BAC;
}
.sec-order.order02 .sec-order__btn a::after {
  border-color: #000;
}
.sec-order__inner {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.sec-order__head {
  max-width: 542px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.sec-order__image {
  margin-bottom: 24px;
}
.sec-order__text {
  text-align: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14 * 1em);
  letter-spacing: calc(40 / 1000 * 1em);
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sec-order__text {
    font-size: 14px;
    text-align: left;
  }
}
.sec-order__btn {
  max-width: 500px;
  width: 92%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .sec-order__btn {
    width: 100%;
    margin-top: 1.6rem;
  }
}
.sec-order__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(16px, 16px + 16 * (100vw - 767px) / 1153, 32px);
  color: #fff;
  background-color: #626262;
  border: solid 4px #000;
  box-shadow: 0 8px 0 0 #000;
  padding: 33px;
  border-radius: 60px;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .sec-order__btn a {
    padding: 22px;
    font-size: 2.4rem;
  }
}
.sec-order__btn a::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  position: absolute;
  top: 47%;
  right: 30px;
  transform: rotate(45deg) translateX(-50%);
}
@media (max-width: 767px) {
  .sec-order__btn a::after {
    right: 18px;
  }
}
.sec-order__btn a:hover {
  opacity: 0.75;
}
/* ==========================================================================
   majica / ucs 会員募集セクション
   ========================================================================== */
.st-footer {
  padding: 6.4rem 0;
  background-color: #F7CC5C;
}
@media (max-width: 767px) {
  .st-footer {
    padding: 2.4rem 0;
  }
}

#majica_ucs {
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 68.5%;
  line-height: 1.5 !important;
}
#majica_ucs ul {
  list-style: none !important;
}
#majica_ucs a {
  text-decoration: none;
  color: #fff;
}

body #majica_ucs {
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 750px) {
  body #majica_ucs {
    font-size: 0.6em;
    overflow: hidden;
  }
}

/* hover（majica / ucs 共通） */
#box_m a:hover,
#box_u a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

/* --------------------------------------------------------------------------
   majica（#box_m）
   -------------------------------------------------------------------------- */
#box_m {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  background: #fff;
  border: 7px solid #e60011;
  border-radius: 15px;
}
@media screen and (max-width: 1040px) {
  #box_m {
    display: block;
    grid-template-columns: 0;
    width: calc(100% - 3em);
    max-width: 680px;
    margin: 0 auto 0.5em auto;
    border: 5px solid #e60011;
    border-radius: 15px;
  }
}
@media screen and (max-width: 1040px) {
  #box_m .box_r_m {
    display: none;
  }
}
#box_m .title_m {
  display: flex;
  padding-top: 3.4em;
  width: calc(100% - 4em);
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  #box_m .title_m {
    justify-content: center;
    align-items: center;
    padding-top: 0.3em;
    max-width: 650px;
  }
}
@media screen and (max-width: 750px) {
  #box_m .title_m {
    max-width: 520px;
    padding: 0.3em 0 0.3em 0;
    width: calc(100% - 3em);
  }
}
#box_m .h2logo_m {
  width: calc(20% - 1em);
  margin: 0 1em 0 0;
}
#box_m .h2logo_m img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1040px) {
  #box_m .h2logo_m {
    width: calc(20% - 1.1em);
    margin: 1.3em 1.1em 0.1em 0;
  }
}
@media screen and (max-width: 750px) {
  #box_m .h2logo_m {
    width: calc(20% - 0.6em);
    margin: 0.7em 0.6em 0.1em 0;
  }
}
#box_m .img_title_m {
  padding-top: 1em;
  width: 80%;
  height: 80%;
}
#box_m .img_title_m img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1040px) {
  #box_m .img_title_m {
    padding-top: 2.3em;
  }
}
@media screen and (max-width: 750px) {
  #box_m .img_title_m {
    padding-top: 1.2em;
  }
}
#box_m .img_main_m img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1040px) {
  #box_m .img_main_m {
    display: none;
  }
}
#box_m .img_main_m_smf {
  display: none;
}
#box_m .img_main_m_smf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1040px) {
  #box_m .img_main_m_smf {
    display: block;
    width: 100%;
    height: 100%;
  }
}
#box_m .a_boxm01 {
  position: relative;
  display: block;
  width: 370px;
  margin: 1.7em auto 1em auto;
  padding: 15px 0;
  color: #fff;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgb(230, 0, 17);
  background: linear-gradient(40deg, rgb(230, 0, 17) 0%, rgb(231, 0, 49) 71%, rgb(255, 120, 127) 100%);
  border-radius: 50px;
}
#box_m .a_boxm01:before {
  position: absolute;
  content: "";
  background-image: url("../img/ucs_majica/next_boxm.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 20px;
}
@media screen and (max-width: 1040px) {
  #box_m .a_boxm01:before {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 750px) {
  #box_m .a_boxm01:before {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    right: 10px;
  }
}
@media screen and (max-width: 1040px) {
  #box_m .a_boxm01 {
    width: 100%;
    max-width: 320px;
    margin: 1.8em auto;
    padding: 15px 0;
    font-size: 1.6em;
  }
}
@media screen and (max-width: 750px) {
  #box_m .a_boxm01 {
    width: calc(100% - 2em);
    max-width: 320px;
    margin: 1.5em auto;
    padding: 13px 0;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 1px;
  }
}
#box_m .app_m {
  display: none;
}
@media screen and (max-width: 750px) {
  #box_m .app_m {
    display: block;
  }
}
#box_m .p_app_m {
  display: none;
  position: relative;
  background: #e60011;
  width: 33%;
  height: 190px;
  padding-top: 43em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
#box_m .p_app_m span {
  padding-top: 1em;
  font-size: 2.5em;
}
@media screen and (max-width: 1040px) {
  #box_m .p_app_m span {
    display: block;
    padding-top: 1em;
    font-size: 1.6em;
  }
}
@media screen and (max-width: 750px) {
  #box_m .p_app_m span {
    display: inline;
    padding-top: 0;
    font-size: 1.4em;
  }
}
#box_m .p_app_m:before {
  position: absolute;
  content: "";
  top: 0;
  right: -40px;
  border-style: solid;
  border-width: 95px 0 95px 40px;
  border-color: transparent transparent transparent #e60011;
}
@media screen and (max-width: 1040px) {
  #box_m .p_app_m:before {
    top: 0;
    right: -30px;
    border-width: 95px 0 95px 30px;
  }
}
@media screen and (max-width: 750px) {
  #box_m .p_app_m:before {
    content: none;
  }
}
@media screen and (max-width: 1040px) {
  #box_m .p_app_m {
    height: 190px;
    padding-top: 5.5em;
  }
}
@media screen and (max-width: 750px) {
  #box_m .p_app_m {
    display: block;
    width: 100%;
    height: 45px;
    padding-top: 1.3em;
    text-align: center;
  }
}
#box_m .app_inner_m {
  width: 67%;
  background: #f2f2f2;
  border-radius: 10px;
}
#box_m .app_inner_m ul {
  justify-content: center;
  align-items: center;
  padding: 3em 0 2em 0;
}
#box_m .app_inner_m ul li img {
  width: 100%;
  max-height: 70px;
}
#box_m .app_inner_m ul li:first-child {
  margin-right: 2em;
}
@media screen and (max-width: 1040px) {
  #box_m .app_inner_m ul li:first-child {
    margin-right: 1em;
  }
}
@media screen and (max-width: 1040px) {
  #box_m .app_inner_m ul {
    padding: 30px 0 20px 0px;
  }
}
@media screen and (max-width: 750px) {
  #box_m .app_inner_m ul {
    display: flex;
    padding: 1em 0 1.1em 0px;
  }
}
@media screen and (max-width: 1040px) {
  #box_m .app_inner_m {
    padding: 0 1.5em 0 4.5em;
    border-radius: 0 0 10px 0;
  }
}
@media screen and (max-width: 750px) {
  #box_m .app_inner_m {
    width: 100%;
    padding: 0.5em 1.5em 1.1em 1.5em;
    border-radius: 0 0 10px 10px;
  }
}
#box_m .p_note_m {
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  text-align: left;
}
@media screen and (max-width: 1040px) {
  #box_m .p_note_m {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 750px) {
  #box_m .p_note_m {
    display: flex;
    font-size: 1.3rem;
  }
}
#box_m .app_m02 {
  display: flex;
  grid-column: 1/3;
}
@media screen and (max-width: 750px) {
  #box_m .app_m02 {
    display: none;
  }
}
#box_m .p_app_m02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #e60011;
  width: 25%;
  height: 100%;
  min-height: 160px;
  padding: 3em 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
#box_m .p_app_m02 span {
  width: 300px;
  display: block;
  padding-top: 0.5em;
  letter-spacing: 1px;
  font-size: 1.8em;
}
#box_m .p_app_m02:before {
  position: absolute;
  content: "";
  top: 0;
  right: -45px;
  border-style: solid;
  border-width: 80px 0 80px 45px;
  border-color: transparent transparent transparent #e60011;
}
#box_m .app_inner_m02 {
  width: 75%;
  background: #f2f2f2;
  border-radius: 0 0 10px 0;
}
#box_m .app_inner_m02 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.7em 0 1.5em 3em;
}
#box_m .app_inner_m02 ul li img {
  width: 100%;
  max-height: 60px;
}
#box_m .app_inner_m02 ul li:first-child {
  margin-right: 2em;
}
#box_m .p_note_m02 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  text-align: left;
}

/* --------------------------------------------------------------------------
   ucs（#box_u）
   -------------------------------------------------------------------------- */
#box_u {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  width: 100%;
  max-width: 1020px;
  margin: 5em auto 0px auto;
  background: #fff;
  border: 7px solid #e85504;
  border-radius: 15px;
}
@media screen and (max-width: 1040px) {
  #box_u {
    display: block;
    grid-template-columns: 0;
    width: calc(100% - 3em);
    max-width: 680px;
    margin: 3.5em auto 0 auto;
    border: 5px solid #e85504;
    border-radius: 15px;
  }
}
#box_u .box_r_u {
  background: #f2f2f2;
  border-radius: 0 11px 11px 0;
}
@media screen and (max-width: 1040px) {
  #box_u .box_r_u {
    border-radius: 0 0 11px 11px;
  }
}
#box_u .title_u {
  display: flex;
  width: calc(100% - 5em);
  margin: 0 auto 1.5em auto;
}
@media screen and (max-width: 1040px) {
  #box_u .title_u {
    justify-content: center;
    align-items: center;
    width: calc(100% - 4em);
    max-width: 740px;
    margin: 0 auto;
    padding: 1.5em 0 1em 0;
  }
}
@media screen and (max-width: 750px) {
  #box_u .title_u {
    justify-content: center;
    align-items: center;
    width: calc(100% - 3em);
    max-width: 540px;
    padding: 1em 0 0.7em 0;
  }
}
#box_u .h2logo_u {
  width: calc(17% - 1.3em);
  margin: 2.2em 1.3em 0px 0;
}
@media screen and (max-width: 1040px) {
  #box_u .h2logo_u {
    width: calc(19% - 2em);
    margin: 0 1em 0 0;
  }
  #box_u .h2logo_u img {
    max-height: 100px;
  }
}
@media screen and (max-width: 750px) {
  #box_u .h2logo_u {
    width: calc(18% - 0.6em);
    margin: 0 0.6em 0 0;
  }
  #box_u .h2logo_u img {
    max-height: 70px;
  }
}
#box_u .img_title_u {
  padding-top: 4.5em;
  width: 82%;
  height: 82%;
}
@media screen and (max-width: 1040px) {
  #box_u .img_title_u {
    padding-top: 2em;
    width: calc(81% - 1em);
    margin: 0 1em 1em 0;
  }
}
@media screen and (max-width: 750px) {
  #box_u .img_title_u {
    padding-top: 0.8em;
    width: 82%;
    margin: 0 0 0.3em 0;
  }
}
#box_u .main_u {
  width: 100%;
}
#box_u .img_main_u {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1040px) {
  #box_u .img_main_u {
    display: none;
  }
}
#box_u .img_main_u_smf {
  display: none;
}
@media screen and (max-width: 1040px) {
  #box_u .img_main_u_smf {
    display: block;
    width: 100%;
    height: 100%;
  }
}
#box_u .a_boxu01,
#box_u .a_boxu02 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 1.6em auto 0 auto;
  padding: 15px 0;
  font-size: 1.6em;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgb(233, 85, 4);
  background: linear-gradient(40deg, rgb(233, 85, 4) 0%, rgb(233, 85, 4) 59%, rgb(239, 151, 0) 94%);
  border-radius: 50px;
}
#box_u .a_boxu01:before,
#box_u .a_boxu02:before {
  position: absolute;
  content: "";
  background-image: url("../img/ucs_majica/next_boxm.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 9px);
  width: 20px;
  height: 20px;
  right: 15px;
}
@media screen and (max-width: 1040px) {
  #box_u .a_boxu01:before,
  #box_u .a_boxu02:before {
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
    right: 13px;
  }
}
@media screen and (max-width: 750px) {
  #box_u .a_boxu01:before,
  #box_u .a_boxu02:before {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    right: 10px;
  }
}
@media screen and (max-width: 1040px) {
  #box_u .a_boxu01,
  #box_u .a_boxu02 {
    width: calc(100% - 2em);
    max-width: 390px;
    margin: 1.8em auto;
    padding: 15px 0;
  }
}
@media screen and (max-width: 750px) {
  #box_u .a_boxu01,
  #box_u .a_boxu02 {
    margin: 1.5em auto;
    padding: 13px 0;
    font-size: 1.3em;
    letter-spacing: 0;
  }
}
#box_u .a_boxu01 {
  max-width: 390px;
}
@media screen and (max-width: 750px) {
  #box_u .a_boxu01 {
    max-width: 320px;
    padding: 8px 0;
  }
  #box_u .a_boxu01 span {
    display: block;
  }
}
#box_u .a_boxu02 {
  margin: 1.3em auto 2em auto;
}
@media screen and (max-width: 1040px) {
  #box_u .a_boxu02 {
    max-width: 320px;
  }
}
@media screen and (max-width: 750px) {
  #box_u .a_boxu02 {
    margin: 1.1em auto 1.2em auto;
  }
}
#box_u .h3_campaign_u {
  position: relative;
  padding: 0.5em 0 0 0;
  font-weight: 700;
  font-size: 2em;
  color: #e85504;
}
#box_u .h3_campaign_u:before {
  position: absolute;
  content: "";
  width: calc(100% + 2em);
  background: #e85504;
  height: 2px;
  top: 1.4em;
  left: -1em;
}
@media screen and (max-width: 1040px) {
  #box_u .h3_campaign_u:before {
    top: 1.5em;
    width: calc(100% + 2em);
    left: -1em;
  }
}
@media screen and (max-width: 750px) {
  #box_u .h3_campaign_u:before {
    top: 1.2em;
    width: calc(100% + 1.4em);
    left: -0.6em;
  }
}
@media screen and (max-width: 1040px) {
  #box_u .h3_campaign_u {
    padding: 0.7em 1em 0 1em;
  }
}
@media screen and (max-width: 750px) {
  #box_u .h3_campaign_u {
    font-size: 1.6em;
    padding: 0.5em 0.5em 0 0.5em;
  }
}
#box_u .span01_h3u,
#box_u .span02_h3u {
  position: relative;
  display: inline-block;
  padding: 0.3em 0.2em 0.2em 1em;
  background: #f2f2f2;
  z-index: 0;
}
@media screen and (max-width: 1040px) {
  #box_u .span01_h3u {
    padding: 0.1em 2em 0 2em;
  }
}
@media screen and (max-width: 750px) {
  #box_u .span01_h3u {
    padding: 0 1em 0 1em;
  }
}
#box_u .span02_h3u {
  font-size: 0.7em;
  padding: 0.4em 1em 0.4em 0;
}
@media screen and (max-width: 1040px) {
  #box_u .span02_h3u {
    display: block;
  }
}
#box_u .campaign_u {
  width: 100%;
  padding: 1.5em 2em 0 2em;
}
#box_u .campaign_u ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
#box_u .campaign_u ul li {
  width: calc(50% - 0.4em);
  margin-top: 1.5em;
  margin-right: 0.8em;
}
#box_u .campaign_u ul li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1040px) {
  #box_u .campaign_u ul li {
    margin-top: 0.6em;
  }
}
@media screen and (max-width: 750px) {
  #box_u .campaign_u ul li {
    width: calc(50% - 0.4em);
    margin-top: 0.6em;
  }
  #box_u .campaign_u ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1040px) {
  #box_u .campaign_u {
    padding: 1em 1.5em 0.5em 1.5em;
  }
}
@media screen and (max-width: 750px) {
  #box_u .campaign_u {
    padding: 0.6em 0.8em 0.1em 0.8em;
  }
}

/* --------------------------------------------------------------------------
   近隣店舗情報
   -------------------------------------------------------------------------- */
.b-shop {
  background: linear-gradient(to bottom, #ffffff 0%, #e3f2f6 100%);
  position: relative;
  padding: 46px 0 55px;
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 55px;
  box-shadow: 0 8px 0 0 #00a0e9;
  border: solid 6px #000;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .b-shop {
    padding: 6vw 3vw 56vw;
    margin-bottom: 10vw;
  }
}
.b-shop:before {
  content: "";
  background: url(../img/b-shop-deco_01@2x.png) no-repeat center center/cover;
  max-width: 175px;
  width: 12.15vw;
  aspect-ratio: 152/173;
  display: block;
  position: absolute;
  left: 70px;
  bottom: 40px;
}
@media (max-width: 768px) {
  .b-shop:before {
    width: 34.8vw;
    height: 39.6vw;
    left: 5.2vw;
    bottom: 11.26vw;
  }
}
.b-shop:after {
  content: "";
  background: url(../img/b-shop-deco_02@2x.png) no-repeat center center/contain;
  max-width: 256px;
  width: 17.77vw;
  aspect-ratio: 145/127;
  display: block;
  position: absolute;
  right: 48px;
  bottom: 32px;
}
@media (max-width: 768px) {
  .b-shop:after {
    width: 49vw;
    height: 43.3vw;
    right: 4vw;
    bottom: 9.2vw;
  }
}
.b-shop__heading {
  text-align: center;
  font-size: 28px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #e60012;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .b-shop__heading {
    font-size: 5.5vw;
    margin-bottom: 5vw;
    line-height: 1.6666666667;
  }
}
@media (max-width: 768px) {
  .b-shop__heading--s {
    font-size: 5.2vw;
  }
}
.b-shop__lead {
  text-align: center;
  font-size: 16px;
  text-indent: -1.2em;
  padding-left: 1.2em;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .b-shop__lead {
    font-size: 3.733vw;
    letter-spacing: 0;
    line-height: 1.77;
    margin-bottom: 9vw;
    text-indent: 0;
    padding-left: 0;
    padding-inline: 4vw;
  }
}
.b-shop__lead--s {
  font-size: 14px;
}
@media (max-width: 768px) {
  .b-shop__lead--s {
    font-size: 3.2vw;
  }
}
.b-shop__btn {
  display: inline-block;
  transition: filter 0.3s ease-out;
}
@media (hover: hover) {
  .b-shop__btn:where(:any-link, :enabled, summary):hover {
    filter: brightness(1.1);
  }
}
.b-shop__btn img {
  margin-inline: auto;
}

.for_pc {
  display: block;
  margin-inline: auto;
}

.for_sp {
  display: none;
  margin-inline: auto;
}

/* sp */
@media screen and (max-width: 750px) {
  .for_pc {
    display: none;
    margin-inline: auto;
  }
  .for_sp {
    display: block;
    margin-inline: auto;
  }
}
.js-fv-pop {
  opacity: 0;
  transform: translateY(80px) scale(0.7);
  transform-origin: center bottom;
}
.js-fv-pop.is-active {
  animation: fv-pop 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fv-pop {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.7);
  }
  35% {
    opacity: 1;
    transform: translateY(-18px) scale(1.08);
  }
  55% {
    transform: translateY(6px) scale(0.96);
  }
  72% {
    transform: translateY(-4px) scale(1.03);
  }
  88% {
    transform: translateY(2px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.js-fv-fade {
  opacity: 0;
  transform: translateY(40px);
}
.js-fv-fade.is-active {
  animation: fv-fade 0.8s ease-out forwards;
}

@keyframes fv-fade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fv-float {
  opacity: 0;
  transform: translateY(30px);
}
.js-fv-float.is-active {
  animation: fv-float-in 0.8s ease-out forwards, fv-float 3s ease-in-out 0.8s infinite;
}

@keyframes fv-float-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fv-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(-1deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(6px) rotate(1deg);
  }
}
.js-fv-scale {
  opacity: 0;
  transform: scale(0.72);
  transform-origin: center bottom;
}
.js-fv-scale.is-active {
  animation: fv-scale 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fv-scale {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  28% {
    opacity: 1;
    transform: scale(1.1);
  }
  58% {
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.no-link {
  cursor: not-allowed;
  pointer-events: none;
}
/* ===== 2026-09-11 v3 修正 ===== */
/* 応募ボタン：応募開始前のグレーアウト（9/17 10:00 に JS が no-link を外す） */
a[data-entry-btn].no-link {
  filter: grayscale(1);
  opacity: 0.5;
}
/* 追従バーをリンク化 */
.floating__link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
/* 商品の「＋ 詳細を見る」：詳細ページ・モーダルが無いため非表示（支給されたらこの行を消す） */
.sec-course__list-item .item-btn.no-modal {
  display: none;
}
/* 右上メニュー：11項目に増えたため高さと余白を調整 */
.l-hamburger__panel {
  max-height: 100vh;
  overflow-y: auto;
}
.l-hamburger__item a {
  padding: 1.7rem 1rem;
}
.l-hamburger__item--sub a {
  font-size: 1.6rem;
  padding: 1.2rem 1rem 1.2rem 3.2rem;
  text-align: left;
}
.l-hamburger__item--sub a::before {
  content: "└ ";
  color: #999;
}
@media screen and (max-width: 767px) {
  .l-hamburger__item a {
    padding: 1.5rem 1rem;
  }
  .l-hamburger__item--sub a {
    font-size: 1.6rem;
    padding: 1.1rem 1rem 1.1rem 3.2rem;
  }
}