/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";
/*　====================== 基本設定 ======================　*/
*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: border-box;
}
html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    margin:0;
    padding: 0;
    overflow-x: hidden;
    background: #fff;
}
ul,ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
img{
    width:100%;
    max-width:100%;
    display: block;
}


/*　====================== フォント設定 ======================　*/
h1,h2,h3,h4,h5,h6{
    font-weight: bold;
    line-height: 1.3;
    width: 100%;
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #001B28;
    letter-spacing: 0.05em;
    font-size: 35px;
}
p,a,div,ul,ol,dl{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.8;
    width: 100%;
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    color: #001B28;
}
input,textarea{
    font-size: 16px;
    padding: 5px;
}
a:hover{
    opacity: .6;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}
@media screen and (max-width:768px){
    h1,h2,h3,h4,h5,h6{
        font-size: 24px;
    }
    p,a,div,ul,ol,dl{
        font-size: 15px;
        line-height: 1.6;
    }
    input,textarea{
        font-size: 15px;
    }
}

/*　====================== レスポンシブ設定 ======================　*/
.pc-only {
    display: block;
}
.sp-only {
	display: none;
}
@media screen and (max-width:768px){
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}

/*　====================== コンテンツ幅設定 ======================　*/
section{
    padding: 100px 0;
}
.container-wrap{
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}
@media screen and (max-width:768px){
    section{
        padding: 60px 0;
    }
}

/*　====================== flexデフォルト設定 ======================　*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*　====================== HEADER ======================　*/
.header{
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, .96);
    position: fixed;
    top: 0;
    z-index: 900;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-box-shadow: 0 3px 10px rgba(16, 16, 16, .08);
            box-shadow: 0 3px 10px rgba(16, 16, 16, .08);
    -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
    transition: background 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
    will-change: transform;
    overflow: hidden;
    -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
            transform: scale(1.03);
}
.header.scrolled{
    background: rgba(255, 255, 255, .96);
    -webkit-transform: scale(1.005);
        -ms-transform: scale(1.005);
            transform: scale(1.005);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
}
.header-wrap{
    padding-top: 12px;
    max-width: 1220px;
    width: 90%;
    margin: 0 auto;
    gap: 1vw;
    -webkit-transition: padding-top 0.3s ease, -webkit-transform 0.3s ease;
    transition: padding-top 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, padding-top 0.3s ease;
    transition: transform 0.3s ease, padding-top 0.3s ease;
    transition: transform 0.3s ease, padding-top 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
            transform-origin: top center;
}
.header-wrap .header-logo{
    max-width: 160px;
}
.header-wrap .header-nav ul{
    gap: 3vw;
}
.header-wrap .header-nav ul li{
    text-align: center;
}
.header-wrap .header-nav ul li a{
    color: #0089B1;
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 1.5;
}
.header-wrap .header-nav ul li.contact{
    background: #0089B1;
    border-radius: 30px;
}
.header-wrap .header-nav ul li.contact a{
    color: #fff;
    padding: 10px 25px;
    position: relative;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.1rem;
    line-height: 1.3;
}

.header-wrap .header-nav ul li.contact a::after {
    content: "";
    position: absolute;
    border-radius: 50px;
    width: 28px;
    height: 28px;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.header-wrap .header-nav ul li.contact .cmn-btn {
    background: #0089B1;
    border-radius: 50px;
    padding: 12px 28px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border: 2px solid #0089B1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    isolation: isolate;
}
.header-wrap .header-nav ul li.contact .cmn-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 50px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    z-index: -1;
}
.header-wrap .header-nav ul li.contact .cmn-btn:hover {
    color: #0089B1;
    border: 2px solid #0089B1;
}
.header-wrap .header-nav ul li.contact .cmn-btn:hover::before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
}
.header-wrap .header-nav ul li.contact .cmn-btn .text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.1rem;
    padding-right: 20px;
    padding-bottom: 2px;
    line-height: 1;
}
.header-wrap .header-nav ul li.contact .cmn-btn .text::after {
    content: "";
    position: absolute;
    border: 2px solid #fff;
    border-radius: 50px;
    width: 28px;
    height: 28px;
    right: -21px;
    top: 49%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
}
.header-wrap .header-nav ul li.contact .cmn-btn:hover .text::after {
    border: 2px solid #0089B1;
}
.arrow1 {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 1.5px;
    margin: 2.6px 0 2px;
    border-radius: 9999px;
    background-color: #fff;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}
.arrow1::before,
.arrow1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 1.5px;
    border-radius: 9999px;
    background-color: #fff;
    -webkit-transform-origin: calc(100% - 0.75px) 50%;
        -ms-transform-origin: calc(100% - 0.75px) 50%;
            transform-origin: calc(100% - 0.75px) 50%;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}
