@charset "utf-8";


img{
    display: inline;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

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

    .sp {
        display: block;
    }
}
.white{
color:#FFF;
}
/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    /*font-size: 62.5%;*/
font-size:16px;
}

/*body*/

body {

    font-family: "Noto Sans Japanese", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size:0.875rem;
    font-weight: 300;
    line-height: 1.5;
}
.container{
    color: #595959;
}
.inner {
    width: 1000px;
    padding: 0 75px;
    margin: 0 auto;
    box-sizing: border-box;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {

    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header .header_inner {
    padding: 20px 30px 30px;
}

.header .header_inner .layout {
    display: flex;
    justify-content: space-between;
}

.header .header_inner .layout .box {
    width: calc(100% - 350px);
}

.header .header_inner .layout .header_top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .header_inner .layout .header_top li {
    margin-right: 50px;
}

.header .header_inner .layout .header_top li:first-of-type a {
    font-size: 0.75rem;
}

.header .header_inner .layout .header_top li:last-of-type {
    margin-right: 0;
}

.header .header_inner .layout .header_top li:last-of-type a {
    color: #fff;
    display: block;
    padding: 10px 15px;
    background-color: #1F1C1C;
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.header .header_inner .layout .header_top li:last-of-type a img {
    margin-right: 15px;
}

.header .header_inner .layout .header_bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.header .header_inner .layout .header_bottom li a {
    font-size: 0.75rem;
}

.header .layout .menu_btn {
    display: none;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    background: url(../images/mv_bg.svg) bottom center / contain no-repeat, #E5F7FD;
    /*padding: 200px 0 30vw;*/
padding: 108px 0 30vw;
}

.mv .title {
    text-align: center;
}

.mv .btn {
    text-align: center;
    margin-top: 30px;
}

.mv_text.section {
    background-color: #4E95D9;
    padding-top: 0;
}

.mv_text .text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    line-height: 2;
    letter-spacing: 2px;
    margin-top: -2px;
}

/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding: 100px 0;
}

.section .section_title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 70px;
}

.section .section_title span {
    color: #4E95D9;
}

.cta_box {
    padding: 30px 0 45px;
    background-color: #F1F7FC;
}

.cta_box .text {
    color: #4E95D9;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.cta_box .btn {
    text-align: center;
    margin-top: 30px;
}

/* ----------------------------------------------------------
value
---------------------------------------------------------- */

.value .layout {
    display: flex;
    justify-content: space-between;
}

.value .layout .box {
    width: 250px;
}

.value .layout .box .heading {
    color: #4E95D9;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.value .layout .box .img img {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

.value .layout .box .title {
    color: #4E95D9;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 10px;
}

.value .layout .box .text {
    margin-top: 10px;
}

.value .partner_img {
    margin: 100px 0;
}

.value .partner_img img {
    width: 100%;
}

/* ----------------------------------------------------------
reason
---------------------------------------------------------- */

.reason {
    background-color: #F1F7FC;
}

.reason .layout {
    display: flex;
    justify-content: space-between;
}

.reason .layout .box {
    width: 180px;
}

.reason .layout .box .text {
    font-size: 1.125rem;
    padding-top: 20px;
    margin-top: 30px;
    position: relative;
}

.reason .layout .box .text:before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: #4E95D9;
    position: absolute;
    top: 0;
    left: 0;
}

.reason .layout .box .text span {
    font-size: 0.625rem;
    vertical-align: top;
}

.reason .layout .box .notes {
    font-size: 0.5625rem;
    margin-top: 10px;
}


/* ----------------------------------------------------------
section_cta
---------------------------------------------------------- */

.section_cta .img {
    margin-bottom: 60px;
}

.section_cta .cta_box {
    background-color: #FFF;
}

/* ----------------------------------------------------------
needs
---------------------------------------------------------- */

