@charset "UTF-8";
/* CSS Document */
/*===============================================
共通
===============================================*/
html,
body {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 0.625rem;
    /*font-size: 0.69444444vw;*/
    font-weight: 500;
    background-color: #ffff32;
    line-height: 1.6;
}
:root {
    --yellow: #ffff32;
    --blue: #003893;
    --blue-lt: #009fe8;
    --pc: 14.4;
    --sp: 8.2;
}
*:focus {
    outline: none;
}
body {
    display: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
figure,
figcaption,
ul {
    margin: 0;
    padding: 0;
}
img {
    border: 0;
    line-height: 0;
    width: 100%;
    height: auto;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
a:hover {
    color: #c8c8c8;
}
table {
    border-collapse: collapse;
}
span.text-block {
    display: inline-block;
}
.pc-none {
    display: none;
}
.note {
    text-indent: -1em;
    padding-left: 1em;
}
.mg {
    margin: clamp(200px, (250vw / var(--pc)), 250px);
}
.kaku {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
}
.wrap {
    text-align: center;
    padding-bottom: 100px;
}
.contaner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto clamp(100px, (150vw / var(--pc)), 150px);
}
/*==============================================
アニメーション
===============================================*/
.fade {
    opacity: 0;
}
.fade.active {
    -webkit-animation: fade 0.5s 0.25s forwards;
    animation: fade 0.5s 0.25s forwards;
}
.fade.active#effect1 {
    -webkit-animation: fade 0.5s 0.5s forwards;
    animation: fade 0.5s 0.5s forwards;
}
.fade.active#effect2 {
    -webkit-animation: fade 0.5s 1s forwards;
    animation: fade 0.5s 1s forwards;
}
.fade.active#effect3 {
    -webkit-animation: fade 0.5s 1.5s forwards;
    animation: fade 0.5s 1.5s forwards;
}
.fade.active#effect4 {
    -webkit-animation: fade 0.5s 2s forwards;
    animation: fade 0.5s 2s forwards;
}
.fade.active#effect5 {
    -webkit-animation: fade 0.5s 2.5s forwards;
    animation: fade 0.5s 2.5s forwards;
}
@-webkit-keyframes fade {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) translateY(50px);
        transform: scale(0.9) translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }
}
@keyframes fade {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) translateY(50px);
        transform: scale(0.9) translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }
}
/*==============================================
ヘッダー
===============================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: var(--yellow);
}
header.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
/*==============================================
index
===============================================*/
main {
    position: relative;
}
main .main-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}
main .image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 50px;
}
main .copy {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--blue);
    letter-spacing: 0;
}
main .scroll {
    position: absolute;
    left: 5%;
    bottom: 0;
    line-height: 0;
}
main .scroll span.bar {
    width: 2px;
    height: 100px;
    background-color: var(--blue-lt);
    position: relative;
    display: inline-block;
}
main .scroll span.bar::after {
    content: "SCROLL";
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: var(--blue-lt);
    letter-spacing: 1px;
    font-weight: 900;
    line-height: 2;
}
main .scroll span.ball {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(calc(-50% + 1px));
    transform: translateX(calc(-50% + 1px));
    width: 7px;
    height: 7px;
    background-color: var(--blue-lt);
    line-height: 0;
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: ball 2s ease-in-out 1s infinite;
    animation: ball 2s ease-in-out 1s infinite;
}
@-webkit-keyframes ball {
    0% {
        opacity: 0;
        top: 0;
    }
    10% {
        opacity: 1;
        top: 0;
    }
    30% {
        top: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: calc(100% - 7px);
    }
}
@keyframes ball {
    0% {
        opacity: 0;
        top: 0;
    }
    10% {
        opacity: 1;
        top: 0;
    }
    30% {
        top: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: calc(100% - 7px);
    }
}
#about,
#reason,
#contact {
    padding: 150px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#reason,
