* {
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    background: #fff;
    width: 100%;
    height: 100%;
}
input,textarea{
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
a {
    color: #0C9CEE;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
	display: block;
}
a:hover, a:active, a:focus {
    color: #0C9CEE;
    outline: none;
    text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	opacity: 0.7;
	filter: alpha(opacity=30);
}
p {
    margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6, figure {
    color: #000;
    font-family: "Work Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
}
html, body, div, span, applet, object, iframe, img, 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 {
    background: transparent;
    border: 0;
    font-size: 1em;
    margin: 0;
    outline: 0;
    padding: 0;
}
table, caption, tbody, tfoot, thead, tr, th, td {
    vertical-align: baseline;
}
a:hover, a:active {
    outline: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
    text-align: left;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	display: block;
}
a {
	color: inherit;
	display: block;
	text-decoration: none;
	transition: all 0.5s
}
a:hover {
	text-decoration: none;
}
a img{
	transition: all 0.5s
}
a:hover img {
	opacity: .8;
}
body {
    font-size: 0.8125em;
    line-height: 1.3846em;
}
p, ul, ol, dl, form, table, address, blockquote, del, hr, pre, ins, noscript, center {
    width: auto;
}
pre {
    background-color: #f9f9f9;
    border-style: solid;
    border-width: 1px;
    border-color: #f0f0f0;
    font-size: 1.041em;
    line-height: 1.6363em;
    padding: 0.2727em;
}
ul {
    list-style-type: none;
}
ol {
    list-style-type: none;;
}
blockquote {
    font-style: italic;
    padding-right: 3.0769em;
}
blockquote :first-child {
    margin-top: 0;
}
blockquote cite {
    display: block;
    margin-right: -3.0769em;
    text-align: right;
    width: 100%;
}
fieldset {
    border: 1px solid;
    padding: 0.5em 1em;
}
fieldset > legend span.fieldset-legend {
    padding: 0 0.5em;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: none;
}
h1 a:hover, h2 a:hover {
    text-decoration: none;
}
sub {
    vertical-align: sub;
}
sup {
    vertical-align: super;
}
small {
    font-size: smaller;
}
big {
    font-size: larger;
}
.pc_no{
	display: none;
}
.sp_no{
	display: block;
}
.breadcrumb {
    padding-bottom: 0;
}
.clearfix:after, .menu:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
#wrapper {
    width: 100%;
}
/***** ヘッダー *****/
header {
	width: 100%;
	padding: 75px;
	background: url(../img/header_bg.jpg);
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	position: relative;
	z-index: 1;
}
header::before{
	content: '';
	width: 2px;
	height: 95px;
	background: #FFF;
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
}
header::after{
	content: '';
	width: 2px;
	height: 60px;
	background: #1f95af;
	position: absolute;
	bottom: -60px;
	left: calc(50% - 1px);
}
header .spmenu{
	display: none;
}
header nav{
	position: absolute;
	top: 25px;
	right: 75px;
}
header nav li{
	margin-left: 60px;
	display: inline-block;
}
header nav li a{
	color: #FFF;
	font-size: 1.2rem;
	position: relative;
}
header nav li a:active,
header nav li a:focus{
	color: #FFF;
}
header nav li a::after {
	position: absolute;
	bottom: -8px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #ea4d60;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
header nav li a:hover{
	color: #FFF;
	opacity: 1;
}
header nav li a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
.header_cont_wrap{
	width: 100%;
	height: 100%;
	border: rgba(255, 255, 255, 0.7) 2px solid;
	color: #FFF;
	text-align: center;
	display: table;
	position: relative;
}
.header_cont_wrap::before{
	content: 'SCROLL';
	margin: 0 auto;
	position: absolute;
	bottom: 35px;
	left: 0;
	right: 0;
	color: #FFF;
	font-size: 1.1rem;
	-webkit-animation: scro 3s infinite;
	animation: scro 3s infinite;
}
@-webkit-keyframes scro {
	0% {
		-webkit-transform: translateY(0);
	}
	20% {
		-webkit-transform: translateY(10px);
	}
	40% {
		-webkit-transform: translateY(0);
	}
}
@keyframes scro {
	0% {
		-webkit-transform: translateY(0);
	}
	20% {
		-webkit-transform: translateY(10px);
	}
	40% {
		-webkit-transform: translateY(0);
	}
}
.header_cont_wrap .header_cont{
	display: table-cell;
  vertical-align: middle;
}
.header_cont .header_logo {
	width: 220px;
	margin: 0 auto 40px;
}
.header_cont p.catch{
	margin-bottom: 20px;
	padding: 50px;
	font-size: 3.4rem;
	font-weight: bold;
	border: rgba(255, 255, 255, 0.7) 2px solid;
	display: inline-block;
	line-height: 1;
}
.header_cont p{
	font-size: 1rem;
	line-height: 2;
	font-weight: bold;
}


/***** スライドメニュー *****/



/***** ニュース *****/

#news {
	width: 100%;
	height: 465px;
    background: url(../img/news_bg.jpg);
    background-position: center;
}
#news .container {
	margin: 0 auto;
	width: 1000px;
}
.news_title_box {
    float: left;
    display: block;
    width: 435px;
}
.news_title {
    margin-top: 115px;
    display: block;
    margin-left: 60px;
}
.news_cont {
    width: 545px;
    float: right;
    margin-top: 72px;
    height: 315px;
    overflow: auto;
    font-size: 13px;
    padding: 20px;
	background: rgba(255, 255, 255,.7);
}
.news_headline {
    padding: 5px 0 10px;
    border-bottom: 1px #333 solid;
}
.news_square {
    padding: 2px 10px;
    background: #ed4c5e;
    display: inline-block;
    color: #fff;
	vertical-align: top;
    margin: -2px 0px 0px 0px;
}
.news_date {
    display: inline-block;
    margin: 0 10px;
	vertical-align: top;
}
.news_article {
    display: inline-block;
}
.news_post {
    margin: 5px 0 15px 0;
}
/***** 事業内容 *****/