.arrow1::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
}
.arrow1::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
}
.header-wrap .header-nav ul li.contact .cmn-btn:hover .arrow1,
.header-wrap .header-nav ul li.contact .cmn-btn:hover .arrow1::before,
.header-wrap .header-nav ul li.contact .cmn-btn:hover .arrow1::after {
    background-color: #0089B1;
}



.hamburger{
    display: none;
}
.header-nav-sp{
    display: none;
}
@media screen and (max-width:768px){
    .header-wrap{
        padding: 0px;
        width: 95%;
    }
    .header-wrap .header-nav{
        display: none;
    }
    .header-wrap .header-logo{
        max-width: 130px;
    }
    .hamburger{
        display: block;
        position: fixed;
        top: 7px;
        right: 18px;
        z-index: 100;
        width: 48px;
        height: 48px;
        border: none;
        background: transparent;
        cursor: pointer;
    }
    .header {
        padding: 14px;
        background: none;
        background: rgba(255, 255, 255, 1);
        height: 60px;
    }
    .hamburger__line {
        position: absolute;
        left: 11px;
        width: 26px;
        height: 2px;
        background-color: #0089B1;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
        z-index: 900;
    }
    .hamburger__line:nth-of-type(1) {
        top: 14px;
    }
    .hamburger__line:nth-of-type(2) {
        top: 23px;
    }
    .hamburger__line:nth-of-type(3) {
        top: 32px;
    }

    /* メニューオープン時 */
    .hamburger.active .hamburger__line:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
            -ms-transform: translateY(9px) rotate(-45deg);
                transform: translateY(9px) rotate(-45deg);
    }
    .hamburger.active .hamburger__line:nth-of-type(2) {
        opacity: 0;
    }
    .hamburger.active .hamburger__line:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
            -ms-transform: translateY(-9px) rotate(45deg);
                transform: translateY(-9px) rotate(45deg);
    }
    .header-nav-sp {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 1);
        -webkit-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
                transform: translateX(-100%);
        -webkit-transition: -webkit-transform .4s;
        transition: -webkit-transform .4s;
        -o-transition: transform .4s;
        transition: transform .4s;
        transition: transform .4s, -webkit-transform .4s;
        display: block;
        overflow: scroll;
        margin-top: 60px;
        z-index: 999;
    }
    .header-nav-sp.active {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
        margin-top: 60px;
    }
    .header-nav-sp .nav__list {
        padding: 40px 0 0;
        width: 80%;
        margin: 0 auto;
    }
    .header-nav-sp .nav__item {
        padding: 0 20px;
        border-top: 1px solid #EAEAEA;
    }
    .header-nav-sp .nav__item:last-of-type{
        border-bottom: 1px solid #EAEAEA;
    }
    .header-nav-sp .nav__link {
        display: block;
        padding: 25px 0;
        color: #0089B1;
        font-size: 18px;
        position: relative;
    }
    .header-nav-sp .nav__link .arrow2 {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        display: inline-block;
        width: 6px;
        height: 10px;
        z-index: 1;
    }
    .header-nav-sp .nav__link .arrow2::before,
    .header-nav-sp .nav__link .arrow2::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 8px;
        height: 1.5px;
        border-radius: 100px;
        background-color: #0089B1;
        -webkit-transform-origin: right center;
            -ms-transform-origin: right center;
                transform-origin: right center;
        -webkit-transition: background-color .4s ease;
        -o-transition: background-color .4s ease;
        transition: background-color .4s ease;
    }
    .header-nav-sp .nav__link .arrow2::before {
        -webkit-transform: translateY(-50%) rotate(45deg);
            -ms-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
    }
    .header-nav-sp .nav__link .arrow2::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
            -ms-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
    }
    .header-nav-sp .nav__link2{
        text-align: left;
        font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        color: #0089B1;
    }
    .header-nav-sp ul li{
        text-align: left;
    }
    .header-nav-sp ul>li>ul{
        padding-bottom: 20px;
    }
    .header-nav-sp ul>li>ul>li{
        padding-left: 25px;
        margin-bottom: 20px;
        position: relative;
    }
    .header-nav-sp ul>li>ul>li:last-of-type{
        margin-bottom: 0;
    }
    .header-nav-sp ul>li>ul>li::before{
        position: absolute;
        content: "";
        display: block;
        width: 10px;
        height: 2px;
        background: #0089B1;
        top: 50%;
        left: 5px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}

