@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', sans-serif;
}

h2.lp-title {
    font-family: 'Noto Serif JP';
}



/* リンクホバー */

a:hover {
    color: #fff;
    filter: brightness(90%) contrast(120%);
}

/* ヒーローエリア */

#hero {
    width: 100%;
    min-height: 100vh;
}

#hero img {
    max-width: 100%;
}


.lp-sec-big {
    background-color: #fff;
    background-image: url(../../img/hero-pc-boke.jpg);
}


.lp-sec-big {
    padding: 5vw 5vw;
}

#hero .price {
    font-size: 3rem;
    text-shadow: 0 0 3px #fff;
}

@media (max-width: 600px) {
    #hero .notice {
        font-size: 14px;
    }
}

/* ボタン */

.lp-c-button.koudoku_button {
    background-color: #EA0B79;
    color: #FFF;
}

.lp-c-button {
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.32);
}

/* バー */
.lp-sec-band>.lp-block {
    background-color: #00192B;
    color: #fff;
}

.lp-sec-band--arrow>.lp-block::after {
    color: #00192B;
}

/* 読者の声 */

#voice {  
    max-width: 1000px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    #voice {
        font-size: 14px;
    }
}

#voice .lp-block {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.voice-block {
    display: flex;
    align-items: center;
    row-gap: 2rem;
}

.voice-image {
    width: 100px;
    display: block;
}

@media (max-width: 600px) {
    .voice-image {
        width: 60px;
    }
}

.voice-text {
    margin-left: 2.5rem;
}

.voice-text-title {
    font-weight: bold;
}

/* よくあるご質問 */
#question {
    max-width: 1000px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

#question .table td,
.table th {
    padding: 1.6rem;
}

#question h2 {
    text-align: left;
}

.lp-sec-image>.lp-block>h3.lp-title {
    margin-bottom: 1.6rem;
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    text-align: left;
}

#question.lp-sec-image>.lp-block>.lp-text {
    font-weight: 400;
    text-align: left;
}

#question .attention {
    font-weight: bold;
    margin-bottom: 2rem;
}

#question .lp-text {
    margin-bottom: 1.6em;
}

#question h2 {
    color: #555;
    border-bottom: solid 2px #0080FF;
    padding: 10px 0;
}

#question h2:first-letter {
    color: #0080FF;
}

/* 問い合わせ */

#inquiry {
    max-width: 1000px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

#inquiry p {
    font-weight: bold;
    text-align: center;
    font-size: clamp(20px, 2.8vw, 32px);
}


/* フッター */
.lp-sec-footer {
  /*  max-width: 1000px; 
    margin-left: auto;
    margin-right: auto; */
    display: flex;
    justify-content: center;
    line-height: 1.8;
    font-family: "Noto Sans JP Medium";
    font-weight: normal;
    letter-spacing: normal;
    color: white;
    font-size: 0.75rem;
    padding: 30px 20px;
}

.lp-copyright img {
    width: 102px;
    height: auto;
}

.lp-sec-footer .lp-block {
    display: flex;
    align-items: center;
    text-align: right;
    gap: 30px;
}

.lp-copyright-text {
    text-align: left;
}

/* 2025年6月29日、30日告知 */

#special {
    width: 100%;
    max-width: 1000px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

#special p,#special ul {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    #special {
        font-size: 14px;
    }
}

#special-title {
    background-color: #fd7e00;
}

/* 高校野球選手紹介 */
#kouya {
    background-color: #3f7426;
}


/* ページトップ */
#page-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 80%;
    opacity: 0.8;
}

#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 25px 0;
    text-align: center;
    display: block;
    border-radius: 10px;
}

#page-top a:hover {
    text-decoration: none;
    background: #999;
}

/* フェードイン */
.fadein {
    opacity: 0.3;
    transform: translate(0, 50px);
    transition: all 1s;
}

.fadein.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ページ全体をフェードイン */
.fadeUp {
    opacity: 0;
    animation-name: fadeUp;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}