@charset "UTF-8";
/*===============================

    base

================================*/
html {
    font-size: 16px;
}

@media screen and (min-width: 481px) {
    html {
        font-size: 3.2vw;
    }
}

@media screen and (min-width: 769px) {
    html {
        font-size: 32px;
    }
}

@media screen and (max-width: 320px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
}

p {
    line-height: 1.5;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.inner {
    max-width: 1024px;
    margin: auto;
    padding: 0 14px;
}

.btnArea {
    text-align: center;
}

.btnArea .flexbox {
    justify-content: center;
}


.btn {
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #621e76;
    width: 100%;
    border-radius: 10px;
    max-width: 345px;
    padding: 1rem;
    margin: 0.5rem;
    position: relative;
}

.btn::after {
    content: "";
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: solid 1px #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.btn_subtxt {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.5em;
}

.btn-male {
        background-color: #00B900;
animation: scaling 2s ease-in-out infinite;
}

.btn_subtxt {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.5em;
}

.btnArea .annot {
    color: #FFFFFF;
    font-size:10px;
}

/*===============================

    utility

================================*/
.fixedBgImg {
    position: relative;
}

.fixedBgImg::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    background: url(../images/bg.jpg);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.huti {
    text-shadow: #282828 2px 0px, #282828 -2px 0px, #282828 0px -2px, #282828 0px 2px, #282828 2px 2px, #282828 -2px 2px, #282828 2px -2px, #282828 -2px -2px, #282828 1px 2px, #282828 -1px 2px, #282828 1px -2px, #282828 -1px -2px, #282828 2px 1px, #282828 -2px 1px, #282828 2px -1px, #282828 -2px -1px;
}

.hukidashi {
    display: flex;
    justify-content: center;
    font-weight: bold;
    text-align: center;
}

.hukidashi::before, .hukidashi::after {
    content: "";
    display: block;
    width: 0.125rem;
    background-color: #282828;
}

.hukidashi::before {
    transform: rotate(-10deg);
    margin-right: 0.5em;
}

.hukidashi::after {
    transform: rotate(10deg);
    margin-left: 0.5em;
}

.iframeWrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



@media screen and (min-width: 769px) {
    .flexbox-pc {
        display: flex;
        justify-content: space-between;
    }
}

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

@media screen and (min-width: 1025px) {
    .sp {
        display: none;
    }
}

/*===============================

    animation

================================*/
.effectFadeIn {
    opacity: 0;
    transition: all 3s;
}

.effectFadeIn.effectScroll {
    opacity: 1;
}

.effectFadeUp {
    opacity: 0;
    transform: translate(0, 45px);
    transition: all 1s;
}

.effectFadeUp.effectScroll {
    opacity: 1;
    transform: translate(0, 0);
}

.effectFadeRight {
    opacity: 0;
    transform: translate(45px, 0);
    transition: all 1s;
}

.effectFadeRight.effectScroll {
    opacity: 1;
    transform: translate(0, 0);
}

.effectFadeLeft {
    opacity: 0;
    transform: translate(-45px, 0);
    transition: all 1s;
}

.effectFadeLeft.effectScroll {
    opacity: 1;
    transform: translate(0, 0);
}

.effectZoom {
    transition: all 6s;
}

.effectZoom.effectScroll {
    transform: scale(1.1);
}

.floatingEffect {
    animation: fuwafuwa 3s infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/*===============================

    parts

================================*/


.btn-image {
    width: 48%;
    animation: scaling 2s ease-in-out infinite;
}

@keyframes scaling {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(0.9, 0.9);
    }
    100% {
        transform: scale(1, 1);
    }
}

.sc {
    padding: 10.772vw 0;
}

@media screen and (min-width: 481px) {
    .sc {
        padding: 4.772vw 0;
    }
}

.sc_header {
    margin-bottom: 32px;
    text-align: center;
}

.sc_header_ttl {
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.sc_header_subtxt {
    color: #FFFFFF;
    font-size: 2.8125rem;
}

@media screen and (min-width: 769px) {
    .sc_header_subtxt {
        font-size: 5.25rem;
    }
}

.sc_content p {
    line-height: 2;
}

#loading {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

#loading i {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -0.5em 0 0 -0.5em;
    z-index: 99;
    font-size: 48px;
}

/*===============================

    section

================================*/
#wrap {
    max-width: 1024px;
    margin: auto;
}

