@charset "utf-8";

/* ===========================================================

	Title: top.css
	Created: 2022-5-17

=========================================================== */
/*

	header
    hamburger
    main-visual
    data
    portfolio-slider
    banner_stock
    banner-group
    banner_special


=========================================================== */
/* ===========================================================

	header

=========================================================== */
/* global-header__logo
----------------------------------------------------------- */
body.js-top-header .global-header__logo-color {
    fill: rgba(255, 255, 255, 0);
}

/* ===========================================================

	header

=========================================================== */
.global-header {}

.js--over .global-header {}

main.contents-style {
    padding: 0;
    margin: 0;
    text-align: center;
}

article {
    display: block;
}

/* ===========================================================

	top-main-visual

=========================================================== */
.top-main-visual {
    position: relative;
    height: 100vh;
    z-index: 0;
} 

.top-main-visual__video-area{
    position: fixed;
    z-index: -1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

.top-main-visual__video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
.top-main-visual__title {
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color:#fff;
    text-shadow: 0 0 15px #666;
}

/* ===========================================================

	main

=========================================================== */
main.contents-style {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    background-color: #fff;
    z-index: 1;
    position: relative;
}

.contents-style h2 {
    position: relative;
    font-weight: 400;
    letter-spacing: 0.10em;
    line-height: 1.2;
    font-size: 1.6rem;
    margin: 0 0 64px;
    padding: 0;
    border: none;
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 4px;
}
.contents-style h2 span {
}
.contents-style h2 strong {
    font-family: 'Lato', sans-serif;
    font-size: 7.2rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}
.contents-style h2.js-scrollin strong,
.contents-style h2.js-scrollin span {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    animation: title--text 1.25s cubic-bezier(.75, 0, .175, 1) 0s 1 normal forwards;
}
.contents-style h2.js-scrollin strong::after,
.contents-style h2.js-scrollin span::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    background-color: #1B58A7;
    animation: title--effect 1.25s cubic-bezier(.75, 0, .175, 1) 0s 1 normal both;
}
@keyframes title--text {
    0% {
        color: rgba(27, 88, 167, 0.0);
    }
    51% {
        color: rgba(27, 88, 167, 0.0);
    }
    100% {
        color: rgba(27, 88, 167, 1.0);
    }
}
@keyframes title--effect {
    0% {
        width: 0%;
        left: 0%;
    }
    50% {
        width: 100%;
        left: 0%;
    }
    100% {
        left: 100%;
    }
}
.contents-style h2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 389px;
    height: 158px;
    background: url(../img/top/title_bg.svg) 50% 50% no-repeat;
    opacity: 0;
}
.contents-style h2.js-scrollin::after {
    animation: title--after 2.0s cubic-bezier(.75, 0, .175, 1) 0s 1 normal both;
}
@keyframes title--after {
    0% {
        transform: translate(-25%,-40%) scale(0.6);
        opacity: 0;
    }
    100% {
        transform: translate(-25%,-40%) scale(0.7);
        opacity: 1;
    }
}
@media (min-width: 768px) {
    .contents-style h2 {
        flex-direction: row;
        gap: 16px;
    }
}
@media (min-width: 1200px) {
    @keyframes title--after {
        0% {
            transform: translate(-30%,-40%) scale(0.9);
            opacity: 0;
        }
        100% {
            transform: translate(-30%,-40%) scale(1);
            opacity: 1;
        }
    }
}

/* ===========================================================

	top-section

=========================================================== */
.top-section {
    padding: 192px 32px;
}
@media (min-width: 768px) {
    .top-section {
        padding: 192px 64px;
    }
}
@media (min-width: 1200px) {
}

.top-section__inner {
    max-width: 1086px;
    margin: 0 auto;
    text-align: left;
}

/* ===========================================================

	section-break

=========================================================== */
.section-break--01 .section-break__image::after {
    background-image: url(../img/top/bg--01.jpg);
}
.section-break--02 .section-break__image::after {
    background-image: url(../img/top/bg--02.jpg);
}
.section-break {
    width: 100%;
    height: 384px;
    position: relative;
}
.section-break__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(auto, auto, auto, auto);
}
.section-break__image::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* ===========================================================

	top-section--about

=========================================================== */
.top-section--about .top-section__inner {
}
.about-read {
}
.about-read p {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.4;
}
.about-read p br {
    display: none;
}
.about-text {
    padding: 32px 0;
}
.about-text p {
    line-height: 1.8;
}
.about-image {
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .top-section--about .top-section__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 32px;
    }
    .about-image {
        width: 320px;
    }
}
@media (min-width: 1200px) {
    .top-section--about .top-section__inner {
        gap: 64px;
    }
    .about-read p br {
        display: block;
    }
    .about-image {
        width: 558px;
    }
}
/* ===========================================================

	top-section--festival

=========================================================== */
.top-section--festival {
    background-color: #F0F8FA;
}
.festival-link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.festival-link-list li {
    max-width: 526px;
    margin: 0;
}
.festival-link-list li a {
    background-color: #fff;
    display: block;
}
.festival-link-list li a:hover {
    background-color: #1B58A7;
    color: #fff;
    text-decoration: none;
    transform: scale(1.02, 1.02);
}

.festival-link-list__text {
    min-height: 64px;
    display: flex;
    align-items: center;
    background: url(../img/global/arrow__regular--black.svg) 98% 50% no-repeat;
    padding: 8px 24px;
}
@media (min-width: 768px) {
}
@media (min-width: 1200px) {
}

/* ===========================================================

	top-section--news

=========================================================== */
.top-section--news {}