@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
    font-size: 62.5%;
}

body {
    color: #333333;
    font-size: 1.6rem;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    body {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    display: inline-block;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #333333;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

a img,
a .btn {
    transition: 0.3s
}

a img:hover,
a .btn:hover {
    opacity: 0.7;
}


.pc_block {
    display: block;
}

.pc_inline_block {
    display: inline-block;
}

.sp_block {
    display: none;
}

@media screen and (max-width: 750px) {
    .pc_block {
        display: none;
    }

    .pc_inline_block {
        display: none;
    }

    .sp_block {
        display: block;
    }
}

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

.fL {
    float: left;
}

.fR {
    float: right;
}

.alignC {
    text-align: center;
}

.alignR {
    text-align: right;
}

.alignL {
    text-align: left;
}

.mgnT10 {
    margin-top: 10px;
}

.mgnR10 {
    margin-right: 10px;
}

.mgnB10 {
    margin-bottom: 10px;
}

.mgnL10 {
    margin-left: 10px;
}

.mgnT20 {
    margin-top: 20px;
}

.mgnR20 {
    margin-right: 20px;
}

.mgnB20 {
    margin-bottom: 20px;
}

.mgnL20 {
    margin-left: 20px;
}

/*/////ボタン/////*/
.btn {
    font-size: 13px;
    text-align: center;
    color: #ffffff;
    width: 240px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 60px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 25px;
    line-height: 1.3;
    font-weight: bold;
}

.btn::before {
    /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 204px;
    width: 8px;
    /* くの字を山なりに見た時、左側の長さ */
    height: 8px;
    /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #fff;
    /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #fff;
    /* くの字を山なりに見た時、右側の太さと色 */
    transform: rotate(45deg);
    /* くの字の向き */
}

.btn_orange {
    background: #F38200;
}

.btn_green {
    background: #399D26;
}

.container {
    width: 1200px;
    margin: auto;
    padding: 0;
}

@media screen and (max-width: 750px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}