#works {
	width: 100%;
    height: 493px;
    background: url(../img/bg_works.jpg) no-repeat right top;
	overflow: hidden;
	position: relative;
}
#works::before{
	content: '';
	width: 55%;
    height: 493px;
	background: #237a96;
	position: absolute;
	top: 0;
	left: 0;
}
#works::after{
	content: '';
	border-top: 493px solid #237a96;
	border-right: 100px solid transparent;
	position: absolute;
	top: 0;
	left: 55%;
}
#works .container {
	margin: 0 auto;
	width: 1000px;
}
.works_title_box {
    float: right;
}
.works_title {
    margin-top: 120px;
    display: block;
}
.works_cont {
    float: left;
    width: 545px;
	margin-top: 105px;
}
.works_cont ul li {
    color: #fff;
    font-size: 20px;
    list-style: disc;
    margin-bottom: 25px;
    padding: unset;
}
.works_cont ul {
    list-style-type: none;
    padding: 0px 0px 0px 40px;
}
.works_contact {
    background: #fff;
    width: 100%;
	max-width: 175px;
    padding: 11px 6px 15px 7px;
    text-align: center;
    border-radius: 6px;
    color: #16758b;
    font-size: 15px;
    font-weight: bold;
    margin: 29px 5px 5px 30px;
    box-shadow: 1px 1px 3px #0d4f5f;
}
.works_contact img{
	margin-right: 10px;
	display: inline-block;
	vertical-align: -2px;
}
/***** 会社概要 *****/

