﻿/*===============================

	お問い合わせ
	contact.css

================================*/
/*-------------------------------

	   コンテンツページ共通　

 --------------------------------*/
/*  メニュー　*/

/* タイトル1 */
.sub-title {
    margin-left:9.3vw;
}
.content-view.double {
    margin-bottom: 2.5vw;
}
/*-------------------------------

	   説明　

 --------------------------------*/
#DivExplan {
    display: flex;
    justify-content: space-between;
}
/*　説明書き　*/
.explan{
    opacity:0.8;
    margin-left:6vw;
    line-height:2vw;
}
/*　連絡先　*/
.contact-address {
    margin-right: 8vw;
    border: solid 1px #008267;
    padding:0.5vw 1.5vw;
}
.contact-address .text{
    opacity:0.8;
    line-height:1.2vw;
    font-size:1vw;
}
.contact-address .tel{
    text-align:center;
    font-size:2vw;
    position:relative;
    margin-left:1vw;
    letter-spacing:1px;
}
.contact-address .tel a{
    color:#000;
}
.contact-address .tel::before {
    content: "";
    position: absolute;
    top: 45%;
    left: -1vw;
    width: 8px;
    height: 8px;
    background: #008267;
}
.note{
    font-size:1vw;
}
/*-------------------------------

	   問い合わせフォーム　

 --------------------------------*/
table {
    width: 80%;
    margin: auto;
    margin-top: 3vw;
    border-collapse: collapse;
    margin-bottom: 4vw;
}
td {
    padding: 2.5vw 0;
    border-bottom: solid 1px #CCC9C9;
}
.td-title {
    width: 45%;
    padding-left: 3vw;
    opacity: 0.7;
    font-size: 1vw;
}
.td-form {
    width: 55%;
}
input,
select,
textarea {
    border: solid 1px #CCC9C9;
    padding: 0.2vw 0.5vw;
    font-size: 1vw;
    width: 80%;
}
.input-text {
    width: 80%;
    height: 2vw;
}
select {
    appearance: none;
    width: 21.2vw;
    height: 2vw;
    font-size:1vw;
}
.select-box{
    display:inline-flex;
    align-items:center;
    position:relative;
}
.select-box::after {
    content:"";
    position: absolute;
    width: 0.6vw;
    height: 0.4vw;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    right: 0.8vw;
    opacity:0.7;
}
textarea {
    width: 25vw;
}
.td-form input[type="checkbox"] {
    display: none;
}
.td-form input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1vw;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    opacity:0.8;
}
.td-form input[type="checkbox"] + label:last-child
{
    margin-bottom: 0; 
}
.td-form input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 0.8vw;
    height: 0.8vw;
    border: 1px solid #4c4c4c;
    position: absolute;
    left: 0;
    top: 2px;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.td-form input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -3px;
    left: 5px;
    border: 1px solid #008267;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* アスタリスク */
