@charset "UTF-8";
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

*{
	color: #707070;
}

p{
	line-height: 1.8;
}

@font-face {
    font-family: 'Skia';
    src:url('../skia/Skia.ttf.woff') format('woff'),
        url('../skia/Skia.ttf.svg#Skia') format('svg'),
        url('../skia/Skia.ttf.eot'),
        url('../skia/Skia.ttf.eot?#iefix') format('embedded-opentype'); 
        font-weight: normal;
        font-style: normal;
}

img{
	vertical-align: top;
}

.inner{
	width: 1000px;
	margin: 0 auto;
}

ul{
	list-style: none;
}

.only_pc{
    display: block;
}
.only_sp{
    display: none;
}

/*スマホ*/

@media only screen and (max-width: 768px) {
	.inner{
		width: 95%;
	}
    .only_pc{
        display: none;
    }
    .only_sp{
        display: block;
    }
}


/*ヘッダー*/

header{
	
	height: 50px;
	position: fixed;
	width: 100%;
    z-index: 10;
    background: rgba(256, 256, 256, 0.4);
}

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

h1{
	width: 180px;
}

h1 img{
	vertical-align: baseline;
}

.menu{
	display: flex;
	align-items: center;
	background: #C2272D;
	padding:0px 20px;
	height: 40px;
	border-radius: 100px;
}

.menu li{
	margin-left: 20px;
	color: #fff;
}

.menu li:first-of-type{
	margin-left: 0px;
}

.menu li a{
	color: #fff;
	text-decoration:none;
}

.menu li a:hover{
	text-decoration: underline;
}

@media only screen and (max-width: 768px) {
	h1{
        width: 100px;
    }
    h1 img{
        vertical-align: middle;
    }
    .menu{
        padding: 0 14px;
        height: 30px;
    }
    .menu li{
        margin-left: 12px;
    }
    .menu li a{
        font-size: 12px;
    }
}


/*about*/

h2{
	font-family: 'Skia';
	color: #707070;
	font-size: 40px;
	text-align: center;
	margin-bottom: 20px;
}

.about{
	background: url("../img/8.svg") no-repeat, #FAF8F8;
	text-align: center;
	background-size: 400px auto;
	background-position: center;
	padding: 70px 0;
}

@media only screen and (max-width: 768px){
	.about{
		font-size: 14px;
        background-size: 80% auto;
	}
}
	
	
/*service*/

/*
.service{
	background: url("../img/8.svg") no-repeat;
	text-align: center;
	background-size: 100px auto;
	background-position: 44% 30%;
	padding: 70px 0;
}
*/
.service{
	text-align: center;
	padding: 70px 0;
}

.service_list{
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}

.service_list li{
	width: 48%;
	margin-bottom: 30px
}

.service_list p{
	text-align: left;
}

.top_h2{
	position: relative;
	display: inline-block;
}

.top_h2::after{
	content: "";
	width: 110px;
	height: 90px;
	background: url("../img/8.svg") no-repeat;
	background-size: 110px auto;
	position: absolute;
	top: -38px;
    left: -61px;
}

@media only screen and (max-width: 768px) {
	.service_list{
		display: block;
}
	.service_list li{
		width: 100%;
	}
}




/*  company  */

.company{
    text-align: center;
	margin-bottom: 100px;
}

.company table{
    width: 530px;
	margin: 0 auto;
}


.company th{
	width: 120px;
	padding: 16px 0;
	vertical-align: top;
	font-weight: normal;
	text-align: left;
}

.company td{
	text-align: left;
	padding: 16px 0;
	
}

@media only screen and (max-width: 768px){
	.company table{
	width: 100%;
		}
	.company th,.company td{
		display: block;
		padding-left: 10px;
	}
	.company th{
		font-weight: bold;
		background: #F3E1E2;
		width: 100%;
	}
}
	
	
/*  contact  */

.contact{
	text-align: center;
}

.contact table{
	margin: 0 auto;
	width: 530px;
}

.contact input{
	border: 1px solid #707070;
	width: 100%;
	padding: 2px 10px;
}

.contact th{
	font-weight: normal;
	width: 140px;
	padding: 16px 0;
}

.contact td{
	padding: 16px 0;
}

.contact .radio{
	display: flex;
	justify-content: space-between;
}

.radio_box{
	display: flex;
	border: 1px solid #707070;
	width: 30%;
	padding: 8px;
}

.radio_box input{
	width: 16px;
}

.radio_box label{
	font-size: 12px;
	width: 100%;
}

textarea{
	border: 1px solid #707070;
	width: 100%;
	height: 200px;
    padding: 2px 10px;
}

input[type="button"]{
	width: 200px;
	margin-top: 40px;
	border: none;
	background: #DBDBDB;
}


@media only screen and (max-width: 768px){
	.contact table{
	width: 100%;
}
	.contact table th,.contact td{
		display: block;
	}
	.contact table th{
		text-align: left;
		padding-bottom: 0;
	}
	
	.contact td{
		padding: 14px 0px;
	}
}

/*  footer  */

footer{
	text-align: center;
	margin-top: 80px;
}

footer img{
	width: 240px;
	margin-bottom: 20px;
}

footer p{
	background: #C2272D;
	color: #fff;
	font-size: 12px;
	padding: 4px;
	
}

@media only screen and (max-width: 768px){
	footer img{
		width: 180px;
		margin-bottom: 10px;
	}
}


/*  thanks  */

.thanks{
    padding-top: 100px;
    text-align: center;
}
.thanks p{
    margin-bottom: 50px;
}
.thanks a{
    
}