@charset "UTF-8";
/* CSS Document */

/*ヘッダー＆フッター*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*ヘッダー*/
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
	}
	
	header .logo {
		display: none;
	}
	
	header nav {
		position: relative;
		width: 90%;
		height: auto;
		margin: 70px auto 0 auto;
	}
	
	header nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		position: relative;
		width: 100%;
		height: auto;
	}
	
	header nav ul li {
		list-style: none;
	}
	
	header nav ul li a {
		display: block;
		position: relative;
		padding-left: 25px;
		font-size: 18px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 18px;
		text-align: right;
		color: #211815;
		transition: 0.4s;
	}
	
	header nav ul li a:hover {
		color: #C5293F;
	}
	
	header .gm {
		display: none;
	}
	
	/*フッター*/
	footer {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#ft01 {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#ft01 img {
		z-index: 0;
		display: block;
		position: relative;
		width: 100%;
		height: 600px;
		object-fit: cover;
		object-position: center;
	}
	
	#ft01 .text {
		z-index: 1;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 400px;
		height: auto;
	}
	
	#ft01 .text h2 {
		font-size: 50px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 50px;
		text-align: center;
		color: #C5293F;
	}
	
	#ft01 .text a {
		width: 360px;
		margin: 40px auto 0 auto;
	}
	
	#ft02 {
		position: relative;
		width: 100%;
		height: auto;
		padding: 120px 0 40px 0;
		background: #C5293F;
	}
	
	#ft02 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: relative;
		left: 40px;
		width: 550px;
		height: auto;
		margin: 0 auto 60px auto;
	}
	
	#ft02 ul img {
		position: absolute;
		top: -40px;
		left: -100px;
		width: 100px;
		height: auto;
	}
	
	#ft02 ul li {
		list-style: none;
	}
	
	#ft02 ul li a {
		display: block;
		position: relative;
		padding: 0 0 0 20px;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: center;
		color: #fff;
	}
	
	#ft02 ul li a:hover {
		text-decoration: underline;
	}
	
	#ft02 .ft02_btn {
		position: absolute;
		bottom: 40px;
		right: 5%;
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 14px;
		text-align: center;
		color: #fff;
	}
	
	#ft02 .ft02_btn:hover {
		text-decoration: underline;
	}
	
	#ft02 p {
		font-size: 14px;
		line-height: 14px;
		color: #fff;
		text-align: center;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {	
	/*ヘッダー*/
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
	}
	
	header .logo {
		display: none;
	}
	
	nav.globalMenu {
		z-index: 102;
		position: fixed;
		top: 0;
		right: -100%;
		opacity: 0;
		width: 100%;
		height: 100vh;
		background: rgba(197,41,63,0.90);
		transition: all 0.6s;
	}
	
	nav.globalMenu ul {
		position: absolute;
		top: 45%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: auto;
		height: auto;
		list-style :none;
	}
	
	nav.globalMenu ul li a {
		display: block;
		position: relative;
		margin: 0 auto 30px auto;
		font-size: 16px;
		line-height: 16px;
		text-align: center;
		color: #fff;
	}
	
	/* このクラスを、jQueryで付与・削除する */
	nav.globalMenu.active {
		right: 0;
		opacity: 1;
	}
	
	.navToggle {
		z-index: 999;
		display: block;
		position: fixed;
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		text-align: center;
	}
 
