@charset "utf-8";

/* ==================================================================

    contact.css

=================================================================== */

/* --------------------------------
■mv
-------------------------------- */ 
.secondary .contents .visual{
    background-image: url("../../images/contact/visual.jpg");
}

/* --------------------------------
■contactArea
-------------------------------- */ 

#outline{
    .container{
        max-width: 1000px;
        
        section + section{
            margin-top: 64px;
        }
        
        #flow{
            @media only screen and
            (max-width : 767px) {
                margin-bottom: 64px;
            }
            .chart{
                --width-size : calc(60px / 2 * tan(60deg));
                --gap : calc(var(--width-size) + 10px);
                --bgcolor : #F0F0F0;
                
                display: flex;
                align-items: stretch;
                justify-content: space-between;
                
                
                gap:0 var(--gap);
                margin-right: var(--gap);

                    @media only screen and
                    (max-width : 767px) {
                        display: block;
                        margin-right: revert;
                        width:90%;
                        margin-inline: auto;
                    }

                
                > li {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    padding: 12px 24px;
                    margin: 0px;
                    min-height: 10em;
                    background: var(--bgcolor);
                    font-size: 2.2rem;
                    font-weight: 700;
                    color: #323232;
                    
                    &.f01{
                        width: 40%;
                        flex-shrink: 0;
                    }
                    &.f02{
                        flex-grow: 1;
                    }
                    
                    @media only screen and
                    (max-width : 767px) {
                        min-height:revert;
                        padding: 3vw 3vw;
                        font-size: 1.6rem;
                        
                        &.f01{
                            width: revert;
                            margin-bottom:calc(30px / 2 * tan(60deg) + 10px);
                            
                        }
                    }
                    
                    > dl{
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        
                        >dt{
                            width: 2em;
                            flex-shrink: 0;
                            font-size: 2.4rem;
                        }
                        >dd{
                            flex-grow: 1;
                        }
                    }
                }
                
                > li::before,
                > li::after {
                    position: absolute;
                    content: "";
                }
                
                > li::after {
                    top: 0;
                    right: calc(var(--width-size ) * -1);
                    width: var(--width-size );
                    height: 100%;
                    clip-path: polygon(0 0,100% 50%,0 100%);
                    background: var(--bgcolor);
                }
                @media only screen and
                (max-width : 767px) {
                    > li::after {
                        width: 100%;
                        top: revert;
                        right: 0;
                        clip-path: polygon(50% 50%, 0% 0%, 100% 0%);

                        bottom: calc(var(--width-size ) * -1);
                        height: var(--width-size );
                    }
                }
                
            }
            
        }

        #trial{
            margin-bottom: 64px;
        }
        
        #trial h2.title + p.leadtext{
            margin-top: 12px;
            margin-bottom: 34px;
            font-size: 1.8rem;
        }
        
        #trial ul.flowList{
            margin-left: auto;
            margin-right: auto;
            max-width: 1000px;
        }

        #trial ul.flowList li{
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border:1px solid #ccc;
            border-radius: 14px;
            overflow: hidden;
        }
        
        #trial ul.flowList li.even{
            flex-direction: row-reverse;
        }

        #trial ul.flowList li::before{
            content: "";
            position: absolute;
            left: 50%;
            bottom: -38px;
            display: inline-block;
            vertical-align: middle;
            color: #333;
            line-height: 1;
            width: 1em;
            height: 1em;
            border: 3px solid currentColor;
            border-left: 0;
            border-bottom: 0;
            box-sizing: border-box;
            transform: translateY(-25%) rotate(135deg);
        }
        #trial ul.flowList li:last-child::before{
            display: none;
        }
        #trial ul.flowList li + li{
            margin-top: 64px;
        }
        #trial ul.flowList li p.image{
            flex-shrink: 0;
            width: 250px;
            height: 100%;
            min-height: 200px;
            margin: 0;
        }
        #trial ul.flowList li p.image img{
            object-fit: cover;
            width: 100%;
            height: 200px;
        }


        #trial ul.flowList li .box.pc_vCenter{
            display: flex;
            align-items: center;
        }

        #trial ul.flowList li .box{
            flex-grow: 1;
            padding: 12px 32px;
        }
        #trial ul.flowList li .box .no{
            position: absolute;
            top: 0;
            left: 0;
            background: #BFB690;
            color: #fff;
            font-size: 3.4rem;
            padding: 6px 24px;
        }

        #trial ul.flowList li .box .title + .time{
            margin-top: 12px;
            margin-bottom: 22px;
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.3;
            color: #0B1E3B;
            background: url("../../images/freetrial/time.svg") 0 0 no-repeat;
            background-size: auto 100%;
            padding-left: 30px;
        }

        #trial .faqLink{
            text-align: center;
            margin-top: 34px;
        }
    
        /* SP用
        ----------- */
        @media only screen and
        (max-width : 767px) {

            section + section{
                margin-top: 32px;
            }
            
            #trial {
                margin-bottom: 74px;
            }
            
            .title._lv3 {
                text-align: center;
            }
            
            #flow p{
                width: 80%;
                margin-inline: auto;
                text-align: center;
            }
            
            #trial h2.title + p.leadtext{
                margin-top: 12px;
                margin-bottom: 24px;
                font-size: 1.4rem;
                text-align: center;
            }
            #trial ul.flowList{
                width: 90%;
            }
            
            #trial ul.flowList li{
                display: block;
            }

            #trial ul.flowList li.startArea{
                margin-top: calc(64px + 5em);
            }

            #trial ul.flowList li.startArea .start{
                top: -4.0em;
                font-size: 2.0rem;
                line-height: 1.2;
            }

            #trial ul.flowList li::before{
                content: "";
                position: absolute;
                left: 50%;
                bottom: -38px;
                display: inline-block;
                vertical-align: middle;
                color: #333;
                line-height: 1;
                width: 1em;
                height: 1em;
                border: 3px solid currentColor;
                border-left: 0;
                border-bottom: 0;
                box-sizing: border-box;
                transform: translateY(-25%) rotate(135deg);
            }
            #trial ul.flowList li:last-child::before{
                display: none;
            }
            #trial ul.flowList li + li{
                margin-top: 34px;
            }
            #trial ul.flowList li p.image{
                flex-shrink: 0;
                width: auto;
                height: auto;
                min-height: inherit;
                margin: 0;
            }
            #trial ul.flowList li p.image img{
                object-fit: revert;
                width: 100%;
                height: auto;
            }


            #trial ul.flowList li .box.pc_vCenter{
                display: block;
                align-items: center;
                padding-top: 24px;
                padding-bottom: 24px;
            }

            #trial ul.flowList li .box{
                flex-grow: 1;
                padding: 12px;
            }
            #flow ul.flowList li .box .no{
                font-size: 2.4rem;
            }

            #trial ul.flowList li .box .title + .time{
                margin-top: 14px;
                margin-bottom: 12px;
            }
        
        }
    }

}

