/* イベントトップ */
.section__title {
    width: 100%;
    font-weight: bold;
    margin-bottom: 1vh;
}

/* モディファイア */
.-textLeft {
    text-align: left;
}

.-textCenter {
    text-align: center;
}

.-textRight {
    text-align: right;
}

.-justifyContentLeft {
    justify-content: left;
}

.-justifyContentCenter {
    justify-content: center
}

.-justifyContentRight {
    justify-content: right;
}

.-fontBold {
    font-weight: 700;
}

.-fontRegular {
    font-weight: 400;
}

/********** イベントトップセクション **********/
.eventTopContainer {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    flex-direction: column;
}

.sectionArea {
    max-width: 500px;
    width: 100%;
}

.eventTopContainer h2 {
    color: #ffffff;
}

/* .eventTopContainer p {
    color: #212121;
} */

.titleSection {
    height: 100dvh;
    background-color: #409ecc;
    padding: 1.5vh 5vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.eventTitleArea {
    width: 100%;
    background-image: url(../image/common/top_ill01.svg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 86px auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mainTitle {
    height: 60%;
    padding-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.mainTitle h1 {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: center;
}

.mainTitle h1 img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

.eventInfo {
    height: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eventInfo__spot {
    font-weight: 400;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.2rem;
}

.eventInfo__spot span {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 0.3rem;
}

.eventInfo__spotNum {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.eventInfo p.-lineSpace {
    line-height: 2.5;
}

.eventInfo__period {
    height: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eventInfo__period p {
    text-align: left;
    font-weight: 400;
    font-size: 1.1rem;
    color: #fff;
}

.eventInfo__period img {
    height: auto;
    width: 100%;
}

.titleSection__registerBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10%;
    padding-top: 4px;
}

.titleSection__registerBtn a {
    text-decoration: none;
}

.registerBtn {
    position: relative;
    width: 190px;
    height: 48px;
    border: solid 1px #212121;
    border-radius: 24px;
    background-color: #ffffff;
    color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 4em;
    padding-left: 2em;
    font-size: 1.2rem;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 400;
    box-sizing: border-box;
}

@media screen and (max-width: 375px) {
    .registerBtn {
        width: 160px;
        height: 40px;
    }
}

.registerBtn .btnCircle {
    position: absolute;
    right: -0.5em;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #212121;
    border-radius: 50%;
    height: 100%;
    aspect-ratio: 1 / 1;
    /* ボタンに矢印を表示 */
    background-image: url(../image/common/btn_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    /* クリックしたときのモーション */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.registerBtn:active .btnCircle {
    background-color: #06c755;
    /* 中央位置維持＋拡大 */
    transform: translateY(-50%) scale(1.1);
}

/********** 使い方セクション **********/
.howToSection {
    background-color: #9dcc3f;
    padding: 0;
}

.howToSectionArea {
    padding: 30px 20px;
}

.howToSection__info {
    margin-bottom: 3vh;
}

.howToSection .mapBtn {
    margin-bottom: 4vh;
    text-decoration-line: none;
}

.howToSliderTitle {
    padding-left: 20px;
}

.wChance {
    position: relative;
    overflow: hidden;
}

.wChance__announce {
    margin-bottom: 1vh;
}

.wChance__announce p {
    color: #ff94d1;
    font-size: 2rem;
    font-weight: 900;
}

.wChance__info {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}



/********** プレゼントセクション **********/
.presentListSection {
    background-color: #409ecc;
    padding: 20px 0px;
}

.presentList__title {
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
    margin-top: 1vh;
}

.presentList__title p {
    font-size: 2.4rem;
    color: #212121;
    margin-bottom: 10px;
}

/* プレゼントコンテナ */
.presentContainer {
    padding: 0;
}

.presentContainer__title p {
    font-size: 2.4rem;
    font-weight: bold;
}

.presentContainer__image {
    width: 100%;
}

.presentContainer__text {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    margin: 2vh 0 1vh 0;
}

/* イベントトップ_スライダー（使い方スライダー・景品リストスライダー） */
.presentSliderContainer,
.howToSliderContainer {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.howToSliderContainer {
    margin-top: 10px;
}

.sliderListWrapper {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* 矢印を縦中央に */
    width: 100%;
}

.sliderList {
    height: auto;
}

.commonWhiteBox {
    background: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    margin: 20px;
    width: 90%;
}

.-wchanceBox {
    margin: 30px 20px;
}

.slider__track {
    display: flex;
    transition: transform 0.4s ease;
    flex-wrap: nowrap;
    align-items: stretch;
}

.presentSlide {
    flex: 0 0 80%;
    height: 100%;
    max-width: 80%;
    margin-right: 20px;
    padding: 5px;
    box-sizing: border-box;
}

.presentSlide:last-child {
    /* 最後のスライドには余白を付けない */
    margin-right: 0;
}

.howToSlide {
    display: grid;
    grid-template-rows: 0.5fr 1.5fr 0.5fr;
    grid-template-columns: 1fr;
    /* スライドの幅から余白分引く */
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    margin-left: 20px;
    width: 100%;
    max-width: 800px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.howToSlide:last-child {
    margin-right: 0;
}

.presentSlide__imageWrapper{
    display: grid;
    grid-template-rows: 1fr 0.3fr 0.7fr;
}

.howToSlide__image {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.howToSlide__image img {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

.presentSlide__image {
    width: 100%;
}

.presentSlide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.presentSlide__spot {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentSlide .presentSlide__presentTitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff94d1
}

.presentSlide .presentSlide__presentAddInfo {
    font-size: 1.6rem;
    color: #ff94d1
}

.presentSlide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.presentSlider__arrow,
.howToSlider__arrow {
    position: absolute;
    width: 35px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.presentSlider__arrow.-left,
.howToSlider__arrow.-left {
    /* .eventTopContainerのpaddingに合わせる */
    left: 0px;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
}

.presentSlider__arrow.-right,
.howToSlider__arrow.-right {
    /* .eventTopContainerのpaddingに合わせる */
    right: 0px;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
}

/* 景品スライダーのインジケーターは非表示 */
.presentList .sliderIndicators {
    display: none;
}

.sliderIndicators {
    text-align: center;
    margin: 15px 0;
}

.sliderIndicators .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sliderIndicators .dot.active {
    background-color: #333;
}





/********** ポイントセクション **********/
.pointSection {
    background-color: #9dcc3f;
}

.map {
    width: 100%;
    height: 300px;
    margin: 20px auto;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}


/********** スポットセクション **********/
.spotListSection {
    background-color: #9dcc3f;
}

.spotList {
    display: grid;
    /* 3列 */
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 5px;
}

.spot {
    background: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.spot__imageWrapper {
    position: relative;
}

.spot__container {
    display: grid;
    grid-template-rows: 0.5fr 1.5fr 0.5fr;
    justify-content: flex-start;
    flex-grow: 1;
    padding: 10px;
    position: relative;
}

.spot__badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    z-index: 2;
}

.spot__badge img {
    width: 100%;
    height: auto;
}

.spot__image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.spot__image img {
    aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
    object-fit: cover;
}

.spot__genre h3 {
    font-size: 1rem;
    margin: 0 0 5px;
    line-height: 1.2;
}

.spot__name h3 {
    font-weight: bold;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: break-word;
}

.cardMore {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 40px;
}

.cardMore__mark {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #212121;
    color: #ffffff;
    display: inline-block;
}



/********** FAQセクション **********/
.faqSection {
    background-color: #409ecc;
}


.accordion {
    width: 100%;
    margin-bottom: 20px;
}

.accordionItem {
    border-radius: 10px;
    border: 1px solid #ffffff;
    overflow: hidden;
}

.accordionHeader {
    background: #ffffff;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    gap: 10px;
}

.accordionText {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    color: #696969;
    font-size: 1.4rem;
}

.accordionText img {
    height: 20px;
    align-self: flex-start;
    flex-shrink: 0;
}

.accordionText span {
    line-height: 1.4;
    word-break: break-word;
}

.accordionIcon {
    font-size: 20px;
    transition: transform 0.3s;
    background-color: #212121;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.accordionContent {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 0 15px;
    background: #f2f2f2;
    color: #696969;
    font-size: 1.4rem;
    border-top: 1px solid transparent;
}

.accordionContent span {
    font-weight: bold;
    color: #409ecc;
}

.accordionItem.active .accordionContent {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 1px solid transparent;
    transition:
        height 0.3s ease,
        padding 0.3s ease,
        border-color 0.3s ease;
}

.accordionItem.active .accordionIcon::before {
    content: '−';
    color: #ffffff;
}

.accordionIcon::before {
    content: '+';
    color: #ffffff;
}




/********** トップ広告表示 **********/
#adBox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    width: 100%;
}

.adBox__bg{
    position: fixed;
    left: 0;
    top: 0;
    height: 100dvh;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.adBox__inner {
    position: relative;
    width: 85%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
}

.adBox__imageWrapper {
    position: relative;
    display: inline-block;
}

.adBox__imageWrapper a {
  display: block;
}

.adBox__imageWrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.adBox__btn--close {
  position: absolute;
  top: -36px;
  right: 0;
  background: #000;
  color: #fff;
  border: none;
  font-size: 24px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.adBox__title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.adBox__text {
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.fadein {
    animation: fadeIn 0.7s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/********** レクタングル広告 **********/
.rectangleAd {
    margin: 20px;
}