@charset "UTF-8";
/* ----------------------------------------
common
---------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-sans-serif;
}
a {
    cursor: pointer;
    text-decoration-line: none;
    text-decoration: none;
    color: var(--blue);
    transition: .3s;
}
a, a:hover, a:active {
    text-decoration-line: none;
    text-decoration: none;
}
img{
    width: 100%;
    height: auto;
}
li{
    list-style:none;
}

.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 768px){
    .pc{
        display: none !important;
    }
    .sp{
        display: block !important;
    }
}
.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_1200{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.inner_1000{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.inner_800{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* ----------------------------------------
color
---------------------------------------- */
:root {
    --navy:#021c39;
    --blue:#007aff;
    --lightblue:#e5f1ff;
    --red:#c14a2b;
    --darkred:#9c2f1a;
    --lightgray:#f7f7f7;
    --yellow:#fffa79;
}

/* ----------------------------------------
FONT
---------------------------------------- */
.oswald {
    font-family: "Oswald", sans-serif;
}
.montserrat {
    font-family: "Montserrat", sans-serif;
}

/* --------------------------------
フェードイン
----------------------------------- */
.fadeIn{
	animation: fadeIn 0.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* --------------------------------
左から右に流れる動き
----------------------------------- */
.cubic{
	position: relative;
	animation: img-opacity 0.5s cubic-bezier(0.85, 0, 0.15, 1) forwards 1.5s;
	overflow: hidden;
	transition: all 0s ease 0s;
}
.cubic::after{
	content: "";
	animation: img-animation 0.5s cubic-bezier(0.85, 0, 0.15, 1) forwards 1.5s;
	background: #111;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	z-index: 1;
	transition: all 1.5s ease 0s;
}
@keyframes img-opacity {
	100% { opacity: 1;}
}
@keyframes img-animation {
	100% { transform: translateX(101%);}
}

/* ----------------------------------------
CTA
---------------------------------------- */
section.cta_Wrap{
    position: relative;
    width: 100%;
    background: url(../img/cta_bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.cta{
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: var(--red);
    border-radius: 5px;
    padding: 30px 5px;
    text-align: center;
    box-shadow: 0 5px 0 var(--darkred);
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
    overflow: hidden;
}
.cta:hover{
    box-shadow: none;
    transform: translateY(5px);
}
.cta span.arrow{
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    vertical-align: -5px;
    right: 5%;
}
.cta span.arrow::before,
.cta span.arrow::after{
    position: absolute;
    content: "";
    width: 3px;
    height: 10px;
    background: var(--red);
    left: 54%;
}
.cta span.arrow::before{
    top: 25%;
    transform: translateX(-50%) rotate(-45deg);
}
.cta span.arrow::after{
    top: 43%;
    transform: translateX(-50%) rotate(45deg);
}
.cta span.shiny{
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
    content: "";
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    /* アニメーション */
    animation-name: shiny;
}
@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }
    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}
/* クリックアイコンついてるver */
.cta.hand {
    overflow: unset;
}
.cta.hand span.hand{
    position: absolute;
    width: 8%;
    top: 50%;
    right: -1%;
    transform: translateY(-50%) rotate(-15deg);
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
}
@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
        transform: scale(1.0) translateY(-50%) rotate(-15deg);
    }
    50%, 70% {
        transform: scale(0.95) translateY(-50%) rotate(-15deg);
    }
}

.cta_Wrap [class*=illust]{
    position: absolute;
    width: 15%;
    max-width: 150px;
    z-index: 10;
}
.cta_Wrap .illust01{
    bottom: -25%;
    left: 15%;
}
.cta_Wrap .illust02{
    bottom: -10%;
    right: 15%;
}

/* ----------------------------------------
各セクション
---------------------------------------- */
[class*=_Wrap]{
    padding: 80px 0;
}
[class*=_Wrap] .Wrap_ttl{
    text-align: center;
}
[class*=_Wrap] .Wrap_ttl h3{
    color: var(--navy);
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
}
[class*=_Wrap] .Wrap_ttl h3 .Wrap_ttl_logo{
    display: inline-block;
    width: 20%;
    max-width: 250px;
    vertical-align: sub;
    margin-right: 0.1em;
}
[class*=_Wrap] .Wrap_ttl .sub_ttl{
    margin-top: 10px;
    color: var(--blue);
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

/* ----------------------------------------
Footer
---------------------------------------- */
footer{
    padding-bottom: 140px;
}
footer .ftr_top{
    width: 100%;
    background: #2f4e6d;
    padding: 40px 0 10px;
    letter-spacing: 0.1em;
}
footer .ftr_top .ftr_ttl{
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #fff;
    padding-bottom: 13px;
    border-bottom: 1px solid #fff;
}
footer .ftr_top .flex{
    margin-top: 10px;
    align-items: center;
}
footer .ftr_top .flex p{
    width: 55%;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
}
footer .ftr_top .flex a{
    display: block;
    width: 43%;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.4rem;
    padding: 10px 0;
}
footer .ftr_top .flex a:hover{
    background: #fff;
    color: var(--navy);
}
footer #copy {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
    background: #fff;
    padding: 20px;
}
footer #copy img {
    display: inline-block;
    max-width: 175px;
    margin: 0 0 10px;
}

