@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;
    letter-spacing: 0.05em;
    color: #333;
}
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;
}
.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_900{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
.inner_800{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* ----------------------------------------
color
---------------------------------------- */
:root {
    --navy:#021c39;
    --blue:#007aff;
    --lightblue:#e5f1ff;
    --red:#c83c0c;
    --darkred:#922a06;
    --lightgray:#f7f7f7;
    --yellow:#eeeb12;
    --basic_color: #141415;
    --dark_color: #242429;
    --font_size_xs: 1.2rem;
    --font_size_s: 1.4rem;
    --font_size_r: 1.6rem;
    --font_size_m: 2.0rem;
    --font_size_l: 2.6rem;
    --font_size_xl: 3.4rem;
    --font_size_2xl: 4.0rem;
    --font_size_3xl: 4.6rem;
}

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

/* --------------------------------
CTA
----------------------------------- */
.cta_Btn{
    position: relative;
    display: block;
    border-radius: 50px;
    text-align: center;
    padding: 10px 20px;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 15px;
}
.cta_Btn .material-symbols-outlined{
    position: absolute;
}
.cta_Btn .head-ic{
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 30px;
}
.cta_Btn .arrow-ic{
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.cta_Btn.basic{
    border: #007aff 2px solid;
    padding: 15px 20px;
}
.join_Btn .sub_txt{
    display: block;
    font-size: 1.2rem;
    margin-top: 7px;
}
.mypage_Btn{
    margin-top: 10px;
    padding: 20px;
}
.cta_Btn:hover{
    transform: translateX(5px);
}
.join_Btn{
    color: #fff;
    background: var(--blue);
    border: var(--blue) 2px solid;
    margin-right: 5px;
}
.join_Btn:hover{
    background: #fff;
    color: var(--blue);
}
.join_Btn:hover .material-symbols-outlined{
    color: var(--blue);
}
.mypage_Btn{
    color: var(--blue);
    background: #fff;
    border: var(--blue) 2px solid;
}
.mypage_Btn:hover{
    background: var(--lightblue);
    /* color: #fff; */
}

/* --------------------------------
header
----------------------------------- */
header{
    position: fixed;
    width: 100%;
    padding: 15px 15px 10px;
    z-index: 1;
    transition: 0.3s;
}
header.is-show{
    background: rgba(0,0,0,0.7);
}
header .inner{
    width: 100%;
    align-items: center;
}
header .inner h1{
    width: 20%;
    max-width: 120px;
}
header .inner h1 a{
    display: block;
    width: 100%;
}
header .inner h1 a:hover{
    opacity: 0.7;
}
header .inner .right_Box{
    width: 80%;
    justify-content: flex-end;
    align-items: center;
}
header .inner .right_Box .point_link{
    position: relative;
    display: block;
    margin-right: 10px;
    padding: 7px 10px;
}
header .inner .right_Box .point_link:hover{
    background: rgba(255,255,255,0.2);
}
header .inner .right_Box .point_link::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    border-right: 1px solid #fff;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
header .inner .right_Box .point_Box{
    font-size: 1.4rem;
    color: #fff;
}
header .inner .right_Box .point_Box span.ic{
    display: inline-block;
    width: 20px;
    margin-right: 5px;
}
header .inner .right_Box .point_Box .point{
    color: var(--yellow);
    font-size: 200%;
    font-weight: 500;
}
header .inner .right_Box .cta_Btn{
    display: block;
    border-radius: 50px;
    text-align: center;
    font-size: 1.6rem;
    margin-top: 0;
    padding: 8px 20px;
}
header .inner .right_Box .cta_Btn .material-symbols-outlined{
    position: relative;
    display: inline-block;
    font-size: 20px;
    margin-right: 3px;
    vertical-align: sub;
    transition: 0.1s;
}
header .inner .right_Box .cta_Btn:hover{
    transform: translateY(3px);
}

/* --------------------------------
フェードイン
----------------------------------- */
.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%);}
}

