body {
    margin: 0px;
    padding: 0px;
    color: var(--BK);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    /* font-feature-settings : "palt"; */
    text-align: left;
    background-color: #fff;
    font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic,
        "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック",
        "MS PGothic", sans-serif;
    -webkit-text-size-adjust: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all ease .3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --BK: #333333;
    --LBK: #555555;
    --BGBK: #282828;
    --RD: #E60000;
    --LRD: #E73A47;
    --TRD: #D81D1D;
    --YE: #F7FF14;
    --GR: #06C755;
    --BL: #08629F;
    --LBL: #3399FF;
    --OR: #FF5F5A;
    --LGY: #F5F5F5;

    --font-base: "Noto Sans JP", sans-serif;
    --font-sub: "M PLUS 1p", sans-serif;
    --font-en: "Montserrat", sans-serif;
}

main{
    padding-top: 150px;
}
@media screen and (max-width: 767px) {
    main{
        padding-top: 75px;
    }
}


/* ==================================================
*  common
================================================== */
.l-inner {
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px;
}

@media screen and (max-width: 767px) {
    .l-inner {
        padding: 0 20px;
        max-width: 390px;
    }
}

span.sat {
    color: var(--LBL);
}

span.sun,
span.mon {
    color: var(--LRD);
}

.sec-title-wrap {
    padding-bottom: 16px;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
    .sec-title-wrap {
        padding-bottom: 8px;
    }
}

.sec-title {
    font-size: 63px;
    line-height: 1;
    font-weight: 900;
    color: #000;
}

@media screen and (max-width: 767px) {
    .sec-title {
        font-size: 31.5px;
    }
}

.sec-lead {
    display: inline-block;
    margin-top: 9px;
    font-size: 28px;
    line-height: calc(52/28);
    color: #999;
}

@media screen and (max-width: 767px) {
    .sec-lead {
        margin-top: 4.5px;
        font-size: 14px;
    }
}

.sec-head-wrap {
    padding-left: 62px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .sec-head-wrap {
        padding-left: 31px;
    }
}

.sec-head-wrap::before {
    content: "";
    background-color: var(--RD);
    width: 10px;
    height: 110px;
    display: inline-block;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
}

@media screen and (max-width: 767px) {
    .sec-head-wrap::before {
        width: 5px;
        height: 55px;
    }
}

.sec-head-title {
    font-size: 53px;
    line-height: calc(59/53);
    font-weight: 700;
    color: #000
}

@media screen and (max-width: 767px) {
    .sec-head-title {
        font-size: 26.5px;
    }
}

.sec-head-lead {
    font-size: 26px;
    line-height: calc(52/26);
    display: inline-block;
    margin-top: 8px;
}

@media screen and (max-width: 767px) {
    .sec-head-lead {
        font-size: 13px;
        margin-top: 4px;
    }
}

.sec-img {
    max-width: 700px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .sec-img {
        max-width: 350px;
    }
}

.sec-img img {
    aspect-ratio: 700/400;
    width: 100%;
    object-fit: cover;
}

.sec-btn {
    max-width: 540px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
    .sec-btn {
        max-width: 270px;
    }
}

.sec-btn a {
    display: inline-block;
    width: 100%;
    background-color: var(--BGBK);
    color: #fff;
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    font-size: 30px;
    line-height: calc(37/30);
}

@media screen and (max-width: 767px) {
    .sec-btn a {
        border-radius: 10px;
        padding: 20px 25px;
        font-size: 15px;
    }
}

.sec-btn a::before {
    content: "";
    background-image: url(../img/icon-arrow_wh02.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 30px;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
}

@media screen and (max-width: 767px) {
    .sec-btn a::before {
        width: 15px;
        height: 16px;
        right: 25px;
    }
}


/* ==================================================
*  header
================================================== */
header.header {
    height: 150px;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

@media screen and (max-width: 767px) {
    header.header {
        height: 75px;
    }
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
}

.header__logo {
    max-width: 256px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .header__logo {
        max-width: 128px;
    }
}

.header__logo a {
    height: inherit;
}

.header__line{
    max-width: 350px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .header__line {
        max-width: 175px;
    }
}

.header__line a{
    border: 3px solid var(--GR);
    border-radius: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 0;
}
@media screen and (max-width: 767px) {
    .header__line a {
        border: 1.5px solid var(--GR);
        gap: 9px;
        padding: 6.5px 0;
        border-radius: 10px;
    }
}

.header__line a .icon{
    max-width: 59px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .header__line a .icon{
        max-width: 30px;
    }
}

.header__line a .text{
    color: var(--GR);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.055em;
}
@media screen and (max-width: 767px) {
    .header__line a .text{
        font-size: 14px;
    }
}


/* ==================================================
*  fv
================================================== */
.fv__inner {
    padding-left: 0;
    padding-right: 0;
    max-width: initial;
}


/* ==================================================
*  benefit
================================================== */
.benefit{
    margin-top: 40px;
    margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
    .benefit{
        margin-top: 20px;
        margin-bottom: 23px;
    }
}

.benefit__inner.l-inner{
    padding: 0;
}
@media screen and (max-width: 767px) {
    .benefit__inner.l-inner{
        padding: 0 10px;
    }
}

.benefit__title-wrap{
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 767px) {
    .benefit__title-wrap{
        padding: 0 10px;
        max-width: 390px;
    }
}

.benefit__title{
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 4px;
    border-bottom: 4px solid var(--BL);
    color: var(--BL);
    font-size: 30px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .benefit__title{
        margin-bottom: 15px;
        padding-bottom: 2px;
        border-bottom: 2px solid var(--BL);
        font-size: 15px;
    }
}

.benefit__text{
    margin-top: 22px;
    background-color: #e5e5e5;
    border-radius: 25px;
    padding: 25px 32px;
}
@media screen and (max-width: 767px) {
    .benefit__text{
        margin-top: 11px;
        border-radius: 12.5px;
        padding: 12.5px 16px;
    }
}

.benefit__text p{
    font-family: var(--font-base);
    font-feature-settings: "palt";
    font-size: 18px;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .benefit__text p{
        font-size: 10px;
    }
}




.benefit-swiper {
    position: relative;
    padding-bottom: 61px;
}

@media screen and (max-width: 767px) {
    .benefit-swiper {
        padding-bottom: 30px;
    }
}

.benefit__slide-img img {
    width: 100%;
    aspect-ratio: 640/900;
    object-fit: cover;
}

.benefit-swiper .swiper-pagination {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.benefit-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: var(--RD);
    opacity: 0.5;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .benefit-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

.benefit-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--RD);
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .benefit-swiper .swiper-pagination .swiper-pagination-bullet-active {
        width: 12px;
        height: 12px;
    }
}

.benefit-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.benefit-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px;
}