.navToggle span {
    display: block;
    position: absolute;
    border-bottom: solid 2px #161616;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
	
.navToggle span:nth-child(1) {
    top: 10px;
	width: 40px;
}
 
.navToggle span:nth-child(2) {
    top: 20px;
	right: 0;
	width: 30px;
}
	
	.navToggle span:nth-child(3) {
		display: none;
	}
	
	/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
	width: 30px;
    top: 50%;
	border-bottom: solid 2px #161616;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
	width: 30px;
    top: 50%;
	right: 10px;
	border-bottom: solid 2px #161616;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
		
	.navToggle.active {
		width: 40px;
		height: 40px;
	}
	
	/*フッター*/
	footer {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#ft01 {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#ft01 img {
		z-index: 0;
		display: block;
		position: relative;
		width: 100%;
		height: 260px;
		object-fit: cover;
		object-position: center;
	}
	
	#ft01 .text {
		z-index: 1;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 300px;
		height: auto;
	}
	
	#ft01 .text h2 {
		font-size: 24px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 24px;
		text-align: center;
		color: #C5293F;
	}
	
	#ft01 .text a {
		width: 300px;
		margin: 20px auto 0 auto;
	}
	
	#ft02 {
		position: relative;
		width: 100%;
		height: auto;
		padding: 40px 0 20px 0;
		background: #C5293F;
	}
	
	#ft02 ul {
		position: relative;
		width: 80%;
		height: auto;
		margin: 0 auto 30px auto;
	}
	
	#ft02 ul img {
		display: block;
		position: relative;
		width: 140px;
		height: auto;
		margin: 0 auto 20px auto;
	}
	
	#ft02 ul li {
		list-style: none;
	}
	
	#ft02 ul li a {
		display: block;
		position: relative;
		padding: 0 0 14px 0;
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 14px;
		text-align: center;
		color: #fff;
	}
	
	#ft02 .ft02_btn {
		display: block;
		position: relative;
		margin: 15px auto 25px auto;
		font-size: 12px;
		font-weight: normal;
		letter-spacing: 0.5px;
		line-height: 12px;
		text-align: center;
		color: #fff;
	}
	
	#ft02 p {
		font-size: 11px;
		line-height: 11px;
		color: #fff;
		text-align: center;
	}
	

}