.secondary .contents .lead{
    text-align: center;
    margin-bottom: 42px;
}

.secondary .contents .agree p{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 42px;
    font-size: 92%;
}
.secondary .contents .agree p span{
    margin: 0;
}

.secondary .description{
    font-size: 92%;
    text-align: left;
    word-break: break-all;
    word-wrap: break-word;
}

.secondary .contents form section + section{
    margin-top: 60px;
}
table.formStyle{
    width: 100%;
}
table.formStyle th{
    width: 13em;
    vertical-align: top;
    padding-right: 1em;
}
table.formStyle th > p{
    display:inline;
}
table.formStyle th.req::before{
    content: "必 須";
    display: inline-block;
    vertical-align: baseline;
    padding: 4px 6px;
    font-size: 1.2rem;
    color: #fff;
    background: #E83428;
    line-height: 1.1;
    text-align: center;
    border-radius: 4px;
}


table.formStyle th,
table.formStyle td{
    padding: 12px 0;
}

table.formStyle th small{
    display: block;
}

.submit{
    position: relative;
    display: inline-block;
    width: 320px;
}
.submit p{
    margin: 0;
}

input[type=submit]{
    width: 320px;
    font-size: 2.4rem;
    font-weight: 300;
    padding: 25px 0;
    letter-spacing: 0.1em;
    margin: 0 auto;
    background: #ecad00;
}

    .submit::before{
        position: absolute;
        z-index: 2;
        content: "";
        top: 36%;
        right: 6%;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: 0.3s;
    }
/*
    .submit::after{
        position: absolute;
        z-index: 2;
        content: "";
        top: 36%;
        right: 7.5%;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: 0.3s;
    }
*/

input[type=submit]:hover{

    background: #D69B03;;
}

.agree{
    text-align: center;
}

.wpcf7-submit-p,
.wpcf7-submit-p p{
    text-align: center;
}

.cf7-redcolor{
    color: red;
}