/*　====================== 共通ボタン ======================　*/
.cmn-btn {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05rem;
    background: #FF6320;
    border-radius: 50px;
    padding: 9px 85px 11px 85px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border: 2px solid #FF6320;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    isolation: isolate;
}
.cmn-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 50px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    z-index: -1;
}
.cmn-btn:hover {
    color: #FF6320;
    border: 2px solid #FF6320;
    opacity: 1;
}
.cmn-btn:hover::before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
}
.cmn-btn .text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.01rem;
    padding-right: 20px;
}
.cmn-btn .text::after {
    content: "";
    position: absolute;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    right: -60px;
    top: 53%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
}
.cmn-btn:hover .text::after {
    border: 2px solid #FF6320;
}

.arrow2 {
    position: absolute;
    right: 35.5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
    width: 6px;
    height: 10px;
    z-index: 1;
}
.arrow2::before,
.arrow2::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 1.5px;
    border-radius: 9999px;
    background-color: #fff;
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}
.cmn-btn:hover .arrow2::before,
.cmn-btn:hover .arrow2::after {
    background-color: #FF6320;
}
.arrow2::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
}
.arrow2::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
}


/* スマホで少し小さめに */
@media (max-width: 768px) {
    .cmn-btn {
        font-size: 16px;
        padding: 8px 70px 9px 60px;
    }
    .cmn-btn .text{
        padding-right: 10px;
        letter-spacing: 0.1rem;
    }
    .cmn-btn .text::after {
        width: 26px;
        height: 26px;
        right: -28px;
        border: 1px solid #fff;
    }
    .arrow2::before,.arrow2::after {
        height: 1px;
        right: 1px;
    }
    .arrow2 {
        right: 50.5px;
    }
}


/*　====================== 共通見出し ======================　*/

