/*==================================================
# 共通
==================================================*/
body {
    color: #000;
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(0.96 / 16 * 1em);
}

.common-inner{
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
}

.sp-only {
    display: none;
}

.coming-soon {
    pointer-events: none;
    cursor: default;

}

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

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }
}


.section-header__label {
    font-family: "Times New Roman", serif;
    font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
    font-weight: 400;
    line-height: 100%;
    letter-spacing: calc(1.44 / 24 * 1em);
    position: relative;
    padding-bottom: 8px;
    display: block;
}

.section-header__label::before {
    content: '';
    width: 62px;
    height: 1px;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.section-header__title {
    margin-top: 8px;
    font-size: clamp(32px, calc(40 / 1440 * 100vw), 40px);
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(2.4 / 40 * 1em);
}

.section-header--white .section-header__label,
.section-header--white .section-header__title {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .section-header__label {
        font-size: 18px;
        padding-bottom: 8px;
    }

    .section-header__label::before {
        width: 50px;
    }

    .section-header__title {
        font-size: 24px;
    }
}

/*==================================================
# header
==================================================*/
header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    height: 60px;
    transition: background-color 0.3s ease 0s;
}

header.active{
	/* background: rgba(0, 0, 0, 0.5);
	overflow: hidden; */

}

.header_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	transition: ease all .4s;
    padding-left: 30px;
    height: 100%;
}

.header_inner .logo{
    width: 160px;
}

.header_inner .global{
    height: 100%;

}
.header_inner .global ol{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.header_inner .global ol li{
    align-self: stretch;
}

.header_inner .global ol li:not(.contact) a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    height: 100%;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #fff;
}

header.is-dark .header_inner .global ol li:not(.contact) a {
    color: #111;
  }

@media screen and (min-width: 1024px) {
    .header_inner .global ol li:not(.contact) a:hover {
        background: linear-gradient(to right, 
        #FE4D4B 0%, #F2197C 10%, #A648C5 20%, #4A60FF 30%, #1E92EA 40%, #5AD690 50%,
        #FFF 50%, #FFF 100%
        );
        background-size: 200% 100%;
        background-position: 100% 50%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background-position 0.4s ease;  
    }
    
    .header_inner .global ol li:not(.contact) a:hover {
        background-position: 0% 50%;
    }
}

.header_inner .global ol li.contact{
    margin-left: clamp(20px, calc(30 / 1440 * 100vw), 30px);
}
.header_inner .global ol li.contact a{
    width: clamp(180px, calc(220 / 1440 * 100vw), 220px);
    height: 60px;
    text-decoration: none;
    background-color: #262626;
    padding: 0;
    border-radius: 0 0 0 24px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_inner .global ol li.contact a span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, calc(16 / 1440 * 100vw), 16px);
    font-weight: 700;
    position: relative;
    z-index: 1;

}
.header_inner .global ol li.contact a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: url(../images/btn_bg.svg) no-repeat center / cover;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.header_inner .global ol li.contact a:hover::before{
    opacity: 0.6;
}

.header_inner .menubtn{
    display: none;
}
.modal_bg{
    display: none;
}

.global__inner {
    height: 100%;
}

.sp-logo {
    display: none;
}

.global-label {
    display: none;
}