.needs {
    background: linear-gradient(to right, #FFFFCC 0%, #FFFFCC 50%, #F1F7FC 50%, #F1F7FC 100%);
}

.needs .layout {
    display: flex;
}

.needs .layout .box {
    width: 50%;
}

.needs .layout .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.needs .layout .box .title .marker {
    background: linear-gradient(transparent 60%, #fff 60%);
}

.needs .layout .box .title .title_bold {
    font-size: 2.25rem;
}

.needs .layout .box:first-of-type .title {
    margin: 20px 0 80px;
}

.needs .layout .box .img {
    text-align: center;
}

.needs .inner>.img {
    text-align: center;
    margin-top: 50px;
}

/* ----------------------------------------------------------
flow
---------------------------------------------------------- */

.flow {
    background-color: #F1F7FC;
}

.flow .layout {
    display: flex;
    justify-content: space-between;
}

.flow .layout .box {
    width: 195px;
    background-color: #fff;
    padding: 50px 0 30px;
    box-sizing: border-box;
    position: relative;
    border-radius: 10px;
}

.flow .layout .box .label {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    line-height: 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #4E95D9;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -18px;
}

.flow .layout .box .title {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
}

.flow .layout .box .img {
    margin-top: 10px;
    text-align: center;
}

.flow .layout .box .text {
    text-align: center;
    margin-top: 30px;
}

.flow .cta_box {
    background-color: #fff;
    margin-top: 100px;
}

/* ----------------------------------------------------------
support
---------------------------------------------------------- */

.support .layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.support .layout .box {
    width: 150px;
    margin-bottom: 30px;
}

.support .layout .box .text {
    margin-top: 5px;
}

.support .layout .box .text span {
    font-size: 0.6875rem;
}

.support .layout .contents_box {
    width: calc(100% - 350px);
}

.support .layout .contents_box .title {
    color: #4E95D9;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    background-color: #fff;
    padding: 50px 0 100px;
    border-top: 1px solid #B9BEC2;
}

.footer .layout {
    display: flex;
    justify-content: space-between;
}

.footer .footer_menu {
    display: flex;
}

.footer .footer_menu li:not(:last-of-type) {
    margin-right: 30px;
}

.footer .footer_menu li a {
    font-size: 0.75rem;
}

.footer .copyright {
    font-size: 0.75rem;
}

@media only screen and (max-width: 1024px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    /*body*/

    .inner {
        width: 95%;
        margin: 0 auto;
        padding: 0;
    }

    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header .header_inner {
        padding: 20px 30px 30px;
    }

    .header .header_inner .layout {
        display: flex;
        align-items: center;
    }

    .header .header_inner .layout .box {
        width: 45vw;
        position: fixed;
        background-color: #fff;
        right: -45vw;
        top: 0;
        height: 100vh;
        padding: 20px 30px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
        transition: 0.5s;
    }

    .header .header_inner .layout .box.active {
        right: 0;
    }

    .header .header_inner .layout .header_top {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        order: 1;
        margin-top: 50px;
    }

    .header .header_inner .layout .header_top li {
        margin-right: 30px;
    }

    .header .header_inner .layout .header_top li:first-of-type a {
        font-size: 1.125rem;
    }

    .header .header_inner .layout .header_top li:last-of-type {
        margin-right: 0;
        width: 100%;
    }

    .header .header_inner .layout .header_top li:last-of-type a {
        display: flex;
        align-items: center;
        margin-top: 25px;
    }

    .header .header_inner .layout .header_top li:last-of-type a img {
        margin-right: 15px;
    }

    .header .header_inner .layout .header_bottom {
        display: block;
        margin-top: 0;
        order: 0;
    }

    .header .header_inner .layout .header_bottom li a {
        font-size: 1.125rem;
        display: block;
        margin-bottom: 20px;
    }

    .header .layout .menu_btn {
        position: relative;
        cursor: pointer;
        width: 18px;
        height: 12px;
        margin: 0 auto;
        display: block;
    }

    .header .layout .menu_btn span {
        text-align: center;
        display: inline-block;
        transition: all .4s;
        position: absolute;
        height: 2px;
        background: #000;
        width: 100%;
    }

    .header .layout .menu_btn span:nth-of-type(1) {
        top: 0;
        right: 0;
    }

    .header .layout .menu_btn span:nth-of-type(2) {
        top: 5px;
        right: 0;
    }

    .header .layout .menu_btn span:nth-of-type(3) {
        top: 10px;
        right: 0;
    }

    .header .layout .menu_btn.active span:nth-of-type(1) {
        top: 0;
        left: 0;
        transform: translateY(6px) rotate(-135deg);
        width: 100%;
    }

    .header .layout .menu_btn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .header .layout .menu_btn.active span:nth-of-type(3) {
        top: 12px;
        left: 0;
        transform: translateY(-6px) rotate(135deg);
        width: 100%;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv {
        background: url(../images/mv_bg.svg) bottom center / contain no-repeat, #E5F7FD;
        padding: 135px 0 30vw;
    }

    .mv .mv_inner {
        width: 95%;
        margin: 0 auto;
    }

    /* ----------------------------------------------------------
value
---------------------------------------------------------- */

    .value .layout .box {
        width: 32%;
    }

    /* ----------------------------------------------------------
reason
---------------------------------------------------------- */

    .reason .layout .box {
        width: 23%;
    }

    /* ----------------------------------------------------------
flow
---------------------------------------------------------- */

    .flow .layout .box {
        width: 23%;
    }

    /* ----------------------------------------------------------
support
---------------------------------------------------------- */

    .support .layout .box {
        width: 23%;
    }

    .support .layout .contents_box {
        width: 100%;
    }
}

@media only screen and (max-width: 599px) {

    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header {
        background-color: #fff;
        position: fixed;
        width: 100%;
    }

    .header .header_inner {
        padding: 20px;
    }

    .header .header_inner .logo img {
        width: 180px;
    }

    .header .header_inner .layout .box {
        width: 85vw;
        right: -85vw;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv {
        background: url(../images/mv_bg.svg) bottom center / contain no-repeat, #E5F7FD;
        padding: 35px 0 30vw;
    }

    .mv_text .text {
        font-size: 1rem;
        letter-spacing: 0;
    }

    /* ----------------------------------------------------------
section
---------------------------------------------------------- */
    .section {
        padding: 10% 0;
    }

    .section .section_title {
        font-size: 1.75rem;
        margin-bottom: 50px;
    }

    .cta_box {
        padding: 20px 0 30px;
    }

    .cta_box .text {
        font-size: 1.25rem;
    }

    .cta_box .btn {
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
value
---------------------------------------------------------- */

    .value .layout {
        display: block;
    }

    .value .layout .box {
        width: 100%;
        margin-bottom: 50px;
    }

    .value .layout .box:last-of-type {
        margin-bottom: 0;
    }

    .value .layout .box .img {
        text-align: center;
    }

    .value .layout .box .heading {
        text-align: center;
    }

    .value .layout .box .title {
        text-align: center;
    }

    /* ----------------------------------------------------------
reason
---------------------------------------------------------- */

    .reason .layout {
        display: flex;
        flex-wrap: wrap;
    }

    .reason .layout .box {
        width: 48%;
        margin-bottom: 50px;
    }

    .reason .layout .box:nth-of-type(3),
    .reason .layout .box:last-of-type {
        margin-bottom: 0;
    }

    .reason .layout .box .text {
        font-size: 0.875rem;
    }

    /* ----------------------------------------------------------
needs
---------------------------------------------------------- */

    .needs .layout {
        display: flex;
    }

    .needs .layout .box {
        width: 50%;
    }

    .needs .layout .box:first-of-type {
        padding-right: 10px;
    }

    .needs .layout .box:last-of-type {
        padding-left: 10px;
    }

    .needs .layout .box .title {
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        margin-bottom: 20px;
    }

    .needs .layout .box .title .title_bold {
        font-size: 1.25rem;
    }

    .needs .layout .box:first-of-type .title {
        margin: 0 0 50px;
    }

    .needs .inner>.img {
        margin-top: 30px;
    }

    /* ----------------------------------------------------------
flow
---------------------------------------------------------- */

    .flow .layout {
        display: flex;
        flex-wrap: wrap;
    }

    .flow .layout .box {
        width: 48%;
        margin-bottom: 50px;
    }

    .flow .layout .box:nth-of-type(3),
    .flow .layout .box:last-of-type {
        margin-bottom: 0;
    }

    .flow .layout .box .title {
        font-size: 1rem;
    }

    .flow .layout .box .text {
        margin-top: 20px;
    }

    .flow .cta_box {
        margin-top: 50px;
    }

    /* ----------------------------------------------------------
support
---------------------------------------------------------- */

    .support .layout .box {
        width: 30%;
    }

    .support .layout .box .text {
        font-size: 0.8125rem;
    }

    .support .layout .contents_box {
        width: 100%;
    }

    .support .layout .contents_box .title {
        color: #4E95D9;
        font-size: 1.125rem;
        font-weight: 500;
        margin-bottom: 10px;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer {
        background-color: #fff;
        padding: 30px 0 50px;
        border-top: 1px solid #B9BEC2;
    }

    .footer .layout {
        display: block;
    }

    .footer .footer_menu {
        display: block;
    }

    .footer .footer_menu li:not(:last-of-type) {
        margin-right: 0;
    }

    .footer .footer_menu li {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer .footer_menu li a {
        font-size: 0.75rem;
    }

    .footer .copyright {
        text-align: center;
        margin-top: 50px;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/
}




.\!ease-linear {
    transition-timing-function: linear !important;
}


.pt-12 {
    padding-top: 3rem;
}
.w-full {
    width: 100%;
}
.w-\[280px\] {
    width: 280px;
}

object-contain {
    -o-object-fit: contain;
    object-fit: contain;
}
.h-\[47px\] {
    height: 47px;
}

.text-lg {
    font-size: 18px;
    line-height: 28px;
}
.rounded-xl {
    border-radius: 0.75rem;
}

.overflow-hidden {
    overflow: hidden;
}
.relative {
    position: relative;
}
img, video {
    max-width: 100%;
    height: auto;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden])
Specificity: (0,3,0)
 {
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.font-bold {
    font-weight: 700;
}

.min-h-\[60px\] {
    min-height: 60px;
}
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, #4ac071, #3e765e);
}

.h-0\.5 {
    height: 2px;
}
.text-sm {
    font-size: 14px;
    line-height: 20px;
}

.whitespace-pre-wrap {
    white-space: pre-wrap;
}
.min-h-\[80px\] {
    min-height: 80px;
}
.min-h-\[60px\] {
    min-height: 60px;
}

.space-y-8 > *:not(:first-child) {
  margin-top: 2rem;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(#4ac071 , #3e765e));
}


background-image:linear-gradient(to right bottom, rgb(74, 192, 113), rgb(62, 118, 94));



.from-\[\#4AC071\] {
    --tw-gradient-from: #4ac071 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(74 192 113 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(#4ac071), var(#3e765e);
}
.to-\[\#3E765E\] {
    --tw-gradient-to: #3e765e var(--tw-gradient-to-position);
}
.swiper{
color:#000;
}
.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.max-w-\[1040px\] {
    max-width: 1040px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.partner_slider{
    margin: 100px 0;
}
@media (min-width: 768px) {
    .md\:pt-24 {
        padding-top: 6rem;
    }
}



