@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');


/* Reset Css */
* {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;

}
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #141e32;
}
img {
    max-width: 100%;
}




/* -------------
Common
------------- */
.display-pc {
    display: none;
}
@media screen and (min-width: 768px) {
    .display-pc {
        display: block;
    }
    .display-sp {
        display: none;
    }
}


.section {
    padding: 40px 0;
}
.inner {
    margin: 0 6%;
}

.sec-title {
    text-align: center;
}
.sec-title div {
    height: 13px;
    display: flex;
    justify-content: center;
}
.sec-title div img {
    height: 100%;
    width: auto;
}
.sec-title h2 {
    margin: 8px 0 0;
    font-size: 2.5rem;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .section {
    padding: 90px 0;
    }
    .inner {
        margin: 0 auto;
        max-width: 1132px;
        padding: 0 16px;
    }

    .sec-title div {
        height: 17px;
    }
    .sec-title h2 {
        margin: 12px 0 0;
        font-size: 4rem;
    }
}

/* -------------
Header
------------- */
.header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 2%;
    height: 50px;
}
.header-logo {
    width: 224px;
    margin: 0;
    display: flex;
}
.header-download a {
    background-image: linear-gradient( 90deg ,#e54f3e , #ffa426);
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 12px;
    height: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 1px rgba(229, 0, 0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-download img {
    width: 10px;
    margin: 0 4px 0 0;
}
.header-contact {
    display: none;
}
@media screen and (min-width: 768px) {
    .header {
        box-shadow: 0 5px 5px rgba(0,0,0,.1);
    }
    .header-inner {
        max-width: 1132px;
        margin: 0 auto;
        padding: 0 16px;
        height: 70px;
    }
    .header-logo {
        width: 346px;
        margin: 0 10px 0 0;
    }
    .header-download {
        margin: 0 0 0 auto;
    }
    .header-download a {
        font-weight: 500;
        width: 230px;
        font-size: 1.6rem;
        height: 50px;
        border-radius: 25px;
        box-shadow: 0 3px 1px rgba(229, 0, 0,.2);
        transition: opacity .3s;
    }
    .header-download a:hover {
        opacity: .7;
    }
    .header-download img {
        width: 16px;
        margin: 0 8px 0 0;
    }
    .header-contact {
        display: block;
        margin: 0 0 0 10px;
    }
    .header-contact a {
        transition: opacity .3s;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 230px;
        height: 50px;
        border-radius: 25px;
        text-decoration: none;
        border: solid #ff7337 2px;
        padding: 8px 12px;
        color: #141e32;
        position: relative;
    }
    .header-contact a:hover {
        opacity: .7;
    }
    .header-contact a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 16px;
        bottom: 0;
        margin: auto;
        width: 0;
        height: 0;
        border-top: 6.5px solid transparent;
        border-bottom: 6.5px solid transparent;
        border-left: 6.5px solid #ff8c37;
    }
}

/* -------------
Footer
------------- */
.footer-top {
    background: #f0f4f5;
    padding: 22px 6% 28px;
    text-align: center;
    color: #212121;
}
.footer-logo {
    width: 286px;
    margin: 0 auto;
}
.company-name {
    font-size: 1rem;
    margin: 16px 0 0;
    font-weight: 500;
}
.company-address {
    font-size: 1rem;
    margin: 2px 0 0;

}

.footer-bottom {
    padding: 16px 6%;
}
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.footer-list li {
    padding: 0 8px;
    font-size: 0;
}
.footer-list li + li {
    border-left: solid 1px #ccc;
}
.footer-list li a {
    font-size: 1rem;
    color: #4d4d4d;
    text-decoration: none;
}
.copyrights {
    text-align: center;
    font-size: 1rem;
    color: #4d4d4d;
    margin: 8px 0 0;
    display: block;
}

@media screen and (min-width: 768px) {
    .footer-top {
        padding: 35px 16% 40px;
    }
    .footer-logo {
        width: 395px;
    }
    .company-name {
        font-size: 1.4rem;
        margin: 24px 0 0;
    }
    .company-address {
        font-size: 1.4rem;
        margin: 4px 0 0;
    }

    .footer-bottom {
        padding: 24px 16px;
        text-align: center;
    }
    .footer-list li {
        padding: 0 12px;
    }
    .footer-list li a {
        font-size: 1.4rem;
        transition: opacity .3s;
    }
    .footer-list li a:hover {
        opacity: .7;
    }
    .copyrights {
        font-size: 1.3rem;
        margin: 8px 0 0;

    }
}

/* -------------
Main Visual
------------- */
.main-visual {
    margin: 50px 0 0;
}

.mv-service {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
}
.mv-service p {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0 0 0 12px;
}
.mv-service ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mv-service ul li + li {
    border-left: solid 1px #b3b3b3;
    margin-left: 10px;
    padding-left: 6px;
}
.mv-service-aws img {
    width: 22px;
}
.mv-service-cf img {
    width: 47px;
    
}

.mv-text {
    background: #dce6f0;
    text-align: center;
    padding: 16px 0 26px;
}
.mv-title {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
}
.mv-title span {
    font-weight: 700;
    color: #23be9b;
}
.mv-balloon {
    background: #fff;
    position: relative;
    border-radius: 5px;
    font-weight: 700;
    color: #005bac;
    font-size: 2rem;
    max-width: 250px;
    height: 32px;
    margin: 8px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(rgba(74, 130, 255, .1) 2px 2px 3px);
}
.mv-balloon::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 6.5px solid transparent;
    border-right: 6.5px solid transparent;
    border-top: 10px solid #fff;
}
.mv-logo {
    width: 275px;
    margin: 30px auto 0;
    font-size: 0;
}

.mv-right {
    position: relative;
    font-size: 0;
}

.mv-badge {
    position: absolute;
    top: 12px;
    left: 15px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: solid 3px #4ca0df;
}
.mv-badge::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
}
.mv-badge p {
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin: 0;
    height: 100%;
    color: #333;
}
.mv-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #005bac;
    line-height: 1.2;
}