/*トップページ*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*共通*/
	.top_h2 {
		position: relative;
		font-size: 50px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 50px;
		text-align: center;
		color: #C5293F;
	}
	
	.top_h2::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 190px;
		height: 190px;
		border: solid 1px #C5293F;
		border-radius: 200px;
	}
	
	.top_h2 font {
		display: block;
		position: relative;
		margin-top: 5px;
		font-size: 20px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 20px;
	}
	
	.top_btn {
		display: block;
		position: relative;
		height: auto;
		padding: 18px 0 18px 0;
		font-size: 18px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 18px;
		text-align: center;
		color: #fff;
		background: #C5293F;
		border: solid 2px #C5293F;
		border-radius: 100px;
		box-sizing: border-box;
		transition: 0.4s;
	}
	
	.top_btn::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 50px;
		transform: translateY(-50%) translateX(0);
		width:0;
		height:0;
		border-style: solid;
		border-width: 7px 0 7px 12.1px;
		border-color: transparent transparent transparent #FFFFFF;
		transition: 0.4s;
	}
	
	.top_btn:hover {
		color: #C5293F;
		background: #fff;
		border: solid 2px #C5293F;
	}
	
	.top_btn:hover::after {
		border-color: transparent transparent transparent #C5293F;
	}
	
	/*メニュー*/
	nav#top_menu {
		z-index: 1;
		position: absolute;
		top: 80px;
		left: 70px;
		width: 300px;
		height: auto;
	}
	
	nav#top_menu ul {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	nav#top_menu ul img {
		display: block;
		position: relative;
		width: 260px;
		height: auto;
		margin: 0 auto 70px 0;
	}
	
	nav#top_menu ul li {
		list-style: none;
	}
	
	nav#top_menu ul li a {
		display: block;
		position: relative;
		margin-bottom: 50px;
		font-size: 20px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: left;
		color: #fff;
	}
	
	nav#top_menu ul li a:hover {
		text-decoration: underline;
	}
	
	/*メインビジュアル*/
	#top01 {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#top01 .top_mv {
		position: relative;
		width: 100%;
		height: 100vh;
		overflow: hidden;
	}
	
	#top01 .top_mv img {
		display: block;
		position: relative;
		width: 100%;
		height: 100vh;
		object-fit: cover;
	}
	
	/*私たちの思い*/
	#top02 {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		position: relative;
		width: 100%;
		height: auto;
		margin: 100px auto 80px auto;
	}
	
	#top02 .img {
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 60%;
		height: auto;
	}
	
	#top02 .img img {
		display: block;
		position: relative;
		width: 50%;
		height: 500px;
		object-fit: cover;
		object-position: top;
	}
	
	#top02 .text {
		position: relative;
		width: 25%;
		height: auto;
		margin: 0 10% 0 5%;
	}
	
	#top02 .text p {
		margin: 90px auto 60px auto;
		text-align: center;
	}
	
	#top02 .text a {
		width: 360px;
		margin: 0 auto 0 auto;
	}
	
	#top03 {
		position: relative;
		width: 100%;
		height: auto;
		padding: 100px 0 100px 0;
		background: #FCE8F8;
	}
	
	#top03 .text {
		position: relative;
		width: 400px;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#top03 .text::before {
		content: "";
		position: absolute;
		top: 60%;
		left: -130px;
		transform: translateY(-50%) translateX(0);
		width: 110px;
		height: 150px;
		background-image: url(images/top03_icon.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	#top03 .text h2 {
		font-size: 56px;
		font-weight: normal;
		letter-spacing: 2px;
		line-height: 76px;
		text-align: center;
	}
	
	#top03 .text a {
		width: 360px;
		margin: 30px auto 0 auto;
	}
	
	/*事業紹介*/
	#top04 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 180px auto 100px auto;
		padding: 100px 0 100px 0;
	}
	
	#top04 .text {
		position: relative;
		width: 400px;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#top04 .text p {
		margin: 90px auto 60px auto;
		text-align: center;
	}
	
	#top04 .text a {
		width: 360px;
		margin: 0 auto 0 auto;
	}
	
	#top04 .img01 {
		position: absolute;
		top: 0;
		left: 0;
		width: 30%;
		min-width: 400px;
		height: auto;
	}
	
	#top04 .img02 {
		position: absolute;
		top: 0;
		right: 0;
		width: 30%;
		min-width: 400px;
		height: auto;
	}
	
	#top04 .img01 img,#top04 .img02 img {
		display: block;
		position: relative;
		width: 100%;
		height: auto;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*共通*/
	.top_h2 {
		position: relative;
		font-size: 28px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 28px;
		text-align: center;
		color: #C5293F;
	}
	
	.top_h2::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 120px;
		height: 120px;
		border: solid 1px #C5293F;
		border-radius: 200px;
	}
	
	.top_h2 font {
		display: block;
		position: relative;
		margin-top: 4px;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 16px;
	}
	
	.top_btn {
		display: block;
		position: relative;
		height: auto;
		padding: 14px 0 14px 0;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: center;
		color: #fff;
		background: #C5293F;
		border: solid 1px #C5293F;
		border-radius: 100px;
		box-sizing: border-box;
	}
	
	.top_btn::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 30px;
		transform: translateY(-50%) translateX(0);
		width:0;
		height:0;
		border-style: solid;
		border-width: 7px 0 7px 12.1px;
		border-color: transparent transparent transparent #FFFFFF;
	}
	
	/*メニュー*/
	nav#top_menu {
		z-index: 1;
		position: absolute;
		top: 30px;
		left: 20px;
		width: 200px;
		height: auto;
	}
	
	nav#top_menu ul {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	nav#top_menu ul img {
		display: block;
		position: relative;
		width: 140px;
		height: auto;
		margin: 0 auto 30px 0;
	}
	
	nav#top_menu ul li {
		list-style: none;
	}
	
	nav#top_menu ul li a {
		display: block;
		position: relative;
		margin-bottom: 20px;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
		color: #fff;
	}
	
	/*メインビジュアル*/
	#top01 {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#top01 .top_mv {
		position: relative;
		width: 100%;
		height: 100vh;
		overflow: hidden;
	}
	
	#top01 .top_mv img {
		display: block;
		position: relative;
		width: 100%;
		height: 100vh;
		object-fit: cover;
	}
	
	/*私たちの思い*/
	#top02 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 50px auto 40px auto;
	}
	
	#top02 .img {
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#top02 .img img {
		display: block;
		position: relative;
		width: 50%;
		height: 260px;
		object-fit: cover;
		object-position: top;
	}
	
	#top02 .text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 80px auto 0 auto;
	}
	
	#top02 .text p {
		margin: 60px auto 30px auto;
		text-align: center;
	}
	
	#top02 .text a {
		width: 280px;
		margin: 0 auto 0 auto;
	}
	
	#top03 {
		position: relative;
		width: 100%;
		height: auto;
		padding: 50px 0 50px 0;
		background: #FCE8F8;
	}
	
	#top03 .text {
		position: relative;
		width: 300px;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#top03 .text::before {
		content: "";
		position: absolute;
		top: 30%;
		left: -20px;
		transform: translateY(-50%) translateX(0);
		width: 60px;
		height: 80px;
		background-image: url(images/top03_icon.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	#top03 .text h2 {
		font-size: 28px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 38px;
		text-align: center;
	}
	
	#top03 .text a {
		width: 280px;
		margin: 30px auto 0 auto;
	}
	
	/*事業紹介*/
	#top04 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 60px auto 50px auto;
	}
	
	#top04 .text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 80px auto 40px auto;
	}
	
	#top04 .text p {
		margin: 60px auto 30px auto;
		text-align: center;
	}
	
	#top04 .text a {
		width: 280px;
		margin: 0 auto 0 auto;
	}
	
	#top04 .img01 {
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 90%;
		height: auto;
		margin: 0 auto 0 0;
	}
	
	#top04 .img02 {
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 90%;
		height: auto;
		margin: 0 0 0 auto;
	}
	
	#top04 .img01 img,#top04 .img02 img {
		display: block;
		position: relative;
		width: 50%;
		height: auto;
	}
	

}

