﻿@charset "utf-8";

/* -----------------------------------------------------------
	common
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&display=swap');
@import url('https://use.fontawesome.com/releases/v7.1.0/css/all.css');

body {
	color: var(--color-black-01);
	font-family: var(--font-family-01);
	letter-spacing: 1px;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
	min-height: 100vh;
	overflow-x: hidden;
	background: var(--color-main-bg);
}
@media (max-width: 767px) {
	body {
		background: var(--color-white);
	}
}

a {
	color: var(--color-link-text);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	text-decoration: none;
	transition: opacity 0.3s ease; /* アニメーションを加える */
}

input:focus, select:focus, textarea:focus {outline: none;}

hr {
	border-width: 1px 0px 0px 0px;
	border-style: dotted;
	border-color: var(--color-gray-02);
	height: 1px;
	margin: 30px 0px;
	border-bottom: 1px dotted var(--color-gray-07);
}

.markerLine {
	background: linear-gradient(transparent 60%, #fefa7f 60%);
}

.mt5 {margin-top: 5px!important;}
.mt10 {margin-top: 10px!important;}
.mt15 {margin-top: 15px!important;}
.mt20 {margin-top: 20px!important;}
.mt30 {margin-top: 30px!important;}
.mt50 {margin-top: 50px!important;}
.mb5 {margin-bottom: 5px!important;}
.mb10 {margin-bottom: 10px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb30 {margin-bottom: 30px!important;}
.mb50 {margin-bottom: 50px!important;}
.ml10 {margin-left: 10px!important;}
.ml20 {margin-left: 20px!important;}
.mr10 {margin-right: 10px!important;}
.mr20 {margin-right: 20px!important;}
.mtb10 {margin: 10px 0!important;}
.mtb50 {margin: 50px 0!important;}
.text_center {text-align: center!important;}
.box_center {margin: 10px auto!important;}

:root {
	--color-white: #fff;
	--color-main-bg: #fff;
	--color-main-01: #e85719;
	--color-main-02: #ee8051;
	--color-main-03: #ffe6dc;
	--color-main-04: #fff6f2;
	--color-yellow-01: #fffbba;
	--color-yellow-02: #fefa7f;
	--color-yellow-03: #ffffe0;
	--color-blue-01: #6495ed;
	--color-orange-01: #ff8c00;
	--color-black-01: #222222;
	--color-black-02: #333333;
	--color-black-03: #515556;
	--color-gray-01: #ccc;
	--color-gray-02: #bfbfbf;
	--color-gray-03: #f8f8f8;
	--color-gray-04: #ececec;
	--color-gray-05: #f4f4f4;
	--color-gray-06: #dbdbdb;
	--color-gray-07: #9d9d9d;
	--color-link-text: #317dee;
	--color-link-hover: #1a5cbd;
	--color-btn-01: #f5981b;
	--color-btn-02: #e85719;
	--color-red-01: #ff0000;
	--color-red-02: #ec3636;
	--font-family-01: 'Noto Sans JP', sans-serif;
	--font-weight-01: 600;
	--title-01: 2.0rem;
	--title-02: 1.2rem;
	--title-03: 1.0rem;
	--title-04: 1.5rem;
}

.pc_br {
	display: block;
}
.sp_br {
	display: none;/*PCでは1行スマホでは改行*/
}
@media screen and (max-width:767px) {
	.pc_br {
		display: none;
	}
	.sp_br {
		display: block;
	}
}

.textIndent {
	margin: 10px 0;
}

.textIndent li {
	margin-top: 5px;
	padding-left: 1em;
	text-indent: -1em;
}

/* -----------------------------------------------------------
	wrap
----------------------------------------------------------- */

.wrap {
	width: 1200px;
	margin: 50px auto;
}

.wrap p {
	margin: 20px 0 0;
}


@media screen and (max-width: 559px) {
	.wrap {
		width: 100%;
		padding: 0 20px;
	}
}

/* -----------------------------------------------------------
	conts
----------------------------------------------------------- */

.logo {
	width: 200px;
	margin: 0 auto;
}

.imgCenter {
	width: 50%;
	margin: 0 auto;
}

@media screen and (max-width: 559px) {
	.imgCenter {
		width: 100%;
	}
}

.img_container {
	display: grid;
	grid-template-columns: 1fr 600px;
	gap: 50px;
}

@media (max-width: 767px) {
	.img_container {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------------------------------------
	ttl
----------------------------------------------------------- */

h1.ttl01 {
	font-size: 1.3rem;
	margin: 0rem 0;
	text-align: center;
}

h2.ttl02 {
	position: relative;
	font-size: 1.4rem;
	margin: 1rem 0 3rem;
	text-align: center;
}
h2.ttl02:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 200px;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333;
}

.ttl03 {
	font-size: 1.3rem;
	font-weight: 600;
	text-align: center;
}

@media (max-width: 767px) {
	h2.ttl02 {
		font-size: 1.1rem;
	}
	.ttl03 {
		font-size: 1.1rem;
		font-weight: 500;
		text-align: left;
	}
}

/* -----------------------------------------------------------
	pageTop
----------------------------------------------------------- */

#scrollUp {
	bottom: 40px;
	right: 40px;
	background-image: url("img/common/pagetop.png");
	width: 50px;
	height: 50px;
}
#scrollUp:hover {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0.7;
}

/* -----------------------------------------------------------
	companyList
----------------------------------------------------------- */

.companyList li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #ccc;
	padding: 20px 10px;
}
.companyList li .head {
	min-width: 15%;
	max-width: 15%;
}

@media only screen and (max-width:559px) {
	.companyList li {
		flex-flow: column;
	}
	.companyList li .head {
		max-width: 100%;
	}
}

/* -----------------------------------------------------------
	footer
----------------------------------------------------------- */

#footer {
	color: #fff;
	padding: 60px 0px 40px;
	border-top: 1px solid #2f2f2f;
	background: #2f2f2f;
	background-image: url(../img/common/footer_dot.png);
	background-repeat: repeat;
	background-blend-mode: overlay;
	background-size: auto;
}
#footerInner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	width: 1200px;
	margin: 0px auto;
	padding: 0px 20px;
}
.footerLogo {
	margin-bottom: 10px;
}
.footerInfo li {
	line-height: 1.9;
}
.footerInfo li a {
	color: #fff;
}
.footerLink {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
}
.footerLink li a {
	position: relative;
	color: #fff;
	line-height: 1.9;
	opacity: 0.6;
	margin-left: 3em;
	padding-left: 1.5em;
}
.footerLink li a:hover {
	opacity: 1;
}
.footerLink li a:before {
	font-family: FontAwesome;
	content: "\f138 ";/*アイコンのユニコード*/
	position: absolute;
	font-size: 1em;
	left: 0;
	top: -3px;
}
.copyright {
	width: 100%;
	font-size: 0.8rem;
	text-align: center;
	margin-top: 3rem;
}

@media screen and (max-width: 559px) {
	#footerInner, .footerLink {
		display: flex;
		flex-flow: column;
		justify-content: flex-start;
		width: 100%;
		text-align: left;
	}
	.footerInfo, .footerLink {
		margin-bottom: 30px;
	}
	.footerLink li a {
		margin-left: 0em;
	}
	.footerLogo {
		width: 218px;
		height: 40px;
	}
	.copyright {
		text-align: center;
	}
}
