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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
  --text-color: #2e383f;
  --primary-color: #1fa1af;
  --secondary-color: #f06314;
  --accent-color: #c571cc;
  --red-color: #ee0000;
  --bg-color: rgb(231 236 243 / 0.6);
  --border-color: #bdc9dc;
  --font-en: "Tomorrow", serif;
}

.main__wrap {
  padding-top: 66px;
  background: url(../img/bg-pattern.png), #f8f8f8;
  color: var(--text-color);
  line-height: 1.5;
  font-size: 14px;
  font-family: "M PLUS 1p", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: 500;
}
.main__wrap * {
  box-sizing: border-box;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure {
  margin: 0 auto;
  width: 100%;
}
figcaption .caption {
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  font-size: 12px;
}

a:hover img {
  opacity: 1;
}

.container {
  width: 92%;
  margin: 0 auto;
  max-width: 650px;
}
.indent li,
.txt-note.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.fc-red {
  color: var(--red-color);
}
.txt-link {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 700;
}
.txt-note {
  font-size: 12px;
  font-weight: 400;
}
.txt-note.fz-s {
  font-size: 11px;
}
.note__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.note__list li {
  font-size: 12px;
  font-weight: 400;
}

.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;
}

.mgbS {
  margin-bottom: 8px;
}
.mgbM {
  margin-bottom: 16px;
}
.mgbL {
  margin-bottom: 24px;
}
.mgbLL {
  margin-bottom: 32px;
}

.mgtS {
  margin-top: 8px;
}
.mgtM {
  margin-top: 16px;
}
.mgtL {
  margin-top: 24px;
}

.pdtS {
  padding-top: 8px;
}
.pdtM {
  padding-top: 16px;
}
.pdtL {
  padding-top: 24px;
}

.pdtSS {
  padding-top: 4px;
}

.pdbS {
  padding-bottom: 8px;
}
.pdbM {
  padding-bottom: 16px;
}
.pdbL {
  padding-bottom: 24px;
}

.credit {
  font-size: 12px;
  padding-top: 8px;
  text-align: center;
}

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

/* PC用設定 */
@media screen and (min-width: 751px) {
  a img {
    transition: all 0.5s;
  }
  .main__wrap {
    padding-top: 90px;
  }

  .pc_center {
    text-align: center;
  }

  .mgbM {
    margin-bottom: 24px;
  }
  .mgbL {
    margin-bottom: 32px;
  }
  .mgbLL {
    margin-bottom: 40px;
  }

  .mgtM {
    margin-top: 24px;
  }
  .mgtL {
    margin-top: 32px;
  }

  .pdtM {
    padding-top: 24px;
  }
  .pdtL {
    padding-top: 32px;
  }

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

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン(初期値) */
.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); /* XXpx上に移動する */
}

/* スライド（左から右） */
.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%);
  }
}