@media screen and (max-width:1023px){
    .modal_bg{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        pointer-events: none;
        background: #000;
        transition: ease all .4s;
        display: block;
        z-index: 2;
    }

    .modal_bg.active{
        opacity: .3;
        pointer-events: all;
    }

    .header_inner .menubtn{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 36px;
        height: 24px;
        position: relative;
    }
    .header_inner .menubtn span{
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        position: relative;
        top: 0;
        transition: ease all .4s;
    }

    .header_inner .menubtn.active span {
        background: #111;
    }

    .header_inner .menubtn.active span:nth-child(1){
        transform: rotate(30deg);
        top: 8px;
    }
    .header_inner .menubtn.active span:nth-child(2){
        transform: rotate(-30deg);
    }
    .header_inner .menubtn.active span:nth-child(3){
        opacity: 0;
    }
    .header_inner .global {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transform: translateX(100%);
        transition: ease all .4s;
        overflow-y: auto;
    }

    .sp-logo {
        padding: 18px 0 0 10px;
        max-width: 140px;
        display: block;
    }

    .global-label {
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 400;
    display: block;
    width: calc(50% - 10px);
    }


    .global__inner {
        max-width: 400px;
        margin: 0 auto;
        padding-bottom: 60px;
    }

    .header_inner .global.active{
        transform: translateX(0);
    }
    .header_inner .global ol {
        display: block;
        margin-top: 40px;
        padding: 0 18px;
    }

    .header_inner .global ol li:first-child:not(.contact) a {
        border-top: 1px solid #ccc;
    }

    .header_inner .global ol li:not(.contact) a {
        padding: 20px;
        font-size: 20px;
        border-bottom: 1px solid #ccc;
        color: #111;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
    }
    .header_inner .global ol li.contact {
        margin: 40px auto 0;
        width: fit-content;
    }

    .header_inner .global ol li.contact a {
        width: 220px;
        height: 46px;
        text-align: center;
        background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    border-radius: 4px;
    }

    .header_inner .global ol li.contact a span {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .header_inner {
        padding: 0 18px 0 10px;
    }

    .header_inner .logo {
        width: 140px;

    }
}

/*==================================================
# mv
==================================================*/
.smoke_bg {
    /* position: relative;
    z-index: 1; */
}

.smoke_bg::before {
    content: '';
    display: block;
    width: clamp(400px, calc(512 / 1440 * 100vw), 512px);
    aspect-ratio: 512 / 1096;
    background: url(../images/smoke_bg.png) no-repeat center center /contain;
    position: absolute;
    left: 0;
    top: 0;
}

.mv {
    background: url(../images/fv_img_01_pc.jpg) no-repeat center center /cover;
    padding: 100px 0 clamp(190px, calc(268 / 1440 * 100vw), 268px);

}

.mv__inner {
    padding: 0 clamp(16px, calc(35 / 1440 * 100vw), 35px);
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.mv__column {
    display: flex;
    justify-content: space-between;

}

.mv__header {
    width: clamp(300px, calc(584 / 1370 * 100vw), 584px);

}

.mv__logo {

}

.mv__info {
    display: flex;
    gap: calc(40 / 584 * 100%);
    margin-top: 33px;
    align-items: flex-end;

}

.mv__year {
    width: calc(129 / 584 * 100%);
}

.mv__event {
    flex-grow: 1;
    padding-bottom: 14px;
    

}

.mv__title {
    width: calc(128 / 415 * 100%);

}

.mv__details {
    margin-top: clamp(40px, calc(58 / 1440 * 100vw), 58px);

}

.mv__meta {
    display: flex;

}

.mv__meta-item:first-child {
    padding-right: clamp(20px, calc(34 / 1440 * 100vw), 34px);
    border-right: 1px solid #fff;
}

.mv__meta-item:last-child {
    padding-left: clamp(20px, calc(34 / 1440 * 100vw), 34px);
}

.mv__meta-label {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12.121px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(1.212 / 12.121 * 1em);
    display: block;
}

.mv__meta-value {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(12px, calc(18.182 / 1440 * 100vw), 18.182px);
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(1.818 / 18.182 * 1em);
    margin-top: clamp(10px, calc(15 / 1440 * 100vw), 15px);
    display: block;
}

.mv__meta-unit {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.606px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: calc(1.061 / 10.606 * 1em);
}

.mv__date {
    margin-top: clamp(15px, calc(23 / 1440 * 100vw), 23px);
    color: #FFF;
    font-family: "Abel", sans-serif;
    font-size: clamp(30px, calc(40 / 1440 * 100vw), 40px);
    font-weight: 400;
    line-height: 100%;
    letter-spacing: calc(4 / 40 * 1em);
    display: block;
}

.mv__content {
    width: clamp(300px, calc(462 / 1370 * 100vw), 462px);
    margin-top: 30px;
}

.mv__content-inner {
    max-width: 374px;
}

.mv__catch {
    color: #FFF;
    font-size: clamp(20px, calc(32 / 1200 * 100vw), 32px);
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(0.96 / 32 * 1em);
}

.mv__text {
    margin-top: 24px;
    color: #FFF;
    font-size: clamp(12px, calc(14 / 1440 * 100vw), 14px);
    font-weight: 500;
    line-height: 200%;
}

.mv__text span {
    font-weight: 700;
}

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

    .mv {
        background: #262626;
        position: relative;
        z-index: 1;
        overflow: hidden;
        height: 100vh;
        padding-top: 78px;
    }

    .mv:before {
        content: '';
        display: block;
        width: 100%;
        height: 65vh;
        background: url(../images/fv_img_sp.png) no-repeat 36% bottom /cover;
        position: absolute;
        left: 50%;
        transform: translateX(calc(-50%));
        bottom: 0;
    }

    .mv:after {
        content: '';
        display: block;
        height: 100%;
        aspect-ratio: 512 / 1096;
        background: url(../images/smoke_bg.png) no-repeat center center /contain;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .mv__inner {
        padding: 0 23px 0 16px;
    }

    .mv__column {
        display: block;
    }

    .mv__header {
        width: 100%;
        max-width: 351px;
    }

    .mv__info {
        margin-top: 20px;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0;
    }

    .mv__year {
        width: 80px;
    }

    .mv__event {
        margin-top: 20px;
        display: flex;
        justify-content: flex-end;
        gap: 30px;
        padding-bottom: 0;
    }

    .mv__title {
        max-width: 78px;
    }

    .mv__details {
        margin-top: 0;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 17px;
    }

    .mv__meta {
        flex-direction: column;
        text-align: right;
    }

    .mv__meta-item:first-child {
        padding-right: 0;
        border-right: none;
    }

    .mv__meta-label {
        font-size: 10.523px;
    }

    .mv__meta-value {
        margin-top: 12px;
        font-size: 15.785px;
    }

    .mv__meta-item:last-child {
        padding-left: 0;
        margin-top: 20px;
    }

    .mv__date {
        margin-top: 0;
        font-size: 29.849px;
    }

}

@media screen and (max-width: 392px) {
    .mv__year {
        width: calc(80 / 393 * 100vw);
    }

    .mv__event {
        gap: calc(30 / 393 * 100vw);
    }

    .mv__title {
        max-width: calc(78 / 393 * 100vw);
    }

    .mv__date {
        font-size: calc(29.849 / 393 * 100vw);
    }
    
}

@media screen and (max-width: 767px) {
    .sp-mv-content {
        padding: 80px 0;
        background: #111;
    }

    .sp-mv-content__inner {
        padding: 0 20px;
    }

    .sp-mv-content__catch {
        color: #FFF;
        font-size: 24px;
        font-weight: 500;
        line-height: 170%;
    }

    .sp-mv-content__text {
        margin-top: 24px;
        color: #FFF;
        font-size: 16px;
        font-weight: 500;
        line-height: 200%;
    }

    .sp-mv-content__text span {
        font-weight: 700;
    }
}


/*==================================================
# Concept
==================================================*/
.concept {
    padding: 80px 0 100px;
    position: relative;
}

.concept__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.concept__image {
    width: calc(500 / 1200 * 100%);
}

.concept__content {
    width: calc(600 / 1200 * 100%);
}

.concept__text {
    margin-top: 24px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .concept {
        padding: 80px 0;
    }

    .concept__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .concept__image {
        width: 100%;
        order: 2;
    }

    .concept__content {
        width: 100%;
        display: contents;
    }

    .concept__header {
        order: 1;
    }

    .concept__text {
        margin-top: 0;
        order: 3;
    }
}

/*==================================================
# Statement
==================================================*/
.statement {
    padding: 120px 0;
    background: url(../images/statement_bg_pc.png) no-repeat center center /cover;
}

.statement__inner {
    padding: 0 30px;
    max-width: 820px;
    margin: 0 auto;
}

.statement__container {
    border-radius: 4px;
    border: 1px solid #FFF;
    padding: 80px;
}

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

.statement__label {
    color: #fff;
    font-family: "Times New Roman", serif;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: calc(1.44 / 24 * 1em);
    position: relative;
    padding-bottom: 9px;
    align-self: flex-start;
}

.statement__label::before {
    content: '';
    width: 62px;
    height: 1px;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.statement__title {
    margin-top: 28px;
    color: #FFF;
    font-size: clamp(24px, calc(40 / 1440 * 100vw), 40px);
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(2.4 / 40 * 1em);
}

.statement__body {
    margin-top: 24px;
}

.statement__text {
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: clamp(14px, calc(16 / 1440 * 100vw), 16px);
    font-weight: 500;
}

.statement__text + .statement__text {
    margin-top: 27px;
}

@media screen and (max-width: 767px) {
    .statement {
        padding: 80px 0;
        background: url(../images/statement_bg_sp.png) no-repeat center top /cover;
    }

    .statement__inner {
        padding: 0 20px;
    }

    .statement__container {
        padding: 30px 18px 40px;
    }

    .statement__label {
        font-size: 18px;
        padding-bottom: 8px;
    }

    .statement__label::before {
        width: 50px;
    }

    .statement__logo {
        max-width: 123px;
    }

    .statement__title {
        margin-top: 40px;
    }

    .statement__text + .statement__text {
        margin-top: 20px;
    }


}

@media screen and (max-width: 392px) {
    .statement__title {
        font-size: calc(24 / 393 * 100vw);
    }
    
}

/*==================================================
# contents
==================================================*/
.contents {
    padding-top: 120px;
    overflow-x: hidden;
}

.contents__block--01 {
    overflow: hidden;
    padding-bottom: 170px;
}

.contents__sub-title {
    font-family: "Alumni Sans", sans-serif;
    font-size: clamp(160px, calc(203.186 / 1320 * 100vw), 203.186px);
    font-weight: 100;
    line-height: 100%;
    letter-spacing: calc(12.191 / 203.186 * 1em);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 1440px;
}

.contents__container:first-of-type {
    margin-top: -100px;
}

.contents__item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(20px, calc(92 / 1200 * 100vw), 92px);
    margin: 0 calc(50% - 50vw) 0 0;    
}

.contents__item-info {
    max-width: clamp(200px, calc(410 / 900 * 100vw), 422px);
}

.contents__item-title:not(:has(.contents__item-top)) {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.contents__item-top {
    display: flex;
    align-items: flex-end;
    gap: clamp(20px, calc(40 / 1320 * 100vw), 40px);
}

.contents__item-en {
    font-family: "Alumni Sans", sans-serif;
    font-size: clamp(88px, calc(96 / 1320 * 100vw), 96px);
    font-weight: 200;
    line-height: 90%;
    letter-spacing: calc(5.76 / 96 * 1em);
}

.contents__item-ja {
    font-family: "Noto Sans", sans-serif;
    font-size: clamp(14px, calc(18 / 1320 * 100vw), 18px);
    line-height: 170%;
    letter-spacing: calc(1.8 / 18 * 1em);
    padding-bottom: 8px;
}

.contents__item-text {
    margin-top: 24px;
    font-weight: 500;
}

.contents__button, .modal__btn {
    margin-top: 32px;
    border-radius: 4px;
    background: #000;
    padding: 16px clamp(10px, 4vw, 60px);
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: block;
    width: fit-content;
    position: relative;
    text-align: center;
}

.modal__btn {
    padding: 16px clamp(10px, 4vw, 53px);

}


.contents__button-text, .modal__button-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0;
}

.contents__button::before,
.modal__btn::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0s;
    border-radius: 4px;
}

.contents__button:hover::before,
.modal__btn:hover::before {
    opacity: 1;
}

.contents__item-image {
    height: 531px; 
    width: 100%; 
    overflow: hidden; 
    border-radius: 150px 0 0 150px;
}

.contents__item--reverse .contents__item-image {
    border-radius: 0 150px 150px 0;
}

.contents__slider {
    margin-top: 60px;
    overflow: visible;
}

.contents__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: left; 
}