.mv-btn {
    background: #dce6f0;
    padding: 15px 0;
}
.mv-btn a {
    background-image: linear-gradient( 90deg ,#e54f3e , #ffa426);
    color: #fff;
    font-size: 1.65rem;
    font-weight: 700;
    text-decoration: none;
    width: 255px;
    height: 60px;
    display: block;
    border-radius: 30px;
    box-shadow: 2px 2px 2px rgba(37, 51, 76,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.mv-btn a img {
    width: 17px;
    margin-right: 8px;
}

@media screen and (min-width: 768px) {
    .main-visual {
        overflow: hidden;
        margin: 70px 0 0;
        background: linear-gradient(to right, #dce6f0 45%, #0a6eb4 45%);
    }
    .mv-inner {
        display: flex;
        max-width: 1132px;
        padding: 0 16px;
        margin: 0 auto;
        background: linear-gradient(to right, #dce6f0 45%, #0a6eb4 0)
    }
    .mv-left {
        width: 45%;
        background: #dce6f0;
        z-index: 2;
        position: relative;
    }
    .mv-service {
        height: 70px;
        position: relative;
    }
    .mv-service::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -16px;
        width: 16px;
        background: #fff;
    }
    .mv-service::after {
        content: "";
        position: absolute;
        top: 0;
        right: -70px;
        width: 0;
        height: 0;
        border-right: 70px solid transparent;
        border-top: 70px solid #fff;
        z-index: 1;
    }
    .mv-service p {
        font-size: 1.6rem;
        margin: 0 0 0 16px;
    }
    .mv-service ul li {
        display: flex;
    }
    .mv-service ul li + li {
        margin-left: 20px;
        padding-left: 12px;
    }
    .mv-service-aws img {
        width: 44px;
    }
    .mv-service-cf img {
        max-width: 94px;
        width: 100%;
    }
    .mv-text {
        padding: 56px 60px 108px 0;
    }
    .mv-title {
        font-size: 2.1rem;
    }
    .mv-balloon {
        margin: 24px auto 0;
        border-radius: 10px;
        font-size: 2.4rem;
        max-width: 400px;
        height: 50px;
        filter: drop-shadow(rgba(74, 130, 255, .1) 4px 4px 5px);
    }
    .mv-balloon::after {
        bottom: -12px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 12px solid #fff;
    }
    .mv-logo {
        max-width: 436px;
        width: 100%;
        margin: 40px auto 0;
    }

    .mv-btn {
        background: #dce6f0;
        padding: 48px 0 0;
    }
    .mv-btn a {
        font-size: 2.2rem;
        width: 100%;
        max-width: 340px;
        height: 80px;
        border-radius: 40px;
        box-shadow: 4px 4px 4px rgba(37, 51, 76,.2);
        transition: opacity .3s;
    }
    .mv-btn a:hover {
        opacity: .7;
    }
    .mv-btn a img {
        width: 21px;
        margin-right: 12px;
    }

    .mv-right {
        width: 55%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .mv-right::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: calc( 100vw - 45%);
        background: radial-gradient(circle at 20% 50%, #4ed0cb 0%, transparent 30%);
    }
    .mv-right img {
        position: relative;
        z-index: 1;
        max-width: 540px;
        width: 100%;
    }
    .mv-badge {
        z-index: 2;
        top: 110px;
        left: -60px;
        width: 200px;
        height: 200px;
        border: solid 6px #4ca0df;

    }
    .mv-badge::before {
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        background: radial-gradient(circle at top left, #FFF 0%, #dee7e7 100%);
    }
    .mv-badge p {
        font-size: 2rem;
    }
    .mv-badge span {
        font-size: 3.4rem;
    }
}
@media screen and (min-width: 1132px) {
    .mv-service::before {
        left: calc(-1 * ((100vw - 1132px) / 2 + 16px));
        width: calc((100vw - 1132px) / 2 + 16px);
    }
    .mv-service p {
        font-size: 2.6rem;
        margin: 0 0 0 24px;
    }
    .mv-balloon {
        font-size: 3rem;
    }

}


/* -------------
Award
------------- */
.award-list {
    padding: 48px 0 24px;
}
.award-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.award-list li {
    width: 160px;
    margin: 4px 4px;
}
.award-note {
    text-align: center;
    margin: 0 4%;
}
.award-note p {
    margin: 4px 0 0;
    font-size: 1rem;
    transform: scale(.7);
    transform-origin: left top;
    width: calc(100% / 0.7); 
    color: #808080;
}

@media screen and (min-width: 768px) {
    .award-list {
        padding: 64px 0 40px;
    }
    .award-list li {
        width: 320px;
        margin: 8px 8px;
    }
    .award-note {
        text-align: center;
        margin: 0 4%;
    }
    .award-note p {
        margin: 24px 0 0;
        transform: scale(1);
        width: auto; 
    }
}


/* -------------
Logo Belt
------------- */
.logo-belt {
    display: none;
}


/* -------------
Sec Solution
------------- */
.sec-solution {
    border-top: solid 1px #999999;
    padding: 64px 0 48px;
    position: relative;
    z-index: 1;
}
.sec-solution h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 0;
    letter-spacing: 0.08em;
    line-height: 1.6;
}
.sec-solution h2 span {
    color: #9e005d;
    position: relative;
}
.sec-solution h2 span::after {
    content: "";
    position: absolute;
    background: #9e005d;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: -3px;
    margin: auto;
}


.solution-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
    margin: 30px 0 0;
}

.problem p,
.solution p {
    margin: 8px 0 0;
    font-size: 1.3rem;
    color: #4d4d4d;
    line-height: 1.5;
}
.solution p span {
    color: #2c66b5;
}

.problem {
    background: #ecf0f0;
    position: relative;
    padding: 24px 20px;
}
.problem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 40px solid #fff;
  border-right: 40px solid transparent;
}
.problem-icon {
    width: 60%;
    max-width: 60px;
    margin: 0 auto;
}
.problem-num {
    width: 27px;
    position: absolute;
    left: 0;
    top: 0;
}
.problem-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.solution {
    position: relative;
    background: #fff;
    border: 2px solid;
    border-image: linear-gradient(to bottom, #23be9b 35%, #0078d2) 1;
    padding: 24px 20px;
}
.solution::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 10px;
    width: 18px;
    background-image: url(../../../img/lp/wafaid/icon_dot_arrow.svg);
    transform: rotate(-90deg);
}
.solution-icon {
    width: 60%;
    margin: 0 auto;
    max-width: 60px;
}
.solution-num {
    width: 80px;
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    margin: auto;
}
.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    .sec-solution {
        border-top: none;
        padding: 88px 0 64px;
    }
    .sec-solution .inner {
        position: relative;
    }
    .sec-solution .inner::before {
        content: "";
        position: absolute;
        top: -72px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #999999;
    }
    .sec-solution h2 {
        font-size: 3.4rem;
    }
    .sec-solution h2 span::after {
        height: 8px;
        width: 8px;
        top: -4px;
    }

    .solution-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px 20px;
        margin: 40px 0 0;
    }
    .problem p,
    .solution p {
        font-size: 1.5rem;
    }

    .problem {
        padding: 64px 24px 20px;
    }
    .problem::before {
      border-top: 60px solid #fff;
      border-right: 60px solid transparent;
    }
    .problem-icon {
        max-width: 110px;
        width: 100%;
    }
    .problem-num {
        width: 50px;
        left: 10px;
        top: 10px;
    }
    .problem-title {
        font-size: 2.2rem;
    }

    .solution {
        border: 4px solid;
        border-image: linear-gradient(135deg, #23be9b 35%, #0078d2) 1;
        padding: 64px 24px 20px;
    }
    .solution::before {
        top: -46px;
        left: 0;
        right: 0;
        bottom: auto;
        margin: auto;
        height: 20px;
        width: 36px;
        transform: rotate(0deg);
    }
    .solution-icon {
        max-width: 110px;
        width: 100%;
    }
    .solution-num {
        width: 130px;
        top: -16px;
    }
    .solution-title {
        font-size: 2.2rem;
    }
    .solution p {
        margin: 16px 0 0;
        font-size: 1.6rem;
    }

    .solution-list div:nth-child(1) { grid-area: 1 / 1; } /* 課題01 */
    .solution-list div:nth-child(3) { grid-area: 1 / 2; } /* 課題02 */
    .solution-list div:nth-child(5) { grid-area: 1 / 3; } /* 課題03 */
    .solution-list div:nth-child(7) { grid-area: 1 / 4; } /* 課題04 */
    
    .solution-list div:nth-child(2) { grid-area: 2 / 1; } /* 解決01 */
    .solution-list div:nth-child(4) { grid-area: 2 / 2; } /* 解決02 */
    .solution-list div:nth-child(6) { grid-area: 2 / 3; } /* 解決03 */
    .solution-list div:nth-child(8) { grid-area: 2 / 4; } /* 解決04 */
}

@media screen and (min-width: 1132px) {
    .problem {
        padding: 40px 24px 20px;
    }
}


/* -------------
Sec Point
------------- */
.sec-point {
    padding: 0 0 48px;
    position: relative;
    background: #e1e6e6 url(../../../img/lp/wafaid/point_bg_sp.png) no-repeat top center / 100% auto;
}
.sec-point::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -68px;
    clip-path: polygon(50% 20%, 100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    background: #0064aa;
    height: 200px;
}

.sec-point h2 {
    position: relative;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    color: #fff;
    letter-spacing: 0.08em;
    font-weight: 400;
    line-height: 1.5;
}
.sec-point h2 b {
    font-weight: 700;
    font-size: 2rem;
    margin: 8px 0 0;
    display: block;
}
.sec-point h2 span {
    font-size: 2.3rem;
}
.sec-point h2 span.bg {
    background-image: linear-gradient(135deg, #23be9b 10%, #0078d2 90%);
    padding: 0 4px;
}

.point-item {
    margin: 60px 0 0;
}
.point-num {
    
    position: relative;
}
.point-num img {
    width: 80px;
}
.point-num::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    width: calc( 100% - 88px );
    background: #2c66b5;
    margin: auto;
}
.point-text h3 {
    font-size: 2.4rem;
    margin: 12px;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
.point-text h3 span {
    color: #2c66b5;
}
.point-text p {
    margin: 0 12px;
    font-size: 1.4rem;
    color: #353535;
}
.point-text .note {
    font-size: 1rem;
    margin: 16px 16px 0;
}
.point-img {
    margin: 24px 0 0;
    font-size: 0;
}

@media screen and (min-width: 768px) {
    .sec-point {
        padding: 40px 0 100px;
        background: #e1e6e6 url(../../../img/lp/wafaid/point_bg_pc.png) no-repeat top center / 100% auto;
    }
    .sec-point::before {
        top: -224px;
        clip-path: polygon(50% 40%, 100% 0, 100% 60%, 50% 100%, 0 60%, 0 0);
        height: 560px;
    }
    .sec-point h2 {
        font-size: 3rem;
    }
    .sec-point h2 b {
        font-size: 4rem;
    }
    .sec-point h2 span {
        font-size: 4.6rem;
    }
    .sec-point h2 span.bg {
        padding: 0 8px;
    }
    .point-list {
        margin: 140px 0 0;
    }
    .point-item {
        margin: 80px 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .point-list .point-item:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    .point-num img {
        width: 114px;
    }
    .point-num::after {
        width: calc( 100% - 128px );
    }
    .point-text {
        width: 40%;
    }
    .point-text h3 {
        font-size: 3.4rem;
        margin: 16px 0;
    }
    .point-text p {
        margin: 0;
        font-size: 1.8rem;
    }
    .point-text .note {
        font-size: 1.2rem;
        margin: 16px 0 0;
    }
    .point-img {
        margin: 0 0 0 7%;
        width: 53%;
    }
    .point-list .point-item:nth-of-type(even) .point-img {
        margin: 0 7% 0 0;
    }
}


/* -------------
Sec About
------------- */
.sec-about {
    padding: 48px 0;
    background-image: linear-gradient(90deg, #23be9b 10%, #0078d2 90%);
    overflow: hidden;
}
.sec-about .inner {
    margin: 0 3%;
}

.about-box {
    position: relative;
    background: #fff;
    border-radius: 6px;
    padding: 0 16px 16px;
    filter: drop-shadow( 4px 4px 4px rgba(0, 92, 104,.2));
}
.about-box::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 30px solid #fff;
}
.about-box h2 {
    position: relative;
    color: #fff;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 1.7rem;
    clip-path: polygon(
        10% -1px,
        90% -1px,
        calc( 90% - 30px ) 100%,
        calc( 10% + 30px ) 100%
    );
    max-width: 320px;
    z-index: 1;
}
.about-box h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-1 * (100vw - 100%) / 2);
    width: 100vw;
    height: 100%;
    background-image: linear-gradient(90deg, #23be9b 10%, #0078d2 90%);
    clip-path: inherit;
    z-index: -1;
}

.about-box h2 span {
    font-size: 2.4rem;
}
.about-box p {
    font-size: 1.4rem;
    margin: 28px 16px;
    color: #333333;
}

.cost-box {
    margin: 35px 0 0;
    position: relative;
    padding: 35px 4px;
}
.cost-box::before,
.cost-box::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-top: #1496a0 4px solid;
    border-left: #1496a0 4px solid;
    left: 0;
}
.cost-box::before {
    top: 0;
}
.cost-box::after {
    bottom: 0;
    transform: rotate(-90deg);
}

.cost-box-inner::before,
.cost-box-inner::after {
    content: "";
    position: absolute;
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-top: #0071bc 4px solid;
    border-right: #0071bc 4px solid;
    right: 0;
}
.cost-box-inner::before {
    top: 0;
}
.cost-box-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}
.cost-box-img {
    margin: 0 auto;
    width: 80%;
    max-width: 510px;
}
.cost-box-inner p {
    margin: 24px 0 0;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
}
.cost-box-inner p b {
    color: #ffff00;
}

.cost-box-inner .note-list {
    color: #fff;
    list-style: none;
    margin: 20px 15px 0;
    border-top: solid 1px rgba(255, 255, 255,.3);
    padding: 12px 0 0;
    font-size: 1rem;
}
.cost-box-inner .note-list li {
    padding-left: 1em;
    position: relative;
}
.cost-box-inner .note-list li::before {
    content: "※";
    position: absolute;
    left: 0;
}

@media screen and (min-width: 768px) {
    .sec-about {
        padding: 110px 0 96px;
    }
    .sec-about .inner {
        margin: 0 auto;
    }

    .about-box {
        border-radius: 10px;
        padding: 0 32px 50px;
        filter: drop-shadow( 8px 8px 8px rgba(0, 92, 104,.2));
    }
    .about-box::after {
        bottom: -60px;
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-top: 60px solid #fff;
    }
    .about-box h2 {
        padding: 6px 0;
        font-size: 2.8rem;
        max-width: 520px;
    }
    .about-box h2::before {
        content: "";
        position: absolute;
        top: 0;
        left: calc(-1 * (100vw - 100%) / 2);
        width: 100vw;
        height: 100%;
        background-image: linear-gradient(90deg, #23be9b 10%, #0078d2 90%);
        clip-path: inherit;
        z-index: -1;
    }
    .about-box h2 span {
        font-size: 3.8rem;
    }
    .about-box p {
        font-size: 1.6rem;
        margin: 40px 0;
        text-align: center;
    }
    .about-box-img {
        max-width: 900px;
        margin: 0 auto;
    }

    .cost-box {
        margin: 80px auto 0;
        padding: 50px 10px 0;
        max-width: 780px;
    }
    .cost-box::before,
    .cost-box::after {
        width: 60px;
        height: 60px;
        border-top: #1496a0 10px solid;
        border-left: #1496a0 10px solid;
    }
    .cost-box-inner::before,
    .cost-box-inner::after {
        width: 60px;
        height: 60px;
        border-top: #0071bc 10px solid;
        border-right: #0071bc 10px solid;
    }
    .cost-box-img {

    }
    .cost-box-inner p {
        margin: 32px 0 0;
        font-size: 1.8rem;
    }

    .cost-box-inner .note-list {
        position: relative;
        margin: 20px auto 0;
        border-top: none;
        padding: 20px 0 0;
        font-size: 1.2rem;
        max-width: 510px;
    }
    .cost-box-inner .note-list::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        height: 1px;
        width: 400px;
        background: rgba(255, 255, 255,.3);
    }
}


/* -------------
Sec Option
------------- */
.option-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.option-list li {
    background: #f0f4f5;
    display: flex;
    align-items: center;
    position: relative;
    padding: 24px 20px 26px 10px;
    margin: 20px 0 0;
    height: 150px;
}
.option-list li::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 24px;
    height: 32px;
    width: 68px;
    border-left: solid #fff 5px;
    border-bottom: solid #fff 5px;
    transform: rotate(-45deg);
}