/*固定ページ*/
/*メインビジュアル*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*メインビジュアル*/
	#mv {
		position: relative;
		width: 100%;
		height: auto;
		padding: 300px 0 140px 0;
	}
	
	#mv h1 {
		position: relative;
		font-size: 50px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 50px;
		text-align: center;
		color: #C5293F;
	}
	
	#mv h1::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 210px;
		height: 210px;
		border: solid 1px #C5293F;
		border-radius: 200px;
	}
	
	#mv h1 font {
		display: block;
		position: relative;
		margin-top: 5px;
		font-size: 20px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 20px;
	}
	
	.wave {
		z-index: -1;
		position: absolute;
		top: -30px;
		left: -50px;
		width: 45%;
		height: 500px;
		background-size: 90% 90%;
		background-repeat: no-repeat;
	}
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*メインビジュアル*/
	#mv {
		position: relative;
		width: 100%;
		height: auto;
		padding: 120px 0 90px 0;
	}
	
	#mv h1 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 24px;
		text-align: center;
		color: #C5293F;
	}
	
	#mv h1::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 140px;
		height: 140px;
		border: solid 1px #C5293F;
		border-radius: 200px;
	}
	
	#mv h1 font {
		display: block;
		position: relative;
		margin-top: 4px;
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 0.5px;
		line-height: 14px;
	}
	
	.wave {
		z-index: -1;
		position: absolute;
		top: -30px;
		left: -50px;
		width: 55%;
		height: 220px;
		background-size: 88% 90%;
		background-repeat: no-repeat;
	}

}

/*私たちの思い*/
/*PC*/
@media only screen and (min-width: 1025px) {	
	/*私たちの思い*/
	.cc_mv .wave {
		background-image: url('images/mv_concept.png');
	}
	
	#cc {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 80px 0;
	}
	
	#cc .con {
		position: relative;
		width: 700px;
		height: auto;
		margin: 0 auto 70px auto;
	}
	
	#cc .con h2 {
		font-size: 36px;
		font-weight: normal;
		letter-spacing: 2px;
		line-height: 36px;
		text-align: center;
	}
	
	#cc .con h2 font {
		color: #D4145A;
	}
	
	#cc .con h2 span {
		display: block;
		position: relative;
		margin-bottom: 10px;
		font-size: 30px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 30px;
	}
	
	#cc .con p {
		margin: 60px auto 20px auto;
		text-align: center;
	}
	
	#cc .con iframe {
		display: block;
		position: relative;
		width: 100%;
		height: 400px;
		margin: 0 auto;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*私たちの思い*/
	.cc_mv .wave {
		background-image: url('images/mv_concept.png');
	}
	
	#cc {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 40px 0;
	}
	
	#cc .con {
		position: relative;
		width: 90%;
		height: auto;
		margin: 0 auto 40px auto;
	}
	
	#cc .con h2 {
		font-size: 18px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 18px;
		text-align: center;
	}
	
	#cc .con h2 font {
		color: #D4145A;
	}
	
	#cc .con h2 span {
		display: block;
		position: relative;
		margin-bottom: 5px;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 16px;
	}
	
	#cc .con p {
		margin: 30px auto 15px auto;
		font-size: 12px;
		line-height: 12px;
		text-align: center;
	}
	
	#cc .con iframe {
		display: block;
		position: relative;
		width: 100%;
		max-width: 450px;
		height: 240px;
		margin: 0 auto;
	}
	

}

