@charset "UTF-8";

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
.mainimg {
    position: relative;
    margin-top: 97px;
}

.bgimg img {
    width: 100%;
    object-fit: cover;
    max-height: calc(100vh - 85px);
}

.text_img {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.text_img img {
    margin-top: -20px;
    margin-left: 5px;
}

.sp_only {
    display: none !important;
}

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

@media screen and (max-width: 1000px) {
    .text_img.maxWid.mbPad img {
        width: 75%;
    }
}

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

    .mainimg .text_img img {
        width: 100%;
        max-width: 65%;
    }

    .mainimg {
        margin-top: 72px;
    }

    br.pc_tab {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .mainimg {
        margin-top: 58px;
    }

    .sp_only {
        display: block !important;
    }

    .text_img {
        top: 0%;
    }

    .text_img.maxWid.mbPad img {
        width: 100%;
        max-width: 100%;
    }

    .mainimg .text_img img {
        width: 100%;
        max-width: 90%;
    }
}

.shine {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.6) 52%, transparent 100%);
    transform: skewX(-25deg) rotate(-45deg);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.shine.animate {
    animation: shine 1s forwards;
}

.shine-2.animate {
    animation-delay: 0.15s;
    /* 2本目は少し遅れてスタート */
}

@keyframes shine {
    0% {
        transform: translate(0, 0) skewX(-25deg) rotate(-45deg);
        opacity: 1;
    }

    100% {
        transform: translate(-100%, -100%) skewX(-25deg) rotate(-45deg);
        opacity: 0;
    }
}



/*-------------------------------------------*/
/*フローティングバナー*/
/*-------------------------------------------*/
/* ===== FVバナー：mainimg内に固定表示 ===== */
.fv_bnr {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    width: ;
}

/* ===== フローティングバナー：初期非表示、スクロールで出現 ===== */
.floating_bnr {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: ;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 7px;
}

/* 表示制御用 */
.floating_bnr.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* footerに差し掛かったら非表示 */
.floating_bnr.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ===== レスポンシブ調整 ===== */

/* タブレット（768px以下） */
@media screen and (max-width: 768px) {
    .fv_bnr {
        right: 20px;
        bottom: 20px;
        width: 200px;
    }

    .floating_bnr {
        right: 20px;
        bottom: 20px;
        width: 200px;
    }
}

/* スマホ（480px以下） */
@media screen and (max-width: 480px) {
    .fv_bnr {
        right: 10px;
        bottom: 15px;
        width: 170px;
    }

    .floating_bnr {
        right: 10px;
        bottom: 15px;
        width: 170px;
    }
}

/*ホバー*/
.fv_bnr a,
.floating_bnr a {
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 1;
}

.fv_bnr a:hover,
.floating_bnr a:hover {
    transform: scale(1.05);
    /* 5%拡大 */
    opacity: 1;
}






/*-------------------------------------------*/
/*About*/
/*-------------------------------------------*/
section.about {
    background-color: #f7f7f7;
    padding-top: 178px;
    padding-bottom: 168px;
}

.about .heading {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 85px;
}

.about .heading span {
    margin-top: 27px;
    display: flex;
    justify-content: center;
}

.about .text_block_heading span {
    display: block;
    margin-bottom: 12px;
}

.about .text_block_heading h4 {
    font-size: 2.9rem;
    font-feature-settings: "palt";
}

.about .text_block_heading::after {
    display: block;
    content: "";
    background-color: #b1409b;
    width: 51px;
    height: 0.5px;
    margin-top: 22px;
    margin-bottom: 19px;
}


.about .text_block p {
    /*font-feature-settings: "palt";*/
    font-size: 1.5rem;
    line-height: 1.7;
}



section.about .flex {
    flex-direction: row-reverse;

}

section.about .flex .image_block {
    width: 50%;
}

section.about .flex .text_wrap {
    width: 50%;
}

section.about .flex .text_wrap .text_block {
    width: calc(100% - 61px);
}

section.about .text_block p {
    width: auto;
    text-align: left;
}

