@charset "UTF-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Kalnia:wght@100..700&display=swap");

/* PC用設定 */
@media screen and (min-width: 751px) {
}

/*************
メディアクエリ
*************/
@media (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
  --text-color: #000000;
  --sub-text-color: #606060;
  --text-link: #2689fd;
  --primary-color: #02d5a0;
  --accent-color: #ff58a3;
  --red-color: #ee0000;
  --bg-color: #ffffff;
  --bg02-color: rgb(0 0 0 / 0.8);
  --border-color: #aaaaaa;
  --grad-color: linear-gradient(90deg, #e24d01 0%, #f57710 100%);
  --grad02-color: linear-gradient(90deg, #f57710 0%, #e24d01 100%);
  --font-serif: "Noto Serif JP", 游明朝, 游明朝体, "Yu Mincho", YuMincho, serif;
  --scale-factor: 1;
  /* 通常時 */
  --btn-base-color: #ccc;
  /* アコーディオンボタンのベース色 */
  --btn-text-color: #000;
  /* アコーディオンボタンのテキスト色 */

  --kv-color-nissy: #7db3c0;
  --bg1-color-nissy: #e6e277;
  --bg2-color-nissy: #aba69e;
  --bg3-color-nissy: #d5cec1;
  --bg4-color-nissy: #a4d0db;
  --cts1-color-nissy: #fffedf;
  --cts2-color-nissy: #ebe9e7;
  --cts3-color-nissy: #f4f1ea;
  --cts4-color-nissy: #ddeef2;
  --font-kalnia: "Kalnia", sans-serif;
  --font-albert: "Albert Sans", sans-serif;
}

/* 背景固定 */
/* body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) no-repeat center center;
	background-size: cover;
} */

.main__wrap {
  padding-top: 66px;
  background-color: #fff;
  color: var(--text-color);
  line-height: 1.5;
  font-size: 14px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.main__wrap * {
  box-sizing: border-box;
}

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

a:hover img {
  opacity: 1;
}

.container {
  width: 92%;
  margin: 0 auto;
  max-width: 800px;
}

.indent li,
.txt-note.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.fc-red {
  color: var(--red-color);
}

.fc-accent {
  color: var(--red-color);
}

.fc-white {
  color: #fff;
}

.txt-link {
  color: var(--text-link);
  text-decoration: underline;
  font-weight: bold;
}

.txt-note {
  font-size: 12px;
}

.txt-note.fz-s {
  font-size: 11px;
}

.note__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.note__list li {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.33px;
}

.note__list li.fc-red {
  color: var(--red-color);
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.auto_center {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.credit {
  font-size: 10px;
  padding-top: 8px;
  text-align: center;
  background-color: #fff;
}

.fz-smaller {
  font-size: 0.8em;
}

.fz-larger {
  font-size: 1.2em;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  :root {
    --scale-factor: 1.15;
    /* 1.15倍に */
  }

  a img {
    transition: all 0.5s;
  }

  .main__wrap {
    padding-top: 90px;
  }

  .pc_center {
    text-align: center;
  }
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.js__fadeIn {
  opacity: 0;
  /* 最初は非表示 */
  transition: opacity 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

.js__fadeIn.is-inview {
  opacity: 1;
}

/* フェードアップ */
.js__fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(15px);
  /* 下にXXpxの位置から */
  transition:
    opacity 0.8s,
    transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

.js__fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* animationフェードダウン */
.js__fadeDown {
  opacity: 0;
  /* 最初は非表示 */
  transition:
    opacity 1s,
    transform 1s;
  /* 透過率と縦方向の移動を0.8秒 */
}

.js__fadeDown.is-inview {
  animation-name: fadeInDown;
  animation-duration: 1.3s;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -8%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ブラー*/
.js__blurAnime {
  opacity: 0;
  /* 最初は非表示 */
}

.js__blurAnime.is-inview {
  animation-name: blurAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

/* flipLeft */
.js__flipLeft {
  opacity: 0;
  transition:
    opacity 0.8s,
    transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

.js__flipLeft.is-inview {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
  transition-delay: 0.8s;
  animation-delay: 0.3s;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }

  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

/* スライド（左から右） */
.js__slide {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: all 0.8s;
}

.js__slide.is-inview {
  animation-name: anime_left_to_right;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}

@keyframes anime_left_to_right {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.js__slide_re {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: all 0.8s;
}

.js__slide_re.is-inview {
  animation-name: anime_right_to_left;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}

@keyframes anime_right_to_left {
  0% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }

  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/* スライド（左上から右下） */
.js__diagonal {
  /* 初期状態：左上の1点に集約 */
  clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  transition: all 0.8s;
}

.js__diagonal.is-inview {
  animation-name: anime_diagonal_wipe;
  animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-timing-function: ease;
}

@keyframes anime_diagonal_wipe {
  0% {
    /* 左上の外側に隠れている状態（三角形） */
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }

  /* 50% {
    clip-path: polygon(0% 0%, 60% 0%, 0% 100%, 0% 0%);
  } */
  100% {
    /* 右下の外側まで突き抜けることで、角が埋まる違和感を消す */
    /* 200%まで飛ばすのがポイントです */
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
  }
}

.is-transition-delayed01 {
  transition-delay: 0.4s;
}

.is-transition-delayed02 {
  transition-delay: 0.6s;
}

.is-transition-delayed03 {
  transition-delay: 0.8s;
}

.is-animation-delayed {
  animation-delay: 0.4s;
}

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
  display: none;
}

.acc__block01 .acc__body {
  margin-top: 16px;
  color: var(--text-color);
}

.acc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  padding: 6px 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.acc__block01 .acc__btn {
  width: fit-content;
  margin: 0 auto;
  background-color: var(--btn-base-color);
  border-radius: 40px;
}

.acc__btn_text {
  font-weight: bold;
  color: var(--btn-text-color);
}

.acc__btn_plus {
  background-color: var(--btn-text-color);
  height: 16px;
  width: 16px;
  border-radius: 100%;
  position: relative;
}

.acc__btn_plus::before,
.acc__btn_plus::after {
  content: "";
  background-color: var(--btn-base-color);
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}

.acc__btn_plus::after {
  transform: translate(-50%, -50%);
}

.acc__btn_plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.acc__btn.open .acc__btn_plus::before {
  transform: translate(-50%, -50%);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

.voice-btn {
  position: relative;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .voice-btn__pc {
    background-color: var(--primary-color, #b3b3b3);
    border: 1px solid #000000;
    padding: 16px;
  }

  .voice-btn__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .voice-btn__txt {
    color: #fff;
    padding-right: 16px;
  }

  .voice-btn__txt .txt01 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .voice-btn__img {
    background-color: #fff;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    border-radius: 10px;

    & img {
      border-radius: 10px;
    }
  }
}

/* サイズをかえる書き方 */
.SD01 {
  width: calc(81px * var(--scale-factor));
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */

.menu__list {
  display: flex;
  gap: 4px;
  justify-content: center;
  /* width: 92vw; */
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  margin-block-start: -6px;
}

.menu__list li {
  width: calc((100% - 20px) / 2);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  /* .menu__list {
		gap: 30px;
	} */

  .menu__list li {
    width: calc((100% - 90px) / 4);
    max-width: 130px;
  }

  .menu__list li a {
    transition: all 0.5s;
    display: block;
  }

  .menu__list li a:hover {
    transform: translateY(-5px);
  }
}

/* ------------------------------------------------------------
step
------------------------------------------------------------ */
.step__wrap {
  padding: 16px;
  border: 1px solid var(--primary-color);
}

.step__list {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}

.step__list + .step__list {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

.step__list dt {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  line-height: 1;
  width: 64px;
  border-radius: 40px;
  padding: 5px 0;
  text-align: center;
  font-size: 12px;
}

.step__list dd {
  width: calc(100% - 64px - 8px);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
howto
------------------------------------------------------------ */
.icon_phone {
  width: 46px;
  display: block;
  margin: 16px auto;
}

/* splide */
.howto_splide {
  position: relative;
  /* ここで基準にする */
}

/* 矢印を絶対配置でリストの上に重ねる */
.howto_splide .splide__arrow {
  position: absolute;
  top: 50%;
  /* 縦中央 */
  transform: translateY(-50%);
  /* 上下補正 */
  background: none;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  z-index: 10;
  /* スライドの上に表示 */
  cursor: pointer;
}

/* 左右の位置 */
.howto_splide .splide__arrow--prev {
  left: -3px;
  /* 左端 */
}

.howto_splide .splide__arrow--next {
  right: -3px;
  /* 右端 */
}

/* 画像だけ表示 */
.howto_splide .splide__arrow img {
  display: block;
  width: 29px;
  /* お好みで調整 */
  height: auto;
}

/* ページネーションリセット */
.howto_splide .splide__pagination {
  all: unset;
  display: flex !important;
  /* 強制表示 */
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.howto_splide .splide__pagination__page {
  all: unset;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5f5f5;
}

.howto_splide .splide__pagination__page.is-active {
  background: var(--primary-color);
}

/* スライド自体をフレックスコンテナに */
.howto_splide .slide__box {
  display: flex;
  /* フレックス化 */
  flex-direction: column;
  /* 上下方向 */
  justify-content: center;
  /* 縦中央 */
  align-items: center;
  /* 横中央 */
  text-align: center;
  /* テキスト中央寄せ */
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px 8px;
}

.howto_splide .splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 93%;
  margin: 0 auto;
}

.howto_splide .slide__box--inner p {
  font-weight: bold;
  font-size: 15px;
}

.img-btn_VT01 {
  width: 172px;
  margin: 0 auto 8px;
}

.plate-bk {
  background-color: #000;
  color: #fff;
  border-radius: 40px;
  padding: 3px 12px;
  line-height: 1.2;
  margin-bottom: 2px;
  margin-top: 2px;
}

.aori-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}

.aori-txt::before,
.aori-txt::after {
  width: 2px;
  height: 24px;
  background-color: #000;
  content: "";
}

.aori-txt::before {
  transform: rotate(-35deg);
  margin-right: 20px;
}

.aori-txt::after {
  transform: rotate(35deg);
  margin-left: 20px;
}

.slide__box--inner.flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.flex-left {
  width: 80%;
  flex-shrink: 0;
}

.slide__box--inner .icon {
  width: 36px;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .flex-left {
    width: auto;
  }
}

/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap {
  background-color: #fff;
}

.oshitabi_btn--block {
  padding: 40px 30px;
}

.oshitabi_btn {
  display: block;
  border: 3px solid #000000;
  color: #000000;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  position: relative;
}

.oshitabi_btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .oshitabi_btn--block {
    max-width: 640px;
    margin: 0 auto;
  }

  .oshitabi_btn {
    transition: all 0.3s;
    width: 360px;
    margin: 32px auto;
  }

  .oshitabi_btn:hover {
    background-color: #000000;
    color: #fff;
  }

  .oshitabi_btn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: 0.3s;
  width: 56px;
  z-index: 99;
  opacity: 0;
  /*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active {
  opacity: 1;
}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute {
  position: absolute;
  top: -70px;
  bottom: auto;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .pagetop-btn {
    right: 24px;
  }
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive {
  pointer-events: none;
}

.cs {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
  padding: 6px;
  color: #dc4559;
  font-size: 26px;

  @media screen and (min-width: 751px) {
    font-size: 18px;
  }
}

.event-end {
  color: var(--red-color);
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: 2px solid var(--red-color);
  padding: 6px;
}

.event-end-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width: 751px) {
  .cs.event-end-block {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  /* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}

/* ------------------------------------------------------------
アキ調整
------------------------------------------------------------ */

.mgbS {
  margin-bottom: 8px;
}

/* PC:8px */
.mgbM {
  margin-bottom: 16px;
}

/* PC:24px */
.mgbL {
  margin-bottom: 24px;
}

/* PC:32px */
.mgbLL {
  margin-bottom: 32px;
}

/* PC:40px */

.mgtSS {
  margin-top: 4px;
}

.mgtS {
  margin-top: 8px;
}

.mgtM {
  margin-top: 16px;
}

/* PC:24px */
.mgtL {
  margin-top: 24px;
}

/* PC:32px */
.mgtLL {
  margin-top: 32px;
}

/* PC:40px */

.pdtS {
  padding-top: 8px;
}

/* PC:8px */
.pdtM {
  padding-top: 16px;
}

/* PC:24px */
.pdtL {
  padding-top: 24px;
}

/* PC:32px */

.pdbS {
  padding-bottom: 8px;
}

/* PC:8px */
.pdbM {
  padding-bottom: 16px;
}

/* PC:24px */
.pdbL {
  padding-bottom: 24px;
}

/* PC:32px */

/* PC用設定 */
@media screen and (min-width: 751px) {
  .mgbM {
    margin-bottom: 24px;
  }

  .mgbL {
    margin-bottom: 32px;
  }

  .mgbLL {
    margin-bottom: 40px;
  }

  .mgtM {
    margin-top: 24px;
  }

  .mgtL {
    margin-top: 32px;
  }

  .mgtLL {
    margin-top: 40px;
  }

  .pdtM {
    padding-top: 24px;
  }

  .pdtL {
    padding-top: 32px;
  }

  .pdbM {
    padding-bottom: 24px;
  }

  .pdbL {
    padding-bottom: 32px;
  }
}

.mv__block {
  background-color: var(--kv-color-nissy);

  @media screen and (min-width: 751px) {
    background-color: #a4d0db;

    & img {
      width: 960px;
      margin-inline: auto;
    }
  }
}

.menu__wrap {
  position: relative;
  background-color: #a4d0db;
  padding-bottom: 50px;
  z-index: 1;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/line-anchor.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: min(26.13vw, 98px);
    height: min(58.67vw, 220px);
    z-index: -1;
  }

  & h2 {
    color: #7db3c0;
    font-family: var(--font-kalnia);
    font-size: 50px;
    font-weight: 500;
    line-height: 1;
  }

  @media screen and (min-width: 751px) {
    &::after {
      content: none;
    }

    & h2 {
      font-size: 60px;
    }

    & .sec--common {
      width: 560px;
      margin-inline: auto;

      & .menu__list {
        margin-block-start: -7px;

        & li {
          width: 100%;
          max-width: 137px;
        }
      }
    }
  }
}

.sec--common {
  max-width: 620px;
  width: 100%;
  margin-inline: auto;
}

& .acc__block01.acc__notice {
  & .acc__btn {
    background-color: #6c6c6c;

    & .acc__btn_text {
      color: #fff;
      font-size: 14px;
      font-style: normal;
      font-weight: 700;
      line-height: 140%;
      letter-spacing: 0.42px;
    }

    & .acc__btn_plus {
      background-color: #fff;

      &::before,
      &::after {
        background-color: #6c6c6c;
      }
    }
  }

  & .acc__body {
    width: 92%;
    color: #6c6c6c;
    margin-inline: auto;

    & .txt-link {
      color: #dc4559;
    }
  }
}

.sec--talk {
  position: relative;
  background-color: var(--bg1-color-nissy);
  padding-inline: 4%;
  padding-block: 60px 80px;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(16vw, 100px);
    height: min(34.47vw, 220px);
    background-color: #a4d0db;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  &::after {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    background-image: url(../img/line-talk.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: min(26.13vw, 98px);
    height: min(58.67vw, 220px);
    z-index: -1;

    @media screen and (min-width: 751px) {
      left: calc(50% - (620px / 2) - 70px);
      translate: -50% 0;
      right: 0;
    }
  }

  & hgroup {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    margin-top: -20px;
    z-index: 2;

    & span {
      position: relative;
      left: -2%;
      display: inline-block;
      background-color: #fff;
      font-family: "Noto Sans JP";
      font-size: 16px;
      font-weight: 700;
      line-height: 120%;
      color: #a19d45;
      letter-spacing: 1px;
      margin-bottom: 20px;
      padding-block: 4px;
      padding-inline: 4% 2%;

      @media screen and (min-width: 751px) {
        left: 0;
        padding-inline: 2%;
      }

      &::after {
        content: "";
        position: absolute;
        top: 0;
        right: -12px;
        width: 12px;
        height: 100%;
        background-color: #fff;
        clip-path: polygon(0 0, 100% 0, 0 100%);
      }
    }

    & em {
      display: block;
      color: #000;
      font-size: 18px;
      font-weight: 700;
      line-height: 150%;
      letter-spacing: 0.9px;
      margin-bottom: 10px;
    }

    & h2 {
      font-size: 48px;
      font-family: var(--font-kalnia);
      color: #000;
      font-weight: 500;
      line-height: 100%;
		padding-bottom: 10px;

      @media screen and (min-width: 751px) {
        font-size: 60px;
      }
    }
  }

  & .sec--common {
    position: relative;
    background-color: var(--cts1-color-nissy);
    margin-block-start: -30px;
    padding-block-start: 50px;
    padding-block-end: 30px;
    z-index: 1;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg1-color-nissy);
      clip-path: polygon(0 0, 100% 0, 0 100%);
      z-index: -1;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg1-color-nissy);
      clip-path: polygon(0 100%, 100% 100%, 100% 0);
      z-index: -1;
    }

    & .schedule {
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      width: min(92%, 540px);
      margin-inline: auto;
      font-family: var(--font-albert);
      font-size: 16px;
      font-style: italic;
      font-weight: 500;
      color: #000;
      line-height: 150%;
      letter-spacing: 0.48px;
      text-align: center;

      & em {
        font-family: "Albert Sans";
        font-size: 24px;
        font-style: italic;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.72px;
      }
    }

    & .acc__voice {
      margin-bottom: 25px;

      & .step__wrap {
        background-color: #fff;
        border: 1px solid #a19d45;
        width: min(92%, 540px);
        margin-inline: auto;

        & .step__list {
          & dt {
            background-color: #fff;
            border: 1px solid #a19d45;
            font-family: var(--font-kalnia);
            font-family: Kalnia;
            font-size: 14px;
            color: #898524;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.28px;
            text-align: center;
          }

          & dd {
            & .step__text01 {
              color: #000;
              font-size: 14px;
              font-weight: 500;
              line-height: 150%;
              letter-spacing: 0.42px;
            }
          }

          & + & {
            border-top: 1px solid #a19d45;
            margin-top: 10px;
            padding-top: 10px;
          }
        }
      }
    }

    & .caption {
      font-size: 15px;
      font-weight: 500;
      line-height: 150%;
      text-align: center;
      letter-spacing: 0.45px;
      margin-block: 25px;
    }

    & .period {
      font-family: var(--font-albert);
      font-style: normal;
      font-weight: 500;
      color: #000;
      line-height: 150%;
      letter-spacing: 0.45px;
      text-align: center;
      width: fit-content;
      text-align: left;
      list-style: none;
      margin: 0 auto;
      padding: 0;
      counter-reset: period-num;

      & li {
        counter-increment: period-num;
        display: flex;
        align-items: baseline;
        gap: 5px;
        font-size: 15px;
        margin-bottom: 4px;
        padding-bottom: 8px;

        &::before {
          content: "#" counter(period-num);
          width: 50px;
          font-family: Kalnia;
          font-size: 32px;
          font-style: normal;
          font-weight: 500;
          line-height: 100%;
          color: #a19d45;
          letter-spacing: 0.96px;
          transform: translateY(5px);
        }

        &:not(:last-child) {
          border-bottom: 1px solid #ecebc7;
        }

        & em {
          font-size: 22px;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0.66px;
        }

        & span {
          font-size: 24px;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0.72px;
        }
      }
    }

    & .acc__block01.acc__voice {
      & .acc__btn {
        background-color: #898524;

        & .acc__btn_text {
          color: #fff;
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: 140%;
          letter-spacing: 0.42px;
        }

        & .acc__btn_plus {
          background-color: #fff;

          &::before,
          &::after {
            background-color: #898524;
          }
        }
      }
    }

    & .container {
      width: min(92%, 540px);
      color: #6c6c6c;

      & .voice-btn__block {
        & .pc_view {
          & .voice-btn__outer {
            position: relative;
            z-index: 1;

            &::before {
              content: "";
              position: absolute;
              top: 0;
              left: 13px;
              background-image: url(../img/line-voice01.svg);
              background-repeat: no-repeat;
              background-size: contain;
              width: 20px;
              height: 54px;
              z-index: 2;
            }

            &::after {
              content: "";
              position: absolute;
              bottom: -1px;
              right: 0;
              background-image: url(../img/line-voice02.svg);
              background-repeat: no-repeat;
              background-size: cover;
              width: 12px;
              height: 27px;
              z-index: 1;
            }

            & .voice-btn__pc {
              position: relative;
              background-color: #dc4559;
              border: none;
              padding: 15px 30px;
              z-index: 1;

              &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 17px;
                height: 38px;
                background-color: var(--cts1-color-nissy);
                clip-path: polygon(0 0, 100% 0, 0 100%);
                z-index: -1;
              }

              &::after {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                width: 17px;
                height: 38px;
                background-color: var(--cts1-color-nissy);
                clip-path: polygon(0 100%, 100% 100%, 100% 0);
                z-index: -1;
              }

              & .voice-btn__txt {
                padding-right: 20px;

                & .txt01 {
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  gap: 3px;
                  background-color: #fff;
                  border-radius: 50px;
                  font-size: 18px;
                  font-style: normal;
                  font-weight: 700;
                  line-height: 120%;
                  color: #dc4559;
                  text-align: center;
                  letter-spacing: 0.9px;
                  padding: 5px 0;
                }

                & .txt02 {
                  font-size: 14px;
                  font-weight: 700;
                  line-height: 150%;
                  letter-spacing: 0.42px;
                  color: #fff;
                }
              }
            }
          }
        }

        & .txt-note.fz-s {
          font-size: 10px;
        }
      }
    }
  }
}

.sec--campaign {
  position: relative;
  background-color: var(--bg2-color-nissy);
  padding-inline: 4%;
  padding-block: 60px 80px;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(16vw, 100px);
    height: min(34.47vw, 220px);
    background-color: var(--bg1-color-nissy);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    background-image: url(../img/line-campaign.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: min(26.13vw, 98px);
    height: min(58.67vw, 220px);
    z-index: -1;
  }

  & .h-campaign1 {
    position: relative;
    text-align: right;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    margin-top: -20px;
    z-index: 2;

    & span {
      position: relative;
      right: -2%;
      display: inline-block;
      background-color: #fff;
      font-family: "Noto Sans JP";
      font-size: 16px;
      font-weight: 700;
      line-height: 120%;
      color: #7c776e;
      letter-spacing: 1px;
      margin-bottom: 20px;
      padding-block: 4px;
      padding-inline: 2% 4%;

      @media screen and (min-width: 751px) {
        right: 0;
        padding-inline: 2%;
      }

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: -12px;
        width: 12px;
        height: 100%;
        background-color: #fff;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
      }
    }

    & h2 {
      display: flex;
      justify-content: flex-end;
      font-size: 54px;
      font-family: var(--font-kalnia);
      color: #000;
      font-weight: 500;
      line-height: 100%;
      text-align: left;
		padding-bottom: 10px;

      @media screen and (min-width: 751px) {
        font-size: 60px;
      }
    }
  }

  & .sec--common {
    position: relative;
    background-color: var(--cts2-color-nissy);
    margin-block-start: -30px;
    padding-block-start: 50px;
    padding-block-end: 30px;
    z-index: 1;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg2-color-nissy);
      clip-path: polygon(0 0, 100% 0, 100% 100%);
      z-index: -1;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg2-color-nissy);
      clip-path: polygon(0 0, 100% 100%, 0 100%);
      z-index: -1;
    }

    & .schedule {
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      width: min(92%, 540px);
      margin-inline: auto;
      font-family: var(--font-albert);
      font-size: 16px;
      font-style: italic;
      font-weight: 500;
      color: #000;
      line-height: 150%;
      letter-spacing: 0.48px;
      text-align: center;
      margin-bottom: 25px;

      & em {
        font-family: "Albert Sans";
        font-size: 24px;
        font-style: italic;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.72px;
      }

      &:not(:first-of-type) {
        border: none;
      }
    }

    & .acc__wallpaper {
      margin-bottom: 25px;

      & .acc__btn {
        background-color: #7c776e;

        & .acc__btn_text {
          color: #fff;
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: 140%;
          letter-spacing: 0.42px;
			text-align: center;
        }

        & .acc__btn_plus {
          background-color: #fff;

          &::before,
          &::after {
            background-color: #7c776e;
          }
        }
      }

      & .step__wrap {
        background-color: #fff;
        border: 1px solid #7c776e;
        width: min(92%, 540px);
        margin-inline: auto;

        & .step__list {
          & dt {
            background-color: #fff;
            border: 1px solid #7c776e;
            font-family: var(--font-kalnia);
            font-family: Kalnia;
            font-size: 14px;
            color: #7c776e;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.28px;
            text-align: center;
          }

          & dd {
            & .step__text01 {
              color: #000;
              font-size: 14px;
              font-weight: 500;
              line-height: 150%;
              letter-spacing: 0.42px;
            }
          }

          & + & {
            border-top: 1px solid #7c776e;
            margin-top: 10px;
            padding-top: 10px;
          }
        }
      }
    }

    & .acc__lottery {
      margin-bottom: 25px;

      & .acc__btn {
        background-color: #7c776e;

        & .acc__btn_text {
          color: #fff;
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: 140%;
          letter-spacing: 0.42px;
        }

        & .acc__btn_plus {
          background-color: #fff;

          &::before,
          &::after {
            background-color: #7c776e;
          }
        }
      }

      & .step__wrap {
        background-color: #fff;
        border: 1px solid #7c776e;
        width: min(92%, 540px);
        margin-inline: auto;

        & .step__list {
          & dt {
            background-color: #fff;
            border: 1px solid #7c776e;
            font-family: var(--font-kalnia);
            font-size: 14px;
            color: #7c776e;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.28px;
            text-align: center;
          }

          & dd {
            & .step__text01 {
              color: #000;
              font-size: 14px;
              font-weight: 500;
              line-height: 150%;
              letter-spacing: 0.42px;
            }
          }

          & + & {
            border-top: 1px solid #7c776e;
            margin-top: 10px;
            padding-top: 10px;
          }
        }
      }
    }

    & .caption1 {
      border-bottom: 1px solid #000;
      width: min(92%, 540px);
      margin-inline: auto;
      font-size: 15px;
      font-weight: 500;
      line-height: 150%;
      text-align: center;
      letter-spacing: 0.45px;
      margin-bottom: 25px;
      padding-bottom: 25px;
    }

    & .h-campaign2 {
      position: relative;
      color: #000;
      text-align: center;
      margin-bottom: 25px;

      & span {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: fit-content;
        border-radius: 50px;
        border: 1px solid #000;
        background: #fff;
        font-size: 13px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0.65px;
        margin-inline: auto;
        margin-bottom: 10px;
        padding: 5px 10px;
      }

      & h3 {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1.1px;
      }

      & small {
        font-size: 11px;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.55px;
      }
    }

    & .h-campaign3 {
      position: relative;
      color: #000;
      text-align: center;
      margin-top: 45px;
      margin-bottom: 5px;
      padding-top: 30px;

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        translate: -50% 0;
        width: min(92%, 540px);
        height: 1px;
        background-color: #000;
      }

      & span {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: fit-content;
        border-radius: 50px;
        border: 1px solid #000;
        background: #fff;
        font-size: 13px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0.65px;
        margin-inline: auto;
        margin-bottom: 10px;
        padding: 5px 10px;
      }

      & h3 {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1.1px;
      }

      & small {
        font-size: 11px;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.55px;
      }
    }

    & .caption2 {
      font-size: 15px;
      font-style: normal;
      font-weight: 500;
      color: #000;
      line-height: 150%;
      text-align: center;
      letter-spacing: 0.45px;
      margin-bottom: 25px;
    }

    & .period {
      font-family: var(--font-albert);
      font-style: normal;
      font-weight: 500;
      color: #000;
      line-height: 150%;
      letter-spacing: 0.45px;
      text-align: center;
      width: fit-content;
      text-align: left;
      list-style: none;
      margin: 0 auto;
      padding: 0;
      counter-reset: period-num;

      & li {
        counter-increment: period-num;
        display: flex;
        align-items: baseline;
        gap: 5px;
        font-size: 15px;
        margin-bottom: 4px;
        padding-bottom: 8px;

        &::before {
          content: "#" counter(period-num);
          width: 50px;
          font-family: Kalnia;
          font-size: 32px;
          font-style: normal;
          font-weight: 500;
          line-height: 100%;
          color: #aba69e;
          letter-spacing: 0.96px;
          transform: translateY(5px);
        }

        &:not(:last-child) {
          border-bottom: 1px solid #d6d0ca;
        }

        & em {
          font-size: 22px;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0.66px;
        }

        & span {
          font-size: 24px;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0.72px;
        }
      }
    }

    & .note__list {
      width: min(92%, 540px);
      color: #6c6c6c;
      margin-inline: auto;
      margin-block-end: 25px;
    }

    & .container {
      width: min(92%, 540px);
      color: #6c6c6c;

      & .voice-btn__block {
        & .pc_view {
          & .voice-btn__outer {
            position: relative;
            z-index: 1;

            &::before {
              content: "";
              position: absolute;
              top: 0;
              left: 13px;
              background-image: url(../img/line-voice01.svg);
              background-repeat: no-repeat;
              background-size: contain;
              width: 20px;
              height: 54px;
              z-index: 2;
            }

            &::after {
              content: "";
              position: absolute;
              bottom: -1px;
              right: 0;
              background-image: url(../img/line-voice02.svg);
              background-repeat: no-repeat;
              background-size: cover;
              width: 12px;
              height: 27px;
              z-index: 1;
            }

            & .voice-btn__pc {
              position: relative;
              background-color: #dc4559;
              border: none;
              padding: 15px 30px;
              z-index: 1;

              &::before {
                content: "";
                position: absolute;
                top: -1px;
                left: 0;
                width: 17px;
                height: 38px;
                background-color: var(--cts2-color-nissy);
                clip-path: polygon(0 0, 100% 0, 0 100%);
                z-index: -1;
              }

              &::after {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                width: 17px;
                height: 38px;
                background-color: var(--cts2-color-nissy);
                clip-path: polygon(0 100%, 100% 100%, 100% 0);
                z-index: -1;
              }

              & .voice-btn__txt {
                padding-right: 20px;

                & .txt01 {
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  gap: 3px;
                  background-color: #fff;
                  border-radius: 50px;
                  font-size: 18px;
                  font-style: normal;
                  font-weight: 700;
                  line-height: 120%;
                  color: #dc4559;
                  text-align: center;
                  letter-spacing: 0.9px;
                  padding: 5px 0;
                }

                & .txt02 {
                  font-size: 14px;
                  font-weight: 700;
                  line-height: 150%;
                  letter-spacing: 0.42px;
                  color: #fff;
                }
              }
            }
          }
        }

        & .txt-note.fz-s {
          font-size: 10px;
        }
      }
    }

    & .prize__block {
      width: min(92%, 540px);
      margin-inline: auto;

      & .prize__head {
        display: flex;
        align-items: stretch;
        margin-bottom: 25px;
      }

      & .prize__course {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding-bottom: 3px;
        background-color: #000;
        color: #fff;
        text-align: center;

        & .prize__course-rank {
          font-size: 24px;
          font-weight: 700;
          line-height: 1;
          letter-spacing: 0.72px;
        }

        & .prize__course-label {
          font-size: 13px;
          font-weight: 700;
          line-height: 1;
          letter-spacing: 0.39px;
        }
      }

      & .prize__name {
        flex: 1 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        background-color: #fff;
        color: #000;
        text-align: center;
        line-height: 1.5;

        & .prize__name-sub {
          font-size: 13px;
          font-weight: 500;
          letter-spacing: 0.39px;
        }

        & .prize__name-main {
          font-size: 18px;
          font-weight: 700;
          letter-spacing: 0.54px;
        }
      }

      & .prize__visual {
        position: relative;
        width: 100%;
        margin-inline: auto;
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;


        & .prize__img-3col {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;

          & .prize__img {
            width: 59px;
            height: 130px;

            @media screen and (min-width: 751px) {
              width: 80px;
              height: 178px;
            }

            & .prize__img-inner {
              rotate: 15deg;

              @media screen and (min-width: 751px) {
                width: 80px;
                height: 178px;
              }
            }
          }
        }
      }

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

      & .prize__img-inner01 {
        width: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
		  padding-top: 20px;
		  
		  @media screen and (min-width: 751px) {
              width: 330px;
            }
      }
		& .prize__img-inner02 {
        width: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
			
			@media screen and (min-width: 751px) {
              width: 300px;
            }
      }

      & .prize__note {
        font-size: 11px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.55px;
        color: #6c6c6c;
        text-align: center;
      }

      & .prize__badge {
        position: absolute;
        top: -5px;
        right: 0;
        width: 75px;
        height: 75px;
        border-radius: 50%;
        background-color: #f7f386;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-weight: 700;

        @media screen and (min-width: 751px) {
          right: 22px;
        }

        & .prize__badge-num {
          font-family: var(--font-albert);
          font-size: 24px;
          line-height: 1.2;
        }

        & .prize__badge-unit {
          padding-top: 0.3rem;
          font-size: 12px;
          line-height: 1.1;
          letter-spacing: 0.36px;
        }
      }
    }
  }
}

.sec--promotion {
  position: relative;
  background-color: var(--bg3-color-nissy);
  padding-inline: 4%;
  padding-block: 60px 80px;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(16vw, 100px);
    height: min(34.47vw, 220px);
    background-color: var(--bg2-color-nissy);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: -1;
  }

  &::after {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    background-image: url(../img/line-promotion.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: min(26.13vw, 98px);
    height: min(58.67vw, 220px);
    z-index: -1;

    @media screen and (min-width: 751px) {
      left: calc(50% - (620px / 2) - 70px);
      translate: -50% 0;
      right: 0;
    }
  }

  & .h-campaign1 {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    margin-top: -20px;
    z-index: 2;

    & h2 {
      font-size: 48px;
      font-family: var(--font-kalnia);
      color: #000;
      font-weight: 500;
      line-height: 100%;

      @media screen and (min-width: 751px) {
        font-size: 60px;
      }
    }
  }

  & .sec--common {
    position: relative;
    background-color: var(--cts3-color-nissy);
    margin-block-start: -20px;
    padding-block-start: 50px;
    padding-block-end: 30px;
    z-index: 1;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg3-color-nissy);
      clip-path: polygon(0 0, 100% 0, 0 100%);
      z-index: -1;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg3-color-nissy);
      clip-path: polygon(0 100%, 100% 100%, 100% 0);
      z-index: -1;
    }

    & .schedule {
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      width: min(92%, 540px);
      margin-inline: auto;
      font-family: var(--font-albert);
      font-size: 16px;
      font-style: italic;
      font-weight: 500;
      color: #000;
      line-height: 150%;
      letter-spacing: 0.48px;
      text-align: center;
      margin-bottom: 25px;

      & em {
        font-family: "Albert Sans";
        font-size: 24px;
        font-style: italic;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.72px;
      }

      &:not(:first-of-type) {
        border: none;
      }
    }

    & .caption1 {
      border-bottom: 1px solid #000;
      width: min(92%, 540px);
      margin-inline: auto;
      font-size: 15px;
      font-weight: 500;
      line-height: 150%;
      text-align: center;
      letter-spacing: 0.3px;
      margin-bottom: 25px;
      padding-bottom: 25px;
    }

    & .h-campaign2 {
      color: #000;
      text-align: center;

      & span {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: fit-content;
        border-radius: 50px;
        border: 1px solid #000;
        background: #fff;
        font-size: 13px;
        font-weight: 500;
        font-family: var(--font-kalnia);
        line-height: 120%;
        letter-spacing: 0.65px;
        margin-inline: auto;
        margin-bottom: 10px;
        padding: 5px 10px;
      }

      & h3 {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1.1px;
      }
    }

    & .caption2 {
      font-size: 15px;
      font-style: normal;
      font-weight: 500;
      color: #000;
      line-height: 150%;
      text-align: center;
      letter-spacing: 0.45px;
    }

    & .promotion__balloon {
      position: relative;
      left: 50%;
      translate: -50% 0;
      border-radius: 10px;
      background: #e6e277;
      display: inline-flex;
      padding: 6px 15px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      color: #000;
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      line-height: 140%;
      margin-bottom: 15px;

      &::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        translate: -50% 0;
        width: 15px;
        height: 15px;
        background: #e6e277;
        clip-path: polygon(0% 0%, 100% 0%, 50% 70%);
      }
    }

	  
    & .promotion__block1 {
      border: solid 1px #000;
      width: min(92%, 540px);
      margin-inline: auto;
      margin-bottom: 45px;
      padding-bottom: 4%;

      & hgroup {
        background-color: #000;
        text-align: center;
        padding-block: 3px 6px;

        & h4 {
          text-align: center;
          font-size: 17px;
          font-weight: 500;
          color: #fff;
          line-height: 150%;
          letter-spacing: 0.51px;
        }

        & span {
          font-size: 11px;
          font-weight: 500;
          line-height: 150%;
          color: #fff;
          text-align: center;
          letter-spacing: 0.33px;
        }
      }

      & .promotion__block1-inner {
        padding-inline: 4%;
        padding-top: 4%;

        @media screen and (min-width: 751px) {
          padding-inline: 15px;
          padding-top: 15px;
        }

        & h4 {
          font-size: 16px;
          font-weight: 700;
          color: #9a8d76;
          line-height: 150%;
          text-align: center;
          letter-spacing: 0.48px;
          margin-block: 25px 15px;
        }

        figure {
          display: grid;
          grid-template-columns: 1fr 90px;
          justify-content: space-between;
          gap: 10px;
          margin: 0;

          & figcaption {
            color: #000;
            font-size: 14px;
            font-weight: 500;
            line-height: 150%;
            letter-spacing: 0.42px;

            span {
              display: flex;
              width: 65px;
              padding: 5px 9px;
              justify-content: center;
              align-items: center;
              gap: 10px;
              /* background-color: #fff; */
              border: 1px solid #7c776e;
              border-radius: 100px;
              font-family: var(--font-kalnia);
              font-size: 14px;
              color: #7c776e;
              font-weight: 500;
              line-height: 100%;
              letter-spacing: 0.28px;
              text-align: center;
              margin-bottom: 8px;
            }

            & small {
              display: block;
              color: #000;
              font-size: 12px;
              font-weight: 400;
              line-height: 150%;
              letter-spacing: 0.36px;
            }
          }

          &:not(:first-of-type) {
            border-top: 1px solid #9a8d76;
            margin-top: 10px;
            padding-top: 15px;
          }
        }
      }
    }

    & .promotion__block2 {
      width: min(92%, 540px);
      margin-inline: auto;

      & hgroup {
        background-color: #000;
        width: 100%;
        text-align: center;
        padding-block: 3px 6px;

        & h4 {
          text-align: center;
          font-size: 17px;
          font-weight: 500;
          color: #fff;
          line-height: 150%;
          letter-spacing: 0.51px;
        }

        & span {
          font-size: 11px;
          font-weight: 500;
          line-height: 150%;
          color: #fff;
          text-align: center;
          letter-spacing: 0.33px;
        }
      }

      .basic_splide .splide__arrows {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        margin-bottom: 10px;
      }

      .basic_splide .splide__arrow {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        background-color: #9a8d76;
        border-radius: 100%;
        width: 24px;
        height: 24px;
      }

      .basic_splide .splide__arrow:disabled {
        background-color: #fff;
      }

      .basic_splide .splide__arrow::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        top: 8px;
      }

      .basic_splide .splide__arrow--prev::before {
        transform: rotate(-135deg);
        right: 7px;
      }

      .basic_splide .splide__arrow--next::before {
        transform: rotate(45deg);
        left: 7px;
      }

      .basic_splide .splide__pagination {
        gap: 15px;
      }

      .basic_splide .splide__pagination__page {
        display: block;
        border: none;
        padding: 0;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        cursor: pointer;
        background-color: #fff;
      }

      .basic_splide .splide__pagination__page.is-active {
        background-color: #9a8d76;
      }

      .basic_splide .splide__item {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 100%;
      }

      .splide__item__img {
        height: 100%;
        display: flex;
        align-items: center;
      }
    }

    & .note__list {
      width: 100%;
      color: #6c6c6c;
      margin-inline: auto;

      &.border {
        width: min(92%, 540px);
        border-top: 1px solid #6c6c6c;
        padding-top: 25px;
        margin-top: 30px;
      }
    }
  }
}

