@charset "UTF-8";

/* ============================
common
============================ */
.topic__subpage {
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 1.6;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--primary-orange);
}

/* common pc */
@media screen and (min-width: 769px) {
    .topic__subpage {
        font-size: 2.4rem;
        padding-bottom: 16px;
    }
}

.main a {
    word-break: break-all;
    color: #1a73e8;
    transition: all .3s;
}

.main a:hover {
    color: #0f4183;
    text-decoration: underline;
}



.youtube {
  margin-top:20px;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/* pc 769px */


/* ============================
content
============================ */
.content {
    padding: 0 var(--contentPadding);
}

.title__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--primary-black);
}

.icon__number {
    color: var(--primary-white);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
    background-color: var(--primary-black);
    border-radius: 5px;
    padding: 4px 8px;
    white-space: nowrap;
}

.event__title {
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 1.2;
}

.date__subpage {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 8px;
}

.content img {
    margin-top: 24px;
}

.event__txt {
    line-height: 1.7;
    margin-top: 16px;
}

.event__txt a:hover {
    cursor: pointer;
}

.contact-list {
    list-style: disc;
    padding-left: 1em;
}

.contact-list li {
    margin-bottom: 1em;
    line-height: 1.6;
}

/* .content pc */
@media screen and (min-width: 769px) {
    .title__item {
        gap: 24px;
        padding-bottom: 24px;
    }

    .icon__number {
        font-size: 2.0rem;
        padding: 8px 12px;
    }

    .event__title {
        font-size: 2.8rem;
    }

    .date__subpage {
        font-size: 2.4rem;
        margin-top: 16px;
    }

    .content img {
        margin-top: 32px;
    }

    .event__txt {
        line-height: 2;
        margin-top: 24px;
    }
}

/* pc 769px */


/* ============================
言語選択
============================ */
.select-lang{
    display: flex;
    gap:20px
}

.select-lang li{
    width: 49%;
    padding:1em ;
    text-align:center;
}

.select-lang a.no-link{
    pointer-events: none;
    color:var(--primary-black);
}

/* ============================
gift
============================ */
.gift {
    padding: 0 var(--contentPadding);
    margin-top: 60px;
}

.gift__item {
    /* display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px; */
    margin-top: 24px;
    line-height: 1.4;
}

.gift__icon {
    width: 48px;
    height: 48px;
}

.gift__txt {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
}

/* .gift pc */
@media screen and (min-width: 769px) {
    .gift__item {
        gap: 24px;
        margin-top: 32px;
    }

    .gift__icon {
        width: 56px;
        height: 56px;
    }

    .gift__txt {
        font-size: 2.0rem;
    }
}

/* pc 769px */


/* ============================
trial
============================ */
.trial {
    padding: 0 var(--contentPadding);
    margin-top: 60px;
}

.subpage__item {
    margin-top: 24px;
}

.subpage__item p {
    line-height: 1.6;
}

.subpage__txt {
    margin-top: 8px;
}

.member-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:1em 20px;
    margin-top: .8em;
    margin-bottom: 40px;
}
.member-list li{
    width:40%;

}
.member h4{
    color:var(--primary-orange);
}

/* .trial pc */
@media screen and (min-width: 769px) {
    .subpage__item {
        margin-top: 32px;
    }

    .subpage__txt {
        margin-top: 16px;
    }
}

.subpage-list-num {
    counter-reset: li;
    list-style: none;
    margin-top: 2em;
    padding-left: 1em;
}

.subpage-list-num > li {
    position: relative;
}

.subpage-list-num > li:before {
    color: var(--primary-orange);
    font-weight: bold;
    counter-increment: li;
    /* li の数を一つずつ増加 */
    content: counter(li) ". ";
    /* 数を表示 */
    position:absolute;
    left:-1.25em;
}

.subpage-list-kome {
    list-style: none;
    padding-left: 1em;
}

