@charset "utf-8";

/* ==========================================================================
   Foundation
========================================================================== */


/* Base
----------------------------------------------------------------- */

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

* {
    min-height: 0;
    min-width: 0;
}

:focus {
    outline: inherit;
}

body,
html {
    width: 100%;
    min-height: 100%;
    font-family: dnp-shuei-gothic-gin-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 62.5%;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

p {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2.2;
}

img {
    width: 100%;
    vertical-align: bottom;
    -webkit-backface-visibility: hidden;
}

a {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    vertical-align: baseline;
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: currentColor;
    background: 0 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

em {
    font-style: normal;
}

img,
video,
object {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

main {
    width: 100%;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.pc-none {
    display: none;
}

@media screen and (max-width: 768px) {
    p {
        line-height: 2;
    }
    .pc-none {
        display: block;
    }
    .sp-none {
        display: none;
    }
}


/*----- flex -----*/

.flex,
.flex-full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 768px) {
    .flex {
        display: block;
    }
}

.flex-jsb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-je {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-jc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-dr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-ac {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-ww {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


/*----- loader -----*/

.loader {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 99999;
    position: fixed;
    background: #48CDBE;
}

.loader__inner {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.loader__txt {
    width: 100%;
    text-align: center;
    color: #fff;
    position: fixed;
    font-size: 1.8rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader__img {
    width: 150px;
    margin: 20px auto 0;
}

@media screen and (max-width: 768px) {
    .loader__txt {
        font-size: 1.6rem;
    }
}


/*----- cursor -----*/

.cursor--container {
    background: #fff;
}

.cursor--container,
.cursor--container a {
    cursor: none;
}

.cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
}

.cursor--small {
    width: 5px;
    height: 5px;
    left: -2.5px;
    top: -2.5px;
    border-radius: 50%;
    z-index: 11000;
    background: #000;
}

.cursor--canvas {
    width: 100vw;
    height: 100vh;
    z-index: 12000;
}

@media screen and (max-width: 768px) {
    .cursor--small,
    .cursor--canvas {
        display: none;
    }
}


/* ==========================================================================
   Layout
========================================================================== */


/*----- main -----*/

.l-main {
    background: #fff;
}


/*----- footer -----*/

.l-footer {
    background: #151D35;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

@media screen and (max-width:768px) {
    .l-footer {
        padding: 0px 0 20px;
    }
}


/*----- container -----*/

.l-container {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.l-inner {
    width: 80%;
    margin: 0 auto;
    max-width: 1400px;
}

@media screen and (max-width: 768px) {
    .l-container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .l-inner {
        width: 90%;
        margin: 0 auto;
    }
}


/* ==========================================================================
   Object
========================================================================== */


/* Component
----------------------------------------------------------------- */

.c-s-ttl__bg {
    position: relative;
}

.c-s-ttl__bg::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 354px;
    height: 306px;
    top: 0;
    left: 0;
    background: url(../images/ttl-bg__left.svg) no-repeat;
    background-size: cover;
    z-index: 1;
}

.c-s-ttl__bg::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 269px;
    height: 252px;
    top: 0;
    right: 0;
    background: url(../images/ttl-bg__right.svg) no-repeat;
    background-size: cover;
    z-index: 1;
}

.c-s-ttl {
    position: relative;
    width: 80%;
    margin: 50px auto 100px;
    padding-top: 30px;
    z-index: 2;
}

.c-s-ttl--h2 {
    font-size: 3.6rem;
    font-weight: bold;
    letter-spacing: .05em;
}

.c-s-ttl--h3 {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: .15em;
}

.c-s-ttl--h4 {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: .05em;
}

.c-cont-ttl-wrap {
    text-align: center;
    margin-bottom: 80px;
}
.c-cont__subttl {
    margin-bottom: 20px;
}

.c-cont__ttl span {
    border-bottom: 3px #191E2E solid;
    padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .c-s-ttl {
        width: 100%;
        margin: 30px auto 80px;
    }
    .c-s-ttl__bg::before {
        background: url(../images/ttl-bg__left-sp.svg) no-repeat;
        background-size: cover;
        top: 0;
        left: -10%;
        width: 150px;
        height: 128px;
    }
    .c-s-ttl__bg::after {
        background: url(../images/ttl-bg__right-sp.svg) no-repeat;
        background-size: cover;
        width: 150px;
        height: 140px;
        top: 90px;
        right: -10%;
    }
    .c-s-ttl--h2 {
        font-size: 2.4rem;
    }
    .c-s-ttl--h3 {
        font-size: 1.8rem;
        line-height: 1.6;
    }
    .c-s-ttl--h4 {
        font-size: 1.6rem;
    }
    .c-cont-ttl-wrap {
        margin-bottom: 40px;
    }
}


/*----- loop -----*/

.c-loop {
    position: relative;
}

.c-loop__inner {
    white-space: nowrap;
    animation-name: loop;
    animation-duration: 36s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
}

@keyframes loop {
    0% {
        transform: translate3d(0, 0, 0)
    }
    100% {
        transform: translate3d(-50%, 0, 0)
    }
}



/*----- c-box -----*/
.c-box {
    background: #fff;
    border-radius: 20px;
    padding: 100px 80px;
}
@media screen and (max-width: 768px) {
    .c-box {
        padding: 40px 5%;
    }
}


/*----- btn -----*/

.c-btn-wrap--center {
    text-align: center;
}

.c-btn {
    display: inline-block;
    padding: 25px 60px 25px 72px;
    font-size: 1.6rem;
    margin: 0;
    background: #fff;
    border-radius: 50px;
    color: #151D35;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}
.c-btn--yellow {
    background: #FDD831;
}

.c-btn.small {
    display: inline-block;
    padding: 14px 25px 14px 43px;
    font-size: 1.4rem;
    border: 1px #fff solid;
}

.modal .c-btn {
    display: inline-block;
    padding: 14px 25px 14px 25px;
    font-size: 1.4rem;
    border: 1px #fff solid;
    margin-top: 10px;
}

.c-btn:hover {
    background: #fdd831;
}

.c-mail-yellow::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 38px;
    height: 38px;
    top: 15px;
    left: 15px;
    background: url(../images/icn_mail.svg) no-repeat;
    background-size: cover;
}
.c-mail-green::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 38px;
    height: 38px;
    top: 15px;
    left: 15px;
    background: url(../images/icn_mail--green.svg) no-repeat;
    background-size: cover;
}

.c-document-yellow::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 38px;
    height: 38px;
    top: 15px;
    left: 15px;
    background: url(../images/icn_document.svg) no-repeat;
    background-size: cover;
}
.c-document-green::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 38px;
    height: 38px;
    top: 15px;
    left: 15px;
    background: url(../images/icn_document--green.svg) no-repeat;
    background-size: cover;
}

.c-mail-yellow::after,
.c-mail-green::after,
.c-document-yellow::after,
.c-document-green::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    top: 19px;
    right: 20px;
    background: url(../images/icn_arrow.svg) no-repeat;
    background-size: cover;
}

.c-btn.small .c-mail-yellow::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    top: 9px;
    left: 10px;
    background: url(../images/icn_mail.svg) no-repeat;
    background-size: cover;
}

.c-btn.small .c-mail-yellow::after {
    content: none;
}


.c-cnv-wrap {
    background: #FDD831;
    padding: 40px 0 70px;
    font-size: 1.7rem;
}
.c-cnv-wrap--white {
    background: none;
    overflow: hidden;
}
.c-cnv-wrap--white .l-inner {
    position: relative;
    z-index: 2;
}
.c-cnv-wrap--white::before {
    position: absolute;
    content: "";
    display: block;
    width: 320px;
    height: 384px;
    bottom: 0;
    left: -5%;
    background: url(../images/cnv-white-bg-left.png) no-repeat;
    background-size: cover;
    z-index: 1;
}
.c-cnv-wrap--white::after {
    position: absolute;
    content: "";
    display: block;
    width: 320px;
    height: 384px;
    bottom: 0;
    right: -5%;
    background: url(../images/cnv-white-bg-right.png) no-repeat;
    background-size: cover;
    z-index: 1;
}
.c-cnv__img {
    width: 100%;
    max-width: 718px;
    margin-left: 40px;
    position: relative;
    left: 36%;
    transform: translateX(-50%);
}

.c-cnv-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.c-cnv-btn-wrap.modal {
    text-align: center;
    margin-top: 10px;
}
.c-cnv-btn {
    width: 100%;
    max-width: 380px;
    padding: 25px 60px 25px 72px;
    border: 2px #fff solid;
}
.c-cnv-btn-wrap--mail {
    margin-top: -90px;
}
.c-cnv-btn--mail::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 140px;
    height: 90px;
    top: -45px;
    right: -130px;
    background: url(../images/p-cnv__comment.svg) no-repeat;
    background-size: cover;
}

.c-cnv-btn .c-mail-yellow::before,
.c-cnv-btn .c-mail-green::before{
    top: 15px;
    left: 15px;
}
.c-cnv-btn .c-mail-yellow::after,
.c-cnv-btn .c-mail-green::after{
    width: 30px;
    height: 30px;
    top: 19px;
    right: 20px;
}
.c-cnv-btn:hover {
    background: #fff;
    border: 2px #191E2E solid;
}
@media screen and (max-width:768px) {
    .c-cnv__img {
        margin-left:0;
        left:0;
        transform:none;
    }
    .c-btn-wrap,
    .c-cnv-btn-wrap--mail{
        margin-top: 30px;
    }
    .c-cnv-btn-wap {
        margin-top :30px;
    }
    .c-cnv-btn::before {
        width: 120px;
        height: 77px;
        top: -64px;
        right: 0;
    }
    .c-cnv-wrap--white::before {
        left: 0;
        width: 100%;
        height: 200px;
        background: url(../images/cnv-white-bg-sp.png) no-repeat;
        background-size: cover;
    }
    .c-cnv-wrap--white::after {
        content: none;
    }
    
}

.c-col {
    padding-bottom: 80px;
}
.c-col__txt {
    width: 100%;
    max-width: 500px;
    padding-left: 50px;
    position: relative;
}
.c-col__txt::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 216px;
    height: 220px;
    top: 0;
    right: 0;
    background: url(../images/c-col__txt__bg.svg) no-repeat;
    background-size: cover;
    z-index: 1;
}
.c-col__txt__wrap {
    position: relative;
    z-index: 2;
}
.c-col__txt--right {
    padding-left: 0;
    padding-right: 50px;
}
.c-col__tag {
    display: inline-block;
    padding: 10px;
    background: #FDD831;
    font-size: 1.2rem;
    border-radius: 5px;
}
.c-col__ttl {
    margin-bottom: 60px;
    line-height: 2.4;
}
.c-col__ttl em {
    color: #45C3B4;
}
.c-col__ttl span {
    border-bottom: 3px #191E2E solid;
    padding-bottom: 10px;
}
.c-col__img {
    width: 50%;
}
@media screen and (max-width:768px) {
    .c-col {
        padding-bottom: 40px;
    }
    .c-col__img {
        width: 100%;
    }
    .c-col__txt,
    .c-col__txt--right {
        padding: 0;
        margin-top: 30px;
    }
    .c-col__txt::before {
        width: 148px;
        height: 150px;
    }
    .c-col__ttl {
        margin-bottom: 30px;
    }
}