@media screen and (max-width: 767px) {

    .benefit-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .benefit-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5.5px;
    }
}

.benefit-swiper__button-wrap {
    /* max-width: 714px; */
    width: 48%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .benefit-swiper__button-wrap {
        width: 98%;
    }
}

@media (min-width: 425px) and (max-width: 767px) {
    .benefit-swiper__button-wrap {
        width: 82%;
    }
}

@media (min-width: 768px) {
    .benefit-swiper__button-wrap {
        width: 48%;
    }
}

.benefit-swiper__button-wrap .swiper-button-prev,
.benefit-swiper__button-wrap .swiper-button-next {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {

    .benefit-swiper__button-wrap .swiper-button-prev,
    .benefit-swiper__button-wrap .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

.benefit-swiper__button-wrap .swiper-button-prev::before,
.benefit-swiper__button-wrap .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--RD);
    border-right: 3px solid var(--RD);
}

@media screen and (max-width: 767px) {

    .benefit-swiper__button-wrap .swiper-button-prev::before,
    .benefit-swiper__button-wrap .swiper-button-next::before {
        width: 5px;
        height: 5px;
        border-width: 1.5px;
    }
}

.benefit-swiper__button-wrap .swiper-button-prev::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.benefit-swiper__button-wrap .swiper-button-next::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}

.benefit__slide-text {
    margin-top: 22px;
    background-color: #e5e5e5;
    border-radius: 25px;
    padding: 25px 32px;
    opacity: 0;
    transition: all .3s;
}
.swiper-slide-active .benefit__slide-text{
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .benefit__slide-text {
        margin-top: 11px;
        border-radius: 12.5px;
        padding: 12.5px 16px;
    }
}

.benefit__slide-text p {
    font-family: var(--font-base);
    font-feature-settings: "palt";
    font-size: 18px;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .benefit__slide-text p {
        font-size: 10px;
    }
}



/* ==================================================
*  check-event
================================================== */
.check-event {
    padding-bottom: 57px;
    position: relative;
    background-image: url(../img/check-event-bg.png);
    background-size: 750px;
}

@media screen and (max-width: 767px) {
    .check-event {
        padding-bottom: 30px;
    }
}

.check-event__top{
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.check-event__inner{
    max-width: 720px;
}

.check-event__list {
    margin-top: 20px;
    display: grid;
    gap: 28px;
}

@media screen and (max-width: 767px) {
    .check-event__list {
        margin-top: 35px;
        gap: 14px;
    }
}

.check-event__item{
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 20px 5px 20px;
}
@media screen and (max-width: 767px) {
    .check-event__item {
        padding: 10px 10px 2.5px 10px;
    }
}

.check-event__head {
    cursor: pointer;
    position: relative;
    display: flex;
    gap: 12px;
    width: 100%;
    padding-bottom: 15px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .check-event__head {
        gap: 6px;
        padding-bottom: 8px;
        font-size: 16px;
    }
}

.check-event__head::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/circle-plus.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    transition: .3s;
}
@media screen and (max-width: 767px) {
    .check-event__head::before,
    .check-event__head::after {
        width: 18px;
        height: 18px;
    }
}

.check-event__head.is-open::before{
    background-image: url(../img/circle-minus.png);
    width: 38px;
    height: 38px;
}
@media screen and (max-width: 767px) {
    .check-event__head.is-open::before{
        width: 19px;
        height: 19px;
    }
}

.check-event__head-wrapper{
    width: 100%;
}

.check-event__head-img{
    max-width: 135px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .check-event__head-img{
        max-width: 67.5px;
    }
}

.check-event__head-img img{
    aspect-ratio: 135/135;
    /* object-fit: cover; */
    object-fit: contain;
    width: 100%;
}