/*会社概要*/
/*PC*/
@media only screen and (min-width: 1025px) {	
	/*会社概要*/
	.of_mv .wave {
		background-image: url('images/mv_office.png');
	}
	
	#of {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 80px 0;
	}
	
	#of .con {
		position: relative;
		width: 800px;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#of .con table {
		position: relative;
		width: 100%;
		height: auto;
		border-collapse: collapse;
	}
	
	#of .con table tr {
		border-top: solid 1px #BDBDBD;
		border-bottom: solid 1px #BDBDBD;
	}
	
	#of .con table tr th {
		width: 300px;
		padding: 20px 0 20px 0;
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: center;
		box-sizing: border-box;
	}
	
	#of .con table tr td {
		width: 500px;
		padding: 20px 0 20px 0;
		font-size: 18px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 28px;
		text-align: left;
		box-sizing: border-box;
	}
	
	#of .con table tr td iframe {
		display: block;
		position: relative;
		width: 100%;
		height: 300px;
		margin: 15px auto 0 auto;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {	
	/*会社概要*/
	.of_mv .wave {
		background-image: url('images/mv_office.png');
	}
	
	#of {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 40px 0;
	}
	
	#of .con {
		position: relative;
		width: 90%;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#of .con table {
		position: relative;
		width: 100%;
		height: auto;
		border-collapse: collapse;
	}
	
	#of .con table tr th {
		display: block;
		position: relative;
		width: 100%;
		padding: 15px 0 10px 15px;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
		box-sizing: border-box;
	}
	
	#of .con table tr td {
		display: block;
		position: relative;
		width: 100%;
		padding: 5px 15px 15px 15px;
		font-size: 15px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: left;
		box-sizing: border-box;
		border-bottom: solid 1px #BDBDBD;
	}
	
	#of .con table tr td iframe {
		display: block;
		position: relative;
		width: 100%;
		height: 220px;
		margin: 10px auto 0 auto;
	}
	

}

/*事業紹介*/
/*PC*/
@media only screen and (min-width: 1025px) {	
	/*事業紹介*/
	.ab_mv .wave {
		background-image: url('images/mv_about.png');
	}
	
	#ab {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 100px 0;
	}
	
	.ab01 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		width: 80%;
		min-width: 1040px;
		height: auto;
		margin: 0 auto 200px auto;
	}
	
	.ab01 .con {
		position: relative;
		width: 31%;
		height: auto;
		background: #F8F8E5;
		box-shadow: 2px 3px 5px #DEDEDE;
	}
	
	.ab01 .con img {
		display: block;
		position: relative;
		width: 100%;
		height: 200px;
		object-fit: cover;
		object-position: center;
	}
	
	.ab01 .con .text {
		position: relative;
		width: 100%;
		height: auto;
		padding: 30px 20px 25px 20px;
		box-sizing: border-box;
	}
	
	.ab01 .con .text h3 {
		font-size: 26px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 26px;
		color: #D6003A;
		text-align: center;
	}
	
	.ab01 .con .text h3 span {
		display: block;
		position: relative;
		margin-bottom: 7px;
		font-size: 18px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 18px;
		color: #000;
	}
	
	.ab01 .con .text p {
		margin: 25px auto 25px auto;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 24px;
		text-align: left;
	}
	
	.ab01 .con .text a {
		display: block;
		position: relative;
		width: 280px;
		height: auto;
		margin: 0 auto 0 auto;
		padding: 15px 0 15px 0;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: center;
		color: #fff;
		background: #C5293F;
		border: solid 2px #C5293F;
		border-radius: 100px;
		box-sizing: border-box;
		transition: 0.4s;
	}
	
	.ab01 .con .text a:hover {
		color: #C5293F;
		background: #fff;
		border: solid 2px #C5293F;
	}
	
	.ab02 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	.ab02 h2 {
		position: relative;
		font-size: 30px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 40px;
		text-align: center;
		color: #C5293F;
	}
	
	.ab02 h2::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 190px;
		height: 190px;
		border: solid 1px #C5293F;
		border-radius: 200px;
	}
	
	.ab02 p {
		margin: 90px auto 50px auto;
		text-align: center;
	}
	
	.ab02 .con {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		width: 1080px;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	.ab02 .con a {
		display: block;
		position: relative;
		width: 48%;
		height: auto;
		background: #fff;
		box-shadow: 2px 3px 5px #DEDEDE;
		transition: 0.4s;
	}
	
	.ab02 .con a img {
		display: block;
		position: relative;
		width: 70%;
		height: 170px;
		margin: 0 auto;
		object-fit: cover;
		object-position: center;
	}
	
	.ab02 .con a:hover {
		opacity: 0.5;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {	
	/*事業紹介*/
	.ab_mv .wave {
		background-image: url('images/mv_about.png');
	}
	
	#ab {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 50px 0;
	}
	
	.ab01 {
		position: relative;
		width: 84%;
		max-width: 440px;
		height: auto;
		margin: 0 auto 100px auto;
	}
	
	.ab01 .con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
		background: #F8F8E5;
		box-shadow: 2px 3px 5px #DEDEDE;
	}
	
	.ab01 .con img {
		display: block;
		position: relative;
		width: 100%;
		height: 180px;
		object-fit: cover;
		object-position: center;
	}
	
	.ab01 .con .text {
		position: relative;
		width: 100%;
		height: auto;
		padding: 20px 18px 20px 18px;
		box-sizing: border-box;
	}
	
	.ab01 .con .text h3 {
		font-size: 24px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 24px;
		color: #D6003A;
		text-align: center;
	}
	
	.ab01 .con .text h3 span {
		display: block;
		position: relative;
		margin-bottom: 3px;
		font-size: 18px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 18px;
		color: #000;
	}
	
	.ab01 .con .text p {
		margin: 15px auto 15px auto;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 22px;
		text-align: left;
	}
	
	.ab01 .con .text a {
		display: block;
		position: relative;
		width: 280px;
		height: auto;
		margin: 0 auto 0 auto;
		padding: 12px 0 12px 0;
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: center;
		color: #fff;
		background: #C5293F;
		border: solid 1px #C5293F;
		border-radius: 100px;
		box-sizing: border-box;
	}
	
	.ab02 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	.ab02 h2 {
		position: relative;
		font-size: 18px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 28px;
		text-align: center;
		color: #C5293F;
	}
	
	.ab02 h2::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 120px;
		height: 120px;
		border: solid 1px #C5293F;
		border-radius: 200px;
	}
	
	.ab02 p {
		margin: 60px auto 30px auto;
		text-align: center;
	}
	
	.ab02 .con {
		position: relative;
		width: 92%;
		max-width: 400px;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	.ab02 .con a {
		display: block;
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 20px auto;
		background: #fff;
		box-shadow: 2px 3px 5px #DEDEDE;
	}
	
	.ab02 .con a img {
		display: block;
		position: relative;
		width: 80%;
		height: 120px;
		margin: 0 auto;
		object-fit: cover;
		object-position: center;
	}
	

}

