/*-------------------------
Common
--------------------------*/

.wrapper{
    background:url(../img/bg.jpeg)top center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
div {

}

footer{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
    bottom: 0; /*下に固定*/
    left: 50%;
    transform: translate(-50%, 0%);
}

.txtcenter{
    text-align: center;
}
.flex_bottom{
    position: fixed;/*←絶対位置*/
    bottom: 0; /*下に固定*/
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
}
.red{
    color:red;
}
small{
    font-size: 0.5rem;
}

/*-------------------------
block
--------------------------*/
main {
    font-size: 62.5%;
    line-height: 1.7;
    font-family:"MS Pゴシック",sans-serif;
}
.bd{
    font-size: 1.2rem;
    font-weight: bold;
}

img{
    width: 100%;
}

.innerTxt{
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    font-size: 0.8rem;
}
.innerReason{
    background: url(../img/reason_bg.jpg)top center repeat-y;
    background-size: contain;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 0.8rem;
}
.innerPresent{
    background: url(../img/present_bg.jpg)top center repeat-y;
    background-size: contain;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 0.8rem;
}
.innerReason img{
    width: 100%;
}
.evi img{
    width: 100%;
}
.innerBtn img{
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
    text-align: center;
}

.menseki{
    border: 1px solid #000;
    padding: 40px;
}
.menseki .label{
    background-color: #c1c1c1;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 0;
}

.unitFlex{
    display: flex;
    margin-bottom:40px
}
.item00{
    width: 100px;
    height: 100px;
    border: 1px solid #cbcbcb;
}
.item00 img{
    
    width: 65px;
    padding-top: 13px;
    padding-left: 12px;
}
.item01{
    padding:10px 10px 10px 40px;
    background: #f8f8f8;
    width: 100%;
}
.sp{
    display: none;
}

@media screen and (min-width: 700px) {
    .sp{
        display: inline;
    }
    
    img{
    display: block;
    margin: 0 auto;
    width: 900px;
    }
    .evi img{
        width: 100%;
        margin-bottom: 40px;
    }
    .innerTxt{
        background: #fff;
        width: 900px;
        margin: 0 auto;
        padding: 80px;
        font-size: 1.3rem;
    }
    .item00 img{
    }


    .innerReason{
        background: url(../img/reason_bg.jpg)top center repeat-y;
        background-size: contain;
        width: 900px;
        margin: 0 auto;
        padding: 40px 80px;
        font-size: 1.3rem;
    }
    .innerPresent{
        background: url(../img/present_bg.jpg)top center repeat-y;
        background-size: contain;
        width: 900px;
        margin: 0 auto;
        padding: 40px 80px;
        font-size: 1.3rem;
    }

    .innerBtn img{
        width: 700px;
        background-color: #fff;
        margin: 0 auto;
        text-align: center;
    }
    .bd{
        font-size: 1.5rem;
        font-weight: bold;
    }
    
}




/*-------------------------
Q&A　リスト
-------------------------*/

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	font-family: 'Font Awesome 5 Free', sans-serif;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa dt {
	position: relative;
	margin: 0 0 1.5em 0;
}
.cp_qa dd {
	position: relative;
	margin: 0 0 2em 0;
	padding: 0 0 1.5em 2em;
	border-bottom: 1px dotted #0097a7;
}
.cp_qa dt::before, .cp_qa dd::before {
	font-size: 1.2em;
	margin: 0 0.5em 0 0;
	color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	width: 1.3em;
	height: 1.3em;
	line-height: 1.2em;
}
.cp_qa dt::before {
	padding: 0.1em 0.25em;
	content: 'Q';
	background: #f57c00;
}
.cp_qa dd::before {
	padding: 0.12em 0.27em;
	content: 'A';
	background: #0097a7;
}
.cp_qa dt::after, .cp_qa dd::after {
	position: absolute;
	top: 0.5em;
	display: inline-block;
	width: 0;
	height: 0;
	content: '';
	border-width: 5px 0 5px 5px;
	border-style: solid;
}
.cp_qa dt::after {
	left: 1.5em;
	border-color: transparent transparent transparent #f57c00;
}
.cp_qa dd::after {
	left: 3.5em;
	border-color: transparent transparent transparent #0097a7;
}

/*-------------------------
離脱防止
-------------------------*/
.modal{
    display: none;
}

@media screen and (min-width: 700px) {
#id_wdp_border{
    display: block;
    width: 100vw;
    height: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: -28px;
    left:0;
    width: 100%;
    z-index: 99999;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background-color: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 900px;
}
a.js-modal-close{
    font-size: 1rem;
    color: blue;
    text-align: center;
    margin: 0 auto;
}

.mailUnit{
    position: absolute;
    bottom: 85px;
    left: 83px;
}
.mailUnit input[type=text]{
    padding-left: 70px;
    width: 560px;
    height: 60px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 40px;
    background: #FFF url(../images/icon-mail.png) no-repeat 10px 6px;
    left: 20px;
    bottom: 67px;
    border: 1px solid #f00;
}
.mailUnit button{
    width: 180px;
    height: 60px;
    text-align: center;
    background-color: #58b100;
    font-size: 1.4rem;
    color: #fff;
}
}