.check-event__head-date{
    font-size: 26px;
    line-height: calc(27/26);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media screen and (max-width: 767px) {
    .check-event__head-date{
        font-size: 13px;
        gap: 6px;
    }
}

.check-event__head-date--01{
    margin-top: 28px;
}
.check-event__head-date--02{
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .check-event__head-date--01{
        margin-top: 14px;
    }
    .check-event__head-date--02{
        margin-top: 6px;
    }
}

.check-event__head-date span.tag{
    background-color: #242020;
    color: #fff;
    border-radius: 12.5px;
    font-size: 16px;
    line-height: 1.57;
    font-weight: 400;
    display: inline-block;
    max-width: 100px;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .check-event__head-date span.tag{
        border-radius: 8px;
        font-size: 10px;
        max-width: 50px;
    }
}

.check-event__detail {
    display: none;
    background-color: #fff;
    border-top: 1px solid #a0a0a0;
    width: 100%;
    padding-top: 23px;
}
@media screen and (max-width: 767px) {
    .check-event__detail{
        padding-top: 12px;
    }
}

.check-event__schedule-block{
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 30px;
    font-weight: 700;
    border-bottom: 1px dashed #a0a0a0;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-block{
        gap: 12px;
        font-size: 15px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
}

.check-event__schedule-block + .check-event__schedule-block{
    margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-block + .check-event__schedule-block{
        margin-bottom: 6px;
    }
}

.check-event__schedule-block span.tag{
    font-size: 22px;
    border: 1px solid var(--BK);
    background-color: #fff;
    border-radius: 5px;
    padding: 4.5px 14px;
    display: inline-block;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-block span.tag{
        font-size: 11px;
        border-radius: 2.5px;
        padding: 2.25px 7px;
    }
}

.check-event__schedule-part{
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: #242020;
    color: #fff;
    font-size: 24px;
    padding: 59px 13.5px;
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-part{
        font-size: 12px;
        padding: 30px 7px;
        border-radius: 2.5px;
    }
}

.check-event__schedule-name,
.check-event__schedule-date{
    display: flex;
    align-items: center;
    gap: 24px;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-name,
    .check-event__schedule-date{
        gap: 12px;
    }
}

.check-event__schedule-date{
    margin-top: 20px;
    align-items: flex-start;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-date{
        margin-top: 10px;
    }
}

.check-event__schedule-date .date{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-date .date{
        gap: 4px;
    }
}

.check-event__schedule-note p{
    font-size: 20px;
    line-height: calc(32/20);
    font-weight: 400;
    color: #000;
}
@media screen and (max-width: 767px) {
    .check-event__schedule-note p{
        font-size: 10px;
    }
}

.check-event__schedule-note p span{
    color: var(--LRD);
}

.check-event__access{
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .check-event__access{
        margin-top: 25px;
    }
}

.check-event__access-img img{
    /* aspect-ratio: 630/310;
    width: 100%;
    object-fit: cover; */
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .check-event__access-img img{
        border-radius: 2.5px;
    }
}

.check-event__access-title{
    color: #c40018;
    font-size: 34px;
    font-weight: 700;
    font-feature-settings: "palt";
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
}
@media screen and (max-width: 767px) {
    .check-event__access-title{
        font-size: 17px;
        margin-top: 13px;
    }
}

.check-event__access-title::before,
.check-event__access-title::after{
    content: "";
    background-color: #c40018;
    width: 145px;
    height: 1px;
}
@media screen and (max-width: 767px) {
    .check-event__access-title::before,
    .check-event__access-title::after{
        width: 72.5px;
    }
}

.check-event__access-info{
    margin-top: 55px;
}
@media screen and (max-width: 767px) {
    .check-event__access-info{
        margin-top: 27.5px;
    }
}

.check-event__access-venue{
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 28px;
}
@media screen and (max-width: 767px) {
    .check-event__access-venue{
        gap: 9px;
        font-size: 14px;
    }
}

.check-event__access-venue span.tag{
    font-size: 22px;
    display: inline-block;
    padding: 4.5px 30px;
    border: 1px solid var(--BK);
    background-color: #fff;
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .check-event__access-venue span.tag{
        font-size: 11px;
        padding: 2.25px 15px;
        border-radius: 2.5px;
    }
}

.check-event__access-address{
    font-size: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
}
@media screen and (max-width: 767px) {
    .check-event__access-address{
        font-size: 14px;
        gap: 6px;
        margin-top: 19px;
    }
}

.check-event__access-address .check-event__icon{
    max-width: 34px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .check-event__access-address .check-event__icon{
        max-width: 17px;
    }
}

.check-event__access-map{
    margin-top: 25px;
}
@media screen and (max-width: 767px) {
    .check-event__access-map{
        margin-top: 12.5px;
    }
}

.check-event__access-map iframe{
    width: 100%;
    aspect-ratio: 630/300;
    border-radius: 10px;
}
@media screen and (max-width: 767px) {
    .check-event__access-map iframe{
        border-radius: 5px;
    }
}

/* 交通アクセス */
.check-event__transport{
    margin-top: 36px;
    padding-top: 38px;
    border-top: 1px dashed #a0a0a0;
}
@media screen and (max-width: 767px) {
    .check-event__transport{
        margin-top: 18px;
        padding-top: 19px;
    }
}

.check-event__transport-title{
    max-width: 150px;
    width: 100%;
    font-size: 22px;
    display: inline-block;
    padding: 4.5px 0;
    border: 1px solid var(--BK);
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .check-event__transport-title{
        max-width: 75px;
        font-size: 11px;
        padding: 2.25px 0;
        border-radius: 2.5px;
    }
}

.check-event__transport-list{
    margin-top: 28px;
    display: grid;
    grid-template-columns: 100px 1fr;
}
@media screen and (max-width: 767px) {
    .check-event__transport-list{
        margin-top: 14px;
        grid-template-columns: 50px 1fr;
    }
}

.check-event__transport-list dt{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .check-event__transport-list dt{
        font-size: 12px;
        margin-bottom: 20px;
    }
}

.check-event__transport-list dd{
    display: inline-block;
    border-left: 1px solid #a0a0a0;
    padding-left: 22px;
    font-feature-settings: "palt";
    font-size: 24px;
    line-height: calc(34/24);
    font-weight: 400;
    margin-bottom: 41px;
}
@media screen and (max-width: 767px) {
    .check-event__transport-list dd{
        padding-left: 11px;
        font-size: 12px;
        margin-bottom: 20px;
    }
}

.check-event__transport-list dd span.note{
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    .check-event__transport-list dd span.note{
        font-size: 10px;
    }
}

.check-event__transport-list dd .access-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-event__transport-list dd .access-list li {
    position: relative;
    padding-left: 18px;
}
.check-event__transport-list dd .access-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #c40018;
    opacity: 0.7;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6em;
}
@media screen and (max-width: 767px) {
    .check-event__transport-list dd .access-list li {
        padding-left: 9px;
    }
    .check-event__transport-list dd .access-list li::before {
        width: 5px;
        height: 5px;
    }
}

.check-event__transport-list dd a{
    text-decoration: underline;
}


/* 駐車場 */
.check-event__parking{
    margin-top: -6px;
    padding-top: 38px;
    border-top: 1px dashed #a0a0a0;
}
@media screen and (max-width: 767px) {
    .check-event__parking{
        margin-top: -3px;
        padding-top: 19px;
    }
}

.check-event__parking-title{
    max-width: 150px;
    width: 100%;
    font-size: 22px;
    display: inline-block;
    padding: 4.5px 0;
    border: 1px solid var(--BK);
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .check-event__parking-title{
        max-width: 75px;
        font-size: 11px;
        padding: 2.25px 0;
        border-radius: 2.5px;
    }
}

.check-event__parking-list{
    margin-top: 24px;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list{
        margin-top: 12px;
    }
}

.check-event__parking-list li:nth-child(n+2){
    margin-top: 6px;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li:nth-child(n+2){
        margin-top: 3px;
    }
}

.check-event__parking-list li span.subtitle{
    padding-left: 27px;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    font-feature-settings: "palt";
    margin-top: 18px;
    margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li span.subtitle{
        padding-left: 13.5px;
        font-size: 11px;
        margin-top: 9px;
        margin-bottom: 3px;
    }
}

