/*=========================================
Book Receive
=========================================*/

.book-receive{
    padding:80px 0;
}

.book-receive__intro{

    display:flex;
    gap:60px;
    align-items:center;

}

.book-receive__image{

    flex:0 0 340px;

}

.book-receive__image img{

    width:100%;
    display:block;

}

.book-receive__content{

    flex:1;

}

.book-badge{

    display:inline-block;
    background:#6eb110;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:20px;

}

.book-receive__content h2{

    font-size:2rem;
    margin-bottom:20px;

}

.book-receive__content p{

    margin-bottom:24px;
    line-height:1.9;

}

.book-receive__content ul{

    padding-left:20px;

}

.book-receive__content li{

    margin-bottom:12px;

}


/*=========================================
Receive Method
=========================================*/

.book-method{

    background:#f8faf5;
    padding:80px 0;

}

.book-method h2{

    text-align:center;
    margin-bottom:50px;

}

.book-method__grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.book-card{

    background:#fff;
    border-radius:16px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;

}

.book-card h3{

    margin-bottom:24px;

}

.book-card ul{

    text-align:left;
    margin:0 auto 30px;
    max-width:280px;

}

.book-card li{

    margin-bottom:14px;

}

.book-card .c-btn{

    width:100%;
    justify-content:center;

}


/*=========================================
Responsive
=========================================*/

@media(max-width:768px){

.book-receive__intro{

    flex-direction:column;

}

.book-receive__image{

    flex:none;
    max-width:260px;
    margin:auto;

}

.book-method__grid{

    grid-template-columns:1fr;

}

.book-card{

    padding:30px 24px;

}

}

/*========================================
試し読み
========================================*/

.book-preview{

    padding:90px 0;

    background:#fafafa;

}

.book-preview .section-title{

    text-align:center;

    margin-bottom:50px;

}

.book-preview .section-title span{

    color:#58a56c;

    font-weight:bold;

    letter-spacing:.15em;

}

.book-preview .section-title h2{

    margin:15px 0;

    font-size:2rem;

}

.book-preview__grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.book-preview__item{

    display:block;

    transition:.3s;

}

.book-preview__item:hover{

    transform:translateY(-6px);

}

.book-preview__item img{

    width:100%;

    display:block;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.book-preview__note{

    margin-top:35px;

    text-align:center;

    color:#666;

    font-size:.95rem;

}

@media(max-width:768px){

.book-preview__grid{

    grid-template-columns:repeat(2,1fr);

}

}

/*========================================
こんな方におすすめ
========================================*/

.book-recommend{

    padding:90px 0;

    background:#eef8ef;

}

.book-recommend .section-title{

    text-align:center;

    margin-bottom:50px;

}

.book-recommend .section-title span{

    color:#4c9c63;

    font-weight:700;

    letter-spacing:.15em;

}

.book-recommend .section-title h2{

    margin:15px 0;

    font-size:2rem;

}

.book-recommend__grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.recommend-card{

    background:#fff;

    border-radius:16px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.recommend-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.recommend-card__icon{

    font-size:42px;

    margin-bottom:18px;

}

.recommend-card h3{

    font-size:1.2rem;

    margin-bottom:15px;

    color:#333;

}

.recommend-card p{

    color:#666;

    line-height:1.8;

    font-size:.95rem;

}

@media(max-width:768px){

.book-recommend{

    padding:60px 0;

}

.book-recommend__grid{

    grid-template-columns:1fr;

    gap:20px;

}

}

/*========================================
FAQ
========================================*/

.book-faq{

    padding:90px 0;

    background:#fff;

}

.book-faq .section-title{

    text-align:center;

    margin-bottom:50px;

}

.book-faq .section-title span{

    color:#4c9c63;

    font-weight:700;

    letter-spacing:.15em;

}

.book-faq .section-title h2{

    margin:15px 0;

    font-size:2rem;

}

.faq-list{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:#fff;

    border:1px solid #dfe9df;

    border-radius:12px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 4px 12px rgba(0,0,0,.05);

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    padding:22px 24px;

    font-size:1.05rem;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:12px;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    margin-left:auto;

    font-size:1.5rem;

    color:#4c9c63;

    transition:.3s;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-q{

    color:#4c9c63;

    font-weight:700;

    font-size:1.2rem;

}

.faq-answer{

    display:flex;

    gap:12px;

    padding:0 24px 24px;

    line-height:1.9;

}

.faq-a{

    color:#4c9c63;

    font-weight:700;

    flex-shrink:0;

}

.faq-answer p{

    margin:0;

    color:#555;

}

@media(max-width:768px){

.book-faq{

    padding:60px 0;

}

.faq-item summary{

    padding:18px;

    font-size:1rem;

}

.faq-answer{

    padding:0 18px 18px;

}

}

/*========================================
ページ内メニュー
========================================*/

.book-nav{

    margin-top:35px;

}

.book-nav ul{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    padding:0;

    margin:0;

    list-style:none;

}

.book-nav a{

    display:block;

    padding:10px 22px;

    background:#ffffff;

    border:2px solid #5b9d72;

    border-radius:999px;

    color:#5b9d72;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.book-nav a:hover{

    background:#5b9d72;

    color:#fff;

}

@media(max-width:768px){

.book-nav ul{

    gap:10px;

}

.book-nav a{

    font-size:.9rem;

    padding:8px 16px;

}

}