#contact {
    margin-top: -150px;
}
#about .title,
#reason .title,
#contact .title {
    margin: 0 auto 50px;
}
#about .title {
    max-width: 580px;
}
#about .step .title {
    max-width: 650px;
}
#reason .reason .title {
    max-width: 640px;
    margin-bottom: 25px;
}
#about ul.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
    line-height: 0;
}
#about .worries {
    margin-bottom: clamp(120px, (160vw / var(--pc)), 160px);
}
#about .worries ul.flex li {
    width: 20%;
}
#about .worries .sai {
    max-width: 260px;
    margin: 0 auto;
}
#about .step {
    margin-bottom: 20px;
}
#about .step ul.flex {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
}
#about .step ul.flex::before,
#about .step ul.flex::after {
    content: "";
    background: url("../img/arrow01.svg") no-repeat center center / cover;
    width: 15px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 32.5%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#about .step ul.flex::after {
    left: 67.5%;
}
#about .step ul.flex li {
    width: 30%;
    background-color: #fff;
    border-radius: 30px;
    padding: 35px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
#about .step ul.flex li .image {
    max-width: 75px;
    display: block;
    margin: 0 auto 25px;
}
#about .step ul.flex li .text {
    font-size: clamp(16px, (18vw / var(--pc)), 18px);
    color: var(--blue);
    line-height: 1.4;
    font-weight: 700;
    white-space: nowrap;
}
#about .contaner .sai {
    max-width: 220px;
    margin-left: auto;
}
#reason .title {
    margin-bottom: 0;
}
.titleBody {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 50px;
    font-weight: 700;
}
.reasonText {
    color: var(--blue-lt);
    font-size: 2.5rem;
    border: 2px solid var(--blue-lt);
    padding: 15px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 900;
}
#reason .reasonAnswer {
    font-size: 2.2rem;
    color: var(--blue);
    text-align: justify;
    max-width: 770px;
    background-color: #fff;
    border-radius: 25px;
    padding: 60px 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
#reason .reasonAnswer::before {
    content: "";
    background: url("../img/arrow02.svg") no-repeat center center / cover;
    width: 57px;
    height: 34px;
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#reason .reason .reasonAnswer p {
    margin-bottom: 2em;
    position: relative;
    line-height: 1.8;
}
#reason .reason .reasonAnswer p::before {
    content: "";
    background: url("../img/heart.svg") no-repeat center center / cover;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0%;
    left: -5px;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}
#reason .reason .reasonAnswer p:nth-last-child(1) {
    margin-bottom: 0;
    width: 82%;
}
#reason .reason .reasonAnswer p span.under {
    background-image: repeating-linear-gradient(to right,
            #d4425f,
            #d4425f 8px,
            transparent 8px,
            transparent 12px);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: auto 3px;
    padding-bottom: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
}
#reason .sai {
    width: 35%;
    max-width: 240px;
    margin-left: auto;
    -webkit-transform: translate(0%, -75%);
    transform: translate(0%, -75%);
}
#reason .consultation .reasonAnswer {
    margin-bottom: 60px;
}
#reason .consultation .industry {
    font-size: 2rem;
    text-align: center;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}
#reason .consultation .problem {
    background-color: #ffffd4;
    font-size: 1.8rem;
    color: #000;
    line-height: 1.5;
    font-weight: 700;
    padding: 20px 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
}
#reason .consultation .advice {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-lt);
    text-align: center;
    margin-bottom: 15px;
}
#reason .consultation .adviceText {
    color: var(--blue-lt);
    font-size: 1.8rem;
}
#contact {
    padding-bottom: 0;
}
#contact .contaner {
    margin-bottom: 0;
}
#contact .reasonText {
    font-size: 3rem;
}
#contact .reasonText span {
    font-size: 2.2rem;
    display: block;
    line-height: 1.4;
}
#contact .reasonText span small {
    font-size: 1.5rem;
}
#contact .flow .contactFlow {
    width: 100%;
    background-color: #fff;
    border-radius: 100px;
    max-width: 770px;
    margin: 0 auto 50px;
    padding: 25px 0;
    font-weight: 700;
    position: relative;
}
#contact .flow .contactFlow:nth-child(even) {
    padding: 54px 0;
}
#contact .flow .contactFlow:nth-child(3) {
    padding: 39.5px 0;
}
#contact .flow .contactFlow::after {
    content: "";
    background: url("../img/arrow02.svg") no-repeat center center / cover;
    width: 25px;
    height: 15px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