.check-event__parking-list li span.title{
    padding-left: 27px;
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li span.title{
        padding-left: 13.5px;
        font-size: 14px;
    }
}

.check-event__parking-list li span.title::before{
    content: "";
    background-color: #c40018;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: inline-block;
    position: absolute;
    left: 8px;
    top: 14px;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li span.title::before{
        width: 5px;
        height: 5px;
        left: 4px;
        top: 7px;
    }
}

.check-event__parking-list li dl{
    margin-top: 22px;
    display: grid;
    grid-template-columns: 100px 1fr;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li dl{
        margin-top: 11px;
        grid-template-columns: 50px 1fr;
    }
}

.check-event__parking-list li dt{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li dt{
        font-size: 12px;
        margin-bottom: 9px;
    }
}

.check-event__parking-list li dd{
    display: inline-block;
    border-left: 1px solid #a0a0a0;
    padding-left: 22px;
    margin-bottom: 18px;
    font-feature-settings: "palt";
    font-size: 24px;
    line-height: calc(34 / 24);
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li dd{
        padding-left: 11px;
        margin-bottom: 9px;
        font-size: 12px;
    }
}

.check-event__parking-list li dl dt.dt-note{
    align-items: flex-start;
    padding-top: 6px;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li dl dt.dt-note{
        padding-top: 3px;
    }
}

.check-event__parking-list li dl dd.dd-note{
    border-left: none;
    padding-left: 0;
}

.check-event__parking-list li .dd-body{
    border-left: 1px solid #a0a0a0;
    padding-left: 22px;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li .dd-body{
        padding-left: 11px;
    }
}

.check-event__parking-list li dd span.note{
    display: block;
    font-size: 20px;
    margin-top: 4px;
    padding-left: 22px;
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li dd span.note{
        font-size: 10px;
        margin-top: 2px;
        padding-left: 11px;
    }
}

.check-event__parking-list li .bottom{
    color: #c40018;
    font-size: 20px;
    padding-left: 22px;
    margin-bottom: 22px;
    font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
    .check-event__parking-list li .bottom{
        font-size: 10px;
        padding-left: 11px;
        margin-bottom: 11px;
    }
}

.check-event__line{
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .check-event__line{
        margin-top: 25px;
    }
}

.check-event__line .link-btn.line a{
    padding: 34px 33px;
    gap: 45px;
}
@media screen and (max-width: 767px) {
    .check-event__line .link-btn.line a{
        padding: 17px 16.5px;
        gap: 22.5px;
    }
}

.check-event__line .link-btn.line .link-btn__icon{
    max-width: 100px;
}
@media screen and (max-width: 767px) {
    .check-event__line .link-btn.line .link-btn__icon{
        max-width: 50px;
    }
}

.check-event__line .link-btn__text{
    font-family: var(--font-base);
    color: var(--GR);
    font-size: 28px;
    line-height: calc(48/28);
    font-weight: 900;
    font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
    .check-event__line .link-btn__text{
        font-size: 14px;
    }
}

.check-event__line .link-btn__text .head {
    color: #242020;
    font-size: 28px;
    line-height: calc(48 / 28);
    font-weight: 900;
}
.check-event__line .link-btn__text .head span.num{
    font-size: 40px;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .check-event__line .link-btn__text .head {
        font-size: 14px;
    }
    .check-event__line .link-btn__text .head span.num{
        font-size: 20px;
    }
}

.check-event__close{
    border: none;
    background-color: initial;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 26px;
    padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
    .check-event__close{
        gap: 7px;
        margin-top: 13px;
        padding-bottom: 14px;
    }
}

.check-event__close span{
    font-size: 32px;
    line-height: calc(48/32);
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .check-event__close span{
        font-size: 16px;
    }
}

.check-event__close img{
    max-width: 48px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .check-event__close img{
        max-width: 24px;
    }
}

.check-event__btn{
    margin-top: 34px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 767px) {
    .check-event__btn{
        margin-top: 18px;
        max-width: 300px;
    }
}

.check-event__btn a{
    display: inline-block;
    width: 100%;
    background-color: var(--BL);
    color: #fff;
    border-radius: 20px;
    padding: 25px 66px 25px 0;
    text-align: center;
    font-size: 39px;
    line-height: 1;
    font-weight: 700;
    position: relative;
}
@media screen and (max-width: 767px) {
    .check-event__btn a{
        padding: 12px 33px 12px 0;
        font-size: 20px;
        border-radius: 10px;
    }
}

#koshin .check-event__btn a{
    font-size: 34px;
}
@media screen and (max-width: 767px) {
    .check-event__btn a{
        font-size: 17px;
    }
}