@media screen and (max-width: 768px) {
    section.about .flex {
        flex-direction: column-reverse;
    }

    .about .heading {
        margin-bottom: 40px;
    }

    section.about .flex .text_wrap {
        width: 100%;
        margin-bottom: 40px;
    }

    section.about .flex .text_wrap .text_block {
        width: 100%;
    }

    section.about .flex .image_block {
        width: 100%;
    }

    section.about .flex .image_block img {
        width: 100%;
    }

    .about .text_block_heading h4 {
        font-size: 2.4rem;
    }

    .text_block_heading span img {
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .about .text_block p {
        font-size: 1.3rem;
    }

    .about .text_block_heading h4 {
        font-size: 2.0rem;
    }

    .text_block_heading span img {
        height: 35px;
    }

    section.about {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    section.about .heading span {
        margin-top: 10px;
    }
}

@media screen and (max-width: 350px) {
    .about .sp_only {
        display: none !important;
    }
}

/*-------------------------------------------*/
/*VEO*/
/*-------------------------------------------*/
section.veo {
    margin-top: 230px;
    margin-bottom: 75px;
}

section.veo .maxWid {
    max-width: 800px;
}


@media screen and (max-width: 768px) {
    section.veo {
        margin-top: 100px;
        margin-bottom: 0px;
    }
}

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

/*-------------------------------------------*/
/*CONTENTS*/
/*-------------------------------------------*/
section.contents {
    padding-top: 146px;
    padding-bottom: 125px;
}

section.contents .maxWid {
    max-width: 800px;
}

.contents .heading {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    margin-left: 30px;
}


.contents .heading span {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/*contents_box*/
.contents_box.flex {
    flex-wrap: wrap;
    gap: 6px;
}

.contents_item {
    width: calc(50% - 4px);
}

.contents_wrap {
    position: relative;
}

.contents_detail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    width: 100%;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 18px;
}

.contents_detail.flex {
    justify-content: space-between;
    align-items: baseline;
}

.contents_name_jap {
    padding-top: 10px;
}

.contents_arrow {
    transition: transform 0.3s ease;
}

.contents_item a:hover .contents_arrow {
    transform: translateX(5px);
    /* 右に5px動かす */
}

.contents_item a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .contents .heading {
        margin-left: 0px;
    }
}

@media screen and (max-width: 480px) {
    .contents_item {
        width: 100%;
    }

    .contents_wrap img {
        width: 100%;
    }

    .contents_wrap .contents_name img {
        width: auto;
    }

    section.contents {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .contents .heading span {
        margin-top: 10px;
    }

    .contents_name_jap {
        padding-top: 5px;
    }

    .contents_name_eng {
        height: 20px
    }
}




/*-------------------------------------------*/
/*Reason bnr*/
/*-------------------------------------------*/
section.bnr .maxWid {
    max-width: 800px;
}

/*-------------------------------------------*/
/*UNIFORM*/
/*-------------------------------------------*/
section.uniform {
    background-color: #f7f7f7;
    padding-top: 160px;
    padding-bottom: 160px;
    margin-top: 160px;
    margin-bottom: 162px;
}

section.uniform .maxWid {
    max-width: 800px;
}

.uniform .heading {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 44px;
}


.uniform .heading span {
    margin-top: 27px;
    display: flex;
    justify-content: center;
}

.uniform .flex {
    justify-content: space-between;
}

.uniform .intro_text {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 88px;
}

section.uniform .text_block p {
    width: auto;
    text-align: left;
}

section.uniform .image_block {
    width: 50%;
}

section.uniform .text_wrap {
    width: calc(50% - 50px)
}

section.uniform .text_wrap .text_block h4 {
    font-size: 2.4rem;
}

section.uniform .text_wrap .text_block_heading {
    margin-bottom: 4px;
}

.uniform .text_block_heading span {
    display: block;
    margin-bottom: 15px;
}

.uniform .text_block p {
    /*font-feature-settings: "palt";*/
    font-size: 1.5rem;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .uniform .intro_text {
        width: 100%;
        text-align: left;
        margin-bottom: 100px;
    }

    .uniform .flex {
        flex-direction: column-reverse;
    }

    section.uniform .image_block {
        width: 100%;
    }

    section.uniform .text_wrap {
        width: 100%;
        margin-bottom: 40px;
    }

    section.uniform .image_block img {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    section.uniform .text_wrap .text_block h4 {
        font-size: 2.0rem;
    }

    .uniform .text_block p {
        font-size: 1.3rem;
    }

    .uniform .intro_text {
        margin-bottom: 60px;
    }

    .uniform .heading span {
        margin-top: 10px;
    }

    section.uniform {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: 80px;
        margin-bottom: 0px;
    }
}

/*-------------------------------------------*/
/*SPONSORS*/
/*-------------------------------------------*/
section.sponsors {
    padding-top: 66px;
    padding-bottom: 63px;
    background-image: url(img/sponsors_bgcolor.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.sponsors .heading {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 66px;
    margin-left: -31px;
}

.sponsors .heading img {
    display: inline;
}

.sponsors .heading span {
    margin-top: 20px;
    display: block;
}

.sponsors_flex {
    flex-wrap: wrap;
    justify-content: space-between;
}

.sponsors_flex::after {
    content: "";
    display: block;
    width: 322px;
    height: 0;
}


.sponsors_item {
    background-color: #fff;
    border-radius: 16.6px;
    display: flex;
    justify-content: center;
    /* width: calc(33% - 10px); */
    max-width: initial;
    /* height: 91px; */
    align-items: center;
    padding: 10px 20px;
    /* margin-bottom: 25px; */
    min-height: 91px;
    max-height: 91px;
}

/*.sponsors_item a {
    height: 91px;
padding: 10px 20px;
}*/
.sponsors_flex a {
    width: calc(33% - 10px);
    margin-bottom: 22px;

}

.sponsors_flex a:hover {
    opacity: 1;
}

a .sponsors_item img {
    transition: 0.5s;
}

a:hover .sponsors_item img {
    transform: scale(0.9);
    /* 画像を少し小さくする */
}

@media screen and (max-width: 768px) {
    .sponsors .heading h3 {
        font-size: 3.2rem;
        font-feature-settings: "palt";
    }

    .sponsors .heading {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: 40px;
        margin-left: 0px;
    }

    /*.sponsors_item {
        width: calc(50% - 10px);
        max-width: initial;
    }*/

    .sponsors_flex a {
        width: calc(50% - 10px);
        margin-bottom: 20px;

    }

}

@media screen and (max-width: 480px) {
    .sponsors .heading h3 {
        font-size: 2.4rem;
    }

    .sponsors_item img {
        max-height: 50px;
    }

    .sponsors_item {
        min-height: 60px;
        max-height: 60px;
    }
}

/*-------------------------------------------*/
/*サプライヤー*/
/*-------------------------------------------*/
.sns_block {
    padding-bottom: 160px;
}

section.supplier {
    padding-top: 72px;
    padding-bottom: 142px;
    background-color: #f7f7f7;
}

.supplier .heading {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 66px;
    margin-left: -31px;
}

.supplier .heading img {
    display: inline;
}

.supplier .heading span {
    margin-top: 20px;
    display: block;
}

.supplier_flex {
    flex-wrap: wrap;
    justify-content: center;

}


.supplier_item {
    background-color: #fff;
    border-radius: 16.6px;
    display: flex;
    justify-content: center;
    /* width: calc(33% - 10px); */
    max-width: initial;
    /* height: 91px; */
    align-items: center;
    padding: 10px 20px;
    /* margin-bottom: 25px; */
    min-height: 91px;
    max-height: 91px;
}

.supplier_flex a {
    width: calc(33% - 10px);
    margin-bottom: 22px;

}

.supplier_flex a:hover {
    opacity: 1;
}

a .supplier_item img {
    transition: 0.5s;
}

a:hover .supplier_item img {
    transform: scale(0.9);
    /* 画像を少し小さくする */
}

@media screen and (max-width: 768px) {
    .supplier .heading h3 {
        font-size: 3.2rem;
        font-feature-settings: "palt";
    }

    .supplier .heading {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: 40px;
        margin-left: 0px;
    }


    .supplier_flex a {
        width: calc(50% - 10px);
        margin-bottom: 20px;

    }

}

@media screen and (max-width: 480px) {
    .supplier .heading h3 {
        font-size: 2.4rem;
    }

    .supplier_item img {
        max-height: 50px;
    }

    .supplier_item {
        min-height: 60px;
        max-height: 60px;
    }

    section.supplier {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .supplier .heading span img {
        height: auto;
    }
}


/*-------------------------------------------*/
/*スライダーのCSS*/
/*-------------------------------------------*/
/* 変更点：ズーム継続は廃止、切り替え時のみアニメ */

.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.slide.active img.animate-scale {
    animation: scaleDown 1s ease forwards;
}

@keyframes scaleDown {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* キラッと光が右下→左上 */
.shine {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    transform: skewX(-25deg) rotate(-45deg);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.shine.animate {
    animation: shine 0.4s forwards;
}

@keyframes shine {
    0% {
        transform: translate(0, 0) skewX(-25deg) rotate(-45deg);
        opacity: 1;
    }

    100% {
        transform: translate(-100%, -100%) skewX(-25deg) rotate(-45deg);
        opacity: 0;
    }
}

@media screen and (min-width: 1201px) {
    .slider {
        height: 800px;
    }
}

@media screen and (max-width: 480px) {
    .slider {
        height: 490px;
    }
}






/*-------------------------------------------*/
/*ローディングアニメーションのCSS*/
/*-------------------------------------------*/
/* ローディング画面全体 */
.loader_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c80074;
    z-index: 9999;
    display: flex;
    /* ← 最初から表示させる */
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease;
}

/* ロゴアニメーションはそのままでOK */
.loader_overlay.fade_out {
    opacity: 0;
    pointer-events: none;
}



.loader_logo {
    opacity: 0;
    transform: translateY(40px);
    animation: logo_fade_up 1s ease-out forwards;
    animation-delay: 0.7s;
    /* ロゴの出現に少し間を置く */
}

@keyframes logo_fade_up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader_overlay.fade_out {
    opacity: 0;
    pointer-events: none;
}


/*-------------------------------------------*/
/*スマホ調整用*/
/*-------------------------------------------*/
@media screen and (max-width: 480px) {
    section .heading img {
        height: 40px;
    }

    section .heading span img {
        height: 15px;
    }
}


/*-------------------------------------------*/
/*その他・あとで整理*/
/*-------------------------------------------*/
.sns_block .heading span {
    margin-top: 10px;
}

.sns_block {
    padding-bottom: 80px;
}





/*-------------------------------------------*/
/*AEDバナーのCSS*/
/*-------------------------------------------*/
.aed_bnr {
    position: absolute;
    bottom: 20px;
    left: 0px;
    z-index: 5;
    width: ;
}

.aed_bnr a {
    display: block;


}

.aed_bnr a:hover {
    opacity: 1;
    transform: scale(1.04);
}

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

    .aed_bnr {
        width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .aed_bnr {
        width: 170px;
        bottom: 15px;
    }


}

@media screen and (max-width: 350px) {
    .aed_bnr {
        width: 135px;

    }
}