/*個人情報保護方針*/
/*PC*/
@media only screen and (min-width: 1025px) {	
	/*個人情報保護方針*/
	.pri_mv .wave {
		background-image: url('images/mv_office.png');
	}
	
	#pri {
		position: relative;
		width: 1000px;
		height: auto;
		margin: 0 auto 100px auto;
	}
	
	#pri .text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
	}
	
	#pri .text h2 {
		margin-bottom: 10px;
		font-size: 22px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 22px;
		text-align: left;
	}
	
	#pri .text p a {
		color: #211815;
	}
	
	#pri .text p a:hover {
		text-decoration: underline;
	}
	
	#pri .text p font {
		display: block;
		position: relative;
		margin-top: 100px;
		text-align: right;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*個人情報保護方針*/
	.pri_mv .wave {
		background-image: url('images/mv_office.png');
	}
	
	#pri {
		position: relative;
		width: 94%;
		max-width: 600px;
		height: auto;
		margin: 0 auto 50px auto;
	}
	
	#pri .text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 30px auto;
	}
	
	#pri .text h2 {
		margin-bottom: 10px;
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: left;
	}
	
	#pri .text p a {
		color: #211815;
		text-decoration: underline;
	}
	
	#pri .text p font {
		display: block;
		position: relative;
		margin-top: 60px;
		text-align: right;
	}
	
}