/* Project
----------------------------------------------------------------- */


/*----- Header -----*/

body.is_start,
body.is_fix {
    overflow: hidden;
    height: 100%;
}

body.is_scroll .p-h-menu {
    visibility: hidden;
}

body.is_fix .p-h-menu {
    visibility: visible;
}


/*----- Header -----*/

.p-header {
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 9999;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.p-header.is-scroll {
    background: #fff;
}
.p-header.is-scroll .p-header-navi__link {
    color: #191E2E;
}
.p-header.is-scroll .c-btn.small {
    border: 1px #191E2E solid;
}

.p-header__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.p-header__heading {
    float: left;
    padding: 0;
    text-align: left;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10001;
}

.p-header__logo {
    width: 125px;
}

.p-header__title {
    font-weight: normal;
    font-size: 1.1rem;
    padding-left: 10px;
}

.p-header-navi {
    margin: 0;
}

.p-header-navi__list {
    position: relative;
    padding: 0 20px;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
}

.p-header-navi__link {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 25px 0px;
    color: #fff;
}

.p-header-navi__link:hover {
    opacity: 0.8;
}

.p-header-navi__link--btn:hover {
    background: #151D35;
    color: #fff;
    opacity: 1;
}

.p-header-sub-navi__wrap {
    opacity: 0;
    position: absolute;
    right: -9999px;
    z-index: -1;
    display: block;
    height: 0;
    background: #F1F4F9;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: opacity, height;
    transition-property: opacity, height;
}

.p-header-navi__list:hover .p-header-sub-navi__wrap {
    opacity: 1;
    right: 0;
    z-index: 0;
    display: block;
    height: auto;
}

.p-header-sub-navi {
    font-size: 0;
    display: block;
    text-align: left;
    white-space: nowrap;
}

.p-header-sub-navi__list+li {
    border-top: solid 1px #fff;
}

.p-header-sub-navi__target {
    line-height: 56px;
    display: block;
    padding: 0 36px;
    height: 56px;
}

.p-header-sub-navi__target:hover {
    color: #E7373C;
}

.p-header--sp {
    display: none;
}

.menu_list_menu {
    width: 1080px;
    margin: 47px auto 35px;
    overflow: hidden;
    border-bottom: solid 1px #eee;
}

.menu_list_menu ul {
    float: left;
    display: block;
    width: auto;
    margin: 0 50px 10px 0;
    text-align: left;
}

.menu_list_menu li {
    display: block;
    padding: 0 0 23px;
    line-height: 100%;
    font-size: 120%;
    -moz-column-count: 2;
}

.menu_list_menu li a {
    color: #303030;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.menu_list_menu li a:hover {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.menu_trigger,
.menu_trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
}

.menu_trigger {
    position: absolute;
    top: 12px;
    right: 5%;
    width: 16px;
    height: 22px;
    z-index: 10001;
}

.menu_trigger span {
    position: absolute;
    z-index: 9999;
    left: 0px;
    width: 16px;
    height: 2px;
    background-color: #000;
}

.menu_trigger span:nth-of-type(1) {
    top: 3px;
}

.menu_trigger span:nth-of-type(2) {
    top: 10px;
}

.menu_trigger span:nth-of-type(3) {
    bottom: 3px;
}

.menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
}

