@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    font-size: 62.5%;
    /*safari対応*/
    -webkit-text-size-adjust: 100%;
}

/*body
---------------------------------------------------------------------------*/
body {
    padding-top: 100px;
    background-color: #fff;
    color: #222;
    font-size: 1.6rem;
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/*ボディ レスポンシブ*/
@media screen and (max-width: 991px) {
    body {
        padding-top: 70px;
        font-size: 1.45rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}

p {
    line-height: 1.8;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: 100%;
    vertical-align: bottom;
    height: auto
}

a {
    color: #222;
}

picture {
    display: block;
}

/*フォーム部品
---------------------------------------------------------------------------*/
/*input,
textarea {
    border-radius: 0;
    font-size: 1.6rem;
    line-height: 1.5;
    -webkit-appearance: none;
}

textarea {
    resize: none;
}


input[type=checkbox],
input[type=radio] {
    display: none;
}

input[type=checkbox]+label,
input[type=radio]+label {
    display: inline-block;
    position: relative;
    padding-left: 1.3em;
    cursor: pointer;
}

input[type=checkbox]+label::before, input[type=checkbox]+label::after,
input[type=radio]+label::before,
input[type=radio]+label::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
}

input[type=checkbox]+label::before,
input[type=radio]+label::before {
    left: 0;
    width: 1em;
    height: 1em;
    border: 1px solid #222;
}

input[type=checkbox]:checked+label::after,
input[type=radio]:checked+label::after {
    left: 0.2em;
    width: 0.6em;
    height: 0.6em;
    background-color: #222;
}

input[type=radio]+label::before, input[type=radio]+label::after {
    border-radius: 50%;
}

select {
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    line-height: 1.5;
}
*/

button {
    border: 0;
    border-radius: 0;
    padding: 0;
    background-image: none;
    font-family: inherit;
    font-size: 100%;
    outline: none;
}

button {
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    line-height: 1.5;
}

/*フォント
---------------------------------------------------------------------------*/
@font-face {
    font-family: "impact-subset";
    font-weight: normal;
    src: url("../fonts/impact.woff2") format("woff2"), url("../fonts/impact.woff") format("woff");
}

/*==========================================================================
エレメントグループ

・ボタンやラベル、見出し等の最小単位のモジュールで、どこにでも埋め込むことが可能なモジュール
===========================================================================*/

/*ボタン
---------------------------------------------------------------------------*/
/*通常*/
.el_btn {
    display: inline-block;
    position: relative;
    padding: 0.2em 0.6em;
    min-width: 200px;
    max-width: 100%;
    background-color: #D80235;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: "impact-subset", sans-serif;
    font-size: 2.9rem;
    line-height: 1.4;
}

.el_btn::after {
    display: inline-block;
    margin-left: 0.6em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4em 0 0.4em 0.69em;
    border-color: transparent transparent transparent #fff;
    content: "";
}

@media (any-hover: hover) {
    .el_btn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_btn::after {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_btn:focus, .el_btn:hover {
        opacity: 0.6;
    }

    .el_btn:focus::after, .el_btn:hover::after {
        -webkit-transform: translateX(0.2em);
        transform: translateX(0.2em);
    }
}

@media all and (-ms-high-contrast: none) {
    .el_btn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_btn::after {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_btn:focus, .el_btn:hover {
        opacity: 0.6;
    }

    .el_btn:focus::after, .el_btn:hover::after {
        -webkit-transform: translateX(0.2em);
        transform: translateX(0.2em);
    }
}

/*ボタン レスポンシブ*/
@media screen and (max-width: 767px) {
    .el_btn {
        min-width: 136px;
        font-size: 2rem;
    }
}

/*Sサイズ*/
.el_btn.el_btn__s {
    font-size: 2rem;
    min-width: 136px;
}

/*角丸*/
.el_roundBtn {
    display: inline-block;
    position: relative;
    padding: 0.4em 0.6em;
    width: 260px;
    max-width: 100%;
    background-color: #0A3676;
    border-radius: 2em;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
}

.el_roundBtn  {
    color: #fff;
    text-decoration: none;
}

@media (any-hover: hover) {
    .el_roundBtn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_roundBtn:focus, .el_roundBtn:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .el_roundBtn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_roundBtn:focus, .el_roundBtn:hover {
        opacity: 0.6;
    }
}

/*角丸ボタン レスポンシブ*/
@media screen and (max-width: 767px) {
    .el_roundBtn {
        padding: 0.5em 0.6em;
        width: 214px;
        font-size: 1.5rem;
    }
}

/*ラベル
---------------------------------------------------------------------------*/
.el_label {
    display: inline-block;
    padding: 0.1em 0.5em;
    color: #fff;
    background-color: #D80235;
    font-size: 1.2rem;
    text-align: center;
}

a.el_label {
    text-decoration: none;
}

@media (any-hover: hover) {
    a.el_label {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    a.el_label:focus, a.el_label:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    a.el_label {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    a.el_label:focus, a.el_label:hover {
        opacity: 0.6;
    }
}

/*ラベル レスポンシブ*/
@media screen and (max-width: 767px) {
    .el_label {
        font-size: 1rem;
    }
}

/*水平ライン
---------------------------------------------------------------------------*/
.el_horizLine {
    display: block;
    margin-bottom: 40px;
    border-top: 1px dotted #D80235;
}

/*水平ライン レスポンシブ*/
@media screen and (max-width: 767px) {
    .el_horizLine {
        margin-bottom: 32px;
    }
}

/*ページトップ
---------------------------------------------------------------------------*/
.el_pagetop {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
}

.el_pagetop_inner {
    display: block;
    padding: 0.6em;
    min-width: 94px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
}

@media (any-hover: hover) {
    .el_pagetop_inner {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_pagetop_inner:focus, .el_pagetop_inner:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .el_pagetop_inner {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .el_pagetop_inner:focus, .el_pagetop_inner:hover {
        opacity: 0.6;
    }
}

.el_pagetop_inner::before {
    display: inline-block;
    margin-right: 0.4em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.46em 0.8em 0.46em;
    border-color: transparent transparent #fff transparent;
    content: "";
}

/*コピーライト
---------------------------------------------------------------------------*/
.el_copyright {
    font-size: 1.5rem;
}

/*コピーライト レスポンシブ*/
@media screen and (max-width: 991px) {
    .el_copyright {
        font-size: 1.3rem;
    }
}


/*モバイル表示*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc-view { display: block }
.sp-view {display:none }

@media only screen and (max-width: 767px) {
.pc-view { display: none; }
.sp-view {display:block ; }
}
