@charset "utf-8";

/*--------------------
Reset
--------------------*/
html {
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}
body,h1,h2,h3,h4,h5,h6,p,ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
ol,
ul {
    list-style: none;
}
dl ,
dt,
dd {
    margin: 0;
}
figure {
    margin: 0;
}
img {
    width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}
legend {
    display: table;
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
}
legend * {
    clear: both;
}
fieldset {
    border: 0;
    padding: 0.01em 0 0 0;
    margin: 0;
    min-width: 0;
}
body:not(:-moz-handler-blocked) fieldset {
    display: table-cell;
}
button {
    border: none;
}

/*--------------------
Common
--------------------*/
html {
    font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    letter-spacing: .15em;
    font-feature-settings: "palt";
}
body {
    color: #2A2A2A;
    font-size: 1.6rem;
    line-height: 1.6;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}
.sp-only {
    display: none;
}
.pc-only {
    display: block;
}
.button-primary {
    display: block;
    padding: 13px 20px;
    border: none;
    border-radius: 50px;
    background-color: #E42E15;
    color: #FFF;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: .15s;
    overflow: hidden;
    position: relative;
}
.button-primary::after {
        background: #fff;
        content: "";
        height: 155px;
        left: -75px;
        opacity: .2;
        position: absolute;
        top: -50px;
        -webkit-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        transform: rotate(35deg);
        -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
        transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
        width: 50px;
        z-index: -10;
    }
.button-primary:hover {
    transform: translateY(2px);
    box-shadow: none;
}
.button-primary:hover:after {
    left: 120%;
    -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.read-text {
    margin-bottom: 30px;
}
.note-item {
    padding-left: 1.5em;
    position: relative;
}
.note-item::before {
    content: "※";
    position: absolute;
    left: 0;
    top:0;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    .sp-only {
        display: block;
    }
    .pc-only {
        display: none;
    }
    .button-primary {
        padding: 10px;
        background-color: #FFF;
        color: #E42E15;
    }
    .button-primary:hover {
        transform: translateY(0);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    }
    .read-text {
        margin-bottom: 20px;
    }
}

/*--------------------
Header
--------------------*/
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position:sticky;
    top: 0;
    z-index: 1000;
}
.header .header-logo {
    width: 225px;
    line-height: 1;
}
.header .btn-gNav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.header .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #2A2A2A;
    border-radius: 1px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.header .btn-gNav span:nth-child(1) {
    top: 0;
}

.header .btn-gNav span:nth-child(2) {
    top: 10px;
}
.header .btn-gNav span:nth-child(3) {
    top: 20px;
}
.header .gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header .gNav.open span:nth-child(2),
.header .gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-gNav {
    display: none;
}
.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
}
.gNav .gNav-menu li:not(:last-child) {
    margin-right: 20px;
}
.gNav .gNav-menu li:not(:last-child) a {
    padding: 10px 0;
    text-decoration: none;
    color: #4a4a4a;
    position: relative;
    transition: 0.2s;
}
.gNav .gNav-menu li:not(:last-child) a:hover {
    color: #E42E15;
}
.gNav .gNav-menu li:not(:last-child) a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    border-bottom: solid 2px #E42E15;
    transition: 0.2s;
}
.gNav .gNav-menu li:not(:last-child) a:hover::after {
    width: 100%;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    .header {
        position: sticky;
        margin: 0 auto;
    }
    .header .header-logo {
        width: 130px;
        margin: 0;
    }
    .btn-gNav {
        display: block;
    }
    .gNav {
        position: fixed;
        top: 0;
        right: -60%;
        width: 60%;
        height: 100%;
        color: #FFF;
        background-color: rgba(207, 0, 0, 0.95);
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }
    .gNav.open {
        right: 0;
    }
    .gNav .gNav-menu {
        padding: 0 20px;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
    }
    .gNav .gNav-menu li:not(:last-child) {
        width: 100%;
        margin-right: 0;
        border-bottom: #FFF 1px solid;
        color: #FFF;
    }
    .gNav .gNav-menu li:not(:last-child) a {
        padding: 10px 0;
        color: #FFF;
        display: block;
    }
    .gNav .gNav-menu li:not(:last-child) a:hover {
        color: #FFF;
    }
    .gNav .gNav-menu li:not(:last-child) a::after {
        content: none;
    }
    .gNav .gNav-menu li:not(:last-child) a:hover::after {
        width: 0%;
    }
    .gNav .gNav-menu li:last-child {
        margin-top: 20px;
    }
}