.option-img {
    width: 44%;
    text-align: center;
    position: relative;
}
.option-list li:nth-child(1) img {
    width: 114px;
}
.option-list li:nth-child(2) img {
    width: 82px;
}
.option-list li:nth-child(3) img {
    width: 126px;
}

.option-text {
    width: 56%;
    margin-left: 12px;
    position: relative;
}
.option-text h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500;
}
.option-text p {
    font-size: 1.3rem;
    margin: 8px 0 0;
    color: #4d4d4d;
}

@media screen and (min-width: 768px) {
    .sec-option {
        padding-bottom: 126px;
    }
    .option-list {
        margin: 40px auto 0;
        display: flex;
        justify-content: space-between;
        max-width: 1000px;
    }
    .option-list li {
        width: calc( ( 100% - 40px )/3);
        padding: 30px 30px 30px;
        margin: 0;
        height: auto;
        display: block;
    }
    .option-list li::before {
        top: -8px;
        left: 30px;
        height: 50px;
        width: 100px;
        border-left: solid #fff 7px;
        border-bottom: solid #fff 7px;
    }

    .option-img {
        width: auto;
        max-width: 200px;
        margin: 0 auto;
    }
    .option-list li:nth-child(1) img {
        width: 180px;
    }
    .option-list li:nth-child(2) img {
        width: 130px;
    }
    .option-list li:nth-child(3) img {
        width: 200px;
    }
    .option-text {
        width: 100%;
        margin: 20px 0 0;
        text-align: center;
    }
    .option-text h3 {
        font-size: 2.2rem;
    }
    .option-text p {
        font-size: 1.8rem;
        margin: 8px 0 0;
    }
}