.check-event__btn a::before{
    content: "";
    background-image: url(../img/icon-arrow_wh.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 20px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 66px;
}
@media screen and (max-width: 767px) {
    .check-event__btn a::before{
        width: 10px;
        height: 15px;
        right: 33px;
    }
}


/* ==================================================
*  scroll-img
================================================== */
@keyframes img-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes img-scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.scroll-img__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-img__list {
    display: flex;
    list-style: none;
    padding: 0;
}

.scroll-img__list--left {
    animation: img-scroll-left 150s infinite linear 0.5s both;
}

.scroll-img__list--right {
    animation: img-scroll-right 150s infinite linear 0.5s both;
}

.scroll-img__item {
    width: calc(100vw / 3.7);
}

@media screen and (max-width: 767px) {
    .scroll-img__item {
        width: calc(100vw / 2.5);
    }
}

.scroll-img__item>img {
    width: 100%;
    height: 100%;
}


/* ==================================================
*  event
================================================== */
.event{
    padding: 100px 0 72px;
    background-color: #e6f2fc;
}
@media screen and (max-width: 767px) {
    .event{
        padding: 50px 0 36px;
    }
}

.event__container{
    background-color: #fff;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 11px 18px rgba(36, 32, 32, 0.21);
}
@media screen and (max-width: 767px) {
    .event__container{
        border-radius: 15px;
    }
}

.event__top{
    max-width: 378px;
    width: 100%;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
@media screen and (max-width: 767px) {
    .event__top{
        max-width: 165px;
        top: -10px;
    }
}

.event__img-area{
    position: relative;
}

.event__img-text{
    position: absolute;
    top: 123px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
}
@media screen and (max-width: 767px) {
    .event__img-text{
        top: 60px;
    }
}

.event__img-text p{
    color: #fff;
    font-size: 45px;
    line-height: calc(60/45);
    font-weight: 900;
}
@media screen and (max-width: 767px) {
    .event__img-text p{
        font-size: 22px;
    }
}

.event__logo{
    max-width: 573px;
    width: 100%;
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .event__logo{
        max-width: 280px;
        top: 135px;
    }
}

.event__text{
    padding: 107px 0 50px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .event__text{
        padding: 53px 0 25px;
    }
}

.event__text p{
    font-size: 30px;
    line-height: calc(48/30);
}
@media screen and (max-width: 767px) {
    .event__text p{
        font-size: 15px;
    }
}

.event__text p span{
    color: #c40018;
}

.event__menu{
    margin-top: 62px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px 48px;
}
@media screen and (max-width: 767px) {
    .event__menu{
        margin-top: 31px;
        gap: 14px;
    }
}

.event__menu-item{
    max-width: 325px;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .event__menu-item{
        max-width: 155px;
        margin-left: auto;
        margin-right: auto;
    }
}

.event__menu-head{
    border: 3px solid var(--BL);
    border-bottom: none;
    background-color: var(--BL);
    color: var(--YE);
    font-size: 38px;
    font-weight: 700;
    padding: 20px 0 28px;
    border-radius: 15px 15px 0 0;
}
@media screen and (max-width: 767px) {
    .event__menu-head{
        border: 1.5px solid var(--BL);
        font-size: 19px;
        padding: 10px 0 14px;
        border-radius: 7.5px 7.5px 0 0;
    }
}

.event__menu-item:nth-child(n+3) .event__menu-head{
    font-size: 30px;
    padding: 21px 0 29px;
}
@media screen and (max-width: 767px) {
    .event__menu-item:nth-child(n+3) .event__menu-head{
        font-size: 15px;
        padding: 10.5px 0 14.5px;
    }
}

.event__menu-item:nth-child(4) .event__menu-head,
.event__menu-item:nth-child(6) .event__menu-head{
    padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
    .event__menu-item:nth-child(4) .event__menu-head,
    .event__menu-item:nth-child(6) .event__menu-head{
        padding-bottom: 7.5px;
    }
}

.event__menu-head span.en{
    font-size: 36px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    display: block;
    margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
    .event__menu-head span.en{
        font-size: 18px;
        margin-bottom: 11px;
    }
}

.event__menu-item:nth-child(3) .event__menu-head span.en,
.event__menu-item:nth-child(5) .event__menu-head span.en{
    margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
    .event__menu-item:nth-child(3) .event__menu-head span.en,
    .event__menu-item:nth-child(5) .event__menu-head span.en{
        margin-bottom: 14px;
    }
}

.event__menu-item:nth-child(4) .event__menu-head span.en,
.event__menu-item:nth-child(6) .event__menu-head span.en{
    margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
    .event__menu-item:nth-child(4) .event__menu-head span.en,
    .event__menu-item:nth-child(6) .event__menu-head span.en{
        margin-bottom: 3px;
    }
}

.event__menu-wrap{
    background-color: #fff;
    border: 3px solid var(--BL);
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 25px 0 30px;
}
@media screen and (max-width: 767px) {
    .event__menu-wrap{
        border: 1.5px solid var(--BL);
        border-radius: 0 0 7.5px 7.5px;
        padding: 12.5px 0 15px;
    }
}

.event__menu-text{
    font-size: 28px;
    line-height: calc(36/28);
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .event__menu-text{
        font-size: 14px;
    }
}

.event__menu-btn{
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .event__menu-btn{
        margin-top: 20px;
    }
}

.event__menu-btn--bl a{
    background-color: var(--BL);
}

.event__menu-btn--rd a{
    background-color: var(--LRD);
}

.event__menu-btn a{
    display: inline-block;
    border-radius: 30px;
    max-width: 260px;
    width: 100%;
    color: #fff;
    font-size: 26px;
    line-height: calc(36/26);
    font-weight: 500;
    padding: 12px 0;
}
@media screen and (max-width: 767px) {
    .event__menu-btn a{
        border-radius: 15px;
        max-width: 130px;
        font-size: 13px;
        padding: 6px 0;
    }
}

.event__btn{
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 767px) {
    .event__btn{
        max-width: 300px;
    }
}

.event__btn-question{
    margin-top: 66px;
}
@media screen and (max-width: 767px) {
    .event__btn-question{
        margin-top: 33px;
    }
}
.event__btn-question a{
    background-color: var(--BL);
}

.event__btn-link{
    margin-top: 32px;
}
@media screen and (max-width: 767px) {
    .event__btn-link{
        margin-top: 16px;
    }
}
.event__btn-link a{
    background-color: var(--LRD);
}

.event__btn a{
    display: inline-block;
    width: 100%;
    color: #fff;
    border-radius: 20px;
    padding: 25px 66px 25px 0;
    text-align: center;
    font-size: 39px;
    line-height: 1;
    font-weight: 700;
    position: relative;
}
@media screen and (max-width: 767px) {
    .event__btn a{
        padding: 12px 33px 12px 0;
        font-size: 20px;
        border-radius: 10px;
    }
}

.event__btn a::before{
    content: "";
    background-image: url(../img/icon-arrow_wh.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 20px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 66px;
}
@media screen and (max-width: 767px) {
    .event__btn a::before{
        width: 10px;
        height: 15px;
        right: 33px;
    }
}


/* ==================================================
*  products
================================================== */
.products {
    padding-top: 68px;
}

@media screen and (max-width: 767px) {
    .products {
        padding-top: 34px;
    }
}

/* feature */

.feature-swiper {
    position: relative;
    margin-top: 36px;
    padding-bottom: 61px;
}

@media screen and (max-width: 767px) {
    .feature-swiper {
        margin-top: 18px;
        padding-bottom: 30px;
    }
}

.feature__slide-img img {
    width: 100%;
    aspect-ratio: 640/900;
    object-fit: cover;
}

.feature-swiper .swiper-pagination {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: var(--RD);
    opacity: 0.5;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .feature-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

.feature-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--RD);
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .feature-swiper .swiper-pagination .swiper-pagination-bullet-active {
        width: 12px;
        height: 12px;
    }
}

.feature-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.feature-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px;
}

@media screen and (max-width: 767px) {

    .feature-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .feature-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5.5px;
    }
}