.contents__slide {
    width: 380px;
}

.contents__card-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 0;
}

.contents__card-en {
    position: absolute;
    color: #FFF;
    font-family: "Alumni Sans", sans-serif;
    font-size: 36px;
    font-weight: 100;
    line-height: 100%;
    letter-spacing: calc(2.16 / 36 * 1em);
    top: 27px;
    left: 24px;
}

.contents__card-label {
    position: absolute;
    color: #FFF;
    font-family: "Alumni Sans", sans-serif;
    font-size: 90.082px;
    font-weight: 100;
    line-height: 100%;
    letter-spacing: calc(5.405 / 90.082 * 1em);
    bottom: 13px;
    left: 24px;
}

.contents__card-body {
    margin-top: 24px;
    padding-bottom: 18px;
}

.contents__card-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: calc(1.8 / 18 * 1em);

}

.contents__card-time {
    font-family: "Abel", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: calc(1.2 / 20 * 1em);
    margin-top: 10px;
    display: block;

}

.swiper-pagination.contents__slider-pagination {
    bottom: -40px;
    text-align: right;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-right: 25px;

}

.swiper-pagination.contents__slider-pagination .swiper-pagination-bullet {
    background: #D9D9D9;;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 8px;
}


.swiper-pagination.contents__slider-pagination .swiper-pagination-bullet-active {
    background: #000;
}