/* ----------------------------------------
各セクション
---------------------------------------- */
[class*=_Wrap]{
    padding: 50px 0;
}
[class*=_Wrap] h3{
    position: relative;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 600;
}
[class*=_Wrap] h3::after{
    position: absolute;
    content: "";
    width: 30px;
    height: 5px;
    background: var(--blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* ----------------------------------------
下層ページ
---------------------------------------- */
.txt{
    font-size: 1.6rem;
    line-height: 1.5;
}
.txt > a{
    color: var(--blue);
    text-decoration: underline;
}
.txt > a:hover{
    opacity: 0.7;
    text-decoration: none;
}
.lead_txt{
    font-size: 1.6rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
}

/* ----------------------------------------
パンくず
---------------------------------------- */
.breadcrumb{
    margin-top: 20px;
}
.breadcrumb ul.flex{
    justify-content: flex-start;
    margin-left: -1em;
}
.breadcrumb ul.flex li{
    position: relative;
    font-size: 1.4rem;
    color: #888;
    padding-left: 1em;
}
.breadcrumb ul.flex li:not(:last-child)::after{
    position: absolute;
    content: "＞";
    color: #888;
    top: 0;
    right: -1em;
    font-size: 1.4rem;
}
.breadcrumb ul.flex li a{
    color: #888;
    text-decoration: underline;
}
.breadcrumb ul.flex li a:hover{
    opacity: 0.7;
    text-decoration: none;
}

/* ----------------------------------------
Pagetop
---------------------------------------- */
#Pagetop{
    position: fixed;
    right: 1%;
    bottom: 13%;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    line-height: 30px;
    background: var(--blue);
    border: var(--blue) 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) {
}

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

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

    /* --------------------------------
    CTA
    ----------------------------------- */
    .cta_Btn {
        padding: 8px;
        font-size: 1.6rem;
        letter-spacing: -0.02em;
    }
    .join_Btn{
        margin-right: 0;
    }
    .join_Btn .sub_txt {
        margin-top: 5px;
    }
    .mypage_Btn{
        padding: 15px 8px;
    }
    .cta_Btn:hover{
        transform: translateX(0);
    }
    .join_Btn:hover{
        background: var(--blue);
        color: #fff;
    }
    .mypage_Btn:hover{
        background: #fff;
    }

    /* --------------------------------
    header
    ----------------------------------- */
    header {
        padding: 0 0 0 8px;
        background: #fff;
    }
    header.is-show {
        background: #fff;
        border-bottom: 1px solid #eee;
    }
    /* header .inner{
        align-items: flex-start;
    } */
    header .inner h1 {
        width: 14%;
    }
    header .inner .right_Box {
        width: 84%;
    }
    header .inner .right_Box .point_link{
        margin-right: 0;
        padding: 0;
    }
    header .inner .right_Box .point_Box {
        font-size: 1rem;
        margin-right: 10px;
        padding: 6px 10px;
        color: #111;
        border: 2px solid #eee;
        border-radius: 50px;
    }
    header .inner .right_Box .point_Box .point {
        font-size: 180%;
        color: var(--blue);
    }
    header .inner .right_Box .point_Box span.ic{
        width: 16px;
    }
    header .inner .right_Box .cta_Btn {
        font-size: 1rem;
        letter-spacing: -0.05em;
        padding: 7px;
        display: flex;
        flex-direction: column;
        border: none;
        font-weight: 400;
        border-radius: 0;
    }
    header .inner .right_Box .join_Btn{
        margin-right: 0;
    }
    header .inner .right_Box .cta_Btn .material-symbols-outlined {
        font-size: 16px;
        margin-bottom: 3px;
    }
    header .inner .right_Box .cta_Btn:hover{
        transform: translateX(0);
    }
    /* header .inner .right_Box .mypage_Btn .material-symbols-outlined{
        font-size: 18px;
    } */

    /* ----------------------------------------
    各セクション
    ---------------------------------------- */
    [class*=_Wrap]{
        padding: 30px 0;
    }
    [class*=_Wrap] h3{
        font-size: 2rem;
    }
    [class*=_Wrap] h3::after {
        width: 20px;
        height: 4px;
    }

    /* ----------------------------------------
    下層ページ
    ---------------------------------------- */
    .breadcrumb {
        margin-top: 10px;
        overflow: scroll;
        width: 95%;
        background: #eee;
        padding: 10px;
    }
    .breadcrumb ul.flex {
        flex-wrap: nowrap;
        word-break: keep-all;
    }
    .txt {
        font-size: 1.4rem;
    }
    .lead_txt {
        font-size: 1.4rem;
        text-align: left;
    }

    /* ----------------------------------------
    Pagetop
    ---------------------------------------- */
    #Pagetop {
        bottom: 15%;
        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%;
    }
}


