/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
html{
    height: -webkit-fill-available;
}
body{
    background: #fff;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}
body.active{
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    overscroll-behavior: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    cursor: pointer;
    word-wrap:break-word;
}
*:focus {
    outline: none;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
#nav{
    margin: 0;
}

/*ボタン*/
#head-menu{
    top: 5px;
}

#nav-jinai li{
    width: 70%;
    margin: 0 auto;
}

/* ロゴ */
.el_homeLink{
    padding: 20px 0!important;
}
.el_homeLink img{
    width: 130px;
    margin: 0 auto;
}
@media (min-width:1024px){
    .el_homeLink{
        position: absolute;
        top: 0;
        left: 10px;
        background-color: #fff;
        border-radius: 0 0 5px 5px;
        box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px!important;
    }
    .el_homeLink:hover{
        padding-top: 20px!important;
    }
}

/* メインビジュ */
.bl_main{
    width: 100%;
}
.bl_main .pc{
    display: none;
}
@media (min-width:768px){
    .bl_main .sp{
        display: none;
    }
    .bl_main .pc{
        display: block;
    }
}

/*--------------------------------------------------------
    内容
--------------------------------------------------------*/
.bl_cont{
    max-width: 1080px;
    margin: 60px auto 80px;
    padding: 0 15px;
}
@media (min-width:1080px){
    .bl_cont{
        margin: 80px auto 120px;
    }
}
@media (min-width:1100px){
    .bl_cont{
        padding: 0;
    }
}

/* 見出し・テキスト */
.bl_cont .el_lv1Heading{
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}
.bl_cont p{
    text-align: left;
    font-size: 16px;
    margin: 0;
}
.bl_cont p+p{
    margin-top: 10px;
}
.bl_cont a{
    color: #444;
}

/* 画像横並び */
.bl_cont .bl_flexCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 40px auto 0;
    padding: 0;
}
.bl_cont .bl_flexCont li{
    width: 50%;
    margin: 0;
}
@media (min-width:768px){
    .bl_cont .bl_flexCont li{
        width: calc(100% / 3);
    }
}

/* リンク */
.bl_cont .bl_link{
    text-align: center;
    margin: 20px auto 0;
}
.bl_cont .bl_link .el_link{
    display: block;
}
.bl_cont .bl_link .el_btn{
    border: 1px solid #F9C2E0;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    padding: 10px 20px;
}
.bl_cont .bl_link .el_btn:hover{
    background-color: #F9C2E0;
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
#footer{
    padding-bottom: 30px;
}
#footer .copyright{
    margin-bottom: 0;
}

/* line >>> 内容 */
.bl_line{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
#footer .bl_line .el_lineBtn{
    transition: 0.3s;
}
#footer .bl_line .el_lineBtn:hover{
    opacity: 0.5;    
}
#footer .bl_line .el_lineBtn img{
    border-radius: 5px;
}
#footer .bl_line .el_lineQr{
    margin-left: 20px;
}
#footer .bl_line .el_lineQr img{
    border: 1px solid #ccc;
}
@media (max-width:374px){
    #footer .bl_line .el_lineQr{
        margin-left: 0;
        margin-top: 20px;
    }
}
@media (min-width:768px){
    .bl_line{
        margin-top: 40px;
    }
}

/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* clear fix  */
.clear::before, .clear::after,
.hp_clearFix::before,
.hp_clearFix::after{
    content: "";
    display: table;
    table-layout: fixed;
}
.clear::after,
.hp_clearFix::after{
    clear: both;
}

/* フォントサイズ */
.hp_fzXS{
    font-size: 12px!important;
}
.hp_fzSm{
    font-size: 14px!important;
}
.hp_fzMd{
    font-size: 18px!important;
}
.hp_fzLg{
    font-size: 24px!important;
}
.hp_fzXL{
    font-size: 32px!important;
}
.hp_fzXXL{
    font-size: 40px!important;
}
.hp_fzXXXL{
    font-size: 50px!important;
}

/* フォントウェイト */
.hp_fwBold{
    font-weight: 700!important;
}

/* フォントカラー */
.hp_fcWhite{
    color: #fff!important;
}
.hp_fc{
    color: #6355a1!important;
}
.hp_fcGreen{
    color: #00a180!important;
    font-weight: 500;
}


/* 上マージン */
.hp_mt1rem{
    margin-top: 1rem !important;
}
.hp_mt2rem{
    margin-top: 2rem !important;
}
.hp_mt3rem{
    margin-top: 3rem !important;
}
.hp_mt4rem{
    margin-top: 4rem !important;
}
.hp_mt5rem{
    margin-top: 5rem !important;
}
.hp_mt6rem{
    margin-top: 6rem !important;
}
.hp_mt7rem{
    margin-top: 7rem !important;
}
.hp_mt8rem{
    margin-top: 8rem !important;
}
.hp_mt9rem{
    margin-top: 9rem !important;
}
.hp_mt10rem{
    margin-top: 10rem !important;
}
.hp_mt0{
    margin-top: 0!important;
}

/* 下マージン*/
.hp_mb1rem{
    margin-bottom: 1rem !important;
}
.hp_mb2rem{
    margin-bottom: 2rem !important;
}
.hp_mb3rem{
    margin-bottom: 3rem !important;
}
.hp_mb4rem{
    margin-bottom: 4rem !important;
}
.hp_mb5rem{
    margin-bottom: 5rem !important;
}
.hp_mb6rem{
    margin-bottom: 6rem !important;
}
.hp_mb7rem{
    margin-bottom: 7rem !important;
}
.hp_mb8rem{
    margin-bottom: 8rem !important;
}
.hp_mb9rem{
    margin-bottom: 9rem !important;
}
.hp_mb10rem{
    margin-bottom: 10rem !important;
}
.hp_mb0{
    margin-bottom: 0 !important;
}

/* 文章の揃え */
.hp_txtCenter{
    text-align: center !important;
}
.hp_txtLeft{
    text-align: left !important;
}
.hp_txtRight{
    text-align: right !important;
}

/* 背景色 */
.hp_bcGray{
    background-color: #F1F3F8!important;
}
.hp_bcOrange{
    background-color: #F57F00!important;
}

/* 角丸 */
.hp_br{
    border-radius: 30px!important;
}

/* 表示 */
.hp_pcOnly{
    display: none;
}
@media (min-width:1400px){
    .hp_none{
        display: none;
    }
    .hp_spOnly{
        display: none;
    }
    .hp_pcOnly{
        display: block;
    }
}
