@charset "utf-8";

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
    color:#333;
	font-size: 1em;
    box-sizing: border-box;
}

body {
	font-size: 62.5%;
}

body,
table,
input, textarea, select, option {
	/*font-family: Meiryo, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;*/
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}
.font-g{
    font-family: Meiryo, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif !important;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: top;
}

a,
a:link {
	color: #040404;
	text-decoration: none;
}

a:visited {
	color: #040404;
}

a:hover {
	color: #040404;
}

a:active {
	color: #040404;
}


/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
html{
    overflow: auto;
}
body {
	min-width: 1024px;
	color: #000;
	font-size: 14px;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
    overflow: hidden;
    position: relative;
}

#container {
	text-align: left;
}

a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

.sp {
	display: none !important;
}

@media screen and (max-width: 767px) {
	body {
		min-width: inherit;
        font-size: 60%;
	}
	
	body.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	#container {
		padding-top: 60px;
	}

	a:hover,
	a:hover img {
		opacity: 1 !important;
	}

	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}

	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}


/*
TOP
*/
#mainImg{
    background: #000;
    background-size: cover;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.video-wrap {
    position: relative;
    height: 100vh;
}
@media screen and (max-width: 767px) {
    #mainImg{
        background: url(img/top/top_main_bg.png) center;
        background-size: cover;
    }
}
.img100{
    width: 100%;
}
/*
アニメーション
jsとHTMLで以下のアニメーションを設定。
#start を背景表示。
#start を js-init_1 に設定。
#start img を js-init_2 に設定。
#sc-ani-obj などあとから表示されるものを js-init_3 に設定。

*/
#start{
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
}
#start img{
    width: 142px;
    margin: calc(50vh - 71px) calc(50vw - 71px) 0;
}
.js-init_1{
    /*display: none; アニメーションOFF時は これを消す */
}

.js-init_2{
    display: none;
}
.js-init_3{
    display: none;
}
/**/


#sc-ani-obj{
    height: 68px;
    overflow: hidden;
    position: absolute;
    top: calc((100vh - 224px) / 2 + 194px);
    width: 100%;
}
#sc-ani-obj:after{
    content:"";
    display: block;
    width: 1px;
    border-left:1px #fff solid;
    animation:scroll 2s ease 0s infinite normal;
    margin: 0 auto 0;
}
#sc-text{
    color: #fff;
    border: 1px solid #fff;
    padding: 5px;
    font-size: 10px;
    width: 15em;
    text-align: center;
    letter-spacing: 0.5em;
    margin: 0 auto;
    left:10px;
    right:10px;
    position: absolute;
    top: calc((100vh - 224px) / 2 + 262px);
    display: block;
}
#main-title{
    position: absolute;
    top: calc((100vh - 224px) / 2 - 120px) ;
    display: block;
    width:33%;
    min-width: 260px;
    max-width: 360px;
    left: 10px;
    right: 10px;
    margin: auto auto;
}
#main-title img{
    width: 100%;
}
@keyframes scroll{
    0%{
    height: 0;
    }
    50%{
        height: 150px;
        margin-top: 0;
    }
    100%{
        margin-top: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 767px) {
    #main-title{
        top: calc((100vh - 224px) / 2 - 60px) ;
    }
}

/* ナビゲーション */
#gHeader_pc{
    position: absolute;
    bottom:0px;
    color:#fff;
    z-index: 100;
    background-color: rgba(0,0,0,0.9);
    width: 100%;
    height: 84px;
}
#gHeader_pc div{
    color:#fff;
}


/* main */
#main{
    background-color: #fff;
    position: relative;
}

.main_content_a{
    width: 100%;
    display: flex;
    margin: 100px 0;
    min-width: 1140px;
}
.main_content_a .bg_box{
    width: 50%;
    background:url(./img/top/top_img1.jpg) center center no-repeat;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-size: 100%;
}
.main_content_a .text_box{
    width: 50%;
    display: flex;
    align-items: center;
}
.main_content_a .text_box .copy{
    padding: 50px 0 50px 50px;
    font-size: 200%;
    line-height: 300%;
    letter-spacing: 0em;
}

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

    .main_content_a{
        display: block;
        min-width: inherit;
    }
    .main_content_a .bg_box{
        width: 90%;
        height: 180px;
    }
    .main_content_a .text_box{
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .main_content_a .text_box .copy{
        padding: 50px 0px;
        font-size: 150%;
    }
}