/* ----------------------------------------
追従CTA
---------------------------------------- */
.float_cta{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 70px 0;
    z-index: 99;

    transition: transform 0.4s ease-out;
}
.float_cta .cta{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* ----------------------------------------
Pagetop
---------------------------------------- */
#Pagetop{
    position: fixed;
    right: 1%;
    bottom: 22%;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    line-height: 30px;
    background: #2d4b69;
    border: #2d4b69 2px solid;
    padding: 30px;
    transition: 0.3s;
    z-index: 99;
}
#Pagetop a{
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#Pagetop a::before,
#Pagetop a::after{
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    background: rgb(255, 255, 255);
    top: 48%;
    transition: 0.3s;
}
#Pagetop a::before{
    left: 30%;
    transform: translateY(-50%) rotate(-45deg);
}
#Pagetop a::after{
    right: 30%;
    transform: translateY(-50%) rotate(45deg);
}
#Pagetop:hover{
    background: #fff;
}
#Pagetop:hover a::before,
#Pagetop:hover a::after{
    background: var(--blue);
}

/* ============================================================
PC（1600px~）
============================================================ */
@media screen and (min-width:1600px) {


}

/* ============================================================
TAB（768~1100px）
============================================================ */
@media screen and (min-width:767px) and (max-width:1100px) {

    /* ----------------------------------------
    各セクション
    ---------------------------------------- */
    [class*=_Wrap] .Wrap_ttl h3 .Wrap_ttl_logo{
        vertical-align: unset;
    }

    /* ----------------------------------------
    CTA
    ---------------------------------------- */
    .cta_Wrap [class*=illust]{
        width: 12%;
    }
    .cta_Wrap .illust01 {
        bottom: -15%;
        left: 2%;
    }
    .cta_Wrap .illust02{
        bottom: -6%;
        right: 1%;
    }
}

/* ============================================================
SP（~768px）
============================================================ */
@media screen and (max-width:768px) {

    /* ----------------------------------------
    common
    ---------------------------------------- */
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }

    /* ----------------------------------------
    各セクション
    ---------------------------------------- */
    [class*=_Wrap] {
        padding: 40px 0;
    }
    [class*=_Wrap] .Wrap_ttl h3{
        font-size: 2.4rem;
    }
    [class*=_Wrap] .Wrap_ttl h3 .Wrap_ttl_logo {
        width: 30%;
        max-width: 120px;
        vertical-align: unset;
    }
    [class*=_Wrap] .Wrap_ttl .sub_ttl{
        font-size: 1.2rem;
        margin-top: 5px;
    }

    /* ----------------------------------------
    CTA
    ---------------------------------------- */
    section.cta_Wrap {
        padding: 20px 0 25px;
    }
    .cta {
        width: 80%;
        font-weight: 600;
        border-radius: 999px;
        padding: 15px 8px;
        font-size: 1.8rem;
    }
    .cta span.arrow{
        display: none;
    }
    .cta span.arrow::before,
    .cta span.arrow::after {
        width: 2px;
        height: 6px;
    }
    .cta.hand span.hand{
        top: 20%;
    }
    .cta_Wrap [class*=illust] {
        width: 12%;
    }
    .cta_Wrap .illust01 {
        bottom: -10%;
        left: 3%;
    }
    .cta_Wrap .illust02 {
        bottom: -5%;
        right: 2%;
    }

    /* ----------------------------------------
    Footer
    ---------------------------------------- */
    footer {
        padding-bottom: 80px;
    }
    footer .ftr_top{
        padding: 20px 0;
    }
    footer .ftr_top .ftr_ttl {
        font-size: 1.2rem;
    }
    footer .ftr_top .flex p,
    footer .ftr_top .flex a{
        width: 100%;
        font-size: 1.1rem;
    }
    footer .ftr_top .flex > a {
        font-size: 1.2rem;
        margin-top: 10px;
        padding: 8px 0;
    }
    footer .ftr_top .flex p > a{
        border: none;
        display: inline;
    }
    footer #copy {
        font-size: 1rem;
        padding: 15px 5px;
    }

    /* ----------------------------------------
    追従CTA
    ---------------------------------------- */
    .float_cta{
        padding: 40px 0;
    }

    /* ----------------------------------------
    Pagetop
    ---------------------------------------- */
    #Pagetop {
        bottom: 14%;
        width: 20px;
        height: 20px;
        line-height: 20px;
        padding: 25px;
    }
    #Pagetop a::before,
    #Pagetop a::after{
        height: 2px;
    }
    #Pagetop a::before{
        left: 25%;
    }
    #Pagetop a::after{
        right: 25%;
    }
}