@charset "UTF-8";

/* ---------------------------
    基本（共通）
--------------------------- */
body{
    color: #333;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    background: #fbfbfb;
}
p{
    line-height: 2;
}
a{
    text-decoration: none;
    color: #333;
}
.bold{
    font-weight: bold;
}
.black{
    color: #000;
}
.center{
    text-align: center;
}
.f_s_14{
    font-size: 14px !important;
}
.m_t_60{
    margin-top: 60px !important;
}
.m_t_100{
    margin-top: 100px !important;
}
.m_b_40{
    margin-bottom: 40px !important;
}
.m_b_60{
    margin-bottom: 60px !important;
}
.m_b_80{
    margin-bottom: 80px !important;
}
.display_none{
    display: none !important;
}

/* ---------------------------
    基本（PC）
--------------------------- */
@media (min-width: 1024px){
    .sp_mode{
        display: none !important;
    }
    *{
        font-size: 16px;
    }
    main{
        width: 960px;
        margin: 0 auto;
    }
    .pc_center{
        text-align: center;
    }
}

/* ---------------------------
    基本（SP）
--------------------------- */
@media (max-width: 1024px){
    .pc_mode{
        display: none !important;
    }   
    *{
        font-size: 14px;
    }
    main{
        width: 90%;
        margin: 0 auto;
    }
}

/* ---------------------------
    ヘッダー（PC）
--------------------------- */
@media (min-width: 1024px){
    header{
        position: fixed;
        box-sizing:border-box;
        height: 100px;
        background: #fbfbfb;
        width: 100%;
        opacity: 0.9;
        top: 0;
        z-index: 1000000;
    }
    .header{
        width: 90%;
        display: flex;
        margin: 30px auto;
    }
    .logo_img img{
        width: 160px;
    }
    nav{
        align-self: center;
        font-weight: bold;
        margin: 0 0 0 auto;
    }
    nav ul{
        display: flex;
        font-size: 18px;
    }
    nav li:not(:last-child)::after{
        content: "｜";
        padding: 0 5px;
        color: #999;
    }
    header a:hover{
        transition-duration: 0.4s;
        color: #ccc;
    }
}

/* ---------------------------
    ヘッダー（SP）
--------------------------- */
@media (max-width: 1024px){
    header{
        display: block;
        box-sizing:border-box;
        height: 60px;
        position: fixed;
        width: 100%;
        background: #fbfbfb;
        z-index: 100000;
        top: 0;
    }
    .logo_img img{
        position: absolute;
        width: 160px;
        top: 8px;
        left: 10px;
    }
    .nav_wrapper{
    }
    #target{
        top: 0;
        right: 0;
        cursor: pointer;
        display: block;
        transition: 0.5s;
        position: fixed;
        z-index: 1000000;
        background: #47aaa1;
        width: 60px;
        height: 60px;
    }
    .target_inner_line{
        display: block;
        width: 35px;
        height: 6px;
        background: #ffbf00;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        border-radius: 50px;
        position: absolute;
    }
    .target_inner_1{
        top: 15px;
        left: 13px;
    }
    .target_inner_2{
        top: 27px;
        left: 13px;
    }
    .target_inner_3{
        top: 39px;
        left: 13px;
    }
    .sp_menu_list{
        display: none;
        background: #47aaa1;
        width:100%;
        clear: both;
        top: 60px;
        position: fixed;
        z-index: 100000000;
    }
    .sp_menu_list li{
        margin: 0 auto;
        width: 90%;
        background: url( "../images/common/yellow_arrow.png" )95% 50% / 15px no-repeat;
    }
    .sp_menu_list li:not(:last-child){
        border-bottom: 1px solid #83c1be;
    }
    .sp_menu_list a{
        color: #fff;
        font-size: 16px;
        display: block;
        width: 100%;
        height: 100%;
        padding: 25px 20px;
    }
}
    
