@charset "UTF-8";
/* マップ型変数breakpointsを定義 */
/* メディアクエリ用のmixinを定義。デフォ値はmd */
/* ====================================================
// common - 共通
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Hina Mincho", "Shippori Mincho B1", serif;
  font-size: 2.2rem;
  line-height: 1.8;
  color: #333;
  height: 100%;
  margin: 0 auto;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  body {
    /*     この中をカスタムできる */
    font-size: 5vw;
    letter-spacing: 0.1em;
  }
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.6;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  a:hover {
    /*     この中をカスタムできる */
    opacity: 1;
  }
}

.btn a {
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
  width: 100%;
}

.btn a:hover {
  opacity: 1;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2117647059);
  transform: translateY(-0.4rem);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .btn a:hover {
    /*     この中をカスタムできる */
    transform: translateY(0);
  }
}

.btn {
  filter: drop-shadow(0 0.4rem 1rem rgba(0, 0, 0, 0.1882352941));
}

.is-pc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-pc {
    /*     この中をカスタムできる */
    display: none;
  }
}

.is-sp {
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-sp {
    /*     この中をカスタムできる */
    display: block;
  }
}

.container {
  min-width: 120rem;
  overflow: hidden;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .container {
    /*     この中をカスタムできる */
    min-width: 320px;
  }
}

.inner {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .inner {
    /*     この中をカスタムできる */
    padding: 0 6vw;
  }
}

.section {
  padding: 20rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section {
    /*     この中をカスタムできる */
    padding: 30vw 0;
  }
}

.section__title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 12vw;
  }
}

.section__text {
  margin-bottom: 4rem;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__text {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

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

.red {
  color: #b62b29;
}

.pink {
  color: #e43d85;
}

.orange {
  color: #ff4500;
}

.bold {
  font-weight: bold;
}

.en {
  font-family: "roboto", sans-serif;
}

.yellow {
  color: #ffc000;
}

.marker {
  background: linear-gradient(transparent 50%, #fff 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0.4rem 0.2rem 0.4rem;
}

.grey {
  background-color: #f3f5f7;
}

.shadow {
  filter: drop-shadow(3rem 3rem 3rem rgba(0, 0, 0, 0.1882352941));
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .shadow {
    /*     この中をカスタムできる */
    filter: drop-shadow(3vw 3vw 3vw rgba(0, 0, 0, 0.1882352941));
  }
}

.center {
  text-align: center;
}

.green {
  color: #349599;
}

.fade-in-section {
  opacity: 0;
  transition: opacity 2.5s ease-out;
  will-change: opacity;
}

.fade-in-section.is-visible {
  opacity: 1;
  transition-delay: 0.4s;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e1e1e1;
  color: #333;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
  font-size: 1.2rem;
  transition: opacity 0.8s ease;
}

.loaded #loader {
  opacity: 0;
  pointer-events: none;
}

/* ====================================================
// firstView - ファーストビュー
==================================================== */
.firstView {
  height: 90vh;
  position: relative;
  background-size: cover;
  background-position: center center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView {
    /*     この中をカスタムできる */
  }
}

.visual {
  position: relative;
  width: 100%;
  height: 90vh; /* or 任意の高さ */
  overflow: hidden;
}

.visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; /* 中央寄せ */
  display: block;
}

.firstView__inner {
  width: 100%;
  height: 100%;
}

.firstView__catch {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -50%);
  z-index: 99;
  max-width: 155.2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView__catch {
    /*     この中をカスタムできる */
    width: 90%;
    transform: translate(-50%, -50%);
  }
}

.secondView {
  background-image: url(../img/bg17.jpg);
  background-image: url(../img/bg17.webp);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .secondView {
    /*     この中をカスタムできる */
    background-image: url(../img/bg17-sp.jpg);
    background-image: url(../img/bg17-sp.webp);
  }
}

/* ====================================================
// section1
==================================================== */
.section1 {
  background-image: url(../img/bg2.jpg);
  background-image: url(../img/bg2.webp);
  background-size: cover;
  background-position: top center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section1 {
    /*     この中をカスタムできる */
    padding-bottom: 20vw;
  }
}

.section1__img1 {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section1__img1 {
    /*     この中をカスタムできる */
    transform: scale(1.25);
  }
}

.section1__img2 {
  position: relative;
  top: -20rem;
  left: 5rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section1__img2 {
    /*     この中をカスタムできる */
    top: -4vw;
    left: 2vw;
  }
}

/* ====================================================
// section2
==================================================== */
.section2 {
  background-image: url(../img/bg3.jpg);
  background-image: url(../img/bg3.webp);
  background-size: cover;
  background-position: top center;
  padding-bottom: 40rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section2 {
    /*     この中をカスタムできる */
    padding: 50vw 0;
  }
}