/* -------------
Sec Case Study
------------- */
.sec-case-study {
    background: #dce6f0;
}
.sec-case-study .inner {
    margin: 0;
}

.case-swiper {
    padding: 0 6% 32px;
    margin: 32px 0 0;
}
.case-slide {
    position: relative;
    padding: 4px;
}
.case-slide::before,
.case-slide::after {
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
    background: #2c66b5;
    z-index: -1;
}
.case-slide::before {
    top: 0;
    left: 0;
}
.case-slide::after {
    bottom: 0;
    right: 0;
}
.case-slide-inner {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.case-img {
    font-size: 0;
}
.case-img img {
    width: 100%;
}
.case-title {
    padding: 20px 24px;
    background: #fff;
}
.case-title span {
    font-size: 1.4rem;
    color: #2c66b5;
}
.case-title h3 {
    font-size: 1.6rem;
    margin: 8px 0 0;

}
.case-body {
    padding: 0 24px 20px;
    background: #fff;
}
.case-body dl {
    margin: 0;
}
.case-body dl dt {
    font-size: 1.4rem;
    position: relative;
    background: #fff;
}
.case-body dl dt::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #b3b3b3;
    margin: auto;
}
.case-body dl dt span {
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-right: 8px;
}
.case-body dl dd {
    margin: 4px 0 0;
    font-size: 1.2rem;
}
.case-body dl dd + dt {
    margin: 8px 0 0;
}