/* ---------------------------
    見出し（PC）
--------------------------- */
@media (min-width: 1024px){
    .gradation{
        font-size: 30px;
        color: #000;
        font-weight: bold;
        padding-bottom: 30px;
        width: max-content;
        margin: 0 auto;
        border-bottom: 3px solid;
        border-image: linear-gradient(to right, #e4543b 0%, #feba03 100%);
        border-image-slice: 1;
    }
}

/* ---------------------------
    見出し（SP）
--------------------------- */
@media (max-width: 1024px){
    .gradation{
        text-align: center;
        line-height: 1.5;
        font-size: 20px;
        color: #000;
        font-weight: bold;
        padding-bottom: 13px;
        width: max-content;
        margin: 0 auto;
        border-bottom: 3px solid;
        border-image: linear-gradient(to right, #e4543b 0%, #feba03 100%);
        border-image-slice: 1;
    }
}

/* ---------------------------
    表（PC）
--------------------------- */
@media (min-width: 1024px){
    table{
        border-spacing:0px;
        display:table-cell;
        line-height: 2;
    }
    .table th{
        display:inline-block;
        width: 270px;
        background: #eee;
        padding: 30px;
        text-align: center;
        font-weight: bold;
        display:table-cell;
        vertical-align: middle;
    }
    .table td{
        display:inline-block;
        width: 560px;
        padding: 30px;
        display:table-cell;
    }
    table tr:first-child{
        border-top: 1px solid #ccc;
    }
    table tr{
        border-bottom: 1px solid #ccc;
    }
    table ul{
        padding: 0 0 45px 35px;
    }
    table li{
        list-style: disc;
    }
}

/* ---------------------------
    表（SP）
--------------------------- */
@media (max-width: 1024px){
    table{
        border-spacing:0px;
        line-height: 2;
        width: 100%;
    }
    .table th{
        background: #eee;
        padding: 15px;
        text-align: center;
        font-weight: bold;
        vertical-align: middle;
        display: block;
        font-size: 14px;
    }
    .table td{
        padding: 15px;
        display: block;
    }
    .last{
        border-bottom: 1px solid #ccc;
    }
    table th{
        border-top: 1px solid #ccc;
    }
    table ul{
        padding: 0 0 25px 25px;
    }
    table li{
        list-style: disc;
    }
}

/* ---------------------------
    ボタン（PC）
--------------------------- */
@media (min-width: 1024px){
    .two_btn{
        display: flex;
        justify-content: center;
    }
    .two_btn_left, .two_btn_right{
        background: url( "../images/common/yellow_arrow.png" ) 320px 50% / 12px no-repeat #47aaa1;
        color: #fff;
        font-weight: bold;
        text-align: center;
        border-radius: 10px;
        width: 350px;
        display: block;
        padding: 25px 0;
    }
    .two_btn_right{
        margin-left: 30px;
    }
    .two_btn a:hover{
        color: #000;
        transition-duration: 0.8s;
        background: url( "../images/common/green_arrow.png" ) 320px 50% / 12px no-repeat #ffbf00;
    }

}

/* ---------------------------
    ボタン（SP）
--------------------------- */
@media (max-width: 1024px){
    .two_btn{
        text-align: center;
    }
    .two_btn div{
        width: 100%;
    }
    .two_btn_left, .two_btn_right{
        background: url( "../images/common/yellow_arrow.png" ) 95% 50% / 12px no-repeat #47aaa1;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        border-radius: 10px;
        width: 100%;
        display: block;
        padding: 25px 0;
        margin: 0 auto;
    }
    .two_btn_right{
        margin-top: 20px;
    }
}

/* ---------------------------
    ページTOP（PC）
--------------------------- */
@media (min-width: 1024px){
    #pagetop{
        width: 90%;
        margin: 30px auto 0;
    }
    .pc_page_top{
        width: 120px;
        margin-left: auto;
    }
    .pc_page_top a{
        display: block;
        width: 80px;
        padding: 55px 0 10px 0;
        text-align: center;
        color: #fff;
        background: url( "../images/common/yellow_arrow_top.png" ) 50% 25% / 20px no-repeat #47aaa1;
        border-radius: 10px;
        font-size: 12px;
    }
    .pc_page_top a:hover{
        color: #000;
        transition-duration: 0.4s;
        background: url( "../images/common/green_arrow_top.png" ) 50% 25% / 20px no-repeat #ffbf00;
    }
}

/* ---------------------------
    ページTOP（SP）
--------------------------- */
@media (max-width: 1024px){
    .sp_page_top{
        width: 60px;
        margin: 30px 0 0 auto;
        
    }
    .sp_page_top a{
        text-align: center;
        font-size: 10px;
        display: block;
        width: 60px;
        padding: 40px 0 10px 0;
        text-align: center;
        color: #fff;
        background: url( "../images/common/yellow_arrow_top.png" ) 50% 25% / 20px no-repeat #47aaa1;
    }
}

/* ---------------------------
    フッター（PC）
--------------------------- */
@media (min-width: 1024px){
    footer{
        background: #ccc;
        text-align: center;
        color: #000;
        padding: 40px 0;
        margin-top: 20px;
    }
}

/* ---------------------------
    フッター（SP）
--------------------------- */
@media (max-width: 1024px){
    footer{
        font-size: 12px;
        background: #ccc;
        text-align: center;
        color: #000;
        padding: 18px 0;
    }
}