.subpage-list-kome li {
    margin: 0;
    position: relative;
}

.subpage-list-kome li:before {
    content:"※";
    display: inline-block;
    position: absolute;
    left:-1.25em;
}
.event-figure{
    margin: .5em 0;
}
/* pc 769px */

/* ============================
access
============================ */
.access {
    padding: 0 var(--contentPadding);
    margin-top: 60px;
}

.access iframe {
    margin-top: 24px;
    width: 100%;
    height: 360px;
}

/* .access pc */
@media screen and (min-width: 769px) {
    .access iframe {
        margin-top: 32px;
        height: 480px;
    }
}

/* pc 769px */


/* ============================
contact
============================ */
.contact {
    padding: 0 var(--contentPadding);
    margin-top: 60px;
}

/* pc 769px */


/* ============================
share
============================ */
.share {
    background-color: var(--primary-blue);
    padding: 32px var(--contentPadding);
    margin-top: 100px;
}

.share__group {
    background-color: var(--primary-white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}

.topic__share {
    color: var(--primary-blue);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #4F4C4B;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: normal;
}

.sns__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

/* .share pc */
@media screen and (min-width: 769px) {
    .share {
        padding: 40px var(--contentPadding);
        margin-top: 200px;
    }

    .share__group {
        gap: 24px;
        padding: 40px 0;
    }

    .topic__share {
        font-size: 4.0rem;
    }
}

/* pc 769px */


/* ============================
return
============================ */
.return .return__btn {
    font-size: 2.0rem;
    color: var(--primary-black);
    font-weight: 500;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background-color: var(--primary-orange);
    border-radius: 15px;
    border: 1px solid var(--primary-black);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 24px 32px;
    width: max-content;
    margin: 42px auto;
}

.return .return__btn::after {
    content: '';
    width: 12px;
    height: 24px;
    background-image: url(../images/icon-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.return .return__btn:hover {
    text-decoration: none;
    color: var(--primary-black);
}

/* .return pc */
@media screen and (min-width: 769px) {
    .return__btn {
        margin: 80px auto;
    }
}

/* pc 769px */


/* プレゼント */
.present {
    font-family: "M PLUS Rounded 1c", serif;
}

@media screen and (max-width: 768px) {
    .content.present {
        padding: 0;
    }

    .content.present img {
        margin: 0;
        padding: 0;
    }
}

.present__head-wrapper {
    background: url(../../assets/images/present-head-back.png) no-repeat center center;
    background-size: cover;
}

.present__head {
    margin: 0 auto;
    padding: 24px 16px;
    width: 100%;
    max-width: 600px;
}

.present__head-title {
    text-align: center;
}

.present__title-01 {
    color: #652401;
    font-weight: 900;
}

.present__title-01 span {
    font-size: 1.8em;
}

.present__title-02 {
    margin: .8em 0;
    padding: .5em;
    color: #fff;
    font-weight: 600;
    font-size: 2.0rem;
    background-color: #F9701B;
    border-radius: 999px;
}

.present__title-03 {
    width: 85%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.present__head-img {
    /* margin-top: 30px; */
}

.present__head-supplementary {
    text-align: right;
    font-size: 1.4rem;
}

.present__wrapper {
    background: url(../../assets/images/present-body-back.png) repeat;
    padding: 80px 20px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .present__wrapper {
        padding: 60px 16px;
    }
}

.present-box {
    border: 2px solid #F9701B;
    border-radius: 16px;
    overflow: hidden;
}

.present-box__header {
    padding: 1rem .5rem;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    background: url(../../assets/images/present-body-heading-back.png) repeat;
}

.present-box__header span {
    display: inline-block;
    margin-bottom: .4em;
    font-size: .8em;
}

.present-box__body {
    background-color: #fff;
    padding: 40px 20px;
}

@media screen and (max-width: 768px) {
    .present-box__body {
        padding: 40px 12px;
    }
}

.present__about-mican {
    text-align: center;
}

.present__about-text {
    margin-top: 20px;
}

.present__about-text p {
    line-height: 1.6;
    margin-top: 2em;
}

.present__about-text p span {
    color: #F9701B;
    font-weight: 600;
}

.present__contents {
    margin-top: 60px;
}

.ar-list-index {
    display: flex;
    justify-content: center;
}

.ar-list-index__item {
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .ar-list-index__item {
        font-size: 1.4rem;
    }
}

.ar-list-index__item:not(:first-child)::before {
    content: "｜";
    color: #eee;
    padding: 0 1em;
}

.ar-chuyo i {
    color: var(--primary-orange);
}

.ar-toyo i {
    color: var(--primary-blue);
}

.ar-nanyo i {
    color: var(--primary-pink);
}

.ar-list-area {
    padding: 40px 0;
}

.ar-list-area:first-of-type {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .ar-list-area:first-of-type {
        margin-top: 40px;
    }
}

.ar-list-area__title {
    font-size: 2.4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ar-list-area__title i {
    font-size: 1.6em;
}

.ar-chuyo .ar-list-area__title {
    color: var(--primary-orange);
}

.ar-toyo .ar-list-area__title {
    color: var(--primary-blue);
}

.ar-nanyo .ar-list-area__title {
    color: var(--primary-pink);
}

.ar-list-area__list {
    margin-top: 40px;
}

.ar-list-area__item {
    margin-top: 40px;
}

.ar-item a {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 3px 3px 14px -6px #777777;
    position: relative;
    color: var(--primary-black);
    transition: all .2s;
}

.ar-item a:hover {
    background-color: #fffaf0;
    text-decoration: none;
    color: var(--primary-black);
}

.ar-item a::after {
    content: "";
    width: 12px;
    height: 24px;
    background: url(../../assets/images/present-arrow-blue.svg) no-repeat center center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s;
}

.ar-item a:hover {
    background-color: #fffaf0;
}

.ar-item a:hover::after {
    right: 6px;
}

.ar-chuyo .ar-item a::after {
    background: url(../../assets/images/present-arrow-orange.svg) no-repeat center center;
}

.ar-toyo .ar-item a::after {
    background: url(../../assets/images/present-arrow-blue.svg) no-repeat center center;
}

.ar-nanyo .ar-item a::after {
    background: url(../../assets/images/present-arrow-pink.svg) no-repeat center center;
}

.ar-item__thumb {
    width: 200px;
}


.ar-item__thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ar-item__image img {
    margin: 0;
    padding: 0;
}

.ar-item__number {
    margin-top: .5em;
    background-color: var(--primary-black);
    font-size: 1.4rem;
    color: #fff;
    display: inline-block;
    padding: .5em;
    border-radius: 4px
}

.ar-item__body {
    padding-right: 20px;
}

.ar-item__title {
    font-size: 2.4rem;
    font-weight: 600;
}

.ar-item__spot {
    margin-top: 1.5em;
}

.ar-item__spot-detail {
    margin-top: .5em;
}

.ar-item__spot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-item__spot-list li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 10px;
}

.ar-item__spot-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: .25em;
    height: .25em;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.ar-toyo .ar-item__spot-list li::before {
    background-color: var(--primary-green);
}

.ar-nanyo .ar-item__spot-list li::before {
    background-color: var(--primary-pink);
}

@media screen and (max-width: 768px) {
    .ar-item a {
        gap: 10px;
    }

    .ar-item__thumb {
        width: 80px;
    }

    .ar-item__title {
        font-size: 1.6rem;
    }

    .ar-item__body {
        padding-right: 8px;
    }
}

/* プレゼントページのレスポンシブ対応 */
/* @media screen and (max-width: 768px) {
    .ar-item__title{
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1000px) {
    .ar-item__title{
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1366px) {

} */


/* フェードイン・アウトアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* モーダルのスタイル */
#openModal:hover {
    cursor: pointer;
}

.modal {
    position: fixed;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    opacity: 0;
}

.modal.show {
    display: block;
    animation: fadeIn 0.3s forwards;
}

.modal.hide {
    animation: fadeOut 0.3s forwards;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 90%;
    max-width: 1100px;
    height: 85vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content img {
    display: block;
    width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 40px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
    background-color: #333;
    border-radius: 999px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}




/* GETコンテンツ */
.get {
    font-size:1.6rem;
}
.get .present__head-wrapper{
    background: url(../images/get-background.png) no-repeat center center;
}
.get .present__head-img{
    margin-top: 20px;
}
.get .present__title-03{
    padding:.25em 0
;}
.get .present__title-03 img{
    width: 100%;
    max-width:300px;
    height:auto;
    object-fit: contain;
}
.get a:hover{
    color:#fff;
}
.get__button{
    margin-top: 20px;
}
.get__button a{
    display: block;
    padding:1em;
    color:#fff;
    background-color: #F99D1B;
    border:1px solid #fff;
    box-shadow: 3px 3px 14px -6px #777777;
    border-radius:999px;
    max-width:290px;
    font-weight:700;
    font-size:1.6rem;
    margin-left: auto;
    margin-right: auto;
    text-align:center;
}
.get__button i{
    color:#fff;
}
.get .present__head-img{
    text-align:center;
}
.get__headline--red{
    font-size:2.4rem;
    text-align:center;
    color:#DA393D;
    font-weight:900;
    margin-bottom: 1rem;
}
.get-text__strong{
    font-weight:900;
    color:#DA393D;
}
.get .get-text__small{
    font-size:1.3rem;
    margin-top: 1em !important;
    text-decoration: underline;
}

.get .present__about-text,
.get .present__about-text p {
    margin-top: 0;
}
.get-stamp__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.get .present__about-text{
    text-align:center;
}
@media screen and (min-width: 768px) {
    .get-stamp__list{
        display: flex;
        flex-direction: row;
        gap:20px;
    }
}
.get-stamp__item{
    display: block;
    margin-top: 60px;
}
.get-stamp__img{
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid var(--primary-orange);
    width: 100%;
    max-width:160px;
    padding:20px;
    height:auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align:center;
}
.get-stamp__img img{
    width: 100%;
    max-width:128px;
    margin:0 !important;
}
.get-stamp__button a{
    display: block;
    padding:1em;
    color:#fff;
    background-color: #F99D1B;
    border:1px solid #fff;
    box-shadow: 3px 3px 14px -6px #777777;
    border-radius:999px;
    max-width:260px;
    font-weight:700;
    font-size:1.6rem;
    margin-left: auto;
    margin-right: auto;
    text-align:center; 
}
.get-stamp__button i{
    color:#fff;
}
.get-questionnaire{
    padding: 40px 12px;
}
.get-aquestionnaire dt,
.get-questionnaire dd{
    line-height:1.8;
    padding:.5em 0;
}
.get-aquestionnaire dt{
    font-size:1.8rem;
}
.get-questionnaire__button a{
    display: block;
    padding:1em;
    color:#fff;
    background-color: #F99D1B;
    border:1px solid #fff;
    box-shadow: 3px 3px 14px -6px #777777;
    border-radius:999px;
    font-weight:700;
    font-size:1.6rem;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    text-align:center; 
    max-width:260px;
}
.get-questionnaire__button i{
    color:#fff;
}
.get-alert{
    padding: 40px 12px;
}
.get-alert dt,
.get-alert dd{
    line-height:1.8;
    padding:.5em 0;
}
.get .footer{
    margin-top: 60px;
}



/* プレゼントページのレスポンシブ対応 */
/* @media screen and (max-width: 768px) {
    .ar-item__title{
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1000px) {
    .ar-item__title{
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1366px) {

} */