#overlay {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 10000;
    padding: 47px 0 0;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

@media screen and (max-width: 768px) {
    .p-header--sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 99999;
    }
    .p-header__left {
        width: 35%;
        padding: 15px 0 15px 5%;
    }
    .p-header__logo {
        width: 60%;
        max-width: 150px;
        min-width: 100px;
    }
    .p-header__right {
        padding-right: calc(5% + 45px);
    }
    .p-header-navi__link--btn {
        font-size: 1.1rem;
        padding: 5px 12px;
        width: auto;
    }
    .body_fix {
        overflow: hidden;
        height: 100%;
    }
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #fff;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    #overlay .line {
        width: 100%;
        height: 1px;
        background-color: #EEE;
    }
    #overlay .content {
        width: 100%;
        margin: 0;
        padding: 0 0 50px 0;
        height: 100%;
        overflow-x: hidden;
        background: #FDD831;
    }
    .sns {
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        text-align: left;
        background-color: #f8f8f8;
    }
    .sns_menu {
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        text-align: left;
        background-color: #f8f8f8;
    }
    .sns_menu .right_pa {
        padding: 0 30px 0 0;
    }
    .menu_list_menu {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        border: none;
        background: #fff;
    }
    .menu_list_menu ul {
        float: left;
        display: block;
        width: 100%;
        margin: 0 50px 0 0;
        text-align: left;
    }
    .menu_list_menu ul:after {
        content: "";
        clear: both;
        display: block;
    }
    .menu_list_menu li {
        position: relative;
        height: 60px;
        line-height: 44px;
        font-size: 16px;
        margin-bottom: 1px;
        border-bottom: solid 2px #e5e5e5;
    }
    .menu_list_menu li:first-child {
        border-top: 0px;
    }
    .menu_list_menu li a {
        display: block;
        padding: 5px 0 0 16px;
    }
    .menu_list_menu .arrow {
        background-image: url("../img/common/btn_next_sp.png");
        background-size: 6px 10px;
        background-repeat: no-repeat;
        background-position: 0 0;
        position: absolute;
        width: 6px;
        height: 10px;
        top: 25px;
        right: 16px;
    }
    .menu_trigger {
        width: 20px;
        height: 22px;
        cursor: pointer;
    }
    .menu_trigger span {
        width: 18px;
    }
}