.main_content_b{
    position: relative;
}
.main_content_b .bg_box{
    width: 50%;
    background-color: #f0f0f0;
    height: 1500px;
    position: absolute;
}
.main_content_b .bg_box h2{
    width: 285px;
    margin-left: auto;
    margin-right: 225px;
    margin-top: 135px;
}
.main_content_b .text_box{
    width: 1140px;
    margin: 0px auto 0;
    padding-top: 275px;
    position: relative;
}
.main_content_b .text_box .content{
    margin-top: 30px;
}
.main_content_b .text_box .top_img{
    width: 1222px;
    height: 412px;
    position: relative;
    margin-left: 144px;
}
.main_content_b .text_box .top_img--3{
    background: url(./img/top/top_img3.png)  no-repeat right top;

}
.main_content_b .text_box .top_img--4{
    background: url(./img/top/top_img4.png)  no-repeat right top;

}
.main_content_b .text_box .top_img--5{
    background: url(./img/top/top_img5.png)  no-repeat right top;

}
.main_content_b .text_box span.message{

    display: block;
    padding: 20px 40px;
    width: 380px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    bottom:50px;
    left:-150px;
    font-size:171%;
    box-shadow: -5px -5px 0px 0px rgba(0,0,0,0.1);
    letter-spacing: 0em;
}
.main_content_b .text_box span.message span{
    border-top: 1px solid #333;
    display: block;
    font-size:90%;
    font-family: helvetica;
    font-weight: 700;
    margin-top: 10px;
    padding-top: 10px;
    letter-spacing: 0em;
}
.main_content_b .text_box .top_img--4 span.message{
    width: 550px;
}
.main_content_b .text_box .top_img--5 span.message{
    width: 765px;
}

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

    .main_content_b .bg_box{
        width: 100%;
        height: 30px;
        background-color: #fff;
        position: relative;
    }
    .main_content_b .text_box .content{
        margin-top: 0;
    }
    .main_content_b .bg_box h2{
        text-align: center;
        width: 147px;
        margin: 0 auto;
    }
    .main_content_b .text_box{
        width: 100%;
        padding-top: 50px;
        position: relative;
    }

    .main_content_b .text_box .top_img{
        width: 94%;
        margin-left: auto;
        margin-right: auto;
        background-size: contain;
        height: inherit;
        position: relative;
        padding-top: 175px;
    }
    .main_content_b .text_box span.message{
        width: 100%;
        left: 0;
        position: relative;
        box-shadow:none;
        text-align: right;
        padding: 5px 2%;
        font-size: 168%;
        letter-spacing: 0em;
    }
    .main_content_b .text_box .top_img--4 span.message{
        width: 100%;
    }
    .main_content_b .text_box .top_img--5 span.message{
        width: 100%;
    }
}


.top_title h2{
    text-align: center;
    font-size: 228%;
    line-height: 300%;
    letter-spacing: 0em;
    font-weight: 400;
}
.main_content_c{
    width: 100%;
    margin: 100px auto 0;
    background-color: #f2f2f2;
    padding: 100px 0;
}
.main_content_c .top_about_box{
    display: flex;
    background-color: #fff;
    width: 1140px;
    margin: 100px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}
.main_content_c .top_about_box .text_box{
    padding: 60px;
    width: 50%;
}
.main_content_c .top_about_box .text_box h3{
    font-size: 180%;
    padding: 0 0 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    font-weight: 400;
    letter-spacing: 0em;
}
.main_content_c .top_about_box .text_box p.text{
    font-size: 128%;
    line-height: 200%;
    margin-bottom: 80px;
}

.main_content_c .top_about_box .img_box--1 , .main_content_c_sp .img_box--1{
    background: url(./img/top/top_about1.jpg) center;
}
.main_content_c .top_about_box .img_box--2 , .main_content_c_sp .img_box--2{
    background: url(./img/top/top_about2.jpg) center;
}
.main_content_c .top_about_box .img_box{
    width: 50%;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .main_content_c_sp{
        padding: 20px;
    }
    .main_content_c_sp h2{
        line-height: 180%;
        margin-bottom: -50px;
        letter-spacing: 0.05em;
        font-size: 190%;
    }
    .main_content_c_sp .img_box_sp{
        height: 245px;
        width: 100%;
        background-size: contain;
        border-radius: 10px;
        margin-top: 100px;
    }
    .main_content_c_sp h3{
        text-align: center;
        padding: 15px 0 ;
        font-size: 185%;
        font-weight: 400;
        border-bottom: 1px solid #333;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .main_content_c_sp p.text{
        font-size: 128%;
        line-height: 200%;
        margin-bottom: 40px;
    }
}

.main_content_z{
    width: 1366px;
    margin: 0 auto;
    background-color: #d00;
    padding: 100px 0;
}

/*
page 共通 ヘッダー
*/
.pageTopTitle{
    height: 222px;
    background: #eee;
}
.pageTopTitle h1{
    width: 1024px;
    margin: 0 auto;
    line-height: 222px;
    font-size: 257%;
    letter-spacing: 0.05em;
    font-weight: 400;
}
.pageSubNav{
    background: #f2f2f2;
    width: 100%;
    position: relative;
    z-index: 90;
}
.pageSubNav ul{
    display: flex;
    width: 1140px;
    margin: 0 auto;
}
.pageSubNav ul li{

}
.pageSubNav ul a{
    display: block;
    padding: 10px 30px;
    font-size: 100%;
    transition: 0.4s ease-in;
}
.pageSubNav ul a:hover{
    display: block;
    padding: 10px 30px;
    background-color: #ddd;
}
.content-wrap{
    width: 1140px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .content-wrap{
        width: 95%;
    }
    .pageTopTitle h1{
        width: 100%;
        padding-top: 60px;
        text-align: center;
    }
    .pageSubNav{
        display: none;
    }
}


.error-message{
    color: #ff0000;
    border: #ff0000 1px solid;
    padding: 20px;
}
.error-form{
    background-color: #ffdacc;
}
.form_item_td .select.error-form{
    background-color: #ffdacc;
}
.form_item_td .select option:first-child{
    color: #ccc;
}
