@media screen and (min-width: 769px), print {
    .faq {
        padding: 80px 0 100px;
        background: #e7eef6;
        counter-reset: num;
    }
    .faq .faq__anchor {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: -10px -10px 3px;
    }
    .faq .faq__anchor a {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        width: -webkit-calc(33.333% - 20px);
        width: -moz-calc(33.333% - 20px);
        width: calc(33.333% - 20px);
        -moz-box-shadow: 0 10px 20px rgba(0, 64, 121, 0.13);
            box-shadow: 0 10px 20px rgba(0, 64, 121, 0.13);
        margin: 10px 10px 0;
        color: #fff;
        background: #005bab;
        font-size: 1.8rem;
        font-weight: 500;
        height: 64px;
        letter-spacing: .1em;
        -moz-border-radius: 999px;
            border-radius: 999px;
        -moz-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
        -webkit-transition: opacity .3s ease-out;
        -moz-transition: opacity .3s ease-out;
        transition: opacity .3s ease-out;
    }
    .faq .faq__anchor a:after {
        content: '';
        display: block;
        width: 18px;
        height: 11px;
        background: url("/img/accordion_arrow_white.png") 0 0/100% no-repeat;
        position: absolute;
        top: 26px;
        right: 30px;
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
    }
    .faq .faq__anchor a:hover {
        opacity: .7;
    }
    .faq .faq__anchor a:hover:after {
        -webkit-transform: translateY(5px);
            -moz-transform: translateY(5px);
            -ms-transform: translateY(5px);
                transform: translateY(5px);
    }
    .faq__block {
        padding-top: 57px;
    }
    .faq__ttl {
        font-size: 2.8rem;
        line-height: 1.5;
        font-weight: 500;
        letter-spacing: .075em;
        color: #282828;
        margin-bottom: 33px;
    }
    .faq__item {
        counter-increment: num;
        -moz-box-shadow: 0 10px 20px rgba(0, 64, 121, 0.13);
            box-shadow: 0 10px 20px rgba(0, 64, 121, 0.13);
        background: #fff;
    }
    .faq__item:not(:last-child) {
        margin-bottom: 20px;
    }
    .faq__item .accordion__trigger {
        position: relative;
        padding: 20px 80px 18px 40px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: #005bab;
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: .075em;
        -webkit-transition: opacity .3s ease-out;
        -moz-transition: opacity .3s ease-out;
        transition: opacity .3s ease-out;
    }
    .faq__item .accordion__trigger:before {
        content: "Q" counter(num);
        display: block;
        font-family: "Montserrat", sans-serif;
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: .1em;
        margin-right: 22px;
    }
    .faq__item .accordion__trigger:after {
        content: '';
        display: block;
        width: 18px;
        height: 11px;
        background: url("/img/accordion_arrow.png") 0 0/100% no-repeat;
        position: absolute;
        top: 36px;
        right: 42px;
        -webkit-transform: scaleY(-1);
            -moz-transform: scaleY(-1);
            -ms-transform: scaleY(-1);
                transform: scaleY(-1);
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
    }
    .faq__item .accordion__trigger:hover {
        opacity: 0.7;
    }
    .faq__item .accordion__trigger.open:after {
        -webkit-transform: scaleY(1);
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
                transform: scaleY(1);
    }
    .faq__item .accordion__inner {
        border-top: 1px solid #ccc;
        padding: 30px 40px 35px;
    }
    .faq__item .accordion__inner a {
        color: #005bab;
        border-bottom: 1px solid;
        padding-bottom: 5px;
        -webkit-transition: opacity .3s ease-out, border-color .3s ease-out;
        -moz-transition: opacity .3s ease-out, border-color .3s ease-out;
        transition: opacity .3s ease-out, border-color .3s ease-out;
    }
    .faq__item .accordion__inner a:hover {
        opacity: .7;
        border-bottom-color: transparent;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 15.625vw 0 13.02083vw;
        background: #e7eef6;
        counter-reset: num;
    }
    .faq .faq__anchor a {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        color: #fff;
        background: #005bab;
        font-size: 3.64583vw;
        font-weight: 500;
        height: 10.9375vw;
        letter-spacing: .1em;
        -moz-border-radius: 999px;
            border-radius: 999px;
        -moz-box-shadow: 0 1.30208vw 2.60417vw rgba(0, 64, 121, 0.13);
            box-shadow: 0 1.30208vw 2.60417vw rgba(0, 64, 121, 0.13);
        -moz-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
        -webkit-transition: opacity .3s ease-out;
        -moz-transition: opacity .3s ease-out;
        transition: opacity .3s ease-out;
    }
    .faq .faq__anchor a:not(:last-child) {
        margin-bottom: 2.60417vw;
    }
    .faq .faq__anchor a:after {
        content: '';
        display: block;
        width: 3.25521vw;
        height: 1.95313vw;
        background: url("/img/accordion_arrow_white.png") 0 0/100% no-repeat;
        position: absolute;
        top: 4.42708vw;
        right: 6.51042vw;
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
    }
    .faq__block {
        padding-top: 10.15625vw;
    }
    .faq__ttl {
        font-size: 4.6875vw;
        line-height: 1.5;
        font-weight: 500;
        letter-spacing: .075em;
        color: #282828;
        margin-bottom: 6.51042vw;
    }
    .faq__item {
        counter-increment: num;
        -moz-box-shadow: 0 10px 20px rgba(0, 64, 121, 0.13);
            box-shadow: 0 10px 20px rgba(0, 64, 121, 0.13);
        background: #fff;
    }
    .faq__item:not(:last-child) {
        margin-bottom: 3.90625vw;
    }
    .faq__item .accordion__trigger {
        position: relative;
        padding: 5.85938vw 13.02083vw 6.11979vw 6.51042vw;
        color: #005bab;
        font-size: 4.16667vw;
        font-weight: 500;
        line-height: 6.51042vw;
        -moz-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
        letter-spacing: .075em;
    }
    .faq__item .accordion__trigger:before {
        content: "Q" counter(num);
        display: block;
        font-family: "Montserrat", sans-serif;
        font-size: 4.6875vw;
        font-weight: 600;
        letter-spacing: .1em;
        margin-bottom: 1.17188vw;
    }
    .faq__item .accordion__trigger:after {
        content: '';
        display: block;
        width: 3.25521vw;
        height: 1.95313vw;
        background: url("/img/accordion_arrow.png") 0 0/100% no-repeat;
        position: absolute;
        top: 15.36458vw;
        right: 6.64063vw;
        -webkit-transform: scaleY(-1);
            -moz-transform: scaleY(-1);
            -ms-transform: scaleY(-1);
                transform: scaleY(-1);
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
    }
    .faq__item .accordion__trigger.open:after {
        -webkit-transform: scaleY(1);
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
                transform: scaleY(1);
    }
    .faq__item .accordion__inner {
        border-top: 0.13021vw solid #ccc;
        padding: 6.38021vw 6.51042vw 8.07292vw;
    }
    .faq__item .accordion__inner a {
        color: #005bab;
        border-bottom: 1px solid;
        padding-bottom: 0.65104vw;
    }
    .faq .pagination {
        margin-top: 11.45833vw;
    }
}