.contents__container--pitch {
    margin-top: 92px;
}


.contents__item--reverse {
    flex-direction: row-reverse;
    margin: 0 0 0 calc(50% - 50vw);
}

.contents__item--center {
    align-items: center;
}

.contents__block--02 {
    background: #262626;
    padding: 100px 0 140px;
    color: #fff;
}

.contents__block--02 .contents__sub-title {
    color: #FFF;
}

.contents__container--booth {
    margin-top: 80px;
}

.contents__block--02 .contents__item-en {
    color: #fff;
}

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

    .contents__block--01 {
        margin-top: 40px;
        padding-bottom: 80px;
    }

    .contents__sub-title {
        font-size: 84px;
    }

    .contents__container:first-of-type {
        margin-top: -44px;
        padding-right: 0;
    }

    .contents__item {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
        margin: 0;
    }

    .contents__item-info {
        max-width: 100%;
        padding-right: 20px;
    }

    .contents__item-title {
        width: fit-content;
    }

    .contents__item-top {
        justify-content: space-between;
    }

    .contents__item-en {
        font-size: 64px;
    }

    .contents__item-ja {
        font-size: 12px;
        padding-bottom: 4px;
    }

    .contents__button-wrapper {
        padding-right: 20px;
    }

    .contents__button {
        margin: 76px auto 0;
        padding: 10px;
        width: 100%;
        max-width: 353px;
    }

    .contents__button.pc-only {
        display: none;
    }

    .contents__item--panel .contents__button {
        margin-top: 76px;
    }

    .contents__item-image {
        height: 246px;
        border-radius: 60px 0 0 60px;
    }

    .contents__slider {
        margin-top: 40px;
    }

    .contents__card-body {
        padding-bottom: 0;
    }

    .contents__card-en {
        font-size: 35.455px;
    }

    .contents__card-label {
        font-size: 88.72px;
    }

    .contents__card-title {
        font-size: 17.728px;
    }

    .contents__card-time {
        font-size: 19.697px;
    }

    .contents__container--pitch {
        margin-top: 80px;
        padding-left: 0;
    }

    .contents__item--reverse .contents__item-info {
        padding: 0 0 0 20px;
    }

    .contents__item-title:not(:has(.contents__item-top)) {
        gap: 14px;
    }

    .contents__container--pitch .contents__button {
        margin-top: 40px;
    }

    .contents__block--02 {
        padding: 80px 0;
    }

    .contents__item--reverse .contents__item-image {
        border-radius: 0 60px 60px 0;
    }

    .contents__container--booth {
        padding-left: 0;
    }

}