.asterisk {
    color:#F91313;
}
/* 脚注 */
.footnote{
    line-height:1.6vw;
}
tr:last-child td {
    border-bottom: none;
}
/* 次ボタン */
.next-btn-area{
    text-align:center;
}
.next-btn {
    background-color: rgba(204, 201, 201, 0.4);
    border: solid 1px #4c4c4c;
    width: 7vw;
    transition: 0.3s;
    cursor: pointer;
}
.next-btn:hover {
    background-color:rgba(0, 130, 103, 0.3);
    border:solid 1px #008267;
    width: 7vw;
    transition: 0.3s;
}
/*---------------------------------------*/
/*               スマホ　     　　       */
/*---------------------------------------*/
@media screen and (min-width:320px ) and (max-width:1079px) {
    body {
        font-size: 2.5vw;
    }
    a [href^="tel:"] {
        pointer-events: none;
    }
    /* タイトル1 */
    .sub-title {
        margin-left: 17vw;
    }
    .content-view.single .contents{
        width:98%;
    }
    #DivExplan{
        display:grid;
        justify-content:unset;
    }
    /*　説明書き　*/
    .explan {
        opacity: 0.8;
        margin-left: 6vw;
        line-height: 4vw;
        font-size: 3vw;
    }
    /*　連絡先　*/
    .contact-address {
        position:relative;
        left:60%;
        width:29vw;
        margin-top:3vw;
        border: solid 1px #008267;
        padding:0.5vw 1.5vw;
    }
    .contact-address .text{
        opacity:0.8;
        line-height:3vw;
        font-size:2vw;
    }
    .contact-address .tel{
        text-align:center;
        font-size:4vw;
        position:relative;
        margin-left:1.8vw;
        letter-spacing:0;
    }
    .contact-address .tel a{
        color:#000;
    }
    .contact-address .tel::before {
        content: "";
        position: absolute;
        top: 40%;
        left: -2.3vw;
        width: 4px;
        height: 4px;
        background: #008267;
    }
    table {
        width: 100%;
        margin: auto;
        margin-top: 3vw;
        border-collapse: collapse;
        margin-bottom: 4vw;
    }
    td {
        padding: 4vw 0;
        border-bottom: solid 1px #CCC9C9;
    }
    .td-title {
        width: 50%;
        padding-left: 1vw;
        opacity: 0.7;
        font-size:3vw;
    }
    .td-form {
        width: 50%;
    }    
    .td-form input,
    select,
    textarea {
        border: solid 1px #CCC9C9;
        padding: 1.2vw 1.5vw;
        font-size:3vw;
    }
    .input-text {
        width: 90%;
        height: 4.5vw;
        line-height:5vw;
    }
    select {
        appearance: none;
        width: 41vw;
        height: 6vw;
    }
    .select-box{
        display:inline-flex;
        align-items:center;
        position:relative;
    }
    .select-box::after {
        content:"";
        position: absolute;
        width: 2.6vw;
        height: 1.8vw;
        background: #000;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        right: 1.5vw;
        opacity:0.7;
    }
    textarea {
        width: 38vw;
    }
    .td-form input[type="checkbox"] {
        display: none;
    }
    .td-form input[type="checkbox"] + label {
        display: block;
        position: relative;
        padding-left: 6vw;
        margin-bottom: 20px;
        font-size: 2.8vw;
        color: #000;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        opacity:0.8;
    }
    .td-form input[type="checkbox"] + label:last-child
    {
        margin-bottom: 0; 
    }
    .td-form input[type="checkbox"] + label:before {
        content: '';
        display: block;
        width: 2.8vw;
        height: 2.8vw;
        border: 1px solid #4c4c4c;
        position: absolute;
        left: 0;
        top: 0;
        opacity: .6;
        -webkit-transition: all .12s, border-color .08s;
        transition: all .12s, border-color .08s;
    }
    .td-form input[type="checkbox"]:checked + label:before {
        width: 2.8vw;
        top: -3px;
        left: 1px;
        border: 1px solid #008267;
        border-radius: 0;
        opacity: 1;
        border-top-color: transparent;
        border-left-color: transparent;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    /* アスタリスク */
    .asterisk {
        color:#F91313;
    }
    /* 脚注 */
    .footnote{
        font-size:2.5vw;
        line-height:5vw;
    }
    tr:last-child td {
        border-bottom: none;
    }
    /* 次ボタン */
    .next-btn-area{
        text-align:center;
    }
    .next-btn {
        background-color: rgba(204, 201, 201, 0.4);
        border: solid 1px #4c4c4c;
        width: 23vw;
        transition: 0.3s;
        cursor: pointer;
        font-size: 3.5vw;
    }
    .next-btn:hover {
        background-color:rgba(0, 130, 103, 0.3);
        border:solid 1px #008267;
        width: 23vw;
        transition: 0.3s;
    }
    .note{
        font-size:unset;
    }
    #DivRecaptcha{
        margin-bottom:4vw;
    }
}
/*---------------------------------------*/

/*               PC     　　       */

/*---------------------------------------*/

@media screen and (min-width:960px ){
}