.sec--information {
  position: relative;
  background-color: var(--bg4-color-nissy);
  padding-inline: 4%;
  padding-block: 40px 60px;
  z-index: 1;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    background-image: url(../img/line-information.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: min(26.13vw, 98px);
    height: min(58.67vw, 220px);
    z-index: -1;

    @media screen and (min-width: 751px) {
      left: calc(50% - (620px / 2) - 70px);
      translate: -50% 0;
      right: 0;
    }
  }

  & hgroup {
    & h2 {
      font-size: 32px;
      font-family: var(--font-kalnia);
      color: #fff;
      font-weight: 500;
      line-height: 100%;
      text-align: center;
      margin-bottom: 30px;

      @media screen and (min-width: 751px) {
        font-size: 50px;
      }
    }
  }

  & .sec--common {
    position: relative;
    background-color: var(--cts4-color-nissy);
    padding-inline: 4%;
    padding-block: 25px;
    z-index: 1;

    @media screen and (min-width: 751px) {
      padding-inline: 2%;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg4-color-nissy);
      clip-path: polygon(0 0, 100% 0, 0 100%);
      z-index: -1;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: min(6.4vw, 40px);
      height: min(15.47vw, 96px);
      background-color: var(--bg4-color-nissy);
      clip-path: polygon(0 100%, 100% 100%, 100% 0);
      z-index: -1;
    }

    & h3 {
      width: min(63.49%, 200px);
      margin-inline: auto;
      margin-bottom: 10px;
    }

    & .caption1 {
      border-bottom: 1px solid #b8d7de;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      color: #4a9aad;
      line-height: 150%;
      text-align: center;
      letter-spacing: 0.48px;
      padding-bottom: 15px;
      margin-top: 15px;
      margin-bottom: 25px;

      @media screen and (min-width: 751px) {
        font-size: 20px;
      }
    }

    & dl {
      & dt {
        background: #000;
        border-radius: 50px;
        display: inline-flex;
        padding: 3px 10px;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        line-height: 150%;
        text-align: center;
        letter-spacing: 0.65px;
      }

      & dd {
        color: #000;
        font-size: 13px;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.65px;
        margin-top: 8px;

        &:not(:last-child) {
          margin-bottom: 20px;
        }

        ul {
          display: flex;
          flex-direction: column;
          gap: 8px;
        }
      }

      & .txt-link {
        position: relative;
        display: flex;
        border: 1px solid #000;
        padding: 18px 35px 18px 30px;
        flex-direction: column;
        color: #000;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        width: 79.68%;
        margin-inline: auto;

        @media screen and (min-width: 751px) {
          width: 277px;
          transition: all 0.5s;
        }

        &:hover {
          @media screen and (min-width: 751px) {
            background: #000;
            color: #fff;
          }

          &:hover::after {
            @media screen and (min-width: 751px) {
              border-top: 2px solid #fff;
              border-right: 2px solid #fff;
            }
          }
        }

        &::after {
          content: "";
          position: absolute;
          width: 5px;
          height: 5px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          top: 50%;
          right: 15px;
          translate: 0 -50%;
          transform: rotate(45deg);
          transition: all 0.5s;
        }
      }
    }

    & .note {
      color: #6c6c6c;
      text-align: center;
      font-size: 11px;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.55px;
      margin-top: 10px;
    }
  }
}
.acc__note {
	padding: 10px;
}
.txt-note {
      color: #6c6c6c;
      font-size: 11px;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.55px;
    }
