@charset "utf-8";


/* ----------------------------------------
    PC
   ---------------------------------------- */

/* ---------- COMMON ---------- */


#content_bg{
    padding-top: 10px;
}

#content{
    background: #FFF;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}


.head{
    background-color: #33b495;
    width: 100%;
    margin-top: 30px;
}

.head img{
    width: 100%;
}


.wrap{
    display: block;
    width: 1023px;
    margin: 0 auto;
}

.wrap img{
    width: 100%;
}

.btn_wrap{
    display: none;
}

.border picture{
    display: block;
    border: 2px solid #000;
    border-bottom: none;
}

.border picture:last-child{
    border-bottom: 2px solid #000;
}

.border picture.no_bo,
.border picture.no_bo_pc{
    border-bottom: none;
}


.info{
    margin-bottom: 50px;
    padding: 50px;
    text-align: center;
    border: 2px solid #000;
}

.info em{
    font-size: 2em;
}

.info p{
    display: block;
    margin-top: 50px;
    font-size: 1.2em;
    line-height: 1.6;
    font-weight: bold;
}

.sp{
   display: none;
}

/* ---------- SP ---------- */

@media only screen and (max-width: 640px) {

.pc{
   display: none;
}

.sp{
   display: block;
}

#navigatorWrap{
    min-height: 53px;
}

.wrap{
    width: 100%;
    padding: 0 2%;
    box-sizing: border-box;
}

.border picture.no_bo_pc{
    border-bottom: 2px solid #000;
}

.btn_wrap{
    display: block;
    width: 100%;
    padding: 50px 5%;
    box-sizing: border-box;    
    
    }
    
.btn_list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.pill_btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #231815; /* こげ茶に近い黒 */
    border-radius: 999px;      /* ピル型にする */
    text-decoration: none;
    transition: opacity 0.2s;
}

.pill_btn:hover{
    opacity: 0.8;
}

.pill_btn__main{
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
}

.pill_btn__sub{
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    line-height: 1.4;
}

.info{
    padding: 30px 2%;
}

.info em{
    font-size: 1.6em;
}

.info p{
        margin-top: 30px;
        font-size: 0.7em;

}

}/*sp end*/



/* フェードイン */
.js-fade{
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade.is-show{
    opacity: 1;
    transform: translateY(0);
}

/* 動きを減らす設定のユーザーにはアニメーションしない */
@media (prefers-reduced-motion: reduce){
    .js-fade{
        opacity: 1;
        transform: none;
        transition: none;
    }
}