/*--------------------
Main Visual
--------------------*/
.main-visual {
    background: #FFFFFF;
    line-height: 1;
}

/*--------------------
Section: 共通部分
--------------------*/
.main {}
.section {
    background: #FFFFFF;
}
.section:nth-child(odd) {
    background: #FFF9F9;
}
.section .container {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.section .container.container--wide ,
.section .container.container--wide + .container {
    max-width: 100%;
}
.section .container.container--wide {
    padding: 0;
}
.section .container .section-title {
    font-size: 4.6rem;
    line-height: 1.48;
    font-weight: bold;
    letter-spacing: .1em;
    text-align: center;
    margin-bottom: 60px;
}

.section .container .section-lead {
    margin-bottom: 60px;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    .main {}
    .section .container {
        padding: 50px 20px;
    }
    .section .container::before {
        width: 100px;
        height: 53px;
        margin-bottom:20px;
    }
    .section .container .section-title {
        font-size: 2.6rem;
        margin-bottom: 40px;
    }
    .section .container .section-title.section-title--red {
    }
    .section .container .section-title.section-title--red::before {
        content: "";
        display: block;
        text-align: center;
        width: 166px;
        height: 160px;
        margin: 0 auto;
        background: url(../img/e_cloud-red/img_red-man_1.svg) no-repeat center;
        background-size: contain;
        transform: translateY(-15%);
    }
    .section .container .section-lead {
        margin-bottom: 30px;
    }
}

/*--------------------
Section: prologue
--------------------*/
.prologue__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 2.8rem;
}
.prologue__text > span {
    display: block;
    max-width: 80%;
    margin: 0 auto;
}
.prologue__negative-list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.prologue__negative-list > li:not(:last-child) {
    margin-right: 40px;
}
.prologue__bubble {
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 30px;
    font-size: 4.6rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: .15em;
    line-height: 1.2;
    background-color: #FFFFFF;
}
.prologue__bubble::before ,
.prologue__bubble::after{
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #242424;
    transform: rotate(-30deg);
}
.prologue__bubble::before {
    margin-right: 40px;
    transform: rotate(-30deg);
}
.prologue__bubble::after {
    margin-left: 30px;
    transform: rotate(30deg);
}
.prologue__solution {
    padding: 20px;
    background-color: #E93D29;
    text-align: center;
    background: url(../img/e_cloud-red/bg_flare_1.svg) no-repeat center #E93D29;
}
.prologue__solution > img {
    max-width: 550px;
}
.prologue__solution-text {
    font-size: 4.6rem;
    font-weight: bold;
    text-align: center;
    position: relative;
}
.prologue__solution-text::before {
    content: "";
    width: 453px;
    height: 294px;
    background: url(../img/e_cloud-red/img_red-man_2.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 50%;
    top:-294px;
    transform: translateX(-50%);
}
.prologue__solution-text strong {
    font-size: 5.4rem;
}
.prologue__solution-text .red {
    font-size: 7rem;
    color: #E31800;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    #prologue-01 > .container {
        padding-top: 0;
    }
    .prologue__text {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .prologue__text::after {
        height: 70px;
        transform: translateY(0px);
    }
    .prologue__text > span {
        max-width: 90%;
    }
    .prologue__negative-list > li {
        max-width: 200px;
    }
    .prologue__negative-list > li:not(:last-child) {
        margin-right: 4%;
    }
    .prologue__bubble {
        padding-bottom: 20px;
        font-size: 2.4rem;
    }
    .prologue__bubble::before {
        margin-right: 20px;
    }
    .prologue__bubble::after {
        margin-left: 20px;
    }
    .prologue__solution {
        padding: 10px;
    }
    .prologue__solution > img {
        max-width: 360px;
    }
    .prologue__solution-text {
        font-size: 1.8rem;
        margin-top: 60px;
    }
    .prologue__solution-text::before {
        width: 320px;
        height: 193px;
        top:-193px;
    }
    .prologue__solution-text strong {
        font-size: 2.6rem;
    }
    .prologue__solution-text .red {
        font-size: 3.2rem;
    }
}

/*--------------------
Section: E-CLOUD REDとは？
--------------------*/
.overview__flow {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    .overview__flow {
    }
}

/*--------------------
Section: E-CLOUD REDの特徴
--------------------*/
.feature__list {
    display:flex;
    flex-wrap: wrap;
    position: relative;
}
.feature__list::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #FFF9F9;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.feature__list-item {
    width: 50%;
}
.feature__list-item:nth-child(1) {
    padding: 0 6% 6% 0;
}
.feature__list-item:nth-child(2) {
    padding: 0 0 6% 6%;
}
.feature__list-item:nth-child(3) {
    padding: 6% 6% 0 0;
}
.feature__list-item:nth-child(4) {
    padding: 6% 0 0 6%;
}
.feature__list-item:nth-child(1) ,
.feature__list-item:nth-child(2) {
    border-bottom: 2px solid #FED0D0;
}
.feature__list-item:nth-child(1) ,
.feature__list-item:nth-child(3){
    border-right: 2px solid #FED0D0;
}
.feature__list-item dl dt {
    margin-bottom: 20px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}