.txt-link {
            color: #dc4559;
        }
.lottery_info_btn {
    display: block;
    background: url(../img/ico_pdf.png) no-repeat center right 20px / 20px auto, #ffffff;
    color: #4A9AAD;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    padding-block: 8px;
    border-radius: 10vh;
	border: 2px solid #4A9AAD;
   margin: 0 1.5rem;
}
@media (min-width: 751px) {
    .lottery_info_btn {
        max-width: 250px;
        margin-inline: auto;
    }
	.txt-note {
		padding: 0 30px;
	}
}
.note {
      color: #6c6c6c;
      text-align: center;
      font-size: 11px;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.55px;
      margin-top: 10px;
    }
.mt10 {
	margin-top: 10px;
}
.mt30 {
	margin-top: 30px;
}
.promotion__block_border .note {
	display: block;
	padding-bottom: 30px;
	border-bottom: 1px solid #6c6c6c;
	
}
.red {
	color: #dc4559;
}
.voice-btn__pc {
    position: relative;
    background-color: #dc4559;
    border: none;
    padding: 15px 30px;
    z-index: 1;
}
.txt01 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	background-color: #fff;
	border-radius: 50px;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	color: #dc4559;
	text-align: center;
	letter-spacing: 0.9px;
	padding: 5px 0;
}
.sec--promotion .voice-btn__pc::before{
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 17px;
	height: 38px;
	background-color: var(--cts3-color-nissy);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	z-index: -1;
}
.sec--promotion .voice-btn__pc::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 17px;
	height: 38px;
	background-color: var(--cts3-color-nissy);
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
	z-index: -1;
}
.sec--promotion .voice-btn__outer {
	position: relative;
	z-index: 1;
}
.sec--promotion .voice-btn__outer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 13px;
	background-image: url(../img/line-voice01.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 54px;
	z-index: 2;
}
.sec--promotion .voice-btn__outer::after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	background-image: url(../img/line-voice02.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 12px;
	height: 27px;
	z-index: 1;
}

