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

:root {
    /* 色 ※カラー指定時は以下の変数を使用 */
    /* 例）color: var(変数); */
    --color-orange: #D45532;
    /* オレンジ */
    --color-orange-light: #FFD7CE;
    /* 薄オレンジ */
    --color-orange-btn-hover: #DC765A;
    /* オレンジボタンhover */
    --color-orange-btn-active: #B44C30;
    /* オレンジボタンactive */
    --color-orange-text-focus: #FFB49F;
    /* テキストfocus時ボーダー */
    --color-orange-back: #FFF1EE;
    /* 薄オレンジ */
    --color-black-font: #505050;
    /* 黒（文字） */
    --color-black-back: #414553;
    /* 黒（背景色） */
    --color-gray-font: #969696;
    /* グレー（文字） */
    --color-gray-border: #DCDCDC;
    /* グレー（線） */
    --color-gray-back: #F9F9F9;
    /* グレー（背景色） */
    --color-gray-btn-hover: #F1F1F1;
    /* グレーボタン ホバー */
    --color-gray-btn-active: #E4E4E4;
}

* {
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    font-family: 'Noto Sans Jp', sans-serif;
    width: 100%;
    margin: 0;
    /* zoom: 0.9; */
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

::before , ::after {
	box-sizing: inherit;
}

/* ボタン、テキスト、コンボ共通css */
button,
input,
select,
textarea {
    font-family: 'Noto Sans Jp', sans-serif;
    font-size: 13px;
}

/* テキスト、コンボ共通css */
input,
select,
textarea {
    border: 2px solid var(--color-gray-border);
    box-sizing: border-box;
    outline: 0;
    border-radius: 3px;
    color: var(--color-black-font);
    padding: 7px;
}

input:focus,
select:focus {
    border: 3px solid #FFB49F;
}

input.disabled,
select.disabled,
textarea.disabled {
    border: 2px solid var(--color-gray-border);
    pointer-events: none;
}

label{
    margin-bottom: 5px;
    font-size: 15px;
    color: var(--color-black-font);
}

/* コンボのみ共通css */
select.placeholder {
    color: var(--color-gray-font);
}

option {
    color: var(--color-black-font);
}

option.placeholder:first-child {
    color: var(--color-gray-font);
}


/* ボタン共通css */
button {
    outline: 0;
    cursor: pointer;
    border-radius: 5px;
    border: 0;
}

.btn_orange{
    background-color: var(--color-orange);
    color: #fff;
}

.btn_orange:hover{
    background-color: var(--color-orange-btn-hover);
}

.btn_orange:active{
    background-color: var(--color-orange-btn-active);
}

.btn_gray{
    background-color: var(--color-gray-back);
    color: var(--color-black-font);
}

.btn_gray:hover{
    background-color: var(--color-gray-btn-hover);
}

.btn_gray:active{
    background-color: var(--color-gray-btn-active);
}

/* プレースホルダー フォントカラー指定 */
::placeholder {
    color: var(--color-gray-font);
}


/*///////////////// LP ////////////////////*/
/*//// 項目タイトル共通CSS ////*/
.top_h1{
    font-size: 30px;
    color: var(--color-black-font);
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: left;
    margin-bottom: 0;
    font-size: clamp(1.3em, 2vw, 2.5em);
}

.top_h1:after {
    border-top: 2px solid var(--color-gray-font);
    content: "";
    width: 1.5em; /* 線の長さ */
    margin-left: 20px;
}

.top_h2{
    margin-top: 0;
    margin-left: 20px;
    color: var(--color-orange-light);
    font-size: clamp(1.3em, 1.3vw, 2.5em);
}

/*//// ヘッダー ////*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    line-height: 2.5;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    font-weight: bold;
}

.header_logo{
    width: 130px;
    height: auto;
    margin-left: 50px;
}

header nav ul{
    display: flex;
    justify-content: space-evenly;
}

.menu{
    color: var(--color-black-font);
    margin-right: 50px;
    cursor: pointer;
}

.btn_login{
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    background-color: #Fff;
    padding: 8px 20px;
    border-radius: 3px;
    margin-right: 15px;
    font-size: 14px;
    /* line-height: 2.5; */
}

.apply_btn_head{
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 14px;
}

