@charset "UTF-8";
/*======================================================= 
    インスタ用スタイル
=======================================================*/
/* header */
.header{
    padding: 15px 0;
}
.header-logo-area{
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    margin-top: 5px;
}
.single-post{
    margin-top: 0!important;
    padding: 50px 0 0 0;
}
/* instagram */
h2{
    margin-bottom: 0.5em;
}
li{
    list-style: none;
}
.choose-block{
    max-width: 750px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px auto;
}
.choose-item{
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 8px #adadad;
    padding: 20px;
}
.choose-item ul{
    margin-bottom: 20px;
}
.choose-item ul li{
    position: relative;
    padding-left: 1.5em;
}
.choose-item ul li::before{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f14a';
    display: block;
    left: 0;
    color: #DF0716;
}
/* リンクボタン */
.red-btn,
.gray-btn,
.white-btn{
    position: relative;
    display: block;
    max-width: 350px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 2px 2px 2px #cfcfcf;
    text-align: center;
    padding: 15px 15px 15px 0;
    margin: auto;
}
.red-btn{
    background-color: #DF0716;
    border: 2px solid #DF0716;
    color: #fff;
}
.gray-btn{
    background-color: #efefef;
    border: 2px solid #efefef;
}
.white-btn{
    background-color: #fff;
    border: 2px solid #fff;
}
.red-btn::after,
.gray-btn::after,
.white-btn::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f138';
    display: block;
    right: 25px;
    top: 30%;
}
.red-btn::after{
    color: #fff;
}
.gray-btn::after,
.white-btn::after{
    color: #DF0716;
}
.red-btn:hover{
    background-color: #fff;
    color: #DF0716;
}
.gray-btn:hover{
    background-color: #fff;
    color: #000;
}
.white-btn:hover{
    background-color: #efefef;
    color: #000;
}
.red-btn:hover::after{
    color: #DF0716;
}

.bg-gray{
    padding: 50px 0;
}


/*1000px以下*/
@media screen and (max-width: 1000px){

}

/*750px以下*/
@media screen and (max-width: 750px){
    .choose-block{
        grid-template-columns: 1fr;
    }
    .choose-item{
        max-width: 350px;
        width: 100%;
        margin: auto;
    }
    .header-logo-area img{
        height: 40px;
    }
}

/*480px以下*/
@media screen and (max-width: 480px){

}