.section2__img1 {
  margin-bottom: 12rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section2__img1 {
    /*     この中をカスタムできる */
    margin-bottom: 24vw;
  }
}

.section2__img2 {
  width: 50%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section2__img2 {
    /*     この中をカスタムできる */
    width: 70%;
  }
}

/* ====================================================
// story
==================================================== */
.story {
  background-image: url(../img/bg4.jpg);
  background-image: url(../img/bg4.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: top center;
  padding-top: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story {
    /*     この中をカスタムできる */
    background-attachment: scroll;
  }
}

.story .inner {
  width: 100%;
  max-width: 192rem;
}

.story__content {
  position: relative;
  top: -20rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__content {
    /*     この中をカスタムできる */
    top: -20vw;
  }
}

.story__top {
  width: 120rem;
  margin: 0 auto 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__top {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 14vw;
  }
}

.story__top__img {
  filter: drop-shadow(2rem 2rem 2rem #000);
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__top__img {
    /*     この中をカスタムできる */
    width: 86%;
    margin: 0 auto 8vw;
    filter: drop-shadow(2vw 2vw 2vw #000);
  }
}

.story__top__text {
  width: 40%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__top__text {
    /*     この中をカスタムできる */
    width: 80%;
  }
}

.story__card {
  width: 100%;
  position: relative;
}

.story__card:not(:last-child) {
  margin-bottom: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__card:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 36vw;
  }
}

.story__card__img {
  width: 60%;
  filter: drop-shadow(2rem 2rem 2rem #000);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__card__img {
    /*     この中をカスタムできる */
    width: 90%;
    filter: drop-shadow(2vw 2vw 2vw #000);
  }
}

.story__card.-r .story__card__img {
  margin-left: auto;
}

.story__card__text {
  position: absolute;
  width: 34%;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__card__text {
    /*     この中をカスタムできる */
    width: 90%;
    left: auto;
    right: 0;
    top: 58vw;
    transform: translate(0, 0);
  }
}

.story__card.-r .story__card__text {
  transform: translate(-100%, -50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .story__card.-r .story__card__text {
    /*     この中をカスタムできる */
    right: auto;
    left: 0;
    top: 58vw;
    transform: translate(0, 0);
  }
}

/* ====================================================
// section3
==================================================== */
.section3 {
  background-image: url(../img/bg5.jpg);
  background-image: url(../img/bg5.webp);
  background-size: cover;
  background-position: center center;
  padding-top: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section3 {
    /*     この中をカスタムできる */
    padding-top: 20vw;
  }
}

.section3__text {
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: -15rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section3__text {
    /*     この中をカスタムできる */
    width: 90%;
    top: -25vw;
  }
}

/* ====================================================
// section4
==================================================== */
.section4 {
  width: 100%;
  position: relative;
}

.section4__text {
  position: absolute;
  font-size: 3rem;
  top: 50%;
  left: 50%;
  transform: translate(-24%, -50%);
  width: 100%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section4__text {
    /*     この中をカスタムできる */
    top: 30vw;
    transform: translate(-50%, 0%);
    text-align: center;
    font-size: 6vw;
  }
}

/* ====================================================
// section5
==================================================== */
.section5 {
  width: 100%;
  position: relative;
}

.section5__text {
  width: 100%;
  position: absolute;
  font-size: 3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  color: #e1e1e1;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section5__text {
    /*     この中をカスタムできる */
    width: 96%;
    margin: 0 auto;
    font-size: 5.2vw;
    transform: translate(-50%, -78%);
  }
}

.section5__text.-white {
  color: #fff;
}

.section5__text.-dark {
  color: #333;
  transform: translate(-50%, -50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section5__text.-dark {
    /*     この中をカスタムできる */
    transform: translate(-50%, -50%);
  }
}

/* ====================================================
// section6
==================================================== */
.section6 {
  background-image: url(../img/bg9.jpg);
  background-image: url(../img/bg9.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flow-root;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section6 {
    /*     この中をカスタムできる */
    background-image: url(../img/bg9-sp.jpg);
    background-image: url(../img/bg9-sp.webp);
    padding: 50vw 0;
  }
}

.section6__text {
  float: right;
  color: #fff;
  margin-left: 0;
  margin-right: auto;
  font-size: 3rem;
  width: 58%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section6__text {
    /*     この中をカスタムできる */
    float: none;
    width: 100%;
    text-align: center;
    font-size: 5.7vw;
  }
}

/* ====================================================
// section7
==================================================== */
.section7 {
  background-image: url(../img/bg10.jpg);
  background-image: url(../img/bg10.webp);
  background-size: cover;
  background-position: center center;
}

.section7__text {
  width: 70%;
  margin: 0 auto 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section7__text {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 20vw;
  }
}

.section7__img {
  margin-bottom: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section7__img {
    /*     この中をカスタムできる */
    margin-bottom: 20vw;
  }
}

.section7__parts {
  width: 80%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section7__parts {
    /*     この中をカスタムできる */
    width: 90%;
  }
}

/* ====================================================
// section8
==================================================== */
.section8 {
  background-image: url(../img/bg11.jpg);
  background-image: url(../img/bg11.webp);
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  padding-top: 40rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section8 {
    /*     この中をカスタムできる */
    padding-top: 60vw;
  }
}

.section8__title {
  position: absolute;
  width: 80rem;
  top: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section8__title {
    /*     この中をカスタムできる */
    width: 90vw;
    top: 20vw;
  }
}

.section8__content:not(:last-child) {
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section8__content:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 12vw;
  }
}

.section8__content {
  position: relative;
  width: 100%;
}

.section8__texture {
  position: absolute;
  width: 114.3rem;
  top: 50%;
  left: 50%;
  transform: translate(-10%, -15%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section8__texture {
    /*     この中をカスタムできる */
    width: 200vw;
    transform: translate(-17%, -16%);
  }
}

.section8__content.-down .section8__texture {
  transform: translate(-10%, 15%);
}

/* ====================================================
// section9
==================================================== */
.section9 {
  background-image: url(../img/bg12.jpg);
  background-image: url(../img/bg12.webp);
  background-size: cover;
  background-position: center bottom;
}

.section9__bottom {
  position: relative;
  width: 50%;
  margin: 0 auto 6rem;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1529411765);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section9__bottom {
    /*     この中をカスタムできる */
    width: 90%;
    margin-bottom: 12vw;
  }
}

.section9__text {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section9__text {
    /*     この中をカスタムできる */
    font-size: 5.2vw;
  }
}

/* ====================================================
// section10
==================================================== */
.section10 {
  background-image: url(../img/bg13.jpg);
  background-image: url(../img/bg13.webp);
  background-size: cover;
  background-position: center center;
}

.section10__text {
  font-size: 4.6rem;
  text-align: center;
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section10__text {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 10vw;
  }
}

/* ====================================================
// section11
==================================================== */
.section11 {
  background-image: url(../img/bg18.jpg);
  background-size: cover;
  background-position: center center;
}

.section11__title {
  font-size: 4rem;
  margin-bottom: 10rem;
  color: #fff;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section11__title {
    /*     この中をカスタムできる */
    margin-bottom: 20vw;
    font-size: 6vw;
  }
}

.section11__text {
  color: #fff;
  font-size: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section11__text {
    /*     この中をカスタムできる */
    font-size: 5.2vw;
  }
}

/* ====================================================
// section12
==================================================== */
.section12 {
  background-color: #FBF8F0;
  background-color: #F7F3E8;
}

.section12__img {
  width: 60%;
  margin: 0 auto 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section12__img {
    /*     この中をカスタムできる */
    width: 90%;
    margin-bottom: 12vw;
  }
}

.section12__text {
  margin-bottom: 8rem;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section12__text {
    /*     この中をカスタムできる */
    margin-bottom: 12vw;
    font-size: 4.5vw;
  }
}

.section12__text.-nomb {
  margin-bottom: 0;
}

/* ====================================================
// info -　開催情報
==================================================== */
.info {
  background-image: url(../img/bg16.jpg);
  background-image: url(../img/bg16.webp);
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat-y;
}

.info__content {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__content {
    /*     この中をカスタムできる */
    margin-bottom: 16vw;
  }
}

.info__content.-nomb {
  margin-bottom: 0;
}

.info__content__title {
  font-size: 3rem;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__content__title {
    /*     この中をカスタムできる */
    font-size: 5.5vw;
    margin-bottom: 4vw;
  }
}

.info__content__img {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__content__img {
    /*     この中をカスタムできる */
    overflow-x: auto; /* 横スクロールを有効化 */
    -webkit-overflow-scrolling: touch; /* スムーズスクロール（iOS向け） */
  }
}

.info__content__img img {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__content__img img {
    /*     この中をカスタムできる */
    width: 100%; /* ラッパー幅いっぱいに広げる */
    min-width: 600px; /* テーブルの最小幅を指定（実際の列数に合わせて調整） */
  }
}

.info__parts {
  width: 40%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__parts {
    /*     この中をカスタムできる */
    width: 60%;
    margin-bottom: 4vw;
  }
}

.info__imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__imgs {
    /*     この中をカスタムできる */
    display: block;
    margin-bottom: 16vw;
  }
}

.info__img {
  width: 30%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__img {
    /*     この中をカスタムできる */
    width: 66%;
    margin: 0 auto 8vw;
  }
}

.info__text.-small {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__text.-small {
    /*     この中をカスタムできる */
    font-size: 4.25vw;
    text-align: justify;
  }
}

.info__text a {
  color: #08519a;
  text-decoration: underline;
  word-break: break-all;
}

.info__text.-mb {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__text.-mb {
    /*     この中をカスタムできる */
    margin-bottom: 10vw;
  }
}

.info__text.center {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__text.center {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
  }
}

.info__box {
  display: block;
  text-align: left;
  width: 38rem;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__box {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.info__box.-second {
  width: 67rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__box.-second {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.info__desc.-mb {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__desc.-mb {
    /*     この中をカスタムできる */
    margin-bottom: 16vw;
  }
}

.info__desc__title {
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__desc__title {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.info__desc__imgs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .info__desc__imgs {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
    gap: 1vw;
  }
}

.event {
  background-color: #f1eff0;
  padding: 10rem 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event {
    /*     この中をカスタムできる */
    padding: 20vw 5vw;
  }
}

.event__symbol {
  width: 10%;
  margin: 8rem auto 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__symbol {
    /*     この中をカスタムできる */
    width: 20%;
    margin: 16vw auto 16vw;
  }
}

.event__title {
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__title {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
  }
}

.event .info__content__title {
  margin-bottom: 4rem;
}

.event__img {
  margin-bottom: 4rem;
  width: 80%;
  margin: 0 auto 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__img {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 8vw;
  }
}

.entry__btns {
  margin-top: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .entry__btns {
    /*     この中をカスタムできる */
    margin-top: 16vw;
  }
}

.entry__btn {
  width: 70%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .entry__btn {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.entry__btn:not(:last-child) {
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .entry__btn:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.event__boxes {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__boxes {
    /*     この中をカスタムできる */
    display: block;
    margin-bottom: 4.25vw;
  }
}

.event__box {
  padding: 4rem;
  width: 48%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__box {
    /*     この中をカスタムできる */
    padding: 8vw;
    width: 100%;
  }
}

.event__box.day {
  border: 0.1rem solid #d57f35;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__box.day {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.event__box.night {
  border: 0.1rem solid #414b6c;
}

.event__box__text {
  margin: 0 auto;
  font-size: 1.8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__box__text {
    /*     この中をカスタムできる */
    font-size: 4vw;
  }
}

.event__text {
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .event__text {
    /*     この中をカスタムできる */
    text-align: left;
    font-size: 4.5vw;
  }
}

/* ====================================================
// qa - よくある質問
==================================================== */
.qa {
  background-color: #c1dfe0;
}

.qaItem:not(:last-child) {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.qaItem__q {
  padding: 4rem;
  padding-left: 6rem;
  position: relative;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  background-color: #f1eff0;
  box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.062745098);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__q {
    /*     この中をカスタムできる */
    padding: 4vw 6vw;
    padding-right: 10vw;
    font-size: 4.5vw;
  }
}

.qaItem__q::after {
  content: "";
  display: inline-block;
  background-image: url(../img/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__q::after {
    /*     この中をカスタムできる */
    width: 5vw;
    height: 5vw;
    right: 3vw;
  }
}

.qaItem__q.is-active::after {
  background-image: url(../img/minus.svg);
}

.qaItem__q .q {
  font-size: 4rem;
  font-weight: 500;
  margin-right: 1rem;
  display: inline-block;
  line-height: 1;
  color: #576561;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__q .q {
    /*     この中をカスタムできる */
    font-size: 7vw;
    margin-right: 2vw;
    margin-top: 0.5vw;
  }
}

.qaItem__a {
  padding: 2rem 1rem;
  padding-left: 5rem;
  position: relative;
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__a {
    /*     この中をカスタムできる */
    padding: 4vw 3vw 4vw 10vw;
    font-size: 4.25vw;
  }
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  z-index: 99;
  display: none;
  width: 100%;
}

.float__btns {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btns {
    /*     この中をカスタムできる */
    flex-direction: row;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
    width: 94%;
    margin: 0 auto;
  }
}

.float__btn {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btn {
    /*     この中をカスタムできる */
    width: 100%; /* 必要に応じて max-width も可 */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

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

.float__btn a {
  display: block;
  width: 100%;
}

.float__btn.is-pc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btn.is-pc {
    /*     この中をカスタムできる */
    display: none;
  }
}

/* ====================================================
// footer - フッター
==================================================== */
.footer {
  padding: 4rem 0;
  background-color: #468280;
  font-size: 1.4rem;
  color: #fff;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer {
    /*     この中をカスタムできる */
    font-size: 3.5vw;
  }
}/*# sourceMappingURL=style.css.map */