#company {
	width: 100%;
	height: 465px;
    background: url(../img/company_bg.jpg);
    background-position: center;
}
#company .container {
	margin: 0 auto;
	width: 1000px;
}
.company_title_box {
    float: left;
    display: block;
    width: 435px;
}
.company_title {
    margin-top: 115px;
    display: block;
    margin-left: 60px;
}
.company_cont {
    width: 545px;
    float: right;
    margin-top: 85px;
    height: 315px;
    overflow: auto;
    padding: 10px;
	background: rgba(255, 255, 255, .8);
}
.company_square {
    padding: 4px 11px;
    background: #333;
    display: inline-block;
    color: #fff;
    vertical-align: top;
    margin: 2px 20px 10px -1px;
    text-align: center;
    width: 65px;
    font-size: 14px;
}
.company_text {
        display: inline-block;
    width: 400px;
    font-weight: bold;
    font-size: 15px;
    margin-top: 6px;
}
.company_box {
    height: 38px;
    border-bottom: 1px solid #aaa;
    margin-bottom: 20px;
}

/***** お問い合わせ *****/

#contact {
	width: 100%;
	height: 510px;
    background: url(../img/bg_contact.jpg) no-repeat right top;
	background-size: contain;
	overflow: hidden;
	position: relative;
}
#contact::before{
	content: '';
	width: 55%;
    height: 510px;
	background: #b9e9eb;
	position: absolute;
	top: 0;
	left: 0;
}
#contact::after{
	content: '';
	border-top: 510px solid #b9e9eb;
	border-right: 100px solid transparent;
	position: absolute;
	top: 0;
	left: 55%;
}
#contact .container {
	margin: 0 auto;
	width: 1000px;
}
.contact_title_box {
    float: right;
}
.contact_title {
    margin-top: 125px;
    display: block;
}
#contact .contact_cont {
    float: left;
    width: 530px;
    margin-top: 30px;
	position: relative;
	z-index: 1;
}
table.toiawase{
	width: 100%;
	background: #e2f6f7;
	border: 1px solid #999;
	margin-bottom: 5px;
}
table.toiawase th,
table.toiawase td{
	border-bottom: 1px solid #999;
}
table.toiawase th{
	width:165px;
	padding: 15px 0 20px 20px;
	font-size: .8rem;
	vertical-align: middle;
}
table.toiawase .form_text p{
	font-size: .9rem;
	text-shadow:none;
}
table.toiawase th span{
	margin-right: 10px;
	padding: 2px 5px;
	background: #ed4c5e;
	color: #FFF;
	font-weight: normal;
	font-size: .8rem;
	text-shadow:none;
	line-height: 1;
}
table.toiawase td{
	padding: 15px 20px 20px;
}
table.toiawase td input,
table.toiawase td textarea{
    width: 100%;
    border: 1px solid #bbb;
	padding: 5px;
}
textarea[name="your-message"] {
        width: 100%;
        height: 70px !important;
}
.wpcf7-form input[type=submit], .wpcf7-form input[type=reset] {
    padding: 10px 50px 10px;
    margin: 5px 15px 10px 0px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    height: 52px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    transition: background 0.3s ease-in-out;
    border-radius: 55px;
    /* box-shadow: 1px 1px 4px #333; */
    letter-spacing: 0px;
    background-image: -webkit-gradient( linear,left top,left bottom, from(#5bb1c5), to(#3fa4bb));
    border: 1px solid #69939d;
}
input[type=submit]:hover, input[type=reset]:hover {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	opacity: 0.7;
	filter: alpha(opacity=30);
}
div.wpcf7 .ajax-loader {
    display: none!important;
}
.con_btn{
	text-align: center;
}
span.wpcf7-not-valid-tip{
	position: absolute;
	left: 0;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	padding: 0;
	position: absolute;
	left: 50%;
	top: -50px;
	border: none !important;
	color: #ff0000;
	transform: translateX(-50%);
}
div.wpcf7-mail-sent-ok {
	position: absolute;
	top: -60px;
	left: 0;
}
/***** フッター *****/

#footer {
	background: #333;
	padding: 60px 0 10px;
	text-align: center;
}
.footer_logo {
	display: inline-block;
}
.copyright {
    margin-top: 60px;
}
.copyright p {
	color: #999;
    font-size: 16px;
}
#pagetop {
    position: fixed;
    top: auto;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    left: auto;
    margin: 0;
    text-align: right;
    z-index: 80;
    width: 60px;
    height: 60px;
	display: none;
}
@media screen and (max-width: 1024px) {
	.header_cont .header_logo{
		margin-bottom: 20px;
	}
	.header_cont p.catch{
		padding: 30px;
		font-size: 2.6rem;
	}
	#news .container,
	#works .container,
	#company .container,
	#contact .container{
		width: 100%;
	}
	#news .container > div,
	#works .container > div,
	#company .container > div,
	#contact .container > div{
		width: 50%;
	}
	h3.works_title,
	h3.contact_title {
		position: relative;
		z-index: 1;
	}
	h3.news_title img,
	h3.works_title img,
	h3.company_title img,
	h3.contact_title img{
		margin: 0 auto;
	}
	.company_box{
		height: auto;
		margin-bottom: 20px;
		padding: 0 0 20px;
	}
	.company_square{
		vertical-align: middle;
		margin: 0 20px 0 0;
	}
	.company_text{
		width: calc(100% - 85px);
		margin-top: 0;
		vertical-align: middle;
	}
	#contact .contact_cont{
		padding-left: 10px;
	}
}
@media screen and (max-width: 768px) {
	.pc_no{
		display: block;
	}
	.sp_no{
		display: none;
	}
	header{
		padding: 20px;
	}
	header .spmenu{
		width: 60px;
		height: 60px;
		display: block;
		position: absolute;
		background: #237A96;
		top: 0;
		right: 0;
		z-index: 10;
	}
	header .spmenu a{
		width: 100%;
		height: 100%;
		position: relative;
	}
	header .spmenu span,
	header .spmenu span:before,
	header .spmenu span:after {
		position: absolute;
		height: 3px;
		width: 30px;
		background: #FFF;
		display: block;
		content: '';
		cursor: pointer;
		left: 15px;
	}
	header .spmenu span{
		top:15px;
	}
	header .spmenu span:before {
		bottom: -12px;
		left: 0;
	}
	header .spmenu span:after {
		bottom: -24px;
		left: 0;
	}
	header nav li{
		margin: 50px 0;
		display: block;
		text-align: right;
	}
	header nav li a{
		font-size: 1.6rem;
	}
	header nav li a::after{
		content: none;
	}
	.modal-content {
		position: fixed;
		top: 60px;
		display: none;
		z-index: 100;
		width: 90%;
		margin: 0;
		padding: 0;
	}
	.modal-content nav ul {
		display: block;
		background: none;
		text-align: left;
	}
	.modal-content nav ul li {
		display: inline;
		border-right: none;
	}
	.modal-content nav ul li a {
		color: #FFF;
		font-size: 2rem;
	}
	.modal-content nav ul li a:hover {
		background: none;
	}
	.modal-content nav ul li:first-of-type {
		border-left: none;
	}
	.modal-overlay {
		z-index: 99;
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 120%;
		background-color: rgba(35, 122, 150,.8);
	}
	.modal-open:hover {
		cursor: pointer;
	}
	.modal-close {
		width: 60px;
		height: 60px;
		position: absolute;
		background: #237A96;
		top: 0;
		right: 0;
		cursor: pointer;
	}
	.modal-close::before {
		content: "";
		position: absolute;
		top: 14px;
		left: 29px;
		padding: 0;
		width: 3px;
		height: 30px;
		background: #FFF;
		transform: rotate(45deg);
	}
	.modal-close::after {
		content: "";
		position: absolute;
		top: 28px;
		left: 15px;
		width: 30px;
		height: 3px;
		background: #FFF;
		transform: rotate(45deg);
	}
	.header_cont_wrap {
		border: rgba(255, 255, 255, 0.7) 1px solid;
	}
	.header_cont .header_logo{
		max-width: 120px;
	}
	.header_cont p.catch{
		padding: 20px;
		font-size: 1.4rem;
	}
	.header_cont p{
		font-size: .9rem;
		line-height: 1.6;
	}
	header::before,
	header::after{
		width: 1px;
		height: 40px;
	}
	header::after{
		bottom: -40px;
	}
	#news .container > div,
	#works .container > div,
	#company .container > div,
	#contact .container > div{
		width: 100%;
	}
	#news,
	#company{
		height: auto;
		padding: 40px 10px;
	}
	#news {
		background: url(../img/news_bg_sp.png) no-repeat center top;
		background-size: cover;
	}
	.news_cont{
		height: auto;
		padding: 10px;
	}
	.news_box{
		position: relative;
	}
	.news_square{
		margin-bottom: 10px;
	}
	.news_title{
		margin: 0;
	}
	.news_date{
		position: absolute;
		right: 0;
		top: 5px;
	}
	.news_article{
		display: block;
		line-height: 1.6;
	}
	.news_box p{
		line-height: 1.4;
	}
	/* 事業内容 */
	#works{
		height: auto;
	}
	#works::before,
	#works::after{
		content: none;
	}
	.works_title{
		margin-top: 0;
	}
	.works_title_box{
		padding: 40px 10px;
		background: url(../img/bg_works.jpg) no-repeat center;
		background-size: cover;
	}
	.works_cont{
		margin-top: 0;
		padding: 40px 10px;
		background: #237A96;
	}
	.works_cont ul {
		margin-bottom: 20px;
	}
	.works_cont ul li{
		margin-bottom: 15px;
		font-size: 1rem;
		line-height: 1.6;
	}
	.works_contact{
		max-width: 270px;
		margin: 0 auto;
	}
	/* 会社概要 */
	#company{
		background-size: cover;
	}
	.company_title{
		margin: 0;
	}
	.company_cont{
		height: auto;
		margin-top: 40px;
	}
	.company_square{
		width: 60px;
		padding: 4px 5px;
	}
	.company_text{
		font-weight: normal;
		line-height: 1.6;
	}
	/* お問い合わせ */
	#contact{
		height: auto;
	}
	#contact::before,
	#contact::after{
		content: none;
	}
	.contact_title{
		margin-top: 0;
	}
	.contact_title_box{
		padding: 40px 10px;
		background: url(../img/bg_contact.jpg) no-repeat center top;
		background-size: cover;
	}
	#contact .contact_cont{
		margin-top: 0;
		padding: 40px 10px;
		background: #b9e9eb;
	}
	table.toiawase{
		margin-bottom:20px;
	}
	table.toiawase th,
	table.toiawase td{
		display: block;
	}
	table.toiawase th{
		padding: 10px 10px 0;
		border-bottom: none;
	}
	table.toiawase td{
		padding: 10px;
	}
	table.toiawase tr:last-of-type td{
		border-bottom: none;
	}
	table.toiawase th span{
		padding: 5px;
		display: inline-block;
		font-size: 1rem;
	}
	table.toiawase .form_text p{
		font-size: 1.1rem;
	}
	table.toiawase td input,
	table.toiawase td textarea{
		padding: 10px;
	}
	.wpcf7-form input[type=submit],
	.wpcf7-form input[type=reset]{
		width: calc(100% - 20px);
		margin: 0 auto 20px;
		display: block;
		border-radius: 5px;
		font-weight: bold;
		font-size: 18px;
	}
	span.wpcf7-not-valid-tip{
		position: static;
	}
}
.grecaptcha-badge{
	bottom:94px !important;
}
.wpcf7-spinner{
	display:none !important;
}