.feature-swiper__button-wrap {
    /* max-width: 714px; */
    width: 48%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .feature-swiper__button-wrap {
        width: 98%;
    }
}

@media (min-width: 425px) and (max-width: 767px) {
    .feature-swiper__button-wrap {
        width: 82%;
    }
}

@media (min-width: 768px) {
    .feature-swiper__button-wrap {
        width: 48%;
    }
}

.feature-swiper__button-wrap .swiper-button-prev,
.feature-swiper__button-wrap .swiper-button-next {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {

    .feature-swiper__button-wrap .swiper-button-prev,
    .feature-swiper__button-wrap .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

.feature-swiper__button-wrap .swiper-button-prev::before,
.feature-swiper__button-wrap .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--RD);
    border-right: 3px solid var(--RD);
}

@media screen and (max-width: 767px) {

    .feature-swiper__button-wrap .swiper-button-prev::before,
    .feature-swiper__button-wrap .swiper-button-next::before {
        width: 5px;
        height: 5px;
        border-width: 1.5px;
    }
}

.feature-swiper__button-wrap .swiper-button-prev::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.feature-swiper__button-wrap .swiper-button-next::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}

.feature__slide-text {
    margin-top: 34px;
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transition: all .3s;
}
.swiper-slide-active .feature__slide-text{
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .feature__slide-text {
        margin-top: 17px;
        max-width: 390px;
    }
}

.feature__slide-text p {
    font-size: 19px;
    line-height: calc(40/24);
}

@media screen and (max-width: 767px) {
    .feature__slide-text p {
        font-size: 10px;
    }
}

/* brand */
.products__brand {
    margin-top: 116px;
    padding-bottom: 45px;
}

@media screen and (max-width: 767px) {
    .products__brand {
        margin-top: 58px;
        padding-bottom: 22px;
    }
}

.brand__img {
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .brand__img {
        margin-top: 2.5px;
    }
}

.brand__img img {
    aspect-ratio: 700/664;
}

.brand__btn {
    margin-top: 40px;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .brand__btn {
        margin-top: 20px;
    }
}

.brand__btn a {
    display: inline-block;
    padding-right: 50px;
    font-size: 33px;
    line-height: 1;
    font-weight: 700;
    position: relative;
}

@media screen and (max-width: 767px) {
    .brand__btn a {
        padding-right: 25px;
        font-size: 16.5px;
    }
}

.brand__btn a::before {
    content: "";
    background-image: url(../img/icon-arrow_bl02.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 30px;
    height: 32px;
    position: absolute;
    top: 2px;
    right: 0;
}

@media screen and (max-width: 767px) {
    .brand__btn a::before {
        width: 15px;
        height: 16px;
        top: 1px;
    }
}



/* ==================================================
*  sales
================================================== */
.sales {
    padding-top: 66px;
    padding-bottom: 98px;
    background-color: #f9f9f9;
}

@media screen and (max-width: 767px) {
    .sales {
        padding-top: 33px;
        padding-bottom: 50px;
    }
}

.sales__link-container {
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .sales__link-container {
        border-radius: 20px;
    }
}

.sales__link.online-shop .sales__link-top {
    background-color: var(--BL);
    padding: 24px 0 31px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .sales__link.online-shop .sales__link-top {
        padding: 12px 0 15.5px;
    }
}

.sales__link.online-shop .sales__link-head {
    text-align: center;
}

.sales__link.online-shop .sales__link-head span{
    background-color: var(--YE);
    color: var(--BL);
    font-weight: 900;
    display: inline-block;
}

.sales__link.online-shop .sales__link-head span.top{
    font-size: 36px;
    line-height: calc(57/36);
    padding: 0 57px;
}
@media screen and (max-width: 767px) {
    .sales__link.online-shop .sales__link-head span.top{
        font-size: 18px;
        padding: 0 28px;
    }
}
.sales__link.online-shop .sales__link-head span.bottom{
    font-size: 44px;
    line-height: calc(57/44);
    padding: 0 57px;
    margin-top: 8px;
}
@media screen and (max-width: 767px) {
    .sales__link.online-shop .sales__link-head span.bottom{
        font-size: 22px;
        padding: 0 28px;
        margin-top: 4px;
    }
}

.sales__link.online-shop .sales__link-text{
    margin-top: 21px;
    margin-left: 60px;
    max-width: 598px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .sales__link.online-shop .sales__link-text{
        margin-top: 10px;
        margin-left: 30px;
        max-width: 300px;
    }
}

.sales__link-bottom {
    padding: 23px 33px 28px;
    font-size: 28px;
    line-height: calc(59/28);
    color: #333;
    display: flex;
    align-items: center;
    gap: 21px;
}

@media screen and (max-width: 767px) {
    .sales__link-bottom {
        padding: 12px 18px 14px;
        font-size: 14px;
        gap: 10px;
    }
}

.sales__link-bottom img {
    max-width: 15px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .sales__link-bottom img {
        max-width: 8px;
    }
}


/* ==================================================
*  link-area
================================================== */
.link-area {
    padding-top: 70px;
    padding-bottom: 95px;
}

@media screen and (max-width: 767px) {
    .link-area {
        padding-top: 35px;
        padding-bottom: 47.5px;
    }
}

.link-btn a {
    background-color: #fff;
    color: var(--LBK);
    display: flex;
    align-items: center;
}

.link-btn.line a {
    border: 16px solid var(--GR);
    padding: 37px 19px 33px 51px;
    gap: 41px;
}

@media screen and (max-width: 767px) {
    .link-btn.line a {
        border: 8px solid var(--GR);
        padding: 18px 10px 16px 25px;
        gap: 20px;
    }
}

.link-btn.line .link-btn__icon {
    max-width: 110px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .link-btn.line .link-btn__icon {
        max-width: 55px;
    }
}

.link-btn__text {
    font-family: var(--font-sub);
    color: var(--LBK);
    font-size: 25px;
    line-height: calc(38/25);
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .link-btn__text {
        font-size: 12px;
    }
}

.link-btn__text span.head {
    font-size: 36px;
    line-height: calc(38/36);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .link-btn__text span.head {
        font-size: 18px;
    }
}


/* ==================================================
*  faq
================================================== */
.faq {
    padding-top: 80px;
    padding-bottom: 116px;
    background-color: #f0f0f0;
}

@media screen and (max-width: 767px) {
    .faq {
        padding-top: 40px;
        padding-bottom: 58px;
    }
}

.faq__title {
    font-family: var(--font-en);
    font-weight: 900;
    text-transform: uppercase;
}

.faq__list {
    margin-top: 71px;
    display: grid;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .faq__list {
        margin-top: 35px;
        gap: 10px;
    }
}

.faq__question {
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 20px;
    display: inline-block;
    width: 100%;
    padding: 20px 40px;
    font-size: 28px;
    line-height: calc(40/28);
}

@media screen and (max-width: 767px) {
    .faq__question {
        padding: 10px 25px 10px 15px;
        font-size: 14px;
        border-radius: 10px;
    }
}

.faq__question.is-open{
    border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
    .faq__question.is-open{
        border-radius: 10px 10px 0 0;
    }
}

.faq__question::before,
.faq__question::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 18px;
    height: 3px;
    background: var(--BK);
    transition: .3s;
}
@media screen and (max-width: 767px) {
    .faq__question::before,
    .faq__question::after {
        right: 8px;
        width: 12px;
        height: 1.5px;
    }
}