/*お問い合わせ*/
/*PC*/
@media only screen and (min-width: 1025px) {	
	/*お問い合わせ*/
	.cf_mv .wave {
		background-image: url('images/mv_office.png');
	}
	
	#cf {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 80px 0;
	}
	
	.cf7 {
		position: relative;
		width: 1000px;
		height: auto;
		margin: 0 auto;
	}
	
	.cf7 table {
		position: relative;
		width: 100%;
		height: auto;
		border-collapse: collapse;
	}
	
	.cf7 table tr {
		border-top: solid 1px #BDBDBD;
		border-bottom: solid 1px #BDBDBD;
	}
	
	.cf7 table tr th {
		width: 300px;
		padding: 20px 0 20px 40px;
		box-sizing: border-box;
	}
	
	.cf7 table tr th p {
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
	}
	
	.cf7 table tr th p span {
		position: relative;
		margin-left: 20px;
		padding: 8px 10px;
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 14px;
		color: #fff;
		background: #C5293F;
	}
	
	.cf7 table tr td {
		width: 700px;
		padding: 20px 40px 20px 0;
		box-sizing: border-box;
	}
	
	.cf7 table tr td p {
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 26px;
		text-align: left;
	}
	
	/*入力欄*/
	input[name="cf_companyname"],
	input[name="cf_name01_01"],
	input[name="cf_name01_02"],
	input[name="cf_name02_01"],
	input[name="cf_name02_02"],
	input[name="zip"],
	input[name="pref"],
	input[name="city"],
	input[name="addr"],
	input[name="cf_tel"],
	input[name="cf_email"],
	textarea[name="cf_content"] {
		padding: 15px 20px;
		font-size: 16px;
		font-weight: normal;
		line-height: 16px;
		color: #211815;
		background: #fff;
		border: solid 1px #807571;
		border-radius: 0!important;
		box-sizing: border-box;
	}
	
	input[name="cf_companyname"],
	input[name="pref"],
	input[name="city"],
	input[name="addr"],
	input[name="cf_tel"],
	input[name="cf_email"] {
		width: 100%;
	}
	
	input[name="cf_name01_01"],
	input[name="cf_name01_02"],
	input[name="cf_name02_01"],
	input[name="cf_name02_02"] {
		width: 40%;
	}
	
	input[name="cf_name01_01"],
	input[name="cf_name02_01"] {
		margin-right: 20px;
	}
	
	input[name="zip"] {
		width: 30%;
	}
	
	input[name="zip"],
	input[name="pref"],
	input[name="city"] {
		margin-bottom: 10px;
	}
	
	textarea[name="cf_content"] {
		width: 100%;
		height: 220px;
	}
	
	/*プレイスホルダー*/
	::placeholder {
		color: #A7A7A7;
	}
	
	/*承認ボタン*/
	.accept_btn {
		margin: 40px auto 40px auto;
	}
	
	.accept_btn p {
		font-size: 16px;
		font-weight: normal;
		line-height: 16px;
		text-align: center;
	}
	
	.accept_btn a {
		color: #C5293F;
		text-decoration: underline;
	}
	
	/*送信ボタン*/
	.submit_btn {
		display: block;
		position: relative;
		width: 340px;
		height: auto;
		padding: 18px 0;
		margin: 0 auto 0 auto;
		font-size: 16px;
		font-weight: 600;
		font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
		line-height: 16px;
		text-align: center;
		color: #fff;
		background: #C5293F;
		border: solid 2px #C5293F;
		border-radius: 0;
		transition: 0.4s;
	}
	
	.submit_btn:hover {
		color: #C5293F;
		background: #fff;
		border: solid 2px #C5293F;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*お問い合わせ*/
	.cf_mv .wave {
		background-image: url('images/mv_office.png');
	}
	
	#cf {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 40px 0;
	}
	
	.cf7 {
		position: relative;
		width: 94%;
		max-width: 600px;
		height: auto;
		margin: 0 auto;
	}
	
	.cf7 table {
		position: relative;
		width: 100%;
		height: auto;
		border-collapse: collapse;
	}
	
	.cf7 table tr {
		border-top: solid 1px #BDBDBD;
		border-bottom: solid 1px #BDBDBD;
	}
	
	.cf7 table tr th {
		display: block;
		position: relative;
		width: 100%;
		padding: 20px 0 15px 15px;
		box-sizing: border-box;
	}
	
	.cf7 table tr th p {
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
	}
	
	.cf7 table tr th p span {
		position: relative;
		margin-left: 10px;
		padding: 4px 8px;
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 14px;
		color: #fff;
		background: #C5293F;
	}
	
	.cf7 table tr td {
		display: block;
		position: relative;
		width: 100%;
		padding: 0 15px 20px 15px;
		box-sizing: border-box;
	}
	
	.cf7 table tr td p {
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: left;
	}
	
	/*入力欄*/
	input[name="cf_companyname"],
	input[name="cf_name01_01"],
	input[name="cf_name01_02"],
	input[name="cf_name02_01"],
	input[name="cf_name02_02"],
	input[name="zip"],
	input[name="pref"],
	input[name="city"],
	input[name="addr"],
	input[name="cf_tel"],
	input[name="cf_email"],
	textarea[name="cf_content"] {
		padding: 8px 10px;
		font-size: 16px;
		font-weight: normal;
		line-height: 16px;
		color: #211815;
		background: #fff;
		border: solid 1px #807571;
		border-radius: 0!important;
		box-sizing: border-box;
	}
	
	input[name="cf_companyname"],
	input[name="pref"],
	input[name="city"],
	input[name="addr"],
	input[name="cf_tel"],
	input[name="cf_email"] {
		width: 100%;
	}
	
	input[name="cf_name01_01"],
	input[name="cf_name01_02"],
	input[name="cf_name02_01"],
	input[name="cf_name02_02"] {
		width: 45%;
	}
	
	input[name="cf_name01_01"],
	input[name="cf_name02_01"] {
		margin-right: 12px;
	}
	
	input[name="zip"] {
		width: 45%;
	}
	
	input[name="zip"],
	input[name="pref"],
	input[name="city"] {
		margin-bottom: 7px;
	}
	
	textarea[name="cf_content"] {
		width: 100%;
		height: 200px;
	}
	
	/*プレイスホルダー*/
	::placeholder {
		color: #A7A7A7;
	}
	
	/*承認ボタン*/
	.accept_btn {
		margin: 20px auto 20px auto;
	}
	
	.accept_btn p {
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 0.5px;
		line-height: 20px;
		text-align: center;
	}
	
	.accept_btn a {
		color: #C5293F;
		text-decoration: underline;
	}
	
	/*送信ボタン*/
	.submit_btn {
		display: block;
		position: relative;
		width: 300px;
		height: auto;
		padding: 14px 0;
		margin: 0 auto 0 auto;
		font-size: 16px;
		font-weight: 600;
		font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
		line-height: 16px;
		text-align: center;
		color: #fff;
		background: #C5293F;
		border: solid 1px #C5293F;
		border-radius: 0;
	}
	
	
}