.is-animation-delayed01 {
  animation-delay: 0.4s;
}
.is-animation-delayed02 {
  animation-delay: 0.6s;
}
.is-animation-delayed03 {
  animation-delay: 0.8s;
}

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
  display: none;
  margin-top: 12px;
}
.acc__btn {
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  background-color: var(--primary-color);
  position: relative;
  padding: 6px 56px 6px 28px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.acc__btn span {
  position: absolute;
  background-color: #fff;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.acc__btn span::before,
.acc__btn span::after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.acc__btn span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.acc__btn.open span::before {
  transform: translate(-50%, -50%);
}

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

/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn {
  display: block;
}
.voice-btn {
  position: relative;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .voice-btn__outer {
    margin-bottom: 4px;
    padding: 10px;
    background-image: url(../img/bg_VT.jpg);
    border: 2px solid var(--text-color);
    border-radius: 20px;
  }
  .voice-btn__pc {
    background-color: var(--text-color);
    padding: 16px;
    border-radius: 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: 120px;
    height: 120px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
  }
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__wrap {
  background-color: var(--primary-color);
  padding-bottom: 16px;
  position: relative;
}
.mv__wrap::after {
  display: block;
  content: "";
  width: 100%;
  height: 16px;
  background-image: url(../img/obj_separator01.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  bottom: -16px;
  z-index: 1;
}

.mv__flex h1 {
  width: 93%;
  margin: -8px auto 0;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .mv__wrap {
    padding-bottom: 40px;
  }
  .mv__flex {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    max-width: 1024px;
    margin: 0 auto;
    align-items: center;
  }
  .mv__wrap::after {
    height: 24px;
    background-image: url(../img/obj_separator01.svg);
    bottom: -24px;
  }
  .mv__img {
    width: 62%;
  }
  .mv__flex h1 {
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
  }
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap {
  background: var(--secondary-color);
  padding: 40px 0 32px;
  position: relative;
}
.intro__wrap::after {
  display: block;
  content: "";
  width: 100%;
  height: 16px;
  background-image: url(../img/obj_separator02.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  bottom: -16px;
}
.intro__lead {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .intro__lead {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .intro__wrap {
    padding: 64px 0;
  }
  .intro__wrap::after {
    height: 24px;
    background-image: url(../img/obj_separator02.svg);
    bottom: -24px;
  }
}

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

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .menu__list li {
    transition: all 0.5s;
  }
  .menu__list li:hover {
    transform: translateY(3px);
  }
}

/* ------------------------------------------------------------
#共通
------------------------------------------------------------ */
.cont__wrap {
  padding: 20px 0 0;
}
.sec__wrap {
  padding: 20px 0;
}
.sec__head--group {
  margin: 0 auto 16px;
  max-width: 650px;
}
.sec__head--number {
  background-image: url(../img/sec-line01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}
.sec__head {
  max-width: 480px;
  margin: 0 auto;
}
.sec__date {
  background-image: url(../img/date-frame.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: var(--primary-color);
  font-family: var(--font-en);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 8px 29px;
  width: fit-content;
  margin: 0 auto 24px;
}
.sec__date .fz-larger {
  font-size: 1.3em;
}
.sec__date .f-normal {
  font-style: normal;
}
.sec__lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 24px;
}
.sec__lead .strong {
  font-size: 1.2em;
  color: var(--secondary-color);
}
.img__box {
  max-width: 450px;
  margin: 0 auto 24px;
}
.frame-box__outer {
  padding: 3px;
  background-image: url(../img/obj_cnr-LT.svg), url(../img/obj_cnr-RT.svg), url(../img/obj_cnr-RB.svg), url(../img/obj_cnr-LB.svg);
  background-repeat: no-repeat;
  background-position: top left, top right, bottom right, bottom left;
  margin-bottom: 24px;
}
.frame-box {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 20px;
}

.step__head {
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
}
.step__head::before,
.step__head::after {
  position: absolute;
  display: block;
  content: "";
  width: 89px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.step__head::before {
  background-image: url(../img/obj_head-L.svg);
  background-repeat: no-repeat;
  left: -101px;
}
.step__head::after {
  background-image: url(../img/obj_head-R.svg);
  background-repeat: no-repeat;
  right: -101px;
}
.step__number {
  background-image: url(../img/obj_step.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: var(--font-en);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 2px 32px;
  width: fit-content;
  margin: 0 auto;
}
.step__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step__txt {
  padding-top: 8px;
  border-top: 1px solid var(--primary-color);
  text-align: center;
}
.info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info__list--item dt {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 2px;
  padding: 2px 16px;
  font-size: 12px;
  margin-bottom: 6px;
  width: fit-content;
}
.note__list--bg {
  background-color: var(--bg-color);
  padding: 14px;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .cont__wrap {
    padding: 48px 0 0;
  }
  .sec__wrap {
    padding: 40px 0 60px;
  }
  .sec__head--group {
    margin: 0 auto 24px;
  }
  .sec__head--number {
    margin-bottom: 16px;
    font-size: 42px;
  }
  .sec__date {
    font-size: 20px;
    padding: 12px 32px;
    margin: 0 auto 24px;
  }
  .sec__lead {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .img__box {
    margin: 0 auto 32px;
  }
  .frame-box__outer {
    padding: 6px;
    margin-bottom: 32px;
    background-size: 40px;
  }
  .frame-box {
    padding: 32px 50px;
  }
  .step__head {
    font-size: 18px;
  }
  .step__number {
    font-size: 16px;
  }
  .step__txt {
    padding-top: 12px;
    font-size: 16px;
  }
  .info__list--item dt {
    font-size: 14px;
  }
  .info__list--item .txt01 {
    font-size: 16px;
  }
  .note__list--bg {
    padding: 20px;
  }
}

/* ------------------------------------------------------------
#Goods
------------------------------------------------------------ */
#Goods .sec__lead {
  margin-bottom: 4px;
}
#Goods .sec__lead + .txt-note {
  text-align: center;
}
#Goods .sec__lead + .txt-note,
#Goods .txt-note + img {
  margin-bottom: 24px;
}
.modal-btn {
  cursor: pointer;
  display: block;
  position: relative;
}
.modal-icon {
  position: absolute;
  width: 30px;
  right: 5px;
  bottom: 5px;
}
body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  overflow-y: scroll;
}

/* モーダル */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.modal__flex {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  flex-direction: column;
  gap: 16px;
}
.modal_container {
  pointer-events: initial;
  width: calc(100% - 16px);
  /* padding: 40px 8px 16px; */
}

.modal_close_btn {
  width: fit-content;
  margin: 16px auto 0;
  padding: 28px 2px 2px;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.modal_close_btn::before,
.modal_close_btn::after {
  content: "";
  background-color: #fff;
  width: 2px;
  height: 30px;
  position: absolute;
  top: 14px;
  right: 50%;
}
.modal_close_btn::before {
  transform: translateY(-50%) rotate(-45deg);
}
.modal_close_btn::after {
  transform: translateY(-50%) rotate(45deg);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .modal-btn__img {
    overflow: hidden;
    background-color: #000;
  }
  .modal-btn__img img {
    transition: all 0.5s;
  }

  .modal-btn:hover .modal-btn__img img {
    opacity: 0.6;
  }
  .modal_container {
    /* background-color: #fff; */
    width: calc(100% - 20px);
    max-width: 1000px;
    padding: 40px 24px 16px;
    overflow-y: auto;
  }

  /* .modal_close_btn::before,
.modal_close_btn::after {
    background-color: #000;
} */
  .modal_close_btn::before,
  .modal_close_btn::after {
    height: 56px;
    top: 20px;
  }
}

.inquiry__block {
  background-color: var(--primary-color);
  text-align: center;
  padding: 8px 0;
  color: #fff;
}
.inquiry__block a {
  color: #fff;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .inquiry__block {
    padding: 16px 0;
  }
  .inquiry__block p,
  .inquiry__block a {
    font-size: 16px;
  }
}

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

/* ------------------------------------------------------------
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;
}
.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%;
	} */
}