/*----- mv -----*/

.p-mv {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #48CDBE;
    overflow: hidden;
}

.p-mv-repeat-bg {
    background: url(../images/p-mv-repeat-bg.svg) center center / 20% repeat;
    transform: rotate(20deg);
    position: absolute;
    top: -50%;
    left: -50%;
    width: 300vw;
    height: 300vh;
    animation: 30s linear infinite normal none running p-repeat-bg;
}

@keyframes p-repeat-bg {
    0% {
        transform: translate3d(0, 0, 0) rotate(20deg);
    }
    100% {
        transform: translate3d(15%, -15%, 0) rotate(20deg);
    }
}

.p-mv-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.p-mv-icon-bg {
    position: absolute;
    top: 40%;
    left: 0%;
    width: 50vw;
    height: 50vh;
    transform: translateY(-50%);
}

.p-mv__left {
    width: 60%;
    position: absolute;
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 1;
}

.p-mv__right {
    width: 38%;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 5%;
    z-index: 1;
    background: url(../images/p-mv__right__bg.svg) center center / contain no-repeat;
}

.p-mv__ttl {
    font-size: 5.4vw;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 100px;
    font-weight: bold;
}

.p-mv__subttl {
    font-size: 1.6vw;
    color: #fff;
    letter-spacing: .15em;
    font-weight: bold;
}