@media screen and (max-width: 392px) {
    .contents__sub-title {
        font-size: calc(84 / 393 * 100vw);
    }
    
}
/*==================================================
# Timetable
==================================================*/
.timetable {
    padding: 120px 0;
}

.timetable__table-wrapper {
    margin-top: 40px;
    border-top: 1px solid #888888;
}

.timetable__item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 24px 20px;
    border-bottom: 1px solid #888888;
    width: 100%;
}

.timetable__item:nth-child(even) {
    background: #F8F8F8;
}

.timetable__item--clickable {
    position: relative;
    transition: all 0.3s ease 0s;
}

.timetable__item--clickable:hover {
    opacity: 0.8;
}

.timetable__item--clickable::after {
    content: '';
    width: 10px;
    aspect-ratio: 10 / 19;
    background: url(../images/icon_right-arrow.svg) no-repeat center /contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
}

.timetable__item--clickable:hover::after {
    transform: translateY(-50%) translateX(10px);
}

.timetable__time {
    font-family: "Abel", sans-serif;
    font-size: clamp(32px, calc(40 / 1440 * 100vw), 40px);
    font-weight: 400;
    line-height: 100%;
    letter-spacing: calc(2.4 / 40 * 1em);
    width: 130px;
    display: flex;
}

.timetable__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(1.44 / 24 * 1em);
}

.timetable__note {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(0.84 / 14 * 1em);
}

   .modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: calc(100% - 60px);
    max-width: 1220px;
    max-height: calc(100dvh - 100px);
    border-radius: 4px;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal__content {
    display: flex;
    gap: calc(80 / 1160 * 100%);
    flex: 1;
    min-height: 0;
}

.modal__sidebar {
    padding: 20px 0 20px 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal__sidebar-group {
    display: flex;
}

.modal__sidebar-en {
    font-family: "Alumni Sans", sans-serif;
    font-size: 36px;
    font-weight: 200;
    line-height: 90%;
    letter-spacing: calc(2.16 / 36 * 1em);
    writing-mode: vertical-rl;
}

.modal__sidebar-title {
    font-family: "Alumni Sans", sans-serif;
    font-size: 100px;
    font-weight: 200;
    line-height: 90%;
    letter-spacing: calc(6 / 100 * 1em);
    writing-mode: vertical-rl;
}

.modal__sidebar-group:nth-child(2) .modal__sidebar-en {
    text-align: right;
}

.modal__main {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 20px 20px 0;
}

.modal__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: calc(1.44 / 24 * 1em);
    padding-bottom: 24px;
    position: relative;
}

.modal__title::after {
    content: '';
    width: 72px;
    height: 1px;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.modal__body {
    margin-top: 24px;
}

.modal__desc {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: calc(0.96 / 16 * 1em);
}

.modal__speakers {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;

}

.modal__speaker {
    background: #fff;

}

.modal__speaker-thumb img {
    border-radius: 4px 4px 0 0;
    aspect-ratio: 220 / 265;
    object-fit: cover;

}

.modal__speaker-info {
    padding: 16px 16px 22px;
    border-radius: 0 0 4px 4px;
background: #FFF;

}

.modal__speaker-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(1.44 / 24 * 1em);
}