/* SP用
----------- */
@media only screen and
(max-width : 767px) {
    
    .secondary .contents .lead{
        text-align: left;
        margin-bottom: 24px;
    }

    .secondary .contents .agree p{
        text-align: center;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    table.formStyle,
    table.formStyle tbody,
    table.formStyle tr,
    table.formStyle th,
    table.formStyle td{
        display: block;
    }
    table.formStyle th{
        width: auto;
        vertical-align: top;
    }


    table.formStyle th{
        padding: 6px 0;
    }

    table.formStyle th small{
        display: block;
    }
    
    
    .submit{
        width: 100%;
        margin: 0 auto;
    }

    input[type=submit]{
        width: 100%;
        margin: 0 auto;
    }

    .wpcf7-submit-p p{
        text-align: center;
    }
    
    input[type="date"] {
        width: 100%;
        min-height: 1.6em;
    }
    input[type="date"]::before {
        content: attr(placeholder);
        color: #666666;
    }
}

input[type=email],
input[type=number],
input[type=password],
input[type=reset],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
input[type=date],
select,textarea {
    color: #666;
    padding: .75em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #EEF0F1;
    border-radius: 2px;
    background: #EEF0F1;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
    -webkit-appearance: none;
    appearance: none;
}

input[type=email]:focus,input[type=password]:focus,input[type=reset]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus {
    background-color: #fff;
    border-color: #dddddd;
    box-shadow: none
}

input[type=button],input[type=button]:focus,input[type=button]:hover,input[type=reset],input[type=reset]:focus,input[type=reset]:hover,input[type=submit],input[type=submit]:focus,input[type=submit]:hover {
    box-shadow: none
}

textarea {
    width: 100%
}

input[type=search]:focus {
    outline: thin dotted
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 5.7px 0;
    padding: 0;
    border: none
}

input[type=range]:focus {
    outline: 0
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8.6px;
    cursor: pointer;
    box-shadow: 2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;
    background: rgba(255,255,255,.2);
    border-radius: 13.6px;
    border: 0 solid #fff
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);
    border: 7.9px solid #0274be;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background: #0274be;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5.7px
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(255,255,255,.2)
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.6px;
    cursor: pointer;
    box-shadow: 2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;
    background: rgba(255,255,255,.2);
    border-radius: 13.6px;
    border: 0 solid #fff
}

input[type=range]::-moz-range-thumb {
    box-shadow: 0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);
    border: 7.9px solid #0274be;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background: #0274be;
    cursor: pointer
}

input[type=range]::-ms-track {
    width: 100%;
    height: 8.6px;
    cursor: pointer;
    background: 0 0;
    border-color: transparent;
    color: transparent
}

input[type=range]::-ms-fill-lower {
    background: rgba(199,199,199,.2);
    border: 0 solid #fff;
    border-radius: 27.2px;
    box-shadow: 2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9
}

input[type=range]::-ms-fill-upper {
    background: rgba(255,255,255,.2);
    border: 0 solid #fff;
    border-radius: 27.2px;
    box-shadow: 2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9
}

input[type=range]::-ms-thumb {
    box-shadow: 0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);
    border: 7.9px solid #0274be;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background: #0274be;
    cursor: pointer;
    height: 8.6px
}

input[type=range]:focus::-ms-fill-lower {
    background: rgba(255,255,255,.2)
}

input[type=range]:focus::-ms-fill-upper {
    background: rgba(255,255,255,.2)
}

input[type=color] {
    border: none;
    width: 100px;
    padding: 0;
    height: 30px;
    cursor: pointer
}

input[type=color]::-webkit-color-swatch-wrapper {
    padding: 0;
    border: none
}

input[type=color]::-webkit-color-swatch {
    border: none
}


.agree{
    text-align: left;
}

.wpcf7 form {
    max-width: 1000px;
    position: relative;
    margin: 0 auto;
}

.wpcf7 form>div,.wpcf7 form>p {
    margin-bottom: 1.2em
}

.wpcf7 .wpcf7-form-control-wrap {
    width: 100%;
    display: block
}

.wpcf7 input:not([type=submit]):focus,.wpcf7 select:focus,.wpcf7 textarea:focus {
    border-color: #dddddd;
    outline: 0
}

.wpcf7 input:not([type=submit]),.wpcf7 select,.wpcf7 textarea {
    width: 100%;
    padding: .75em
}

.wpcf7 input[type=file] {
    color: #666;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #dddddd;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear
}

.wpcf7 input[type=checkbox],.wpcf7 input[type=radio] {
    display: inline-block;
    background: #e9eef2;
    color: #555;
    clear: none;
    cursor: pointer;
    line-height: 0;
    height: 1.2em;
    margin: -3px 4px 0 0;
    outline: 0;
    padding: 0;
    border-radius: .2em;
    text-align: center;
    vertical-align: middle;
    width: 1.4em;
    min-width: 1.4em;
    transition: all .2s linear
}

.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	margin: 0;
	padding: 0;
	border: 0;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}
.wpcf7-list-item.first {
	margin: 0;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-submit-p{
    margin-top: 64px;
}

/* SP用
----------- */
@media only screen and
(max-width : 767px) {

    body .wpcf7-list-item{
        display: block;
        margin: 0;
    }
}

.wpcf7 .ajax-loader {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

.wpcf7 form.submitting .ajax-loader {
	visibility: visible;
}

.wpcf7 .ajax-loader::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7 .ajax-loader::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

body .wpcf7-spinner {
    display: block;
}