.p-mv__img img {
    max-height: 80vh;
    width: auto;
}

.p-mv__img01::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 60px;
    height: 150px;
    top: 30px;
    left: 30px;
    background: url(../images/p-mv__slide__text01.svg) no-repeat;
    background-size: cover;
}

.p-mv__img02::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 60px;
    height: 140px;
    top: 30px;
    left: 30px;
    background: url(../images/p-mv__slide__text02.svg) no-repeat;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .p-mv-repeat-bg {
        width: 1000vw;
        height: 300vh;
        animation: 10s linear infinite normal none running p-repeat-bg;
    }
    @keyframes p-repeat-bg {
        0% {
            transform: translate3d(0, 0, 0) rotate(20deg);
        }
        100% {
            transform: translate3d(5%, -5%, 0) rotate(20deg);
        }
    }
    .p-mv-header-bg {
        max-width: 220px;
    }
    .p-mv-icon-bg {
        position: absolute;
        top: 30%;
        left: 0%;
        width: 100%;
    }
    .p-mv__left {
        width: 100%;
        height: 100vh;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 100px 5% 0;
        z-index: 2;
    }
    .p-mv__right {
        width: 100%;
        padding: 0 10%;
        margin: 0;
        height: calc(100vh - 280px);
        z-index: 1;
    }
    .p-mv__subttl {
        font-size: 1.6rem;
        text-align: center;
    }
    .p-mv__ttl {
        font-size: 3.8rem;
        text-align: center;
        line-height: 1.4;
        margin-top: 15px;
        margin-bottom: 0;
        letter-spacing: -.05em;
    }
    .p-mv__btn {
        position: absolute;
        bottom: 30px;
        filter: drop-shadow(5px 5px 5px rgb(0, 0, 0, 0.2));
    }
    .p-mv__img01::before {
        width: 50px;
        height: 120px;
        top: 10px;
        left: 0;
    }
    .p-mv__img02::before {
        width: 50px;
        height: 120px;
        top: 10px;
        left: 0;
    }
}