.modal__speaker-company {
    margin-top: 8px;
    font-family: "Noto Sans JP";
    font-size: 13px;
    line-height: 170%;

}

.modal__speaker-role {
    font-family: "Noto Sans JP";
    font-size: 13px;
    line-height: 170%;

}

.modal__footer {
    margin-top: 24px;
}


.modal__close-btn {
    cursor: pointer;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: calc(0.96 / 16 * 1em);
    margin-top: 10px;
    display: block;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .timetable {
        padding: 80px 0;
    }

    .timetable__inner {
        padding-right: 0;
    }

    .timetable__item {
        padding: 24px 30px 24px 6px;
        gap: 0;
    }

    .timetable__item--clickable::after {
        width: 10px;
    }

    .timetable__time {
        font-size: 20px;
        width: 64px;
    }

    .timetable__title {
        font-size: 16px;
        transform: translateY(-2px);
        letter-spacing: 0;
        text-align: left;
        line-height: 140%;
    }

    .timetable__note {
        font-size: 12px;
    }

    .modal__dialog {
        width: calc(100% - 52px);
    }

    .modal__content {
        padding: 20px 14px 9px;
        flex-direction: column;
        gap: 24px;
        overflow-y: auto;
        padding-bottom: 75px;
    }

    .modal__sidebar {
        flex-direction: column-reverse;
        gap: 24px;
        padding: 0;
    }

    .modal__sidebar-group:first-of-type {
        flex-direction: column-reverse;
    }

    .modal__sidebar-group:nth-child(2) {
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 6px;
    }

    .modal__sidebar-title {
        writing-mode: horizontal-tb;
    }

    .modal__sidebar-en {
        writing-mode: horizontal-tb;
    }

    .modal__sidebar-group:nth-child(2) .modal__sidebar-en {
        font-size: 16px;
    }

    .modal__main {
        overflow-y: visible;
        padding: 0;
    }

    .modal__title {
        font-size: 18px;
    }

    .modal__speakers {
        margin-top: 40px;
        gap: 20px;
        grid-template-columns: repeat(auto-fill, 220px);
        justify-content: center;
    }

    .modal__footer {
        margin-top: 40px;
    }

    .modal__btn {
        font-size: 14px;
        padding: 10px;
        width: 100%;
        max-width: 318px;
        margin: 0 auto;
    }

    .modal__close-btn {
        border-top: 1px solid #000;
        padding: 8px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #fff;
    }
}

@media screen and (max-width: 392px) {
    .modal__sidebar-title {
        font-size: calc(100 / 393 * 100vw);
    }
    
}

.speakers {
    padding: 120px 0;
    background: #262626 url(../images/speakers_bg.png) no-repeat center center / cover;
    position: relative;
}

.speakers:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat, #262626;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.speakers__header-area {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.speakers__bg-text {
    position: absolute;
    right: max(0px, calc(50% - 720px));
    top: 66px;
    text-align: right;
    font-family: "Alumni Sans", sans-serif;
    font-size: clamp(160px, calc(203.186 / 1320 * 100vw), 203.186px);
    font-weight: 100;
    line-height: 100%;
    letter-spacing: calc(12.191 / 203.186 * 1em);
}

.speakers__inner {
    margin-top: 87px;
}

.speakers__block + .speakers__block {
    margin-top: 100px;
}

.speakers__title-top {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.speakers__title-en {
    color: #fff;
    font-family: "Alumni Sans", sans-serif;
    font-size: clamp(88px, calc(96 / 1320 * 100vw), 96px);
    font-weight: 200;
    line-height: 90%;
    letter-spacing: calc(5.76 / 96 * 1em);
}

.speakers__title-ja {
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-size: clamp(14px, calc(18 / 1320 * 100vw), 18px);
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(1.8 / 18 * 1em);
    padding-bottom: 14px;
}

.speakers__list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.speakers__card {
    border-radius: 4px;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease 0s;
}

.speakers__card:hover {
    opacity: 0.8;
}

.speakers__card-thumb img {
    border-radius: 4px 4px 0 0;
    aspect-ratio: 220 / 265;
    object-fit: cover;
}

.speakers__card-body {
    padding: 16px;
    min-height: 140px;
}

.speakers__card-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(1.44 / 24 * 1em);
    text-align: left;
}

.speakers__card-company {
    margin-top: 8px;
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-weight: 400;
    line-height: 170%;
    text-align: left;
}

.speaker-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speaker-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.speaker-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.speaker-modal__dialog {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 0 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90dvh;
    overflow-y: auto;
    border-radius: 4px;
}


.speaker-modal__content {
    padding: 20px 0;
    display: flex;
    gap: calc(36 / 1160 * 100%);
}

.speaker-modal__thumb {
    width: 300px;
    flex-shrink: 0;
}