.faq__question::after{
    transform: translateY(-50%) rotate(90deg);
}

.faq__question.is-open::after{
    transform: translateY(-50%) rotate(0deg);
}

.faq__answer {
    display: none;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 0 0 20px 20px;
    width: 100%;
    padding: 20px 40px;
    font-size: 24px;
    line-height: calc(40/28);
}
@media screen and (max-width: 767px) {
    .faq__answer{
        border-radius: 0 0 10px 10px;
        padding: 10px 20px;
        font-size: 12px;
    }
}

.faq__btn {
    margin-top: 69px;
}

@media screen and (max-width: 767px) {
    .faq__btn {
        margin-top: 35px;
    }
}

/* ==================================================
*  footer
================================================== */
.footer {
    padding: 105px 0 38px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 52px 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer__inner {
        padding-left: 0;
        padding-right: 0;
    }
}

.footer__sns {
    max-width: 615px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

@media screen and (max-width: 767px) {
    .footer__sns {
        max-width: 308px;
        gap: 30px;
    }
}



.footer__nav {
    margin-top: 43px;
    background-color: #262626;
}

@media screen and (max-width: 767px) {
    .footer__nav {
        margin-top: 21.5px;
    }
}

@media (min-width: 768px) and (max-width: 1300px) {
    .footer__nav {
        display: block;
    }
}

@media (min-width: 1301px) {
    .footer__nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
}

.fnav-group {
    border-bottom: 2px solid #707070;
    background-color: #000;
}

@media screen and (max-width: 767px) {
    .fnav-group {
        border-width: 1px;
    }
}

.fnav-head {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
    line-height: calc(30/28);
    padding: 30px 40px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .fnav-head {
        cursor: pointer;
        font-size: 14px;
        padding: 15px 20px;
    }
}

@media (min-width: 1301px) {
    .fnav-col {
        display: flex;
        flex-direction: column;
    }

    .fnav-col--left {
        border-right: 2px solid #707070;
    }
}

@media screen and (max-width: 767px) {

    .fnav-head::after,
    .fnav-head::before {
        content: "";
        position: absolute;
        right: 32.5px;
        top: 50%;
        transform: translateY(-50%);
        width: 12.5px;
        height: 1px;
        background: #707070;
    }
}

.fnav-head::before {
    transform: translateY(-50%) rotate(90deg);
    transition: transform .2s ease;
}

.fnav-group.is-open .fnav-head::before {
    transform: translateY(-50%) rotate(0deg);
}

.fnav-panel {
    overflow: hidden;
    background-color: #262626;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .fnav-panel {
        display: none;
    }
}

.fnav-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.fnav-group[data-cols="1"] .fnav-grid {
    grid-template-columns: 1fr;
}

.fnav-grid>li {
    border-top: 2px solid #707070;
}

@media screen and (max-width: 767px) {
    .fnav-grid>li {
        border-width: 1px;
    }
}

.fnav-grid>li:nth-child(odd) {
    border-right: 2px solid #707070;
}

@media screen and (max-width: 767px) {
    .fnav-grid>li:nth-child(odd) {
        border-width: 1px;
    }
}

.fnav-grid>li>a {
    display: block;
    padding: 20px 30px;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .fnav-grid>li>a {
        padding: 10px 20px;
        font-size: 12px;
    }
}

.fnav-quick {
    background-color: #262626;
    color: #fff;
}

@media (min-width: 1301px) {
    .fnav-quick .fnav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.fnav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 20px 30px;
    font-size: 20px;
    line-height: calc(30/20);
    position: relative;
}

@media screen and (max-width: 767px) {
    .fnav-list a {
        padding: 15px 25px;
        font-size: 14px;
    }
}

.fnav-list a::after {
    content: "";
    background-image: url(../img/icon-arrow_wh03.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 12px;
    height: 20px;
}

@media screen and (max-width: 767px) {
    .fnav-list a::after {
        right: 30px;
        width: 10px;
        height: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1300px) {
    .fnav-list a::after {
        right: 30px;
    }
}





.footer__text {
    margin-top: 60px;
    max-width: 652px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
    .footer__text {
        margin-top: 30px;
        max-width: 330px;
    }
}

.footer__text p {
    font-size: 24px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .footer__text p {
        font-size: 12px;
        line-height: 1.8;
    }
}

.footer__text p span {
    font-family: var(--font-en);
}

hr.footer__line {
    height: 0;
    padding: 0;
    border: 0;
    max-width: 534px;
    margin: 48px auto;
    border-top: 1px solid #c7c7c7;
}

@media screen and (max-width: 767px) {
    hr.footer__line {
        margin: 24px 20px;
        max-width: 390px;
    }
}

.footer__copyright {
    text-align: center;
}

.footer__copyright p small {
    font-size: 24px;
    line-height: calc(50/24);
    font-family: var(--font-en);
}

@media screen and (max-width: 767px) {
    .footer__copyright p small {
        font-size: 12px;
    }
}

.pagetop {
    position: fixed;
    bottom: 175px;
    right: 28px;
    z-index: 1000;
}

@media screen and (max-width: 767px) {
    .pagetop {
        bottom: 90px;
        right: 18px;
    }
}

.pagetop a {
    display: inline-block;
}

.pagetop a img {
    max-width: 80px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .pagetop a img {
        max-width: 40px;
    }
}




body {
    padding-bottom: calc(165px + env(safe-area-inset-bottom, 0px));
}

@media screen and (max-width: 767px) {
    body {
        padding-bottom: calc(82.5px + env(safe-area-inset-bottom, 0px));
    }
}

/* ===== 追従フォローナビ（下固定） ===== */
.follow-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom, 0px);
    height: 165px;
    z-index: 1000;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .follow-nav {
        height: 82.5px;
    }
}