.swiper-horizontal>.case-scrollbar,
.case-scrollbar.swiper-scrollbar-horizontal {
    width: 88%;
    left: 6%;
    background: #fff;
    height: 10px;
}
.case-scrollbar .swiper-scrollbar-drag {
    background: #b3b3b3;
}

@media screen and (min-width: 768px) {
    .sec-case-study .inner {
        max-width: none;
        padding: 0;
    }

    .case-swiper {
        padding: 0;
        margin: 32px 0 0;
    }
    .case-slide {
        width: 75%; 
        max-width: 820px;
        padding: 8px;
    }
    .case-slide::before,
    .case-slide::after {
        height: 60px;
        width: 60px;
    }
    .case-slide-inner {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .case-top {
        display: flex;
        flex-direction: row-reverse;
        background: #fff;
    }
    .case-img {
        width: 44%;
    }
    .case-title {
        width: 56%;
        padding: 56px 56px 0;
    }
    .case-title span {
        font-size: 1.8rem;
    }
    .case-title h3 {
        font-size: 2.6rem;
        margin: 16px 0 0;
    }
    .case-body {
        padding: 32px 42px 56px;
    }
    .case-body dl {
        display: flex;
        flex-wrap: wrap;
    }
    .case-body dl dt {
        font-size: 1.8rem;
        width: 104px;
        padding: 0 24px 0 0;
        margin: 0 28px 0 0;
    }
    .case-body dl dt::after {
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;
        height: 100%;
        width: 1px;
    }
    .case-body dl dt span {
        padding-right: 8px;
    }
    .case-body dl dd {
        width: calc( 100% - 132px);
        margin: 0;
        font-size: 1.6rem;
    }
    .case-body dl dd + dt {
        margin: 32px 28px 0 0;
    }
    .case-body dl dd:nth-of-type(2n) {
        margin-top: 32px;
    }


    .case-button-next {
        right: calc( 6.25% + 20px );
        height: 45px;
        width: 20px;
    }
    .case-button-next::after {
        content: "";
        background: url(../../../img/lp/wafaid/slide_arrow.svg) no-repeat center / 100% auto;
        width: 100%;
        height: 100%;
    }
    .case-button-prev {
        left: calc( 6.25% + 20px );
    }
    .case-button-prev::after {
        content: "";
        background: url(../../../img/lp/wafaid/slide_arrow.svg) no-repeat center / 100% auto;
        width: 100%;
        height: 100%;
        transform: scale(-1.0);
    }

}
@media screen and (min-width: 1094px) {
    .case-button-next {
        right: calc(50% - 450px);
    }
    .case-button-prev {
        left: calc(50% - 450px);
    }
}

/* -------------
Sec Initiative
------------- */
.sec-initiative {
    
}
.profile {
    margin: 32px 0 0;
}
.profile-img {
    width: 160px;
    margin: 0 auto;
}
.profile-text {
    margin: 16px 0 0;
    padding: 0 16px;
}
.profile-name {
    border-bottom: solid 1px #b3b3b3;
    padding: 0 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
}
.profile-name .ja {
    font-size: 2rem;
    font-weight: 700;
    color: #141e32;
}
.profile-name .en {
    font-size: 1.3rem;
    color: #cccccc;
}
.profile-text p {
    font-size: 1.3rem;
    color: #4d4d4d;
    margin: 8px 0 0;
}

.media {
    margin: 32px 0 0;
}
.media h3 {
    text-align: center;
}
.media-list {
    margin: 0 0 0;
    padding: 0;
    list-style: none;
}
.media-list li {
    position: relative;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    
}
.media-list li + li {
    margin: 15px 0 0;
}
.media-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent transparent #23be9b;
}
.media-list li a {
    text-decoration: none;
    padding: 16px 20px;
    display: block;
}
.media-list li h4 {
    color: #23be9b;
    font-size: 1.5rem;
    margin: 0;
    position: relative;
}
.media-list li h4 img {
    width: 13px;
    margin-left: 6px;
}
.media-list li p {
    color: #4d4d4d;
    margin: 8px 0 0;
    font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
    .sec-initiative {
        background: #fff url(../../../img/lp/wafaid/initiative_bg.png) no-repeat bottom center / 100% auto;
    }
    .profile {
        margin: 40px auto 0;
        display: flex;
        justify-content: space-between;
        max-width: 1000px;
    }
    .profile-img {
        width: 25%;
        max-width: 250px;
        margin: 0 auto;
    }
    .profile-text {
        width: 75%;
        margin: 24px 0 0;
        padding: 0 30px;
    }
    .profile-name {
        padding: 0 0 16px;
    }
    .profile-name .ja {
        font-size: 2.8rem;
    }
    .profile-name .en {
        font-size: 2rem;
    }
    .profile-text p {
        font-size: 1.7rem;
        margin: 16px 0 0;
    }

    .media {
        margin:0;
    }
    .media h3 {
        margin:32px 0 0;
        font-size: 2.2rem;
    }
    .media-list {
        margin: 24px auto 0;
        display: flex;
        justify-content: space-between;
        max-width: 1000px;
    }
    .media-list li {
        width: 49%;
        background: #fff;
        box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.15);
        
    }
    .media-list li + li {
        margin: 0;
    }
    .media-list li::before {
      border-width: 0 0 20px 20px;
    }
    .media-list li a {
        padding: 24px 32px;
        transition: opacity .3s;
    }
    .media-list li a:hover {
        opacity: .7;
    }
    .media-list li h4 {
        font-size: 2rem;
    }
    .media-list li h4 img {
        width: 17px;
        margin-left: 8px;
    }
    .media-list li p {
        font-size: 1.5rem;
    }

}
@media screen and (min-width: 1132px) {
    .media h3 {
        margin:0;
    }
}