.speaker-modal__thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.speaker-modal__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.speaker-modal__name {
    font-family: "Zen Old Mincho", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(2.16 / 36 * 1em);
}

.speaker-modal__company {
    margin-top: 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    line-height: 170%;
    padding-bottom: 24px;
    position: relative;
}

.speaker-modal__company::after {
    content: '';
    width: 72px;
    height: 1px;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.speaker-modal__desc {
    margin: 24px 0;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 170%;
    letter-spacing: calc(0.96 / 16 * 1em);
}

.speaker-modal__close {
    cursor: pointer;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: calc(0.96 / 24 * 1em);
    display: block;
    margin-left: auto;
    margin-top: auto;
}

@media screen and (max-width: 767px) {
    .speakers {
        padding: 80px 0;
        background: url(../images/speakers_bg_sp.png) no-repeat center top /cover;
    }

    .speakers__header-area {
        flex-direction: column;
        gap: 40px;
        align-items: normal;
    }

    .speakers__bg-text {
        position: static;
        right: auto;
        top: auto;
        font-size: 88px;
    }

    .speakers__inner {
        margin-top: 40px;
    }

    .speakers__block + .speakers__block {
        margin-top: 60px;
    }

    .speakers__title {
        width: fit-content;
    }

    .speakers__title-top {
        justify-content: space-between;
        gap: 10px;
    }

    .speakers__title-en {
        font-size: 64px;
    }

    .speakers__title-ja {
        font-size: 12px;
        padding-bottom: 6px;
    }

    .speakers__list {
        margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 11px;
    }

    .speakers__card-body {
        padding: 12px;
        min-height: 108px;
    }

    .speakers__card-name {
        font-size: 18.676px;
    }

    .speakers__card-company {
        font-size: 10.116px;
    }

    .speaker-modal__dialog {
        overflow: hidden;
        display: flex;
        padding: 0;
    }

    .speaker-modal__content {
        overflow-y: auto;
        flex-direction: column;
        gap: 34px;
        padding-bottom: 60px;
    }

    .speaker-modal__thumb {
        width: 220px;
        margin: 0 auto;
    }

    .speaker-modal__body {
        padding: 0 20px;
    }

    .speaker-modal__name {
        font-size: 32px;
    }

    .speaker-modal__company {
        font-size: 16px;
    }

    .speaker-modal__desc {
        margin-bottom: 0;
    }

    .speaker-modal__close {
        margin-top: 0;
        width: 100%;
        border-top: 1px solid #000;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #fff;
        padding: 8px;
    }
}

@media screen and (max-width: 430px) {
    .speakers__list {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

.for-you {
    padding: 120px 0;
    background: url(../images/for-you_bg_pc.png) no-repeat center center /cover;
}

.for-you__text {
    margin-top: 24px;
    color: #FFF;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(0.96 / 16 * 1em);
    max-width: 570px;

}

.for-you__diagram {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.for-you__circle {
    position: relative;
    width: clamp(340px, calc(492 / 1440 * 100vw), 492px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    padding-bottom: 44px;

}

.for-you__circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px; 
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.for-you__circle--tokyo {
    z-index: 1;
}

.for-you__circle--tokyo::before {
    background: linear-gradient(187deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
}

.for-you__circle--local {
    margin-left: -55px;
    z-index: 2;
}

.for-you__circle--local::before {
    background: linear-gradient(7deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
}

.for-you__circle-top {
    color: #FFF;
    text-align: center;
    font-size: clamp(20px, calc(30 / 1440 * 100vw), 30px);
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(1.8 / 30 * 1em);
}

.for-you__circle-line {
    margin: 35px auto 0;
    width: 70px;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    height: 1px;

}

.for-you__circle-bottom {
    margin-top: 30px;
    color: #FFF;
    text-align: center;
    font-size: clamp(24px, calc(36 / 1440 * 100vw), 36px);
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(2.16 / 36 * 1em);
}

@media screen and (max-width: 767px) {
    .for-you {
        padding: 0 0 80px;
        background: #111;
    }

    .for-you__inner {
        padding: 0;
    }

    .for-you__header {
        padding: 273px 20px 42px;
        background: url(../images/for-you_bg_sp.png) no-repeat center top /cover;
    }

    .for-you__content {
        padding: 0 20px;
    }

    .for-you__text {
        margin-top: 42px;
        max-width: 100%;
    }

    .for-you__diagram {
        margin-top: 40px;
        flex-direction: column;
    }

    .for-you__circle {
        width: 100%;
        max-width: 330px;
        padding-bottom: 30px;
    }

    .for-you__circle-top {
        font-size: 20.226px;
    }



    .for-you__circle--local {
        margin-left: 0;
        margin-top: -20px;
    }

    .for-you__circle-line {
        margin-top: 24px;
        width: 47px;
    }

    .for-you__circle-bottom {
        margin-top: 20px;
        font-size: 24.271px;
    }
}

.information {
    padding: 120px 0;
    background: #262626;
    color: #fff;
    overflow-x: hidden;
}

.information__column {
    margin: 0 calc(50% - 50vw) 0 0;
    display: flex;
    gap: calc(92 / 1318 * 100%);
    align-items: center;
}

.information__content {
    width: calc(800 / 1318 * 100%);
}

.information__header-area {
    display: contents;
}

.information__table {
    margin-top: 40px;
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #444444;
}

.information__row {
    border-bottom: 1px solid #444444;
    display: flex;
    align-items: center;
    gap: clamp(20px, calc(40 / 1440 * 100vw), 40px);
    padding: 24px 20px;
}

.information__th {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
    line-height: 100%;
    letter-spacing: calc(1.44 / 24 * 1em);
    width: clamp(80px, calc(130 / 1440 * 100vw), 130px);
    flex-shrink: 0;
    text-align: left;
}

.information__td {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(1.44 / 24 * 1em);
    text-align: left;
}

.information__link {
    padding-right: 43px;
    background: url(../images/icon_external-link.svg) no-repeat right center /contain;
    background-size: clamp(16px, calc(24 / 1440 * 100vw), 24px);
    display: block;
    width: fit-content;
    transition: all 0.3s ease 0s;
}

.information__link:hover {
    opacity: 0.8;
}

.information__btn-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.information__btn {
    background: #262626;
    border-radius: 4px;
    padding: 20px 60px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.information__btn-text {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.information__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    border-radius: 4px;
    z-index: 0;
    transition: all 0.3s ease 0s;
}

.information__btn:hover::before {
    opacity: 0.6;
}

.information__image {
    width: calc(420 / 1318 * 100%);
}

.information__image img {
    border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 1023px) {
    .information__row {
        gap: 10px;
    }

    .information__content {
        width: calc(840 / 1318 * 100%);

    }
}

@media screen and (max-width: 767px) {
    .information {
        padding: 80px 0;
    }

    .information__inner {
        padding-right: 0;
    }

    .information__column {
        margin: 0;
        display: block;
    }

    .information__content {
        width: 100%;
    }

    .information__header-area {
        display: flex;
        gap: 42px;
    }

    .information__header {
        flex-shrink: 0;
    }

    .information__image {
        flex-grow: 1;
    }

    .information__row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 10px;
    }

    .information__th {
        font-size: 13px;
        width: 100%;
    }

    .information__td {
        font-size: 16px;
    }

    .information__link {
        background-size: 17px;
        padding-right: 41px;

    }

    .information__btn-wrapper {
        margin-top: 43px;
        justify-content: center;
    }

    .information__btn {
        padding: 10px 42px;
        width: 200px;
        display: flex;
        justify-content: center;
    }
}

.footer {
    background: #FAFAFA;
    padding: 80px 0;
}

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

.footer__logo-area {
    max-width: 250px;
    flex-shrink: 0;
}

.footer__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.footer__nav {
    display: flex;
}


.footer__nav-link {
    padding: 4px 20px;
    display: block;
    width: fit-content;
    font-family: "Alumni Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: calc(1.08 / 18 * 1em);
    transition: all 0.3s ease 0s;
}

.footer__nav-item:not(:last-child) {
    border-right: 1px solid #000;
}

.footer__nav-item:last-child .footer__nav-link {
    padding-right: 0;
}

.footer__nav-link:hover {
    opacity: 0.8;
}

.footer__copyright {
    margin-top: 24px;
    text-align: right;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: calc(1.08 / 18 * 1em);
}

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

    }
    .footer__inner {
        flex-direction: column;
        gap: 60px;

    }

    .footer__nav {
        justify-content: flex-end;

    }

    .footer__nav-link {
        font-size: 14px;
    }

    .footer__copyright {
        margin-top: 28px;

    }
}


@media screen and (max-width: 767px) {
    .sp-floating-btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 98;
    transition: all 0.3s ease 0s;
}

.sp-floating-btn.is-hidden {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, translateY(20px));
        pointer-events: none;
    }

.sp-floating-btn__link {
    min-width: 200px;
    height: 46px;
    text-align: center;
    background: linear-gradient(97deg, #FE4D4B -6.41%, #F2197C 13.85%, #A648C5 34.11%, #4A60FF 50.58%, #1E92EA 67.62%, #5AD690 94.9%);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
        margin: 0 auto;
    padding: 14px;
}

.sp-floating-btn__text {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
}


}