#contact .flow .contactFlow:nth-last-child(1) {
    margin-bottom: 0;
}
#contact .flow .contactFlow:nth-last-child(1)::after {
    display: none;
}
#contact .contactFlow .item {
    font-size: 3rem;
    color: var(--blue-lt);
}
#contact .contactFlow .itemText {
    font-size: 1.8rem;
    color: var(--blue);
}
#contact .contactFlow .itemText:nth-child(3) {
    margin-left: 6em;
}
/*==============================================
お問い合わせ
===============================================*/
/*チェックボックスカスタム*/
input[type="checkbox"] {
    display: none;
}
.checkboxAnime {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 0 5px 30px;
    position: relative;
    width: auto;
}
.checkboxAnime::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: "";
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkboxAnime::after {
    /*チェックの色*/
    border-right: 6px solid var(--green);
    border-bottom: 3px solid var(--green);
    content: "";
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
    transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    width: 9px;
}
input[type="checkbox"]:checked + .checkboxAnime::before {
    border-color: #666;
}
input[type="checkbox"]:checked + .checkboxAnime::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
    transform: rotate(45deg) scale3d(1, 1, 1);
}
.send {
    margin: 3rem auto 0;
    text-align: center;
}
.send-btn {
    font-size: 1.5rem;
    background-color: #8c8c8c;
    padding: 0.5em 2em;
    color: #fff;
    display: inline-block;
    text-align: center;
}
/*==============================================
フッター
===============================================*/
footer {
    width: 100%;
    padding: 0 5% 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 200px;
}
.contact_btn {
    width: 100%;
    z-index: 99;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 1.8rem;
    text-align: center;
    margin: 0 auto;
    -webkit-transform: translate(-50%, 120%);
    transform: translate(-50%, 120%);
    background-color: var(--yellow);
    padding: 25px 5% 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.contact_btn.active {
    position: fixed;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.contact_btn.absolute {
    position: absolute;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.contact_btn a {
    color: #fff;
    display: block;
    background-color: #00a0e9;
    border-radius: 100px;
    border: 2px solid #fff;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 10px 0;
    max-width: 350px;
    margin: 0 auto;
}
.contact_btn a:hover {
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0);
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
    background-color: #fff;
    color: #00a0e9;
    border: 2px solid #00a0e9;
}
.contact_btn a p {
    display: inline-block;
    letter-spacing: 1px;
    position: relative;
    padding-right: 10px;
    max-width: 350px;
}
.contact_btn a p::after {
    content: "";
    background: url("../img/ribbon.svg") no-repeat center center / cover;
    width: 62px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(100%, -25%);
    transform: translate(100%, -25%);
}
.contact_btn span.text {
    width: 100%;
    display: block;
    font-size: 1.4rem;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 15px;
}
.contact_btn span.text::before {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--blue);
    display: inline-block;
    -webkit-transform: rotate(65deg);
    transform: rotate(65deg);
    margin: 0 0 7.5px 0;
}
.contact_btn span.text::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--blue);
    display: inline-block;
    -webkit-transform: rotate(-65deg);
    transform: rotate(-65deg);
    margin: 0 0 7.5px 0;
}
.footer_wrap {
    margin: 0 auto 0;
    width: 90%;
    text-align: center;
    font-size: 2rem;
    color: var(--blue);
    font-weight: 700;
}
.footer_wrap .sai {
    max-width: 160px;
    margin: 0 auto 20px;
}
.footer_wrap .text {
    margin-bottom: 50px;
}
.footer_wrap .webName {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1;
}
.footer_wrap .reception {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.footer_wrap .adress {
    margin-bottom: 25px;
}
.footer_wrap .tel a {
    color: var(--blue);
}
.footer_wrap .link {
    margin: 0 auto;
    max-width: 550px;
}
.footer_wrap .link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--yellow);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 0;
    padding: 15px 0;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.footer_wrap .link a:hover {
    background-color: #fff;
}
.footer_wrap .link a p.logo {
    max-width: 150px;
    margin-right: 30px;
}
.footer_wrap .link a p.url {
    color: #000;
}
/*==============================================
404
===============================================*/
.notfound-wrap {
    min-height: 800px;
    position: relative;
}
.notfound {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.notfound img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-bottom: 50px;
}
.notfound p {
    font-size: 1.6rem;
    margin-bottom: 80px;
    text-align: left;
}
.notfound .more {
    margin: 0 auto;
    display: inline-block;
}
.notfound a {
    background-color: #646464;
    color: #fff;
    padding: 1em 2em;
    font-size: 1.4rem;
    margin: 0 auto;
}
/*==============================================
画面の横幅が820pxまで
===============================================*/
@media only screen and (max-width: 820px) {
    .sp-none {
        display: none;
    }
    .pc-none {
        display: block;
    }
    .wrap {
        text-align: center;
        padding-bottom: 50px;
    }
    .contaner {
        max-width: 640px;
        margin: 0 auto clamp(100px, (150vw / var(--pc)), 150px);
    }
    /*==============================================
ヘッダー
===============================================*/
    header {
        height: 55px;
        background-color: var(--yellow);
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
    /*==============================================
index
===============================================*/
    main .image {
        width: 50%;
        max-width: clamp(130px, (320vw / var(--sp)), 320px);
        margin: 0 auto 35px;
    }
    main .copy {
        font-size: clamp(15px, (25vw / var(--sp)), 25px);
        line-height: 1.6;
        letter-spacing: 1px;
    }
    main .scroll {
        height: clamp(60px, (80vw / var(--sp)), 80px);
        left: calc(5% + 12px);
    }
    main .scroll span.bar {
        height: clamp(60px, (80vw / var(--sp)), 80px);
        width: 1px;
    }
    main .scroll span.bar::after {
        font-size: clamp(10px, (12vw / var(--sp)), 12px);
    }
    main .scroll span.ball {
        -webkit-transform: translateX(calc(-50% + 0.5px));
        transform: translateX(calc(-50% + 0.5px));
    }
    #about,
    #reason,
    #contact {
        padding: 80px 0 0;
    }
    #reason,
    #contact {
        margin-top: -80px;
    }
    #about .title,
    #reason .title,
    #contact .title {
        margin-bottom: 35px;
    }
    #about .step .title.pc-none {
        max-width: 640px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px;
    }
    #about .step .title img:nth-child(1) {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 15px;
    }
    #about .step .title img:nth-child(2) {
        width: 38%;
    }
    #reason .reason .title {
        max-width: 640px;
        margin-bottom: 25px;
    }
    #about ul.flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 480px;
        margin: 0 auto;
    }
    #about .worries {
        margin-bottom: clamp(80px, (120vw / var(--sp)), 120px);
        position: relative;
    }
    #about .worries ul.flex li {
        width: 45%;
        margin-bottom: 40px;
    }
    #about .worries ul.flex li:nth-child(n + 3) {
        margin-bottom: 0;
        margin-top: 40px;
    }
    #about .contaner .worries .sai {
        width: 35%;
        max-width: 170px;
        min-width: 120px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -40%);
        transform: translate(-50%, -40%);
    }
    #about .step {
        margin-bottom: 0;
    }
    #about .step ul.flex {
        display: block;
        max-width: 640px;
        -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        border-radius: clamp(10px, (30vw / var(--sp)), 30px);
        padding: 25px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #fff;
    }
    #about .step ul.flex::before,
    #about .step ul.flex::after {
        display: none;
    }
    #about .step ul.flex::after {
        left: 50%;
    }
    #about .step ul.flex li {
        width: 100%;
        border-radius: clamp(10px, (30vw / var(--sp)), 30px);
        padding: 25px;
        background-color: #cbf1ff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 50px;
    }
    #about .step ul.flex li:nth-child(1)::after,
    #about .step ul.flex li:nth-child(2)::after {
        content: "";
        background: url("../img/arrow02.svg") no-repeat center center / cover;
        width: 30px;
        height: 18px;
        position: absolute;
        bottom: -15px;
        left: 50%;
        -webkit-transform: translate(-50%, 100%);
        transform: translate(-50%, 100%);
    }
    #about .step ul.flex li:nth-child(3) {
        margin-bottom: 0;
    }
    #about .step ul.flex li .image {
        margin: 0 15px 0 0;
        width: 40px;
        min-width: 40px;
    }
    #about .step ul.flex li .text {
        font-size: clamp(16px, (22vw / var(--sp)), 22px);
        text-align: left;
        white-space: normal;
    }
    #about .contaner .sai {
        max-width: 220px;
        margin-left: auto;
    }
    #reason .title.sp-none {
        display: none;
    }
    #reason .title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    #reason .title img:nth-child(1) {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 15px;
    }
    #reason .title img:nth-child(2) {
        width: 35%;
    }
    .titleBody {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .reasonText {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: left;
        padding: 10px 25px;
    }
    #reason .reasonAnswer {
        font-size: 1.4rem;
        max-width: 640px;
        border-radius: 20px;
        padding: 40px 20px 40px 50px;
        margin-bottom: 35px;
        letter-spacing: 0;
        line-height: 1.6;
    }
    #reason .reasonAnswer::before {
        width: 27px;
        height: 16px;
    }
    #reason .reason .reasonAnswer p::before {
        width: 25px;
        height: 25px;
    }
    #reason .reason .reasonAnswer p:nth-last-child(1) {
        width: 100%;
    }
    #reason .reason .reasonAnswer p span.under {
        background-image: repeating-linear-gradient(to right,
                #d4425f,
                #d4425f 6px,
                transparent 6px,
                transparent 12px);
        background-size: auto 2px;
        padding-bottom: 4px;
    }
    #reason .reason .reasonAnswer p span.sp-text {
        font-size: 2rem;
        font-weight: 900;
    }
    #reason .consultation .reasonAnswer {
        margin-bottom: 35px;
        padding: 20px 20px 15px;
    }
    #reason .consultation .industry {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    #reason .consultation .problem {
        font-size: 1.4rem;
        padding: 10px;
        margin-bottom: 15px;
    }
    #reason .consultation .advice {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    #reason .consultation .adviceText {
        color: var(--blue-lt);
        font-size: 1.4rem;
    }
    #contact .reasonText {
        font-size: 2rem;
    }
    #contact .reasonText span {
        font-size: 1.5rem;
    }
    #contact .reasonText span small {
        font-size: 1.2rem;
    }
    #contact .flow .contactFlow {
        max-width: 640px;
        margin: 0 auto 35px;
        padding: 20px;
        border-radius: 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    }
    #contact .flow .contactFlow:nth-child(even) {
        padding: 20px;
    }
    #contact .flow .contactFlow:nth-child(3) {
        padding: 20px;
    }
    #contact .flow .contactFlow::after {
        bottom: -15px;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }
    #contact .flow .contactFlow:nth-last-child(1) {
        margin-bottom: 0;
    }
    #contact .flow .contactFlow:nth-last-child(1)::after {
        display: none;
    }
    #contact .contactFlow .item {
        font-size: 1.5rem;
        margin-bottom: 10px;
        text-align: left;
        letter-spacing: 0;
    }
    #contact .flow .contactFlow:nth-child(even) .item {
        margin-bottom: 0;
    }
    #contact .contactFlow .itemText {
        font-size: 1.4rem;
        text-align: left;
    }
    #contact .contactFlow .itemText:nth-child(3) {
        margin-left: 0;
    }
    /*==============================================
フッター
===============================================*/
    footer {
        width: 100%;
        padding: 0 0 50px;
        margin-top: 150px;
    }
    .contact_btn {
        width: 100%;
        font-size: 1.6rem;
        padding: 15px 5%;
    }
    .contact_btn a p {
        letter-spacing: 0px;
        padding-right: 5px;
        max-width: 220px;
    }
    .contact_btn a p::after {
        width: 49px;
        height: 38px;
    }
    .contact_btn span.text {
        top: -15px;
        font-size: 1.2rem;
    }
    .contact_btn span.text::before {
        content: "";
        width: 18px;
        margin: 0 0 4px 0;
    }
    .contact_btn span.text::after {
        content: "";
        width: 18px;
        margin: 0 0 4px 0;
    }
    .footer_wrap {
        font-size: 1.8rem;
    }
    .footer_wrap .sai {
        width: 30%;
        min-width: 140px;
        position: relative;
        z-index: 100;
    }
    .footer_wrap .text {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .footer_wrap .webName {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .footer_wrap .tel {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .footer_wrap .reception {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .footer_wrap .adress {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    .footer_wrap .link {
        max-width: 420px;
    }
    .footer_wrap .link a {
        padding: 15px 0;
    }
    .footer_wrap .link a p.logo {
        width: 28%;
        min-width: 70px;
        margin-right: 15px;
    }
    .footer_wrap .link a p.url {
        color: #000;
        font-size: 1.2rem;
    }
    /*==============================================
404
===============================================*/
    .notfound-wrap {
        min-height: 500px;
        width: 90%;
        margin: 0 auto;
    }
    .notfound p {
        font-size: 1.4rem;
        line-height: 1.8;
    }
    .notfound img {
        width: 100%;
        max-width: 200px;
        margin-top: 0;
    }
}