/* ----------------------------------------
footer
---------------------------------------- */
footer a:hover{
    opacity: 0.7;
}
.btn_inquiry, .btn_faq, .btn_about {
    width: calc(33% - 10px);
    background: #fff;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    padding: 5px 10px;
    position: relative;
    text-decoration: none;
    color: #141415;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
.btn_about::before {
    content: "\e0f0";
    font-size: var(--font_size_m);
    font-family: "Material Icons";
    position: absolute;
    top: 0px;
    right: 10px;
}
.btn_inquiry::before, .btn_faq::before {
    content: "\E0BE";
    font-size: var(--font_size_m);
    font-family: 'Material Icons';
    position: absolute;
    top: 0;
    right: 10px;
}
.btn_faq::before {
    content: "Q";
    color: #ffffff;
    font-size: 10px;
    font-weight: normal;
    line-height: 14px;
    background: var(--basic_color);
    border-radius: 16px;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 10px;
    margin-top: -8px;
}
footer {
    width: 100%;
    background: var(--dark_color);
    color: #fff;
    display: flex;
    font-family: 'Roboto', 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    line-height: 1.5;
    border-top: #ccc 1px solid;
    letter-spacing: 0;
}

footer .footer_left {
    width: 45%;
    display: flex;
    font-weight: bold;
    place-items: center;
}

footer .logo_area {
    background: #fff;
    width: 35%;
    height: 100%;
    position: relative;
}

footer .logo_area img {
    width: 67.8%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto auto;
}

footer .footer_left p {
    font-size: var(--font_size_xs);
    height: 80%;
    border-right: solid 1px #fff;
    display: flex;
    padding: 0 30px 0 30px;
    align-items: center;
    flex: 1;
    box-sizing: border-box;
}

footer .footer_left p br {
    display: none;
}

footer .footer_right {
    /*
    width: 52%;
    max-width: 620px;
    */
    padding: 60px 20px 40px 40px;
}

footer .footer_nav {
    color: #fff;
    font-size: var(--font_size_s);
    margin-bottom: 20px;
}

footer .footer_nav li {
    line-height: 1.2em;
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 20px;
}

footer .footer_nav li:last-of-type {
    margin-right: 0;
}

footer .footer_nav a {
    color: #fff;
}

footer .copy {
    font-size: var(--font_size_xs);
}

footer .btn_inquiry_area {
    width: 100%;
    margin: 10px 0px 20px 0;
    text-align: center;
}

footer .btn_inquiry_area .btn_inquiry,
footer .btn_inquiry_area .btn_faq,
footer .btn_inquiry_area .btn_about {
    width: 170px;
    margin-bottom: 16px;
    margin-right: 4px;
    box-sizing: border-box;
}

.scrolltop {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--basic_color);
    cursor: pointer;
    display: none;
    z-index: 200;
}

.scrolltop:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: solid 1px #ffffff;
    border-left: solid 1px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto auto;
}
@media screen and (max-width: 1024px) {
    footer .btn_inquiry_area .btn_inquiry,
    footer .btn_inquiry_area .btn_faq,
    footer .btn_inquiry_area .btn_about {
        font-size: var(--font_size_s);
        width: 170px;
    }
}
@media screen and (max-width: 1024px) {

    footer .footer_left p br {
        display: inline;
    }

}
@media screen and (max-width: 768px) {
    footer {
        background: #fff;
    }

    footer .footer_left {
        color: var(--primary_color);
        display: block;
        width: 60%;
        padding: 10% 4%;
    }

    footer .footer_left p br.tb {
        display: none;
    }

    footer .logo_area, footer .footer_left p {
        font-size: 2.4vw;
        height: auto;
        line-height: 1.5;
        margin-bottom: 10px;
        padding: 0;
        place-items: start;
    }

    footer .footer_right {
        background: var(--dark_color);
    }

    footer .btn_inquiry_area {
        text-align: inherit;
    }

    footer .btn_inquiry {
        width: 150px;
    }

    footer .btn_inquiry::before {
        font-size: 1rem;
        top: 3px;
        right: 15px;
    }

    footer .footer_nav {
        font-size: inherit;
        display: block;
    }

    footer .footer_nav li {
        display: block;
        margin: 0 0 10px 0;
    }

    footer .copy {
        font-size: 0.6rem;
    }
}
@media screen and (max-width: 768px) {

    footer .footer_left {
        width: 30%;
        padding: 40px;
    }

    footer .logo_area {
        width: 100%;
        position: static;
    }

    footer .logo_area img {
        display: block;
        width: 100%;
        position: static;
    }

    footer .footer_left br {
        display: none;
    }

    footer .footer_right {
        width: 70%;
        padding: 40px;
    }

    footer .footer_nav li {
        margin-bottom: 30px;
    }

    footer .btn_inquiry_area {
        max-width: 240px;
        margin: 0 0 40px 0;
    }

    footer .btn_inquiry_area .btn_inquiry,
    footer .btn_inquiry_area .btn_faq,
    footer .btn_inquiry_area .btn_about {
        width: 100%;
    }

    footer .btn_inquiry::before {
        font-size: 1.5rem;
        top: 5px;
    }

}
@media screen and (max-width: 480px) {

    footer .footer_left {
        padding: 20px;
    }

    footer .footer_right {
        padding: 20px;
    }

    footer .btn_inquiry_area {
        margin: 0 0 20px 0;
    }

    footer .footer_nav li {
        margin-bottom: 20px;
    }

}
