@charset "utf-8";

:root {
    --shadow-color: 0deg 0% 16%;

    --shadow-elevation-low: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02),
        6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028),
        12.5px 12.5px 10px rgba(0, 0, 0, 0.035),
        22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042),
        41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05),
        100px 100px 80px rgba(0, 0, 0, 0.07);


    --box-padding: 40px;

    --sub-color: #ff5283;
    /*デフォルト*/
    --sub-hover-color: #bf1948;
    /*デフォルト*/
    --theme-color: #76B900;
    /*デフォルト*/


    --bg-color-light-header: rgba(255, 255, 255, 1);
    --bg-color-dark-header: rgba(32, 33, 36, 1);


    --bg-color-light-animation-header: rgba(255, 255, 255, 0.7);
    --bg-color-dark-animation-header: rgba(0, 0, 0, 0.7);

    --background-color: #fff;
    --text-color: #000;
    --bg-myprogram: #fafafa;
    --bg-about: #ebebeb;
    --bg-video: #f8f8f8;


    --dark-pink-color: #ff5283;
    /*デフォルト*/
    --dark-pink-hover-color: #bf1948;
    /*デフォルト*/
    --dark-header-footer-color: #3a5e98;
    /*デフォルト*/
    --dark-background-color: #000;
    --dark-text-color: #fff;
    --dark-bg-myprogram: #fafafa;
    --dark-bg-about: #ebebeb;
    --dark-bg-video: #f8f8f8;


}


/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap'); */


body {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

* {
    scroll-behavior: smooth;
    margin: 0;
    scroll-margin-top: 120px;
}

/* ヘッダー */
header {
    position: fixed;
    z-index: 2000;
    width: 100%;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); */
    user-select: none;
}

/* ヘッダーの中の文字 */
.header-inner {
    /*max-width: 1600px;*/
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* color: #1571c2; */
    /* color: #3b6930; */
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); */
    color: var(--theme-color);
    transition: background-color var(--transition-duration), color var(--transition-duration);
}

.header-logo,
.footer-logo {
    cursor: pointer;
}

#default-header-logo {
    font-size: 60px;
}

/* スクロールするとでてくるヘッダー */
#animated-header {
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    height: 50px;
    background-color: var(--bg-color-light-animation-header);
}

#animated-header.visible {
    transform: translateY(0);
}

#default-header {
    background-color: var(--bg-color-light-header);
    transition: background-color var(--transition-duration), color var(--transition-duration);
}

/* ダークモードのときのヘッダー */
body.dark #default-header {
    background-color: var(--bg-color-dark-header);
}

#default-header {
    transition: opacity 0.3s ease-in-out;
}

#default-header.hidden {
    opacity: 0;
    pointer-events: none;
}

.shadow {
    box-shadow: var(--shadow-elevation-low);
}

.first-view {
    /* height: calc(100vh - 110px); */
    /*ヘッダー変える前*/
    height: 100vh;
    background-image: url(https://img.skin/1920x1080/696969);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.first-view-text {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-bottom: 80px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 7px 7px 15px rgba(0, 0, 0, 1);
}

.first-view-text h1 {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 56px;
    line-height: 72px;
}

.lead {
    max-width: 1600px;
    margin: 60px auto;
}

.leadbox {
    background-color: var(--bg-about);
    padding-top: 40px;
    padding-bottom: var(--box-padding);
}

.lead p {
    line-height: 2;
    text-align: center;
}

.lead h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 50px;
}

.lead h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--text-color);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}


.link-button-area {
    text-align: center;
    margin-top: 40px;
    /*margin-bottom: 40px;*/
}

.link-button {
    /* background-color: #ff5283; */
    display: inline-block;
    min-width: 180px;
    line-height: 48px;
    border-radius: 24px;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    /* animation: hover 0.7s ease forwards; */
    animation: hover 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* .link-button:hover {
    background-color: #bf1948;
} */

.link-button:hover {
    /* animation: nothover 0.7s ease forwards; */
    animation: nothover 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hover {
    0% {
        background-color: var(--sub-hover-color);

    }

    100% {
        background-color: var(--sub-color);
    }
}

@keyframes nothover {
    0% {
        background-color: var(--sub-color);
    }

    100% {

        background-color: var(--sub-hover-color);
    }
}



.recommended {
    background-color: var(--bg-myprogram);
    padding-bottom: var(--box-padding);
    padding-top: var(--box-padding);
}

.recommended h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.recommended h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--text-color);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.copyright2 {
    background-color: var(--bg-myprogram);
    margin-right: auto;
    padding-bottom: 40px;
}

.copyright2 p {
    text-align: right;
    margin-right: 10px;
}

.item-list {
    display: flex;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    overflow: scroll;

    overflow-y: hidden;
}

.item-list li {
    flex-shrink: 0;
    width: 260px;
    margin-left: 75px;
}

.item-list li:first-child {
    margin-left: 0;
}

.li-image-box {
    width: 260px;
    height: 200px;
    overflow: hidden;
}

.item-list li,
.item-list li img {
    transition: transform 0.3s ease-in-out;
}

.item-list li img:hover {
    transform: scale(1.15);
}


.item-list dl {
    margin-top: 20px;
}

.item-list dt {
    font-weight: bold;
}

.item-list dd {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.item-list .price {
    font-weight: bold;
    margin-top: 15px;
}


.movie {
    width: 930px;
    max-width: 90%;
    background-color: var(--bg-video);
    padding: 50px 60px;
    margin: var(--box-padding) auto;
}

.movie h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.movie h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--text-color);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.movie iframe {
    display: block;
    width: 100%;
    height: 456px;
    margin-top: 30px;
}

.movie p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 20px;
}

.nityu {
    padding-left: 5px;
}

.nityu:hover {
    text-decoration: underline;
}

@media (max-width:800px) {
    .header-site-menu {
        background-color: rgba(118, 185, 0, 0.8);
    }

    .header-logo {
        font-size: 50px;
    }

    .first-view {
        height: calc(100vh - 50vh);
        background-image: url(https://img.skin/600x500/696969);
    }

    .first-view-text {
        padding-top: 60px;
        padding-left: 20px;
    }

    .first-view-text h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .first-view-text p {
        font-size: 14px;
        margin-top: 15px;
    }

    .lead {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lead p {
        text-align: left;
    }

    .item-list li {
        width: 220px;
        margin-left: 30px;
    }

    .movie {
        width: 500px;
        padding: 30px 25px;
    }

    .movie iframe {
        height: 240px;
    }

}