:root {
    --base: #EFEFEF;
    --bk: #151414;
    --light_gray: #bfbfbf;
    --gray: #eaeaea;
    --accent: #EDB534;
    --matred: #C92D30;
    --red: #AC2324;
    --yellow: #E0B04E;
    --matyellow: #C69941;
    --white: #F8FFFE;
    --green: #055234;
    --matgreen: #026337;
    --jp-font: "Noto Sans JP", sans-serif;
    --jp-font-weight-Thin: 100;
    --jp-font-weight-ExtraLight: 200;
    --jp-font-weight-Light: 300;
    --jp-font-weight-Regular: 400;
    --jp-font-weight-Medium: 500;
    --jp-font-weight-SemiBold: 600;
    --jp-font-weight-Bold: 700;
    --jp-font-weight-ExtraBold: 800;
    --jp-font-weight-Black: 900;
    --en-font: "Roboto", sans-serif;
    --en-font-weight-Thin: 100;
    --en-font-weight-ExtraLight: 200;
    --en-font-weight-Light: 300;
    --en-font-weight-Regular: 400;
    --en-font-weight-Medium: 500;
    --en-font-weight-SemiBold: 600;
    --en-font-weight-Bold: 700;
    --en-font-weight-ExtraBold: 800;
    --en-font-weight-Black: 900;
}

html {
    font-size: 62.5%;
    width: 100%;
    box-sizing: border-box;
    color: var(--bk);
    scroll-behavior: smooth;
}

body {
    min-width: 100%;
    font-family: YakuHanJP, 'Roboto', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 1;
    text-align: center;
    position: relative;
    background-color: var(--base);
    background-size: 32px 32px;
    overflow-x: hidden !important;
    z-index: 0;
}

figure {
    line-height: 0;
}

