@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 599px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
}

/*body*/

body {
    color: #435068;
    font-family: "Noto Sans Japanese", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    background-color: #fff;
}

.header .inner {
    padding: 10px 0;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    background-image: url(../images/mv_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mv .inner {
    padding: 150px 0 110px;
    position: relative;
}

.mv .inner .img {
    position: absolute;
    top: 30px;
    right: -100px;
    z-index: 0;
}

.mv .title {
    color: #fff;
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
}

.mv .title .small {
    font-size: 3.8rem;
}

.mv .title .yellow {
    color: #ffd543;
}

.mv .title .yellow02 {
    margin-left: -20px;
}

.mv .text {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.mv .btn {
    width: 400px;
    margin-top: 120px;
}

.mv .btn a {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-align: center;
    background-color: #ff8040;
    display: block;
    padding: 15px 0;
    border-radius: 50px;
    position: relative;
}

.mv .btn a::after {
    content: url(../images/btn_arrow.svg);
    display: inline-block;
    width: 9px;
    height: 18px;
    position: absolute;
    right: 30px;
    top: 15px;
}


/* ----------------------------------------------------------
slider
---------------------------------------------------------- */

.slider {
    margin: 20px 0;
}

@-webkit-keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.slide_show {
    display: flex;
    overflow: hidden;
}

.slide_show_list {
    display: flex;
    list-style: none;
}

.slide_show_list_left {
    -webkit-animation: infinity-scroll-left 50s infinite linear 0.5s both;
    animation: infinity-scroll-left 50s infinite linear 0.5s both;
}

.slide_show_list_right {
    -webkit-animation: infinity-scroll-right 50s infinite linear 0.5s both;
    animation: infinity-scroll-right 50s infinite linear 0.5s both;
}

.slide_show_item {
    width: 250px;
    margin: 0 20px;
}

.slide_show_item>img {
    width: 250px;
}


/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding: 100px 0;
}

.section .section_title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
}

.section .section_title img {
    margin-top: -35px;
}

/* ----------------------------------------------------------
about
---------------------------------------------------------- */

.about {
    background-image: url(../images/about_bg.svg);
    background-size: 55px;
}

.about .box {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 0 50px;
}

.about .box:last-of-type {
    margin-bottom: 0;
}

.about .description {
    color: #fff;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    margin-top: 30px;
}

.about .description span {
    background-color: #0d958a;
    padding: 5px 20px;
    border-radius: 5px;
}

.about .img {
    text-align: center;
    margin-top: 25px;
}

.about .img img {
    margin-right: -20px;
}

.about .video_box {
    margin-top: 70px;
}

.about .video_title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
    background-image: url(../images/video_title_bg.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 343px 71px;
    padding-top: 40px;
    margin-bottom: 20px;
}

.about .youtube {
    text-align: center;
}

/* ----------------------------------------------------------
point
---------------------------------------------------------- */

.point {
    background-color: #f3f7fa;
}

.point .section_title {
    background-image: url(../images/point_title_bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 50px 0;
    margin-bottom: 50px;
}

.point .box {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    height: 400px;
}

.point .box:last-of-type {
    margin-bottom: 0;
}

.point .box .img {
    width: 50%;
    text-align: center;
}

.point .box .contents {
    width: 50%;
    box-sizing: border-box;
}

.point .box .contents .title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-top: 10px;
}

.point .box .contents .title span {
    background: linear-gradient(transparent 60%, #ffd543 60%);
    padding: 0 10px;
}

.point .box .contents .text {
    font-size: 2rem;
    margin-top: 10px;
}

.point .box .contents .notes {
    font-size: 1.6rem;
}

.point .box .contents .notes::before {
    content: "*";
    font-size: 2rem;
}

.point .box:nth-of-type(odd) .contents {
    padding-right: 25px;
}

.point .box:nth-of-type(even) .contents {
    padding-left: 25px;
}

/* ----------------------------------------------------------
cta
---------------------------------------------------------- */

.cta {
    background-image: url(../images/cta_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}

.cta .inner {
    position: relative;
}

.cta .inner .img {
    position: absolute;
    top: -100px;
    right: -120px;
}

.cta .btn a {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 10px;
    text-align: center;
    background-color: #ff8040;
    display: block;
    padding: 15px 0;
    border-radius: 50px;
    position: relative;
    width: 600px;
    margin: 0 auto;
}

.cta .btn a::after {
    content: url(../images/btn_arrow.svg);
    display: inline-block;
    width: 13px;
    height: 26px;
    position: absolute;
    right: 30px;
    top: 13px;
}

/* ----------------------------------------------------------
case
---------------------------------------------------------- */

.case {
    background-color: #fff;
}

.case .section_title {
    background-image: url(../images/case_title_bg.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 224px 71px;
    padding-top: 40px;
    margin-bottom: 50px;
}

.case .box {
    background-color: #eef2f5;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.case .box:last-of-type {
    margin-bottom: 0;
}

.case .box .contents {
    width: calc(100% - 255px);
}

.case .box .contents .title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-top: 10px;
}

.case .box .contents .text {
    font-size: 2rem;
    margin-top: 10px;
}

/* ----------------------------------------------------------
qa
---------------------------------------------------------- */

.qa {
    background-image: url(../images/qa_bg.jpg);
    background-repeat: repeat-y;
    background-position: center top -100px;
    background-size: 3000px;
}

.qa .section_title {
    color: #fff;
    background-image: url(../images/qa_title_bg.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 190px 74px;
    padding-top: 40px;
    margin-bottom: 50px;
}

.qa .box {
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 25px;
}

.qa .box:last-of-type {
    margin-bottom: 0;
}

.qa .box .q_container {
    cursor: pointer;
    padding: 25px;
}

.qa .box .q {
    display: flex;
    position: relative;
}

.qa .box .q_container .q::after {
    content: url(../images/qa_open.svg);
    display: inline-block;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0;
    top: 5px;
}

.qa .box .q_container.close .q::after {
    content: url(../images/qa_close.svg);
}

.qa .box .q li:first-of-type,
.qa .box .a li:first-of-type {
    width: 50px;
}

.qa .box .q li:last-of-type {
    width: calc(100% - 90px);
    font-size: 2.6rem;
    font-weight: 500;
}

.qa .box .a_container {
    display: none;
    padding: 0 25px 25px 25px;
}

.qa .box .a {
    display: flex;
}

.qa .box .a li:last-of-type {
    font-size: 2rem;
    width: calc(100% - 50px);
    margin-top: 3px;
}

.qa .box .a li:last-of-type a:hover {
    text-decoration: underline;
}


/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    background-color: #fff;
    padding: 30px 0;
}

.footer .copyright {
    font-size: 1.2rem;
    text-align: center;
}

@media only screen and (max-width: 1024px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    /*body*/

    .container {
        overflow: hidden;
    }

    .inner {
        width: 95%;
        margin: 0 auto;
    }

    /* ----------------------------------------------------------
    header
    ---------------------------------------------------------- */

    .header {
        background-color: #fff;
    }

    .header .inner {
        padding: 10px 0;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv {
        background-image: url(../images/mv_bg.jpg);
        background-repeat: no-repeat;
        background-position: center left 32%;
        background-size: cover;
    }

    .mv .inner {
        padding: 50px 0 50px;
    }

    .mv .inner .img {
        text-align: center;
        position: static;
        top: auto;
        right: auto;
        margin-top: 20px;
    }

    .mv .inner .img img {
        width: 60%;
    }

    .mv .title {
        font-size: 3.8rem;
        text-align: center;
    }

    .mv .title .small {
        font-size: 2.8rem;
    }

    .mv .title .yellow {
        margin-left: 0;
    }

    .mv .text {
        text-align: center;
        font-size: 2.4rem;
        margin-top: 20px;
    }

    .mv .btn {
        width: 400px;
        margin: 50px auto 0;
    }


    /* ----------------------------------------------------------
slider
---------------------------------------------------------- */

    .slide_show_item {
        width: 180px;
    }

    .slide_show_item>img {
        width: 180px;
    }

    /* ----------------------------------------------------------
about
---------------------------------------------------------- */

    .about .description {
        font-size: 2.4rem;
    }

    .about .img img {
        width: 95%;
        margin-right: 0;
    }

    /* ----------------------------------------------------------
point
---------------------------------------------------------- */

    .point .box .img {
        width: 40%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .point .box .contents {
        width: 60%;
        box-sizing: border-box;
    }

    /* ----------------------------------------------------------
cta
---------------------------------------------------------- */
    .cta .inner .img {
        right: -75px;
    }
}

@media only screen and (max-width: 599px) {

    /* ----------------------------------------------------------
    header
    ---------------------------------------------------------- */

    .header .inner {
        padding: 5px 0;
    }

    .header .inner .logo img {
        width: 40vw;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv .inner {
        padding: 10% 0 10%;
    }

    .mv .inner .img {
        margin-top: 10px;
    }

    .mv .inner .img img {
        width: 90%;
    }

    .mv .title {
        font-size: 3.2rem;
    }

    .mv .title .small {
        font-size: 2.4rem;
    }

    .mv .text {
        font-size: 2rem;
        margin-top: 10px;
    }

    .mv .text br {
        display: none;
    }

    .mv .btn {
        width: 80%;
        margin: 5% auto 0;
    }

    .mv .btn a {
        font-size: 1.8rem;
        letter-spacing: 3px;
        padding: 10px 0;
    }

    .mv .btn a::after {
        width: 8px;
        height: auto;
        right: 20px;
        top: 10px;
    }

    /* ----------------------------------------------------------
slider
---------------------------------------------------------- */

    .slide_show_item {
        width: 150px;
    }

    .slide_show_item>img {
        width: 150px;
    }


    /* ----------------------------------------------------------
    section
    ---------------------------------------------------------- */
    .section {
        padding: 10% 0;
    }

    .section .section_title {
        font-size: 2.4rem;
    }

    .section .section_title img {
        width: 230px;
        margin-top: -31px;
    }

    /* ----------------------------------------------------------
    about
    ---------------------------------------------------------- */

    .about .box {
        padding: 50px 0 30px;
    }

    .about .description {
        font-size: 2rem;
        margin: 20px 10px 0;
        background-color: #0d958a;
        padding: 5px 10px;
        border-radius: 7px;
    }

    .about .description span {
        background-color: transparent;
        padding: 0;
    }

    .about .video_box {
        padding: 0 10px;
        margin-top: 10%;
    }

    .about .video_title {
        font-size: 2.4rem;
        background-size: auto 50px;
        padding-top: 20px;
    }

    .about .youtube {
        width: 100%;
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        margin: 0 auto;
    }

    .about .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* ----------------------------------------------------------
    point
    ---------------------------------------------------------- */

    .point .section_title {
        padding: 20px 0;
        margin-bottom: 10%;
    }

    .point .box {
        display: flex;
        flex-direction: column;
        margin-bottom: 10%;
        height: auto;
        padding: 15px;
    }

    .point .box .img {
        width: 100%;
        order: 1;
        margin-top: 20px;
    }

    .point .box .contents {
        width: 100%;
        order: 0;
    }

    .point .box .contents .title {
        font-size: 2.4rem;
    }

    .point .box .contents .title span {
        padding: 0 5px;
    }

    .point .box .contents .text {
        font-size: 2rem;
    }

    .point .box:nth-of-type(odd) .contents {
        padding-right: 0;
    }

    .point .box:nth-of-type(even) .contents {
        padding-left: 0;
    }

    /* ----------------------------------------------------------
    cta
    ---------------------------------------------------------- */

    .cta {
        padding: 10% 0;
    }

    .cta .inner {
        position: relative;
    }

    .cta .inner .img {
        position: absolute;
        top: -18vw;
        right: -12vw;
    }

    .cta .inner .img img {
        width: 40vw;
    }

    .cta .btn a {
        font-size: 2.1rem;
        letter-spacing: 5px;
        padding: 12px 0;
        width: 80%;
    }

    .cta .btn a::after {
        width: 10px;
        height: auto;
        right: 25px;
    }

    /* ----------------------------------------------------------
    case
    ---------------------------------------------------------- */

    .case .box {
        padding: 15px;
        display: flex;
        flex-direction: column;
        margin-bottom: 10%;
    }

    .case .box:last-of-type {
        margin-bottom: 0;
    }

    .case .box .contents {
        width: 100%;
        order: 0;
    }

    .case .box .img {
        order: 1;
        margin-top: 20px;
    }

    .case .box .contents .title {
        font-size: 2.4rem;
    }

    .case .box .contents .text {
        font-size: 2rem;
    }

    /* ----------------------------------------------------------
    qa
    ---------------------------------------------------------- */

    .qa .box {
        border-radius: 10px;
        margin-bottom: 5%;
    }

    .qa .box .q_container {
        padding: 15px;
    }

    .qa .box .q_container .q::after {
        width: 20px;
        height: 20px;
        top: 6px;
    }

    .qa .box .q li:first-of-type img,
    .qa .box .a li:first-of-type img {
        width: 30px;
    }

    .qa .box .q li:first-of-type,
    .qa .box .a li:first-of-type {
        width: 40px;
    }

    .qa .box .q li:last-of-type {
        width: calc(100% - 70px);
        font-size: 2rem;
    }

    .qa .box .a_container {
        padding: 0 15px 15px 15px;
    }

    .qa .box .a li:last-of-type {
        font-size: 1.8rem;
        width: calc(100% - 40px);
        margin-top: 0;
    }


    /* ----------------------------------------------------------
    footer
    ---------------------------------------------------------- */

    .footer {
        padding: 15px 0;
    }

    .footer .copyright {
        font-size: 1rem;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/