@charset "UTF-8";
/* font
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}


/* 基本表示 */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-wrap: break-word;
}

html {
    font-size: 100%;
    height: -webkit-fill-available;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height:1.4;
    text-align: left;
    font-size: 14px;
    color: #111;
    background: #f7f7f7;
    text-size-adjust: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

a{
    color: #111;
    text-decoration: none;
    outline: none;
    transition: .4s;
    display: block;
}

a:hover{
    text-decoration: none;
}

a img{
    transition: .4s;
}

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

ul,ol,li{
    list-style-type: none;
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
.fadein.fadein-left{
    transform: translate(-30px,0);
}
.fadein.fadein-right{
    transform: translate(30px,0);
}
.fadein.fadein-up{
    transform: translate(0,-30px);
}
.fadein.fadein-bottom{
    transform: translate(0,30px);
}
.fadein.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}
.main__wrap{
    position: relative;
}
@media screen and (min-width: 1480px) {
    .main__wrap{
        padding-right: 350px;
    }
}

.body__width{
    max-width: 375px;
    width: 90%;
    margin: 0 auto;
}
.left__content{
    width: 70%;
    padding-left: 3%;
}
@media screen and (min-width: 1480px) {
    .left__content{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 820px) {
    .left__content {
        width: 65%;
    }
}
@media screen and (max-width: 767px) {
    .left__content {
        width: 100%;
        padding: 0 5%;
    }
}
.content__head::after{
    font-family: "Archivo Black", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 0.6em;
    color: #b8b8b8;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
}
.content__head {
    font-size: 1.7em;
    color: #0a0000;
    font-weight: 500;
    position: relative;
    padding-top: 30px;
    margin-bottom: 0;
    text-align: center;
}
@media screen and (max-width: 430px) {
    .content__head{
        font-size: 18px;
    };
}
.content__head--info {
    font-size: 0.7em;
    font-weight: 400;
    text-align: center;
    display: block;
}
@media screen and (max-width: 430px) {
    .content__head--info {
        font-size: 14px;
    }
}
.content__head--info br {
    display: none;
}
@media screen and (max-width: 430px) {
    .content__head--info br {
        display: block;
    }
}
.max__width{
    max-width: 700px;
    margin: 0 auto;
}
@media screen and (min-width: 1480px) {
    .max__width{
        max-width: 1000px;
    }
}
.red{
    color: #de3b4e;
}
.green{
    color: #319e6d;
}
.yellow{
    color: #fbe300;
}

/* header */
.header__logo {
    position: absolute;
    top: 10px;
    left: 3%;
    width: 150px;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .header__logo {
        left: 50%;
        transform: translateX(-50%);
    }
}
.page__logo{
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    z-index: 1;
}

/* kv */
.sec__kv {
    position: relative;
    text-align: center;
}
@media screen and (max-width: 820px) {
    .sec__kv {
        padding-bottom: 2em;
    }
}
.kv__inner{
    background: url(../img-b/kv-img.png) no-repeat right center;
    background-size: 26em;
    width: 100%;
    padding-top: 5em;
}
@media screen and (min-width: 1480px) {
    .kv__inner{
        background-position-y: bottom;
        background-size: 36.5em;
        max-width: 1000px;
    }
}
@media screen and (max-width: 1024px) {
    .kv__inner {
        background-size: 20em;
        background-position-y: bottom;
    }
}
@media screen and (max-width: 820px) {
    .kv__inner {
        background: none;
        padding-bottom: 3em;
    }
}
.kv__wrap {
    max-width: 370px;
    position: relative;
    z-index: 1;
    width: 70%;
}
@media screen and (min-width: 1480px) {
    .kv__wrap{
        max-width: 520px;
    }
}
@media screen and (max-width: 820px) {
    .kv__wrap {
        margin: 0 auto;
        width: 90%;
    }
}
@media screen and (max-width: 430px) {
    .kv__wrap {
        width: 100%;
    }
}
.kv__label {
    font-size: calc(16px + 4 * (100vw - 600px) / 600);
    font-weight: 800;
    color: #fff;
    background-color: #319e6d;
    padding: 12px 20px;
    border-radius: 20px 0 20px 0;
    position: relative;
    margin-bottom: 20px;
}
@media screen and (max-width: 430px) {
    .kv__label {
        font-size: 16px;
    }
}
.kv__label--icon{
    background: url(../img-b/icon-phone.png) no-repeat left center;
    background-size: 14px;
    display: inline-block;
    padding-left: 20px;
}
.kv__label::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 20px solid #319e6d;
    border-bottom: 0;
}
.kv__head{
    text-align: left;
    width: 100%;
    line-height: 1;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
}
@media screen and (max-width: 820px) {
    .kv__head {
        text-align: center;
    }
}
@media screen and (max-width: 820px) {
    .kv__head {
        margin-bottom: 50px;
    }
}
.kv__head::after{
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    background: rgb(247,247,247);
    background: linear-gradient(260deg, rgba(247,247,247,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(255,255,255,1) 100%);
}
.kv__head--top{
    font-size: 2em;
}
@media screen and (min-width: 1480px) {
    .kv__head--top{
        font-size: 3em;
    }
}
@media screen and (max-width: 430px) {
    .kv__head--top{
        font-size: 1.5em;
    }
}
.kv__head--midle {
    font-size: 2.8em;
    color: #319e6d;
    line-height: 1.4;
}
@media screen and (min-width: 1480px) {
    .kv__head--midle {
        font-size: 4.2em;
    }
}
@media screen and (max-width: 430px) {
    .kv__head--midle {
        font-size: 2.1em;
    }
}
.kv__head--midle .small{
    font-size: 0.6em;
}
.kv__head--bottom{
    font-size: 1.7em;
}
@media screen and (min-width: 1480px) {
    .kv__head--bottom{
        font-size: 2.5em;
    }
}
@media screen and (max-width: 430px) {
    .kv__head--bottom{
        font-size: 1.3em;
    }
}
.kv__head--bottom .ls{
    letter-spacing: -0.2em;
}
.kv__info{
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    background: url(../img-b/kv-img-bottom.png) no-repeat center bottom;
    background-size: 25%;
    padding-bottom: 160px;
}
@media screen and (min-width: 1480px) {
    .kv__info{
        font-size: 1.7em;
        background-size: 23%;
        padding-bottom: 200px;
    }
}
@media screen and (max-width: 820px) {
    .kv__info {
        background: none;
        padding-bottom: 0;
    }
}
@media screen and (max-width: 430px) {
    .kv__info {
        font-size: 1.1em;
    }
}
.kv__img {
    width: 46%;
    height: auto;
    position: absolute;
    top: 3%;
    right: 5%;
    z-index: 0;
}
@media screen and (min-width: 1480px) {
    .kv__img{
        width: 45%;
        top: 11%;
        right: 0;
    }
}
@media screen and (max-width: 820px) {
    .kv__img{
        width: 40%;
        top: -7%;
    }
}
@media screen and (max-width: 767px) {
    .kv__img {
        top: auto;
        bottom: -60%;
    }
}
.kv__spimg--list{
    display: none;
}
@media screen and (max-width: 820px) {
    .kv__spimg--list{
        display: block;
        display: flex;
        justify-content: space-between;
    }
    .kv__spimg--item{
        width: 33%;
    }
}

/* SIMPLE OPERATION */
.sec__operation {
	background:url(../img-b/operation-bg.jpg) no-repeat center top;
	background-size: cover;
    padding: 8% 0;
}
.content__head.operation{
    color: #fff;
    margin-bottom: 40px;
}
.content__head.operation::after{
    content: 'SIMPLE OPERATION';
    color: #41cb89;
}
@media screen and (max-width: 820px) {
    .content__head.operation::after {
        line-height: 1;
    }
}
.operation__body{
    background-color: #fff;
    padding: 4em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 820px) {
    .operation__body{
        flex-wrap: wrap;
        flex-flow: column-reverse;
        padding: 2em;
    }
}
@media screen and (max-width: 430px) {
    .operation__body{
        padding: 1em;
    }
}
.operation__flow{
    width: 46%;
    padding-left: 20px;
}
@media screen and (max-width: 820px) {
    .operation__flow{
        width: 100%;
    }
}
.operation__item{
    position: relative;
    border: 1px solid #319e6d;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}
.operation__item:last-child{
    margin-bottom: 0;
}
.operation__label{
    background: url(../img-b/operation-num-bg.png) no-repeat center;
    background-size: 100%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1;
    font-size: 12px;
    font-weight: 400;
    width: 50px;
    height: 50px;
    padding: 8px 5px 10px 5px;
}
.operation__label .num{
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
}
.operation__info{
    font-weight: 500;
    padding-left: 10px;
}
.operation__img{
    width: 50%;
}
@media screen and (max-width: 820px) {
    .operation__img{
        width: 100%;
        margin-bottom: 30px;
    }
}
.operation__img--title{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    background-color: #cd434e;
    border-radius: 20px 0 20px 0;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.operation__img--title::after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 20px solid #cd434e;
    border-bottom: 0;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.operation__img--item video {
    width: 100%;
}

/* PROBLEM */
.sec__problem {
    background:url("../img-b/back02.png") no-repeat center;
    background-size: cover;
    padding: 8% 0;
    position: relative;
}
@media screen and (max-width: 430px) {
    .sec__problem {
        padding: 10% 0;
    }
}
.problem__inner{
    position: relative;
}
.content__head.problem{
    padding-bottom: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
    .content__head.problem{
        margin-bottom: 30px;
    }
}
.content__head.problem::after{
    content: 'PROBLEM';
}
.content__head.problem::before{
    content: '';
    width: 120px;
    height: 3px;
    background-color: #319e6d;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.problem__body{
    display: flex;
    flex-flow: row-reverse;
    background: url(../img-b/problem-img.png) no-repeat left center;
    background-size: 45%;
}
@media screen and (min-width: 1480px) {
    .problem__body{
        background-size: 40%;
    }
}
@media screen and (max-width: 820px) {
    .problem__body{
        background-position-y: bottom;
        background-position-x: center;
        padding-bottom: 12em;
    }
}
@media screen and (max-width: 430px) {
    .problem__body{
        padding-bottom: 8em;
    }
}
.problem__list{
    width: 50%;
}
@media screen and (max-width: 820px) {
    .problem__list{
        width: 90%;
        padding-bottom: 2em;
        margin: 0 auto;
    }
}
@media screen and (max-width: 430px) {
    .problem__list{
        width: 100%;
    }
}
.problem__item{
    background: url(../img-b/icon-check.png) no-repeat 20px center #fff;
    background-size: 20px;
    padding: 20px 20px 20px 50px;
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 16px;
    box-shadow: 0px 0px 20px 3px #e8e8e8;
}
@media screen and (min-width: 1480px) {
    .problem__item{
        background-position-x: 100px;
        background-size: 30px;
        padding-left: 150px;
    }
}
@media screen and (max-width: 430px) {
    .problem__item{
        margin-bottom: 15px;
        background-size: 24px;
        padding-left: 70px;
    }
}

/* triangle */
.triangle__space{
    position: relative;
}
.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 150px solid transparent;
    border-left: 150px solid transparent;
    border-top: 30px solid #f7f7f7;
    border-bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .triangle{
        border-right: 80px solid transparent;
        border-left: 80px solid transparent;
        border-top: 40px solid #f7f7f7;
    }
}
@media screen and (max-width: 430px) {
    .triangle{
        top: -10px;
    }
}

/* INSTEP */
.sec__instep {
    background: url(../img-b/problem-bg.jpg) no-repeat center top #2c935f;
    background-size: cover;
    padding: 10% 0;
    text-align: center;
}
.instep__inner{
    max-width: 450px;
    margin: 0 auto;
}
.instep__head{
    background-color: #fff;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    padding: 15px 20px 10px 20px;
    margin-bottom: 20px;
}
@media screen and (max-width: 430px) {
    .instep__head{
        top: -10px;
    }
}
.instep__head .onayami{
    font-size: 20px;
}
.instep__head .kaiketu{
    font-size: 20px;
    color: #319e6d;
}
.instep__head .sign{
    position: relative;
}
.instep__head .sign::after{
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #319e6d;
    border-radius: 50%;
}
.instep__title{
    color: #fff;
    background: url(../img-b/icon-meta.png) no-repeat left center;
    background-size: 24%;
    padding: 10px 0 10px 28%;
    margin-bottom: 20px;
}
@media screen and (max-width: 430px) {
    .instep__title{
        background-size: 22%;
        padding: 10px 0 10px 23%;
        margin-bottom: 0;
    }
}
.instep__title .copy{
    display: block;
    margin-bottom: 4px;
}
@media screen and (max-width: 430px) {
    .instep__title .copy{
        font-size: 14px;
    }
}
.instep__discription {
    font-size: 1.3em;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
}
@media screen and (max-width: 430px) {
    .instep__discription {
        font-size: 14px;
    }
}
.instep__discription::after{
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}
.instep__discription::before{
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid #ffffff;
    border-bottom: 0;
}
.triangle-bottom.instep::before{
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 21px solid transparent;
    border-left: 21px solid transparent;
    border-top: 16px solid #2c935f;
    border-bottom: 0;
    z-index: 1;
}
.instep__list {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 430px) {
    .instep__list {
        flex-wrap: wrap;
    }
}
.instep__item {
    padding: 15px;
    width: 31%;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .instep__item {
        padding: 10px;
    }
}
@media screen and (max-width: 430px) {
    .instep__item {
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
    }
}
.instep__item--img{
    margin-bottom: 10px;
}
.instep__item--title{
    font-size: calc(16px + 2 * (100vw - 600px) / 600);
    font-weight: 600;
    color: #319e6d;
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 820px) {
    .instep__item--title{
        font-size: 15px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .instep__item--title{
        font-size: 13px;
    }
}
@media screen and (max-width: 767px) {
    .instep__item--title{
        font-size: 16px;
    }
    .instep__item--title br{
        display: none;
    }
}
.instep__item--txt {
    font-size: 14px;
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .instep__item--txt {
        font-size: 12px;
    }
}

/* follower */
.follower {
    padding: 4% 0 5% 0;
    background-color: #fff;
    text-align: center;
}
.follower__inner{
    background: url(../img-b/problem-followers.png) no-repeat 5% bottom;
    background-size: 20%;
    margin: 0 auto;
    padding-left: 27%;
}
@media screen and (min-width: 1480px) {
    .follower__inner{
        padding-left: 25%;
        padding-top: 2%;
    }
}
@media screen and (max-width: 820px) {
    .follower__inner{
        padding-left: 0;
        padding-bottom: 39%;
        background-size: 32%;
        background-position: center bottom;
    }
}
.follower__contents{
    color: #484848;
    font-size: 20px;
    font-weight: 600;
    background: #fff;
    border-radius: 20px;
    filter:drop-shadow(0px 0px 8px rgba(138, 138, 138, 0.2));
    padding: 5%;
    max-width: 580px;
    position: relative;
}
@media screen and (max-width: 1024px) {
    .follower__contents{
        font-size: 18px;
    }
}
@media screen and (max-width: 820px) {
    .follower__contents{
        font-size: 16px;
        line-height: 1.7;
        padding: 4%;
    }
}
.follower__contents::after{
    content: '';
    position: absolute;
    left: -40px;
    bottom: 40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 30px solid #ffffff;
    border-bottom: 0;
    z-index: -1;
}
@media screen and (max-width: 820px) {
    .follower__contents::after{
        left: 50%;
        bottom: -20px;
        transform: rotate(0deg) translateX(-50%);
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-top: 27px solid #ffffff;
    }
}

/* jobarea */
.sec__jobarea{
    background: url(../img-b/bg-dotted.jpg) no-repeat center top;
    background-size: cover;
    padding: 5% 0 8%;
}
.jobarea__body{
    background: url(../img-b/problem-bottom.png) no-repeat center bottom;
    background-size: 90%;
    padding-bottom: 15%;
    position: relative;
    margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
    .jobarea__body{
        padding-bottom: 16%;
    }
}
@media screen and (max-width: 767px) {
    .jobarea__body{
        background-size: 100%;
        padding-bottom: 20%;
    }
}
.jobarea__body::after{
    content: '';
    width: 100px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 27%;
    background-color: #319e6d;
    transform: rotate(66deg);
}
@media screen and (max-width: 820px) {
    .jobarea__body::after{
        width: 60px;
    }
}
@media screen and (max-width: 767px) {
    .jobarea__body::after{
       left: -6%;
       top: 45%;
    }
}
@media screen and (max-width: 430px) {
    .jobarea__body::after{
       left: -8%;
    }
}
.jobarea__body::before{
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 13px;
    top: 31%;
    background-color: #319e6d;
    transform: rotate(66deg);
}
@media screen and (max-width: 820px) {
    .jobarea__body::before{
        width: 25px;
    }
}
@media screen and (max-width: 767px) {
    .jobarea__body::before{
        left: -3%;
        top: 50%;
    }
}
@media screen and (max-width: 430px) {
    .jobarea__body::before{
        left: -4%;
    }
}
.jobarea__txt{
    font-weight: 800;
    text-align: center;
    font-size: 22px;
    color: #484848;
}
@media screen and (max-width: 1024px) {
    .jobarea__txt{
        font-size: 18px;
    }
}
@media screen and (max-width: 820px) {
    .jobarea__txt{
        font-size: 16px;
    }
}
@media screen and (max-width: 430px) {
    .jobarea__txt{
        font-size: 17px;
    }
}
.jobarea__txt::after{
    content: '';
    width: 100px;
    height: 2px;
    position: absolute;
    right: 0;
    top: 31%;
    background-color: #319e6d;
    transform: rotate(116deg);
}
@media screen and (max-width: 820px) {
    .jobarea__txt::after{
        width: 60px;
    }
}
@media screen and (max-width: 767px) {
    .jobarea__txt::after{
        right: -6%;
        top: 45%;
    }
}
@media screen and (max-width: 430px) {
    .jobarea__txt::after{
        right: -8%;
    }
}
.jobarea__txt::before{
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    right: 13px;
    top: 33%;
    background-color: #319e6d;
    transform: rotate(116deg);
}
@media screen and (max-width: 820px) {
    .jobarea__txt::before{
        width: 25px;
    }
}
@media screen and (max-width: 767px) {
    .jobarea__txt::before{
        right: -3%;
        top: 50%;
    }
}
@media screen and (max-width: 430px) {
    .jobarea__txt::before{
        right: -4%;
    }
}
.jobarea__txt .big{
    font-size: 26px;
}
@media screen and (max-width: 1024px) {
    .jobarea__txt .big{
        font-size: 22px;
    }
}
.jobarea__txt .small{
    font-size: 22px;
}
@media screen and (max-width: 1024px) {
    .jobarea__txt .small{
        font-size: 18px;
    }
}

.body__cv a {
    background: url(../img-b/icon-arrow-submit.png) no-repeat 90% center #da4450;
    background-size: 10px;
    border-radius: 5px;
    position: relative;
    margin: 0 auto;
    font-size: 1.4em;
    text-align: center;
    font-weight: 600;
    max-width: 350px;
    padding: 20px;
    color: #fff;
    transition: .2s;
}
@media screen and (max-width: 820px) {
    .body__cv a{
        padding: 15px;
        font-size: 1.2em;
    }
}
@media screen and (max-width: 430px) {
    .body__cv a{
        font-size: 16px;
    }
}
.body__cv a:hover {
    background-color: #e4717a;
}

/* お客様の声 */
.sec__voice {
    background: url(../img-b/voice-bg-top.png) no-repeat center top #319e6d;
    background-size: 100%;
    padding-top: 6%;
}
.sec__voice--inner {
    background: url(../img-b/voice-bg-bottom.png) no-repeat center bottom;
    background-size: 100%;
    padding-bottom: 6%;
}
.content__head.voice{
    color: #fff;
    padding-bottom: 30px;
    margin-bottom: 40px;
    line-height: 1.7;
}
@media screen and (max-width: 820px) {
    .content__head.voice{
        padding-bottom: 20px;
    }
}
.content__head.voice::after{
    content: 'VOICE';
    color: #41cb89;
}
.content__head.voice::before {
    content: '';
    width: 120px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.content__head--info.voice{
    color: #fff;
}
.voice__list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
@media screen and (max-width: 430px) {
    .voice__list{
        flex-wrap: wrap;
        justify-content: center;
    }
}
.voice__item{
    background: url(../img-b/voice-item-bg.png) no-repeat center #fff;
    background-size: 80%;
    border-radius: 50%;
    width: 30%;
}
@media screen and (max-width: 767px) {
    .voice__item{
        width: 32%;
        background-size: 90%;
    }
}
@media screen and (max-width: 430px) {
    .voice__item{
        width: 45%;
    }
    .voice__item:first-child{
        margin-right: 20px;
    }
}
.circle_height {
    position: relative;
    padding-top: 100%;
    padding-top: 100%;
    height: 0;
}
.voice__item--inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0;
    text-align: center;
    color: #bb9019;
    transform: translateY(-50%);
}
.voice__item--rabel{
    color: #fff;
    background-color: #bb9019;
    padding: 1px 10px;
    border-radius: 50px;
    width: 70%;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 500;
}
@media screen and (max-width: 820px) {
    .voice__item--rabel{
        font-size: 10px;
    }
}
.voice__item--info{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}
@media screen and (max-width: 820px) {
    .voice__item--info{
        font-size: 16px;
    }
}
.voice__item--info .plus{
    font-size: 32px;
}
@media screen and (max-width: 820px) {
    .voice__item--info .plus{
        font-size: 24px;
    }
}
.voice__item--info .number{
    font-family: "Archivo Black", sans-serif;
    font-size: 36px;
}
@media screen and (max-width: 820px) {
    .voice__item--info .number{
        font-size: 26px;
    }
}
.voice__note{
    text-align: right;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
}
@media screen and (max-width: 430px) {
    .voice__note{
        text-align: center;
        font-size: 10px;
    }
}

/* 実際の活用シーン */
.sec__scene{
    padding: 6% 0 0;
    background-color: #fff;
}
.content__head.scene{
    padding-bottom: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
    .content__head.scene{
        margin-bottom: 20px;
    }
}
.content__head.scene::after{
    content: 'USAGE SCENE';
    top: 0;
}
.content__head.scene::before {
    content: '';
    width: 120px;
    height: 3px;
    background-color: #319e6d;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.case__wrap{
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .case__wrap{
        margin-top: 0;
    }
}
.case__item{
    background: url(../img-b/case02-bg.jpg) no-repeat center top;
    background-size: cover;
    color: #fff;
    padding: 6% 0 0;
}
.case__item.grouping{
    background: #fff;
    color: #111;
}
.case__item.grouping .case__item--inner{
    flex-flow: row-reverse;
}
@media screen and (max-width: 767px) {
    .case__item.grouping .case__item--inner{
        flex-flow: wrap;
    }
}
.case__item--info{
    width: 56%;
    position: relative;
    margin-top: 5%;
}
@media screen and (max-width: 820px) {
    .case__item--info{
        padding-bottom: 3em;
        width: 55%;
    }
}
@media screen and (max-width: 767px) {
    .case__item--info {
        width: 100%;
        margin-bottom: 20px;
    }
}
.case__item--info::before{
    content: '';
    font-family: "Archivo Black", sans-serif;
    font-size: 14px;
    letter-spacing: 1.2px;
    position: absolute;
    top: -30px;
    left: 0;
}
.case__item--info.can::before{
    content: 'CARE 01';
}
.case__item--info.grouping::before{
    content: 'CARE 02';
    color: #319e6d;
}
.case__item--info.qr{
    padding-bottom: 8%;
}
.case__item--info.qr::before{
    content: 'CARE 03';
}
@media screen and (max-width: 767px) {
    .case__item.grouping .case__item--body{
        flex-flow: column;
    }
}
.case__item--inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 20px;
}
@media screen and (min-width: 1480px) {
    .case__item--inner{
        align-items: flex-start;
    }
}
@media screen and (max-width: 820px) {
    .case__item--inner{
        align-items: flex-end;
    }
}
.case__item--inner.qr{
    align-items: flex-end;
}
.case__title--box{
    margin-bottom: 30px;
    position: relative;
}
.case__title--box::after{
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 100%;
    background-color: #fff;
}
.case__title--box.grouping::after{
    background-color: #319e6d;
}
.case__title{
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}
.case__title.qr{
    line-height: 1.4;
}
@media screen and (max-width: 820px) {
    .case__title{
        font-size: 22px;
    }
}
.case__copy{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
    .case__copy{
        font-size: 17px;
    }
}
.case__discription{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}
@media screen and (max-width: 820px) {
    .case__discription{
        font-size: 14px;
    }
}
.case__item--img{
    width: 40%;
}
@media screen and (max-width: 767px) {
    .case__item--img {
        width: 80%;
        margin: 0 auto;
    }
}
.case__item--img img{
    border-radius: 10px;
}


/* 機能一覧 */
.sec__feature {
    padding: 6% 0 10%;
}
.content__head.feature{
    padding-bottom: 30px;
    margin-bottom: 50px;
}
@media screen and (max-width: 430px) {
    .content__head.feature{
        margin-bottom: 20px;
    }
}
.content__head.feature::after{
    content: 'FEATURES LIST';
    top: 0;
}
@media screen and (max-width: 820px) {
    .content__head.feature::after{
        line-height: 1;
    }
}
.content__head.feature::before {
    content: '';
    width: 120px;
    height: 3px;
    background-color: #319e6d;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.feature__head--copy{
    font-size: calc(20px + 2 * (100vw - 600px) / 600);
    font-weight: 500;
    color: #319e6d;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    text-align: center;
    position: relative;
}
@media screen and (max-width: 820px) {
    .feature__head--copy{
        font-size: 1.2em;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 430px) {
    .feature__head--copy{
        margin-top: 0;
    }
}
.feature__head--copy::after{
    content: '';
    width: 100%;
    max-width: 700px;
    height: 1px;
    background: #319e6d;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.feature__head--copy::before{
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid #319e6d;
    border-bottom: 0;
}
.triangle-bottom::before{
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 21px solid transparent;
    border-left: 21px solid transparent;
    border-top: 16px solid #f7f7f7;
    border-bottom: 0;
    z-index: 1;
}
.feature__list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
    .feature__list{
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 767px) {
    .feature__list{
        margin-bottom: 30px;
    }
}
.feature__item {
    width: 24%;
    background-color: #fff;
}
@media screen and (max-width: 820px) {
    .feature__item{
        width: 48%;
        margin-bottom: 15px;
    }
}
.feature__name {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 15px;
    background-color: #319e6d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.featurelist__inner{
    padding: 5px;
}
.feature__item--img{
    margin-bottom: 10px;
}
.feature__item--list{
    margin-bottom: 20px;
    font-weight: 400;
}
.feature__item--content {
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}
.feature__item--content ul{
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.7;
}
.feature__item--content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: middle;
    color: #319e6d;
    line-height: 1;
    width: 0.8em;
    height: 0.8em;
    border: 0.1em solid currentColor;
    border-radius: 50%;
    box-sizing: content-box;
    margin-right: 8px;
    margin-bottom: 4px;
}

.feature__item--content::before {
    content: '';
    width: 0.58em;
    height: 0.261em;
    border: 0.1em solid currentColor;
    border-top: 0;
    border-right: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(-45deg);
    position: absolute;
    top: 4px;
    left: 3px;
    margin: auto;
    border-color: #319e6d;
}

/* 選ばれる理由 */
.sec__reason {
    padding: 8% 0;
    background-color: #319e6d;
}
.reason__head{
    margin: 0 auto 30px;
    color: #fff;
    font-size: calc(30px + 4 * (100vw - 600px) / 600);
    font-weight: 800;
    letter-spacing: 5px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .reason__head{
        width: 90%;
        margin-bottom: 30px;
        font-size: 1.5em;
    }
}
@media screen and (max-width: 430px) {
    .reason__head{
        font-size: 1.3em;
    }
}
.reason__head img{
    max-width: 190px;
    margin-right: 5px;
}
@media screen and (max-width: 767px) {
    .reason__head img{
        max-width: 140px;
    }
}
@media screen and (max-width: 430px) {
    .reason__head img{
        max-width: 120px;
    }
}
.reason__item{
    display: flex;
    background-color: #fff;
    margin-bottom: 30px;
}
.reason__item:last-child{
    margin-bottom: 0;
}
.reason__label{
    font-family: "Archivo Black", sans-serif;
    font-size: 12px;
    color: #319e6d;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1;
    width: 15%;
    text-align: center;
}
.reason__label .num{
    width: 100%;
    font-size: 36px;
}
@media screen and (max-width: 820px) {
    .reason__label .num{
        font-size: 26px;
    }
}
@media screen and (max-width: 430px) {
    .reason__label{
        width: 20%;
    }
    .reason__label .num{
        font-size: 22px;
    }
}
.reason__info{
    width: 65%;
    font-size: 1.2em;
    font-weight: 400;
    padding: 20px 25px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 820px) {
    .reason__info{
        font-size: 15px;
    }
}
@media screen and (max-width: 767px) {
    .reason__info{
        font-size: 14px;
    }
}
@media screen and (max-width: 430px) {
    .reason__info{
        width: 70%;
    }
    .reason__info br{
        display: none;
    }
}
.reason__img{
    width: 20%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 820px) {
    .reason__img{
        width: 35%;
    }
}
@media screen and (max-width: 767px) {
    .reason__img{
        width: 20%;
    }
}
@media screen and (max-width: 430px) {
    .reason__img{
        width: 15%;
    }
}
.reason__img img{
    width: 40%;
    max-width: 100px;
}
@media screen and (max-width: 767px) {
    .reason__img img{
        width: 50%;
    }
}
@media screen and (max-width: 430px) {
    .reason__img img{
        width: 60%;
    }
}

/* 導入までの流れ */
.sec__flow{
    padding: 8% 0;
    background-color: #fff;
}
.content__head.flow{
    padding-bottom: 30px;
    margin-bottom: 40px;
}
.content__head.flow::after{
    content: 'FLOW';
    top: 0;
}
.content__head.flow::before {
    content: '';
    width: 120px;
    height: 3px;
    background-color: #319e6d;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.flow__step{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1000px;
}
@media screen and (max-width: 767px) {
    .flow__step{
        flex-wrap: wrap;
    }
}
.flow__step--item{
    width: 27%;
    color: #fff;
    background-color: #319e6d;
    padding: 20px 0 20px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow-y: clip;
    display: flex;
}
@media screen and (max-width: 767px) {
    .flow__step--item{
        width: 100%;
        margin: 0 auto 20px;
        max-width: 420px;
        overflow-y: unset;
        padding: 20px;
    }
}
.flow__step--item:last-child{
    padding-right: 20px;
    width: 32%;
}
@media screen and (max-width: 767px) {
    .flow__step--item:last-child{
        width: 100%;
    }
}
.flow__step--item::after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 500px solid transparent;
    border-bottom: 500px solid transparent;
    border-left: 124px solid #319e6d;
    border-right: 0;
    position: absolute;
    top: 50%;
    right: -26%;
    bottom: 0;
    transform: translateY(-50%);
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .flow__step--item::after{
        border-right: 100px solid transparent;
        border-left: 100px solid transparent;
        border-top: 80px solid #319e6d;
        border-bottom: 0;
        top: auto;
        right: 0;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
}
.flow__step--item:last-child:after{
    content: none;
}
.flow__step--item-inner{
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 767px) {
    .flow__step--item-inner{
        width: 100%;
    }
}
.flow__step--label {
    font-family: "Archivo Black", sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
    .flow__step--label {
        font-size: 18px;
    }
}
.flow__step--label::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.flow__step--icon{
    width: 40%;
    margin: 0 auto 15px;
}
@media screen and (max-width: 767px) {
    .flow__step--icon{
        width: 40%;
        max-width: 60px;
    }
}
.flow__step--name{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}
@media screen and (max-width: 820px) {
    .flow__step--name{
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .flow__step--name{
        font-size: 18px;
    }
}
@media screen and (max-width: 430px) {
    .flow__step--name{
        font-size: 16px;
    }
}
.flow__step--explanation{
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .flow__step--explanation{
        text-align: center;
    }
}

/* よくあるご質問 */
.sec__qa {
    padding: 6% 0;
}
.toggle {
    display: none;
}
.content__head.qa {
    margin-bottom: 40px;
}
.accordion {
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
}
.accordion_container {
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
}
.accordion_title {
    color: #319e6d;
    font-size: 16px;
    font-weight: 500;
    padding: 25px;
    text-align: left;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
}
@media screen and (max-width: 820px) {
	.accordion_title {
        text-indent: -3.3em;
        padding-left: 4.9em;
	}
}
@media screen and (max-width: 430px) {
	.accordion_title {
        font-size: 14px;
        padding: 20px;
        text-indent: -3.6em;
        padding-left: 4.4em;
        padding-right: 30px;
	}
}
.accordion_title::before {
    content: 'Q';
    font-family: "Archivo Black", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background-color: #319e6d;
    padding: 6px 12px;
    margin-right: 15px;
}
@media screen and (max-width: 430px) {
    .accordion_title::before {
        font-size: 14px;
	}
}
.accordion_title::after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img-b/icon-qa-arrow.png) no-repeat right center;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    transition: .2s;
}
@media screen and (max-width: 820px) {
	.accordion_title::after {
        width: 15px;
        height: 15px;
	}
}
@media screen and (max-width: 767px) {
	.accordion_title::after {
        right: 15px;
	}
}
@media screen and (max-width: 430px) {
	.accordion_title::after {
        right: 10px;
        width: 12px;
	}
}
.accordion_title.open::after {
    transform: translateY(-50%) rotate(180deg);
}
.accordion_title.default::after {
    transform: translateY(-50%) rotate(180deg);
}
.accordion_title.default.open::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}
.accordion_container:nth-of-type(2) .accordion_title {
    background-color: #fff;
}
.accordion_title:hover {
    opacity: .8;
}
.accordion_inner {
    display: none;
}
.accordion_inner.default {
    display: block;
}
.ac_inner_wraper{
    position: relative;
    font-size: 14px;
    color: #d8474d;
    font-weight: 500;
    padding: 25px;
    border-top: 1px solid #eee;
    text-indent: -4em;
    padding-left: 5.8em;
}
@media screen and (max-width: 430px) {
    .ac_inner_wraper{
        padding: 20px;
        text-indent: -3.6em;
        padding-left: 4.4em;
        padding-right: 10px;
	}
}
.ac_inner_wraper::before{
    content: 'A';
    font-family: "Archivo Black", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background-color: #d8474d;
    padding: 6px 12px;
    margin-right: 15px;
}
@media screen and (max-width: 430px) {
    .ac_inner_wraper::before{
        font-size: 14px;
	}
}
@media screen and (max-width: 767px) {
	.fixform__body {
        display: none;
	}
}

/* 申し込みフォーム */
.sec__form {
    padding: 8% 0;
    background-color: #fff;

}
.content__head.form{
    padding-bottom: 30px;
    margin-bottom: 50px;
}
.content__head.form::after{
    content: 'APPLICATION FORM';
    top: 0;
}
@media screen and (max-width: 767px) {
    .content__head.form::after{
        line-height: 1;
    }
}
.content__head.form::before {
    content: '';
    width: 120px;
    height: 3px;
    background-color: #319e6d;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.content__head--info.form{
    margin-top: 15px;
}
@media screen and (max-width: 430px) {
    .content__head--info.form{
        margin-top: 15px;
        font-size: 13px;
    }
}
.form__body{
    margin-top: 40px;
}
.form__input--body{
    max-width: 600px;
    margin: 0 auto;
}
.form__block{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .form__block{
        flex-wrap: wrap;
    }
}
.form__item{
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
}
.form__input{
    width: 68%;
}
@media screen and (max-width: 767px) {
    .form__item{
        width: 100%;
        margin-bottom: 7px;
    }
    .form__input{
        width: 100%;
    }
}
.requied {
    font-weight: 400;
    font-size: 0.7em;
    padding: 9px 13px;
    background-color: #d8474d;
    color: #fff;
}
@media screen and (max-width: 820px) {
    .requied {
        padding: 6px 9px;
    }
}
@media screen and (max-width: 767px) {
    .requied {
        padding: 5px 13px;
    }
}
.wpcf7-list-item label {
    display: flex;
    text-align: center;
    justify-content: center;
}
.wpcf7-list-item [type="checkbox"] {
    width: 22px;
}
@media screen and (max-width: 430px) {
    .wpcf7-list-item [type="checkbox"] {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}
.wpcf7-list-item-label{
    margin-left: 30px;
    text-align: left;
}
@media screen and (max-width: 430px) {
    .wpcf7-list-item-label{
        margin-left: 10px;
    }
}
.wpcf7-list-item-label a{
    display: inline;
}
.form__privacyinfo{
    margin-top: 40px;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
}
.form__privacyinfo a{
    color: #319e6d;
}
.wpcf7-form-control-wrap{
    margin: 0 auto;
}
.form__submit{
    text-align: center;
}
input[type="text"],
input[type="email"] {
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    background-color: #fff;
    border: 1px solid #d8d8d8;
}
input[type="submit"] {
    background: url(../img-b/icon-arrow-submit.png) no-repeat 90% center #da4450;
    background-size: 10px;
    border-radius: 5px;
    position: relative;
    margin: 50px auto 20px;
    font-size: 1.4em;
    text-align: center;
    font-weight: 600;
    width: 100%;
    max-width: 350px;
    padding: 20px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .2s;
}
input[type="submit"]:hover {
    background-color: #e4717a;
}
::placeholder{
    color: #b5b5b5;
}
@media screen and (max-width: 820px) {
    input[type="submit"]{
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 430px) {
    input[type="submit"]{
        font-size: 16px;
    }
}
.screen-reader-response{
    display: none;
}
.wpcf7-not-valid-tip{
    color: #f00;
}
.wpcf7-response-output{
    color: #f00;
}
.recaptcha,
.recaptcha a{
    font-size: 10px;
    color: #999;
}
.grecaptcha-badge{
    display: none;
}
.form__body .wpcf7 form .wpcf7-response-output{
    max-width: 600px;
    margin: 10px auto 0;
}


/* サンクスページ */
.sec__completion {
	background: url("../img-b/thanks.png") no-repeat center bottom;
    background-size: 100%;
    text-align: center;
    height: 100vh;
    min-height: 100vh;
    position: relative;
}
@media screen and (max-width: 767px) {
    .sec__completion{
        background-size: cover;
    }
}
.completion__body{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.completion__title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}
.back-top a{
    background-color: #111;
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    width: 30%;
    margin: 30px auto 0;
    border-radius: 10px;
}
@media screen and (max-width: 430px) {
    .back-top a{
        width: 60%;
    }
}
.back-top a:hover{
    background-color: #333;
}

/* 追従フォーム */
.fixform__head{
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    margin-bottom: 15px;
}
.fixform__body input[type="submit"]{
    padding: 15px 10px;
    width: 85%;
    max-width: 300px;
    font-size: 14px;
    margin: 0 auto 5px;
    transition: .2s;
    background-position-x: 93%;
    background-size: 8px;
}
.fixform__body input[type="submit"]:hover{
    background-color: #e4717a;
}
.fixform__body td {
    text-align: center;
}
.fixform__body {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 350px;
    width: 25%;
    background-color: #319e6d;
	z-index: 1;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
    text-align: center;
    height: 100vh;
    min-height: 100vh;
    padding-top: 20px;
}
@media screen and (max-width: 820px) {
    .fixform__body {
        width: 30%;
    }
}
.fixform__body .form__block {
    width: 85%;
    max-width: 300px;
    margin: 0 auto 25px;
    text-align: left;
}
.fixform__body .form__block .wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
}
.fixform__body input[type="text"],
.fixform__body input[type="email"]{
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    background-color: #f2f2f2;
}
.fixform__requied{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: #da4450;
    color: #fff;
    padding: 2px 10px;
    font-size: 10px;
}
p.kiyaku {
    font-weight: 200;
    width: 85%;
    font-size: 0.8em;
    line-height: 1.4em;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #fff;
}
.wpcf7-spinner{
    display: none;
}
.fixform__body .wpcf7-not-valid-tip,
.fixform__body .wpcf7-response-output {
    color: #ffec00;
}

/* footer */
.footer {
    padding: 30px 0px;
    background-color: #319e6d;
    color: #fff;
}
@media screen and (max-width: 1440px) {
    .footer {
        padding-right: 25%;
    }
}
@media screen and (max-width: 787px) {
    .footer {
        padding-right: 0;
    }
}
.page__footer{
    padding: 30px 0px;
    background-color: #319e6d;
    color: #fff;
}
.footer__wrap {
    width: 95%;
    margin: 0 auto;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 787px) {
    .footer__wrap {
        width: 95%;
        text-align: center;
    }
}
.footer__logo {
    width: 13%;
}
.footer__nav{
    display: flex;
}
.footer__nav li:last-child{
    margin-left: 15px;
}
.footer__nav a{
    color: #fff;
}
@media screen and (max-width: 767px) {
    .footer__wrap {
        display: block;
        text-align: center;
    }
    .footer__logo {
        width: 40%;
        margin: 0 auto 30px;
    }
    .footer__nav{
        width: 90%;
        margin: 0 auto;
        justify-content: center;
    }
}

/* marker */
.marker {
    background: linear-gradient(transparent 86%, #ffb701 50%);
}
.marker2 {
    position: relative;
    color: #0068b7;
}
.marker2::after {
    content: '';
    position: absolute;
    background: #ffb703;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 7px;
    color: #0068b7;
    z-index: -1;
}
.pattern-1{
    text-align:center;

}
span.marker.pattern-1.bluemoji {
    color: #0068b7;
}
span.mark {
    display: block;
    width: 10%;
    position: absolute;
    top: 25%;
    left: -5%;
}


/* アニメーション */
.anime-fuwafuwa {
    animation: 3s fuwafuwa infinite;
}
@keyframes fuwafuwa {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}