p {
    line-height: 1.75;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

picture {
    display: block;
}

.en-ttl {
    position: relative;
    padding: 0 0 20px 0;
    font-size: 4.8rem;
    font-family: var(--en-font);
    font-weight: var(--en-font-weight-Black);
    display: inline-block;
    opacity: 0;
}

.en-ttl::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media (max-width:1040px) {
    .en-ttl {
        font-size: 3.2rem;
    }
}


@media (max-width:768px) {

    .en-ttl {
        padding: 0 0 10px 0;
    }

    .en-ttl::after {
        height: 5px;
    }

    .br_pc {
        display: none;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

}









/* フッター */
footer {
    background-color: var(--green);
    padding: 100px 0 30px 0;
}

footer>div.footer_inner {
    width: 86.666%;
    margin: 0 auto;
}

footer>div.footer_inner>div.footer_logp {
    width: 72px;
    margin: 0 auto;
}

footer>div.footer_inner>div.footer_logp>img {
    width: 100%;
}

footer>div.footer_inner>h2 {
    font-family: var(--en-font);
    font-weight: var(--en-font-weight-Medium);
    color: var(--base);
    font-size: 1.6rem;
    padding: 60px 0 20px 0;
}

footer>div.footer_inner>div.footer_sns_icon_flex {
    width: 250px;
    margin: 0 auto;
}

footer>div.footer_inner>div.footer_sns_icon_flex>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer>div.footer_inner>div.footer_sns_icon_flex>ul>li {
    width: 30px;

}

footer>div.footer_inner>div.footer_sns_icon_flex>ul>li>a {
    display: block;
}

footer>div.footer_inner>div.footer_sns_icon_flex>ul>li>a>img {
    width: 100%;
}

footer>div.footer_inner>div.app_banner {
    padding: 0px 0 50px 0;
    max-width: 375px;
    margin: 0 auto;
}

footer>div.footer_inner>div.app_banner>a> {
    display: block;
}

footer>div.footer_inner>div.app_banner>a>img {
    width: 100%;
}

footer>div.footer_inner>div.journal_banner {
    padding: 40px 0 20px 0;
    max-width: 375px;
    margin: 0 auto;
}

footer>div.footer_inner>div.journal_banner>a> {
    display: block;
}

footer>div.footer_inner>div.journal_banner>a>img {
    width: 100%;
}

footer>div.footer_inner>div.footer_copylight {
    margin: 0 auto
}

footer>div.footer_inner>div.footer_copylight>small {
    font-family: var(--en-font);
    font-weight: var(--en-font-weight-Regular);
    font-size: 1.2rem;
    color: var(--base);
}

/* アニメーション */

/* モーダル */
img.videoThumb {
    cursor: pointer;
}

img.videoThumb:hover {
    opacity: 0.8;
}

.modalContent {
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    animation: fadeIn 0.7s ease 0s 1 normal;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 315px;
    max-height: 560px;
    aspect-ratio: 9 / 16;
}

.modalContent iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

button.closeBtn {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    line-height: 1;
    width: 25px;
    height: 2px;
    background: currentColor;
    border-radius: 0.1rem;
    position: absolute;
    transform: rotate(45deg);
    border: none;
    right: -25px;
    top: -25px;
    transition: 0.2s ease-in-out;
}

button.closeBtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}

button.closeBtn:hover {
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

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

@media (max-width:475px) {
    .modalContent {
        width: 80%;
        height: 80%;
    }

    button.closeBtn {
        right: -5px;
    }
}

/* モーダル */

/* animateCSS */

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(30%, 0, 0);
        transform: translate3d(30%, 0, 0);
        -moz-transform: translate3d(30%, 0, 0);
        -ms-transform: translate3d(30%, 0, 0);
        -o-transform: translate3d(30%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(30%, 0, 0);
        transform: translate3d(30%, 0, 0);
        -moz-transform: translate3d(30%, 0, 0);
        -ms-transform: translate3d(30%, 0, 0);
        -o-transform: translate3d(30%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-30%, 0, 0);
        transform: translate3d(-30%, 0, 0);
        -moz-transform: translate3d(-30%, 0, 0);
        -ms-transform: translate3d(-30%, 0, 0);
        -o-transform: translate3d(-30%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* animateCSS */

/* 遅延共通 */
.delay025s {
    animation-delay: 0.25s;
}

.delay05s {
    animation-delay: 0.5s;
}

.delay075s {
    animation-delay: 0.75s;
}

.delay1s {
    animation-delay: 1s;
}

.delay125s {
    animation-delay: 1.25s;
}

.delay15s {
    animation-delay: 1.5s;
}

.delay175s {
    animation-delay: 1.75s;
}

.delay2s {
    animation-delay: 2s;
}

.delay225s {
    animation-delay: 2.25s;
}

.delay25s {
    animation-delay: 2.5s;
}

.delay275s {
    animation-delay: 2.75s;
}

.delay3s {
    animation-delay: 3s;
}

.delay325s {
    animation-delay: 3.25s;
}

.delay35s {
    animation-delay: 3.5s;
}

.delay375s {
    animation-delay: 3.75s;
}

.delay4s {
    animation-delay: 4s;
}

.delay425s {
    animation-delay: 4.25s;
}

.delay45s {
    animation-delay: 4.5s;
}

.delay475s {
    animation-delay: 4.75s;
}

.delay5s {
    animation-delay: 5s;
}

.delay525s {
    animation-delay: 5.25s;
}

.delay55s {
    animation-delay: 5.5s;
}

.delay575s {
    animation-delay: 5.75s;
}

.delay6s {
    animation-delay: 6s;
}

.delay625s {
    animation-delay: 6.25s;
}

.delay65s {
    animation-delay: 6.5s;
}

.delay675s {
    animation-delay: 6.75s;
}

.delay7s {
    animation-delay: 7s;
}

.delay725s {
    animation-delay: 7.25s;
}

.delay75s {
    animation-delay: 7.5s;
}

.delay775s {
    animation-delay: 7.75s;
}

.delay8s {
    animation-delay: 8s;
}

.delay825s {
    animation-delay: 8.25s;
}

.delay85s {
    animation-delay: 8.5s;
}

.delay875s {
    animation-delay: 8.75s;
}

.delay9s {
    animation-delay: 9s;
}

.delay925s {
    animation-delay: 9.25s;
}

.delay95s {
    animation-delay: 9.5s;
}

.delay975s {
    animation-delay: 9.75s;
}

.delay100s {
    animation-delay: 10s;
}