.feature__list-item dl dt::before {
    content: "";
    display: block;
    margin: 0 auto 30px;
    height: 100px;
    background-repeat:no-repeat;
    background-position: center;
    background-size: contain;
}
.feature__list-item:nth-child(1) dl dt:before {
    width: 108px;
    background-image: url(../img/e_cloud-red/icon_features_1.svg);
}
.feature__list-item:nth-child(2) dl dt:before {
    width: 115px;
    background-image: url(../img/e_cloud-red/icon_features_2.svg);
}
.feature__list-item:nth-child(3) dl dt:before {
    width: 118px;
    background-image: url(../img/e_cloud-red/icon_features_3.svg);
}
.feature__list-item:nth-child(4) dl dt:before {
    width: 94px;
    background-image: url(../img/e_cloud-red/icon_features_4.svg);
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    .feature__list::before {
        content: none;
    }
    .feature__list-item {
        width: 100%;
    }
    .feature__list-item:nth-child(1) {
        padding: 0 0 30px;
    }
    .feature__list-item:nth-child(4) {
        padding: 30px 0 0;
    }    
    .feature__list-item:nth-child(2) ,
    .feature__list-item:nth-child(3) {
        padding: 30px 0;
    }
    .feature__list-item:nth-child(1) ,
    .feature__list-item:nth-child(2) ,
    .feature__list-item:nth-child(3) {
        border-bottom: 2px solid #FED0D0;
    }
    .feature__list-item:nth-child(1) ,
    .feature__list-item:nth-child(3){
        border-right: none;
    }
    .feature__list-item dl dt {
        font-size: 2rem;
    }
    .feature__list-item dl dt::before {
        margin: 0 auto 20px;
        height: 80px;
    }
    .feature__list-item:nth-child(1) dl dt:before {
        width: 86px;
    }
    .feature__list-item:nth-child(2) dl dt:before {
        width: 92px;
    }
    .feature__list-item:nth-child(3) dl dt:before {
        width: 94px;
    }
    .feature__list-item:nth-child(4) dl dt:before {
        width: 75px;
    }
}

/*--------------------
Section: 導入までの流れ
--------------------*/
.flow__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.flow__list::after {
    content: "";
    width: 65%;
    height: 4px;
    background-color: #FED0D0;
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
}
.flow__item {
    width: calc((100% - 60px) / 4);
    z-index: 2;
}
.flow__step {
    text-align: center;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .4em;
    text-indent:  .4em;
    margin-bottom: 20px;
}
.flow__step--1 {
    color: #FF7B7B;
}
.flow__step--2 {
    color: #F45C52;
}
.flow__step--3 {
    color: #ED4837;
}
.flow__step--4 {
    color: #E42E15;
}
.flow__icon {
    margin-bottom: 30px;
    line-height: 0;
    text-align: center;
}
.flow__icon img {
    max-width: 140px;
    height: auto;
}
.flow__title {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}
.flow__title span {
    font-weight: normal;
}