/*お問い合わせ サンクスページ*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*お問い合わせ サンクスページ*/
	#thanks .wave {
		background-image: url('images/mv_office.png');
	}
	
	#thanks {
		position: relative;
		width: 100%;
		height: auto;
		padding: 200px 0 100px 0;
	}
	
	#thanks h2 {
		font-size: 40px;
		font-weight: 600;
		letter-spacing: 4px;
		line-height: 40px;
		text-align: center;
		color: #C5293F;
	}
	
	#thanks p {
		margin: 80px auto 60px auto;
		text-align: center;
	}
	
	#thanks a {
		width: 340px;
		margin: 0 auto;
	}
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*お問い合わせ サンクスページ*/
	#thanks .wave {
		background-image: url('images/mv_office.png');
	}
	
	#thanks {
		position: relative;
		width: 100%;
		height: auto;
		padding: 100px 0 60px 0;
	}
	
	#thanks h2 {
		font-size: 26px;
		font-weight: 600;
		letter-spacing: 2px;
		line-height: 26px;
		text-align: center;
		color: #C5293F;
	}
	
	#thanks p {
		width: 90%;
		margin: 40px auto 30px auto;
		text-align: left;
	}
	
	#thanks a {
		width: 280px;
		margin: 0 auto;
	}
}

/*CF7設定*/
/*送信後メッセージ削除*/
div.wpcf7 .ajax-loader {
    display: none !important;
}

.wpcf7-mail-sent-ok{
    display:none!important;
}

.wpcf7 form.sent .wpcf7-response-output {
	margin: 0;
	padding: 0;
	border: 0px solid rgba(255,255,255,0.00);
	color: rgba(255,255,255,0.00);
}

/* 確認画面のフィールド背景色や枠線を消す */
input.wpcf7c-conf, textarea.wpcf7c-conf, select.wpcf7c-conf {
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.00);
}

.wpcf7-text:-webkit-autofill {
  box-shadow: 0 0 0 1000px #FFF inset;
}

.wpcf7-select:-webkit-autofill {
  box-shadow: 0 0 0 1000px #FFF inset;
}

.wpcf7.is_confirm input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #FFF inset;
}

.wpcf7.is_confirm select:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #FFF inset;
}