/*----- s1 -----*/

.p-s1-box {
    position: relative;
    border: 10px #45C3B4 solid;
    background: #fff;
    border-radius: 20px;
    padding: 80px 40px 10px;
    filter: drop-shadow(9px 10px 5px rgb(0, 0, 0, 0.05));
}

.p-s1-ttl {
    text-align: center;
    display: inline-block;
    padding: 0 40px;
    background: #fff;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.p-s1-img {
    padding: 0 30px;
}

.p-tr-col__img {
    position: relative;
    width: 50%;
    padding: 0 50px;
}

.p-tr-col__img--01::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 187px;
    height: 147px;
    top: -25px;
    right: 20px;
    background: url(../images/p-tr-img01__comment.svg) no-repeat;
    background-size: cover;
    z-index: 1;
}

.p-tr-col__img--02::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 187px;
    height: 147px;
    top: -25px;
    left: 20px;
    background: url(../images/p-tr-img02__comment.svg) no-repeat;
    background-size: cover;
    z-index: 1;
}

.p-tr-col__img--03::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 187px;
    height: 147px;
    top: -25px;
    right: 20px;
    background: url(../images/p-tr-img03__comment.svg) no-repeat;
    background-size: cover;
    z-index: 1;
}

.p-tr-col__txt {
    width: 100%;
    max-width: 500px;
}

.p-tr-col__subttl {
    margin-bottom: 20px;
}

.p-tr-col__ttl {
    border-bottom: 3px #191E2E solid;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 60px;
}

.p-tr-hr--01,
.p-tr-hr--02 {
    width: 50%;
    margin: 0 auto;
}
#p-tr-hr01-line,
#p-tr-hr02-line {
    fill: none;
    stroke: #45c3b4;
    stroke-linecap: round;
    stroke-width: 6;
    stroke-dasharray: 4 15;
    stroke-dashoffset: 700;
}

#p-tr-hr01-line {
    animation: line01 25s linear infinite normal none running;
}

@keyframes line01 {
    0% {
        stroke-dashoffset: 700;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
#p-tr-hr02-line {
    animation: line02 25s linear infinite normal none running;
}

@keyframes line02 {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 700;
    }
}
.p-tr-last {
    background: url(../images/p-tr-last__bg.png) no-repeat;
    background-size: cover;
    padding-top: 100px;
}
.p-tr-last__txt {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.p-tr-last__img {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .p-s1-box {
        border: 5px #45C3B4 solid;
    }
    .p-s1-ttl {
        padding: 0px 20px;
        top: -30px;
    }
    .p-s1-img {
        padding: 0;
    }
    .p-tr-col {
        margin-bottom: 80px;
    }
    .p-tr-col__img {
        width: 100%;
        padding: 0 5%;
    }
    .p-tr-col__img--01::before,
    .p-tr-col__img--02::before,
    .p-tr-col__img--03::before {
        width: 130px;
        height: 104px;
    }
    .p-tr-col__img--01::before,
    .p-tr-col__img--03::before{
        top: -25px;
        right: 0;
    }
    .p-tr-col__img--02::before {
        top: -25px;
        right: 0;
    }
    .p-tr-col__txt {
        margin-top: 30px;
    }
    .p-tr-col__ttl {
        margin-bottom: 40px;
    }
    .p-tr-last {
        padding-top: 0;
        background: url(../images/p-tr-last__bg.png) no-repeat;
        background-size: cover;
        background-position: center;
    }
    .p-tr-last__txt {
        width: 90%;
        margin: 0 auto 40px 2%;
    }
    .p-tr-last__img {
        width: 60%;
        max-width: auto;
    }
}

/*----- s2 -----*/
#s2 {
    padding: 0;
}
.sv-ttl__img {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto -170px;
    z-index: 2;
}
.p-ds-list {
    width: 30%;
}
.p-ds-list:nth-of-type(2) {
    margin-top: 50px;
}
.p-ds-list:nth-of-type(3) {
    margin-top: 100px;
}
.p-ds-img {
    filter: drop-shadow(8px 5px 5px rgb(0, 0, 0, 0.1));
    margin-bottom: 20px;
}
.p-ds-link:hover {
    transform: translateY(-10px);
}
@media screen and (max-width:768px) {
    .sv-ttl__img {
        width: 90%;
    }
    .p-ds-list {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px !important;
    }
}