/* -------------
Sec Faq
------------- */
.sec-faq {
    background: #f0f4f5;
}
.faq-list {
    margin: 32px 0 0;
}
.faq-list dt {
    background: #fff;
    display: flex;
    border-radius: 5px 5px 5px 0;
    overflow: hidden;
}
.faq-list dd + dt {
    margin: 28px 0 0;
}
.faq-list dt .faq-q {
    background: #2c66b5;
    min-width: 50px;
    min-height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-list dt .faq-q img {
    width: 12px;
}
.faq-list dt p {
    margin: 0;
    font-size: 1.4rem;
    padding: 8px 15px;
    font-weight: 500;
    color: #141e32;
    display: flex;
    align-items: center;
}
.faq-list dd {
    margin: 12px 0 0 38px;
    display: flex;
}
.faq-list dd .faq-a {
    min-width: 12px;
    margin: 4px 0 0;
}
.faq-list dd p {
    margin: 0;
    font-size: 1.4rem;
    margin-left: 12px;
    color: #353535;
}

@media screen and (min-width: 768px) {
    .faq-list {
        margin: 40px 0 0;
    }
    .faq-list dt {
        border-radius: 10px 10px 10px 0;
    }
    .faq-list dd + dt {
        margin: 40px 0 0;
    }
    .faq-list dt .faq-q {
        min-width: 80px;
        min-height: 80px;
    }
    .faq-list dt .faq-q img {
        width: 20px;
    }
    .faq-list dt p {
        font-size: 2rem;
        padding: 24px 30px;
    }
    .faq-list dd {
        margin: 20px 0 0 60px;
    }
    .faq-list dd .faq-a {
        min-width: 20px;
        margin: 6px 0 0;
    }
    .faq-list dd p {
        font-size: 1.6rem;
        margin-left: 28px;
    }
}

/* -------------
Sec Download
------------- */
.sec-download {

}
.download-text {
    text-align: center;
    margin: 32px 0 0;
    color: #353535;
    font-size: 1.4rem;
}
.form_wrapper {
    margin: 32px 0 0;
}

@media screen and (min-width: 768px) {
    .download-text {
        margin: 40px 0 0;
        font-size: 1.8rem;
    }
    .form_wrapper {
        margin: 32px auto 0;
        max-width: 600px;
    }
}