.cmn-h2 .cmn-h2-en{
    font-size: 90px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    background: -webkit-gradient(linear, left top, right top, from(#0089B1), to(#87F7FD));
    background: -o-linear-gradient(left, #0089B1, #87F7FD);
    background: linear-gradient(to right, #0089B1, #87F7FD); 
    -webkit-background-clip: text; 
            background-clip: text;
    -webkit-text-fill-color: transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    letter-spacing: 0.02rem;
}
.cmn-h2 .cmn-h2-ja{
    font-size: 20px;
    font-weight: 700;
    color: #0089B1;
    padding-left: 20px;
    position: relative;
}
.cmn-h2 .cmn-h2-ja::before{
    position: absolute;
    content: "";
    width: 14px;
    height: 3px;
    background: #0089B1;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.cmn-h3{
    font-size: 28px;
    color: #0089B1;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 100;
    padding-top: 10px;
}
.cmn-h3::before{
    position: absolute;
    content: "";
    font-size: 90px;
    color: #F1F1F1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: -1;
}
#service .partner-wrap .cmn-h3::before{
    content: "PARTNER";
}
.about .sec2 .cmn-h3::before{
    content: "MESSAGE";
}
.about .sec3 .sec3-inner1 .cmn-h3::before{
    content: "COMPANY";
}
.about .sec3 .sec3-inner2 .cmn-h3::before{
    content: "PARTNER";
}
.about .sec3 .sec3-inner3 .cmn-h3::before{
    content: "ACCESS";
}

.cmn2-h3{
    font-size: 24px;
    color: #0089B1;
    font-weight: 800;
    padding-left: 20px;
    position: relative;
}
.cmn2-h3::after{
    position: absolute;
    content: "";
    width: 10px;
    height: 3px;
    background: #0089B1;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

@media screen and (max-width:768px){
    .cmn-h2 .cmn-h2-en{
        font-size: 60px;
    }
    .cmn-h2 .cmn-h2-ja{
        font-size: 18px;
        padding-left: 17px;
    }
    .cmn-h3{
        font-size: 24px;
        padding-top: 5px;
    }
    .cmn-h3::before{
        font-size: 14vw;
    }
    .cmn2-h3{
        font-size: 20px;
    }
    .cmn-h2 .cmn-h2-ja::before{
        position: absolute;
        content: "";
        width: 10px;
    }
}

/*　====================== FOOTER ======================　*/
.footer{
    background: #1D4051;
    padding: 100px 0 20px;
}
.footer p,.footer a{
    color: #fff;
}
.footer .footer-wrap{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.footer .footer-left{
    width: 55%;
}
.footer .footer-left .text1{
    margin-top: 30px;
    line-height: 1.5;
}
.footer .footer-left .footer-logo{
    max-width: 230px;
    display: block;
}
.footer .footer-left .partner{
    margin-top: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
}
.footer .footer-left .partner .partner-list{
    max-width: 100px;
}
.footer .footer-nav{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 5vw;
    white-space: nowrap;
}
.footer .footer-nav ul li{
    margin-bottom: 20px;
}
.footer .footer-nav ul>li>ul{
    margin-top: 20px;
    padding-left: 30px;
}
.footer .footer-nav ul>li>ul>li{
    position: relative;
}
.footer .footer-nav ul>li>ul>li::before{
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: -20px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.footer .footer-nav .footer-nav-jp{
    font-size: 20px;
    letter-spacing: 0.1rem;
}
.footer .footer-copy{
    text-align: center;
    margin-top: 80px;
    font-size: 14px;
}
@media screen and (max-width:768px){
    .footer{
        padding: 60px 0 20px;
    }
    .footer .footer-wrap{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        row-gap: 40px;
    }
    .footer .footer-left{
        width: 100%;
    }
    .footer .footer-left .text1{
        margin-top: 10px;
    }
    .footer .footer-left .footer-logo{
        max-width: 180px;
    }
    .footer .footer-nav{
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer .footer-nav ul li{
        margin-bottom: 15px;
    }
    .footer .footer-nav .footer-nav-jp{
        font-size: 18px;
    }
    .footer .footer-copy{
        margin-top: 40px;
    }
}


/*　====================== アニメーション関連 ======================　*/
/* テキストグラデーション */
.text-gra{
    line-height: 1.3;
    font-weight: bold;
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: -webkit-gradient(linear,left top, right top,color-stop(25%, rgba(0, 119, 153, 1)), color-stop(50%, rgba(135, 247, 253, 1)), color-stop(75%, rgba(0, 119, 153, 1)));
    background-image: -o-linear-gradient(left,rgba(0, 119, 153, 1) 25%, rgba(135, 247, 253, 1) 50%, rgba(0, 119, 153, 1) 75%);
    background-image: linear-gradient(90deg,rgba(0, 119, 153, 1) 25%, rgba(135, 247, 253, 1) 50%, rgba(0, 119, 153, 1) 75%);
    background-size: 200%;
    -webkit-animation: gradation 8s infinite linear;
            animation: gradation 8s infinite linear;
}
@-webkit-keyframes gradation {
    0%{
        background-position: 0% 0%;
    }
    50%{
        background-position: 100% 0%;
    }
    100%{
        background-position: 0% 0%;
    }
}
@keyframes gradation {
    0%{
        background-position: 0% 0%;
    }
    50%{
        background-position: 100% 0%;
    }
    100%{
        background-position: 0% 0%;
    }
}

/* 左右フェードイン */
.fadeRight,.fadeRight2,
.fadeLeft {
    opacity: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.fadeRight,.fadeRight2 {
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);
}
.fadeLeft {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
}
.fadeRight.active,.fadeRight2.active,
.fadeLeft.active {
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}
@-webkit-keyframes fadeRightAnime{
    from {
        opacity: 0;
        -webkit-transform: translateX(100px);
                transform: translateX(100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes fadeRightAnime{
    from {
        opacity: 0;
        -webkit-transform: translateX(100px);
                transform: translateX(100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@-webkit-keyframes fadeLeftAnime{
    from {
        opacity: 0;
        -webkit-transform: translateX(100px);
                transform: translateX(100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes fadeLeftAnime{
    from {
        opacity: 0;
        -webkit-transform: translateX(100px);
                transform: translateX(100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

/* フェードアップ */
.fadeUp,.fadeUp2 {
    opacity: 0;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.fadeUp.active,.fadeUp2.active {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.delay1 {
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
}
.delay2 {
    -webkit-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
}
.delay3 {
    -webkit-transition-delay: 0.7s;
         -o-transition-delay: 0.7s;
            transition-delay: 0.7s;
}