/*//// ファーストビュー ////*/
.top{
    margin-top: 66px;
    height: 90vh;
    background-image: url(../imgs/LP_back.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top 0% left 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catch_copy img{
    width: 70%;
    height: auto;
}

.text_10x{
    font-size: clamp(1.7em, 1vw, 2em);
    font-weight: bold;
    color: var(--color-black-font);
}

.text_8x{
    color: var(--color-black-font);
    font-size:  clamp(1em, 0.5vw, 1.5em);
}

.top_apply_btn{
    display: block;
    margin-top: 40px;
    width: 300px;
    line-height: 45px;
    border-radius: 3px;
    text-align: center;
}

.mock_img{
    width: 50%;
    height: auto;
}

/*//////// 機能紹介 //////////*/
.function{
    margin: 100px auto 0;
    width: 90%;
}

.function ul{
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.function ul li{
    display: flex;
    align-items: center;
    justify-content: center;
}

.function ul li img{
    width: 60%;
    height: auto;
}

.function ul li div{
    width: 40%;
    padding: 30px;
    color: var(--color-black-font);
}

.function ul li:nth-child(odd){
    flex-direction: row-reverse;
}

.point{
    color: var(--color-orange-light);
    font-size: clamp(1.5em, 1.5vw, 2.5em);
    font-weight: bold;
}

.point span{
    font-size: clamp(2em, 2vw, 2.5em);
    margin: 0 10px;
}

.point_10x{
    font-size: clamp(1.7em, 1.7vw, 2em);
    font-weight: bold;
}

.point_8x{
    font-size: clamp(1em, 1vw, 2em);
}

/*//////// 料金プラン //////////*/
.price{
    margin: 100px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
}

table{
    border-collapse:  collapse;
    width: 80%;
    color: var(--color-black-font);
    text-align: center;
    font-size: 17px;
    border: 1px solid var(--color-gray-border);
}

.price_table{
    width: 70%;
}

th{
    background-color: var(--color-gray-back);
    width: 50%;
    line-height: 2.5;
    border: 1px solid var(--color-gray-border);
}

td{
    line-height: 3;
    border: 1px solid var(--color-gray-border);
}

.price_table p{
    font-size: 13px;
    color: var(--color-gray-font);
}

/*//////// よくあるご質問 //////////*/
.question{
    margin: 100px auto 0;
    padding-bottom: 50px;
    width: 90%;
    position: relative;
}

.question:before{
    content: "";
    background-color: var(--color-gray-back);
    width: 100%;
    height: 105%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-radius: 30px;
}

.toggle_contents{
    color: var(--color-black-font);
    width: 70%;
    margin: 20px auto;
    background-color: #fff;
    border: 2px solid #d9d9d9;
    padding: 10px 20px 25px;
    border-radius: 10px;
}

.toggle_title{
    font-weight: bold;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    font-size: clamp(0.9em, 0.9vw, 1.5em);
}

.q{
    font-size: 30px;
    color: var(--color-orange);
    margin-right: 10px;
}

.toggle_btn {
	position: absolute;
	top: 65%;
	right: 20px;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.toggle_btn:before, .toggle_btn:after {
	display: block;
	content: '';
	background-color: var(--color-black-font);
	position: absolute;
	width: 15px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    border-radius: 5px;
}
.toggle_btn:before {
	width: 2px;
	height: 15px;
    border-radius: 5px;
}

.toggle_title.selected .toggle_btn:before {
	content: normal;
}
.toggle_contents dd {
	display: none;
    margin-top: 20px;
    font-size: clamp(0.9em, 0.9vw, 1.5em);
}

/*//// 申し込み ////*/
.apply{
    text-align: center;
    width: 90%;
    margin: 100px auto;
}

.apply a{
    display: inline-block;
    width: 20%;
    line-height: 3.5;
    border-radius: 5px;
}

/*//// フッター ////*/
footer{
    width: 90%;
    margin: 20px auto 0;
    border-top: 1px solid var(--color-gray-border);
    text-align: center;
    padding: 30px 0;
}

footer img{
    width: 15%;
    height: auto;
}

.company_info{
    font-size: clamp(0.8em, 1vw, 1.5em);
    margin: 20px 0;
}

footer nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: clamp(0.8em, 1vw, 1.5em);
}

footer nav ul li a{
    padding: 20px;
    color: var(--color-black-font);
}

footer nav ul li+li{
    position: relative;
}

footer nav ul li+li::before{
    content: "";
    display: block;
    height: 1em;
    border-left: 2px solid var(--color-gray-border);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(30deg);
}

.copylight{
    color: var(--color-gray-font);
    font-size: clamp(0.8em, 1vw, 1.5em);
}

/*////////////////// 仮申し込み //////////////////////*/
.temp_apply_back{
    background-color: var(--color-gray-back);
    height: 100vh;
    position: relative;
}

.temp_apply{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    padding: 80px 0;
    background: #FFFFFF;
    width: 70%;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 14%), 0 5px 5px 0 rgb(0 0 0 / 14%);
    border-radius: 5px;
}

.temp_h1{
    color: var(--color-black-font);
    font-size: clamp(1.5em, 0.8vw, 1.5em);
    margin: 0;
}

.text{
    margin: 50px 0;
}

.required::after{
    content: "必須";
    background-color: var(--color-orange);
    color: #fff;
    font-size: 11px;
    min-width: 10px;
    padding: 3px 7px;
    margin: 0px 10px;
    line-height: 1.3;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    border-radius: 2px;
    display: inline-block;
}

.flex{
    text-align: left;
    display: flex;
    flex-flow: column;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.note{
    color: var(--color-black-font);
    font-size: clamp(0.8em, 0.8vw, 1.2em);
    text-align: left;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.temp_send{
    background-color: var(--color-orange);
    color: #fff;
    line-height: 50px;
    width: 60%;
}

/*////////////////// 仮申し込み完了 //////////////////////*/
.svg_check{
    width: 100px;
    height: auto;
    margin-top: 20px;
}

.sentence{
    font-size: clamp(0.9em, 0.8vw, 1.2em);
    color: var(--color-black-font);
    line-height: 1.5;
    margin-bottom: 30px;
}

.sentence p span{
    color: var(--color-orange);
    margin: 0 5px;
}

.top_back{
    display: block;
    line-height: 50px;
    background-color: var(--color-orange);
    width: 40%;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

/*////////////////// 本申し込み //////////////////////*/
.logo_div{
    text-align: center;
    margin-top: 10px;
}

.logo_div img{
    width: 150px;
    height: auto;
}

.pro_apply_back{
    background-color: var(--color-gray-back);
    height: 100%;
}

.pro_apply{
    padding: 50px 0;
    background: #FFFFFF;
    width: 70%;
    max-width: 800px;
    margin: 10px auto 50px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 14%), 0 5px 5px 0 rgb(0 0 0 / 14%);
    border-radius: 5px;
}

.input_group{
    margin-bottom: 60px;
}

.title_left{
    text-align: left;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.input_title{
    border-left: 4px solid var(--color-orange);
    padding-left: 7px;
}

.add_search{
    line-height: 2.5;
    width: 90px;
    color: var(--color-orange);
    margin-left: 5px;
}

.add_search:hover{
    background-color: var(--color-gray-btn-hover);
}

.add_search:active{
    background-color: var(--color-gray-btn-active);
}

.user_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user_flex select{
    width: 50%;
}

.chk{
    display: flex;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.chk p a{
    color: var(--color-orange);
    text-decoration: underline;
}

.margin_none{
    margin-bottom: 0;
}

.next_btn{
    display: block;
    line-height: 50px;
    background-color: var(--color-orange);
    width: 40%;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

/* 入力内容の確認 */
.flex_check{
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-gray-border);
    width: 60%;
    margin: 5px auto;
    font-size: 15px;
}

.flex_check .label{
    width: 35%;
    text-align: left;
    color: var(--color-gray-font);
    margin-left: 5px;
}

.flex_check .input{
    width: 65%;
    text-align: left;
    margin-left: 10px;
    color: var(--color-black-font);
}

.apply_btn_group{
    width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apply_btn_group .back_btn{
    width: 38%;
}

.apply_btn_group .apply_btn{
    width: 58%;
}

.back_btn,.apply_btn{
    display: block;
    line-height: 50px;
    border-radius: 5px;
}

/* 申し込み完了 */
.apply_complete{
    font-size: 20px;
    color: var(--color-black-font);
    margin-bottom: 40px;
}

.site_top{
    display: block;
    color: var(--color-orange);
    margin-top: 20px;
}

.site_top:hover{
    text-decoration: underline;
}

/*////////// プロセスバー ////////////*/
.progressbar {
    position: relative;
    margin: 50px auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    justify-content: space-between;
}
.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: var(--color-gray-font);
    counter-increment: steps;
    font-size: 13px;
}
.progressbar li:before {
    display: block;
    width: 26px;
    height: 26px;
    margin: 7px auto 20px auto;
    content: '';
    line-height: 26px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--color-gray-back);
    content: counter(steps);
    position: relative;
    z-index: 2;
}
.progressbar li:after {
    position: absolute;
    top: 18px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: var(--color-gray-back);
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
    color: var(--color-black-font);
}
.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: var(--color-orange);
    color: #FFF;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: var(--color-orange);
}

/* Tablet */
@media screen and (max-width: 960px){

    /*////////////////// LP //////////////////////*/
    .header_logo{
        margin-left: 20px;
    }
    

    .btn_login
    , .apply_btn_head{
        /* margin: 0; */
        display: inline-block;
        width: 40%;
        margin-right: 50px;
        margin-top: 20px;
    }
    
    /*//////// 機能紹介 //////////*/
    .function ul{
        padding: 0;
    }

    .function ul li{
        display: block;
        margin: 70px 0;
    }

    .function ul li img{
        width: 100%;
    }

    .function ul li div{
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }

    .point{
        margin: 0;
    }

    .point_10x{
        margin: 0;
    }

    /*//////// 料金プラン //////////*/
    .price{
        display: block;
    }

    .price_table{
        width: 90%;
        margin: 30px auto 0;
    }

    table{
        width: 100%;
    }

    /*//////// 質問 //////////*/
    .toggle_contents{
        width: 90%;
    }

    /*/// 申し込み ///*/
    .apply a{
        width: 40%;
    }

    /*//////// フッター //////////*/
    footer img{
        width: 20%;
    }

    /*　ハンバーガーボタン　*/
    .Toggle {
        display : block;
        position: fixed;
        z-index : 3;
        right : 13px;
        top   : 12px;
        width : 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }
    .Toggle span {
        display : block;
        position: absolute;
        width   : 30px;
        height  : 2px ;
        left    : 6px;
        background : var(--color-black-font);
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition   : 0.3s ease-in-out;
        transition        : 0.3s ease-in-out;
    }
    .Toggle span:nth-child(1) {
        top: 10px;
    }
    .Toggle span:nth-child(2) {
        top: 20px;
    }
    .Toggle span:nth-child(3) {
        top: 30px;
    }
    
    /* ナビ開いてる時のボタン */
    .Toggle.active span:nth-child(1) {
        top : 16px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform   : rotate(-45deg);
        transform        : rotate(-45deg);
    }
    
    .Toggle.active span:nth-child(2),
    .Toggle.active span:nth-child(3) {
        top: 16px;
        -webkit-transform: rotate(45deg);
        -moz-transform   : rotate(45deg);
        transform        : rotate(45deg);
    }
    
    header nav {
        position: fixed;
        z-index : 2;
        top  : 59px;
        left : 0;
        background: #fff;
        text-align: center;
        width: 100%;
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
    }
    
    header nav ul {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    
    header nav ul li {
        width: 100%;
        transition: .4s all;
    }

    header nav ul li .menu:hover{
        color: var(--color-orange);
    }
    
    header nav ul li .menu {
        display: block;
        padding: 1em 0;
    }
    
    /* このクラスを、jQueryで付与・削除する */
    header nav.active {
        opacity: 100;
    
    }


    /*////////////////// 本申し込み //////////////////////*/
    .pro_apply{
        width: 90%;
    }
}

/* Mobile */
@media screen and (max-width: 520px){
    /*////////////////// LP //////////////////////*/
    .top{
        display: block;
    }

    .catch_copy{
        text-align: center;
        width: 90%;
        margin: 0 auto;
        padding-top: 30px;
    }

    .catch_copy img{
        width: 60%;
    }

    .mock_img{
        width: 90%;
        display: block;
        margin: 0 auto;
    }

    .top_apply_btn{
        display: block;
        width: 60%;
        margin: 30px auto;
    }

    /*/// 申し込み ///*/
    .apply a{
        width: 80%;
    }

    /*////////////////// 仮申し込み //////////////////////*/
    .temp_apply_back{
        background-color: #fff;
    }
    
    .temp_apply{
        box-shadow: none;
        width: 100%;
    }

    .flex,.note,.temp_send{
        width: 80%;
    }

    /*////////////////// 本申し込み //////////////////////*/
    .logo_div{
        display: none;
    }

    .pro_apply_back{
        background-color: #fff;
    }
    
    .pro_apply{
        width: 100%;
        box-shadow: none;
    }

    .title_left,.chk,.progressbar{
        width: 80%;
    }

    .next_btn{
        width: 60%;
    }

    /* 入力内容確認 */
    .flex_check{
        width: 80%;
        font-size: 13px;
    }

    .apply_btn_group{
        width: 80%;
    }
    
    nav{
    	display:none;
    }
    
    nav.active{
    	display:block;
    }
}