/*----- s3 -----*/
#s3 {
    background: #FDD830;
}
.p-flow {
    max-width: 800px;
    margin: 80px auto 0;
}
.p-point,
.p-price{
    margin-top: 100px;
}
.p-point__ttl,
.p-price__ttl{
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px;
}
.p-point-list {
    width: calc(50% - 15px);
    margin-bottom: 30px;
}
.p-price-box {
    width: calc(33.333% - 20px);
    border-radius: 20px;
    border: 3px #191E2E solid;
    overflow: hidden;
}
.p-price-box__title {
    background: #45C3B4;
    color: #fff;
    padding: 20px;
    height: 80px;
    font-size: 2.2rem;
    font-weight: bold;
}
.p-price-box__detail {
    font-size: 1.4rem;
}
.p-price-box__tag {
    font-size: 1.4rem;
    display: block;
}
.p-price-box__header {
    padding: 20px 0;
    margin: 0 20px;
    border-bottom: 1px #191E2E solid;
    text-align: center;
}
.p-price-box__price {
    font-size: 4.4rem;
    font-weight: bold;
    letter-spacing: 0;
}
.p-price-box__body {
    padding: 20px;
    text-align: left;
}
.p-price-box__function {
    list-style: disc;
    padding: 0 20px;
}
.p-price-box__list {
    padding: 5px 0;
    font-size: 1.4rem;
}
@media screen and (max-width: 768px) { 
    .p-flow {
        width: 80%;
        margin: 40px auto 0 20px;
    }
    .p-flow div {
        margin-bottom: 10px;
    }
    .p-point-list {
        width: 90%;
        margin: 0 auto 30px;
    }
    .p-price-box {
        width: 90%;
        margin: 0 auto 30px;
    }
    .p-point,
    .p-price {
        margin-top: 60px;
    }
    .p-point__ttl,
    .p-price__ttl {
        margin: 0 auto 30px;
    }
}

#s4 {
    padding-bottom: 0;
}
/*----- footer -----*/

.p-f-list__link {
    margin-right: 52px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 1.4rem;
}

@media screen and (max-width:768px) {
    .p-f-lists {
        padding: 30px 0 40px;
    }
    .p-f-list {
        text-align: center;
    }
    .p-f-list__link {
        margin-right: 0;
        padding: 10px;
        display: block;
    }
}

.p-modal {
    display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 10000;
}
.p-modal_bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0);
}
.p-modal_content {
    position: absolute;
    overflow: scroll;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 80%);
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
.modal_itemImg {
    width: 90%;
    max-width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.js_modal_close {
    display: inline-block;
    color: #fff;
    padding-bottom: 8px;
    margin: 30px 0;
    border-bottom: 1px #fff solid;
}

/* Utility
----------------------------------------------------------------- */