#firstView {
    padding-bottom: 2rem;

}

.lead {
    text-align: center;
}

.list {
    padding: 1rem;
    background: #FFFFFF;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.25);
    background-image: url(../images/osusume_img.png);
    background-position: right bottom;
    background-size: 30%;
    background-repeat: no-repeat;
}

.list_item {
    position: relative;
    padding-left: 0.75em;
    line-height: 1.5;
}

.list_item::before {
    content: "";
    display: block;
    height: 0.250rem;
    width: 0.250rem;
    background-color: #F8167E;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.2rem;
}

.list .list_item + .list_item {
    margin-top: 0.5rem;
}

.topInfoBar {
    background-color: #282828;
    color: #FFFFFF;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

.topInfoBar_text {
    width: calc(100% + 32em);
    padding: 0.2em;
    padding-left: 100%;
    animation: flowing 8s linear infinite;
}

@keyframes flowing {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.topInfoBar_text::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url(../images/logo_wakuwaku.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(0.125em);
    margin-right: 0.25em;
}

#firstView {
    background-color: #282828;
}

#firstView .lead {
    color: #FFFFFF;
}

.firstView_img {
    position: relative;
    height: 307px;
    background-image: url(../images/top_image.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 481px) {
    .firstView_img {
        height: 452px;
    }
}

.firstView_text {
    position: absolute;
    width: 18%;
    max-width: 112px;
    top: 10%;
    left: 78%;
}

.serviceName {
    max-width: 500px;
    margin: auto;
    margin-top: 1rem;
}

.list {
    margin-top: 1rem;
}

#simpleSteps .sc_header {
    padding-top: 104.533%;
    background-image: url(../images/bg_simplesteps_header.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@media screen and (min-width: 769px) {
    #simpleSteps .sc_header {
        padding-top: 73.533%;
    }
}

#simpleSteps .sc_header_ttl {
    width: 80%;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.process_step {
    position: relative;
    padding: 0 0 1.5em 1.8em;
}

.process_step::before {
    content: "";
    display: block;
    width: 0.188rem;
    background: #EAEFF2;
    position: absolute;
    top: 1.5rem;
    bottom: 0;
    left: 0.375rem;
}

.process_step:first-child .process_marker {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    border: solid 0.188rem;
    border-color: #F8167E;
}

.process_label {
    padding-top: 2px;
    color: #F8167E;
    line-height: 1.5;
    font-weight: bold;
}

.process_title {
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
}

.process_main {
    margin-top: 0.5em;
    padding: 0 0 1.5em;
    line-height: 1.5;
}

.process_marker {
    content: "";
    display: block;
    position: absolute;
    top: 0.375rem;
    left: 0;
    color: #F8167E;
    font-size: 0.875rem;
}

#usersVoice {
    background-image: url(../images/bg_usersvoice.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#usersVoice .sc_header {
    padding-top: 117.1123%;
    background-image: url(../images/bg_usersvoice_header.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#usersVoice .sc_header_ttl {
    width: 80%;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.voiceList_box {
    padding: 1rem;
    background: linear-gradient(180deg, #CEE186 0%, #B6D150 100%);
    border-radius: 10px;
    position: relative;
    margin-bottom: 2rem;
}

.voiceList_box:last-child {
    margin-bottom: 1rem;
}

.voiceList_box::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-top: 1rem solid #B6D150;
    border-bottom: 0rem solid transparent;
    border-left: 2rem solid transparent;
    border-right: 0rem solid transparent;
    position: absolute;
    bottom: -1rem;
    right: 1rem;
}

.voiceList_box:nth-of-type(even)::after {
    border-top: 0rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 2rem solid #B6D150;
    border-right: 0rem solid transparent;
    right: 0;
    left: 1rem;
}

.voiceList_content {
    font-weight: bold;
}

.voiceList_userinfo {
    text-align: right;
}

#closing {
    background-color: #282828;
}

#closing .sc_header_ttl {
    max-width: 769px;
    margin: auto;
}

#closing .lead {
    color: #FFFFFF;
}

#closing .sc_image {
    padding-top: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(40, 40, 40, 0) 70.83%, rgba(40, 40, 40, 0.27) 90.62%, #282828 100%), url(../images/closing_img_01.png), #FFFFFF;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*# sourceMappingURL=style.css.map */