.footer-nav__inner {
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 42px;
    padding-right: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
}

@media screen and (max-width: 767px) {
    .footer-nav__inner {
        max-width: 390px;
        padding-left: 21px;
        padding-right: 17.5px;
    }
}

.follow-nav__list {
    display: flex;
    justify-content: space-between;
}

.follow-nav__item {
    max-width: 146px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .follow-nav__item {
        max-width: 73px;
    }
}

.follow-nav__item:nth-child(n+2) {
    padding-left: 28px;
    border-left: 1px solid #E0E0E0;
    margin-left: 28px;
}

@media screen and (max-width: 767px) {
    .follow-nav__item:nth-child(n+2) {
        padding-left: 14px;
        margin-left: 14px;
    }
}

.follow-nav__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    line-height: calc(28/24);
    font-weight: 700;
    color: var(--BL);
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .follow-nav__item a {
        gap: 5px;
        font-size: 12px;
    }
}

.follow-nav__icon {
    width: 118px;
    height: 70px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .follow-nav__icon {
        width: 59px;
        height: 35px;
    }
}

.icon-event {
    background: url(../img/icon-event.svg) no-repeat center/contain;
}

.icon-product {
    background: url(../img/icon-product.svg) no-repeat center/contain;
}

.icon-lift {
    background: url(../img/icon-lift.svg) no-repeat center/contain;
}

.follow-nav__menu {
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 24px;
    line-height: calc(28/24);
    font-weight: 700;
    color: var(--BL);
    margin-top: 10px;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;

    padding-left: 42px;
    border-left: 2px dotted #000;
}

@media screen and (max-width: 767px) {
    .follow-nav__menu {
        gap: 16px;
        font-size: 12px;
        margin-top: 5px;
        padding-left: 21px;
    }
}

.follow-nav__menu .hamburger {
    position: relative;
    width: 35px;
    height: 30px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .follow-nav__menu .hamburger {
        width: 17.5px;
        height: 15px;
    }
}

.follow-nav__menu .hamburger .bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    border-radius: 10px;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

@media screen and (max-width: 767px) {
    .follow-nav__menu .hamburger .bar {
        height: 2px;
    }
}

.follow-nav__menu .hamburger .bar1 {
    top: 0;
}

.follow-nav__menu .hamburger .bar2 {
    top: 15px;
}

@media screen and (max-width: 767px) {
    .follow-nav__menu .hamburger .bar2 {
        top: 7.5px;
    }
}

.follow-nav__menu .hamburger .bar3 {
    top: 30px;
}

@media screen and (max-width: 767px) {
    .follow-nav__menu .hamburger .bar3 {
        top: 15px;
    }
}

.follow-nav__menu.is-active .hamburger .bar1 {
    top: 18px;
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .follow-nav__menu.is-active .hamburger .bar1 {
        top: 9px;
    }
}

.follow-nav__menu.is-active .hamburger .bar2 {
    opacity: 0;
}

.follow-nav__menu.is-active .hamburger .bar3 {
    top: 18px;
    transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
    .follow-nav__menu.is-active .hamburger .bar3 {
        top: 9px;
    }
}


/* ===== 右→左 フェード＋スライドのメニュー ===== */
.follow-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: calc(165px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .follow-menu {
        bottom: calc(82.5px + env(safe-area-inset-bottom, 0px));
    }
}

.follow-menu.is-open {
    pointer-events: auto;
}

.follow-menu__sheet {
    position: absolute;
    inset: 0;
    background: #EFEFEF;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    transform: translateX(24px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
    padding: 72px clamp(16px, 4vw, 26px) 74px;
}

@media screen and (max-width: 767px) {
    .follow-menu__sheet {
        padding: 36px clamp(16px, 4vw, 26px) 37px;
    }
}

.follow-menu.is-open .follow-menu__sheet {
    transform: translateX(0);
    opacity: 1;
}

.follow-menu__list {
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 38px;
    padding-right: 38px;
}

@media screen and (max-width: 767px) {
    .follow-menu__list {
        max-width: 390px;
        padding-left: 18px;
        padding-right: 18px;
    }
}

.follow-menu__list li {
    border-bottom: 1px solid #222;
}

.follow-menu__list a {
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 12px 6.5px 18px;
    font-size: 32px;
    line-height: 1.5;
    color: #222;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .follow-menu__list a {
        gap: 21px;
        padding: 6px 3.25px 9px;
        font-size: 16px;
    }
}

.follow-menu__sns {
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
    .follow-menu__sns {
        margin-top: 40px;
    }
}

.follow-menu__sponsor {
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .follow-menu__sponsor {
        margin-top: 30px;
    }
}

.sponsor-card {
    display: block;
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
    .sponsor-card {
        max-width: 250px;
    }
}

.sponsor-card img {
    width: 100%;
    height: auto;
    display: block;
}

.follow-menu-icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    flex: 0 0 60px;
}

@media screen and (max-width: 767px) {
    .follow-menu-icon {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }
}

.follow-menu-icon.icon-calendar {
    background: url(../img/icon-calendar.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-bag {
    background: url(../img/icon-bag.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-ticket {
    background: url(../img/icon-ticket.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-tools {
    background: url(../img/icon-tools.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-star {
    background: url(../img/icon-star.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-question {
    background: url(../img/icon-question.svg) no-repeat center/contain;
}

.follow-menu-icon.icon-doc {
    background: url(../img/icon-doc.svg) no-repeat center/contain;
}


body.is-menu-open {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}