/* 〜959pxpx：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    .flow__list::after {
        width: 4px;
        height: 76%;
        top: 60px;
        left: 28px;
        transform: translateX(0);
    }
    .flow__item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%; 
        margin-bottom: 20px;
        position: relative;
    }
    .flow__item:last-child {
        margin-bottom: 0;
    }
    .flow__step {
        margin-bottom: 5px;
        text-indent: 0;
        order: 1;
        position: absolute;
        top:5px;
        left: 80px;
    }
    .flow__item .flow__icon {
        margin:0 20px 20px 0;
        order: 0;
    }
    .flow__icon img {
        max-width: 60px;
    }
    .flow__title {
        width: calc(100% - 80px);
        margin-bottom: 0;
        font-size: 1.8rem;
        text-align: left;
        order: 3;
    }
    .flow__text {
        transform: translateY(-20px);
        padding-left: 80px;
        position: relative;
        order: 4;
    }
}

/*--------------------
Section: よくある質問
--------------------*/
.qa-accordion__list {
}
.qa-accordion__head {
    cursor: pointer;
    display: block;
    padding: 10px 0;
    font-weight: bold;
}
.qa-accordion__head-inner {
    display: flex;
    padding-right: 30px;
    align-items: center;
    position: relative;
    min-height: 56px;
}
.qa-accordion__head-inner::before {
    content: "";
    margin-right: 20px;
    min-width: 32px;
    min-height: 32px;
    background: url(../img/e_cloud-red/icon_faq.svg) no-repeat center;
    background-size: contain;
}
.qa-accordion__icon {
    display: block;
    width: 24px;
    transition: transform 0.25s;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.qa-accordion__icon:before {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    background-color: #FED0D0;
}
.qa-accordion__icon:after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    background-color: #FED0D0;
}
.qa-accordion__icon:before {
    left: 50%;
    transform: translateX(-50%);
}
.qa-accordion__icon:after {
    right: 50%;
    transform: translateX(50%) rotate(90deg);
}
.qa-accordion__item:not(:last-child) {
    border-bottom: solid 1px #FED0D0;
}
.qa-accordion__item input[name=qa-accordion__block] {
    display: none;
}
.qa-accordion__item .qa-accordion__block {
    cursor: pointer;
}
.qa-accordion__item .qa-accordion__content {
    height: 0;
    padding: 0 20px;
    overflow: hidden;
    opacity: 0.5;
    transition: padding .2s ease, opacity .2s ease 0s;
}
.qa-accordion__item input[name=qa-accordion__block]:checked + .qa-accordion__head > .qa-accordion__head-inner .qa-accordion__icon {
    transform: rotate(-90deg);
}
.qa-accordion__item input[name=qa-accordion__block]:checked + .qa-accordion__head > .qa-accordion__head-inner .qa-accordion__icon::before {
    opacity: 0;
}
.qa-accordion__item input[name=qa-accordion__block]:checked + .qa-accordion__head + .qa-accordion__content {
    height: auto;
    opacity: 1;
    padding: 0 0 20px 52px;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    .qa-accordion__head-inner::before {
        margin-right: 10px;
        min-width: 22px;
        min-height: 22px;
    }
    .qa-accordion__item input[name=qa-accordion__block]:checked + .qa-accordion__head + .qa-accordion__content {
        padding: 0 0 20px 32px;
    }
}

/*--------------------
Section: 資料請求・お問い合わせ
--------------------*/
#contact-01 .container {
    padding-bottom: 60px;
}
.contact__lead {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
}
.contact__img {
    max-height: 350px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    background: url(../img/e_cloud-red/bg_flare_2.svg) no-repeat center #FFF;
    background-size: cover;
}
.contact__img img {
    max-width: 600px;
}
.contact__button {
    background-color: #E42E15;
    padding: 60px 15%;
}
.contact__button a {
    display: block;
    max-width: 670px;
    margin: 0 auto;
    padding: 30px;
    font-size: 2.6rem;
    font-weight: bold;
    color: #E42E15;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    background-color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    transition: .15s;
}
.contact__button a:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: .9;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
    #contact-01 .container {
        padding-bottom: 40px;
    }
    .contact__lead {
        font-size: 2rem;
    }
    .contact__img {
        max-height: 200px;
    }
    .contact__img img {
        max-width: 330px;
    }
    .contact__button {
        background-color: #E42E15;
        padding: 40px 20px;
    }
    .contact__button a {
        padding: 20px;
        font-size: 2rem;
    }
    .contact__button a:hover {
        transform: translateY(0px);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        opacity: 1;
    }
}

/*
    Footer
--------------------*/
.footer {
    background-color: #FFFFFF;
    font-size: 1.4rem;
    text-align: center;
}
.footer .footer__inner {
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 1000px;
}
.footer .footer-copy {
}
