@charset "utf-8";
/*==================================================
	【トップ】ページ固有のスタイル
==================================================*/
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
#load {
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	text-align: center;
	font-size: 50px;
	z-index: 9999;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
}
#load img {
	width: 300px;
}
#top_ttl img {
	width: 100%;
}
/* お知らせ */
#info {
	min-height: 70px;
	box-sizing: border-box;
}
#info h3.info {
	width: 115px;
	position: relative;
	font-size : 25px;
	line-height : 58.11px;
	font-family: var(--font-yuji);
	font-weight: 500;
	text-align: center;
	height: 70px;
	margin-bottom: 0;
	padding-left: 15px;
}
#info h3.info::after {
	display: block;
	width: 2px;
	height: 70px;
	background: var(--color-primary);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
}
#info h3.info span {
	position: relative;
	top: 5px;
}
#info .info_flex {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
#info .info_box {
	padding: 22px 0;
	width: calc(100% - 115px);
}
#info dl {
	display: flex;
	margin-left: 2em;
	font-size : 105%;
	letter-spacing : 0.38px;
}
#info dt {
	margin-right: 2em;
}
.bg_main::before {
	background: url("../img/main-bg.jpg") repeat center/100%;
}
#about .about_box::before {
	background: url("../img/top/bg01.png") no-repeat top 30px right 30px/302px 302px,url("../img/main-bg.jpg") repeat center/100%;
}
#about .about_box .txt {
	font-size : 105%;
	line-height : 35px;
	letter-spacing : 0.38px;
}
#service .service_box {
	justify-content: center;
	column-gap: 50px;
}
#service .service_box .box {
	width: 420px;
	position: relative;
}
#service .service_box .box .img_box .txt_img {
	position: absolute;
	top: -20px;
	right: 10px;
}
#service .service_box .box .img_box .txt_img img {
	width: 87px;
}
#service .service_box .box .txt_box li {
	font-size : 22px;
	line-height : 34px;
	position: relative;
	padding-left: 1em;
}
#service .service_box .box .txt_box li::before {
	content: "\025c6";
	color: var(--color-primary);
	font-size: 50%;
	position: absolute;
	top: 2px;
	left: 0;
}
#company .company_box .box {
	width: 48%;
}
#company .company_box .box dl {
	font-size : 110%;
	line-height : 34px;
	display: flex;
}
#company .company_box .box dt {
	width: 100px;
	background: #fff;
	margin-right: 1em;
	padding: 0 10px;
	box-sizing: border-box;
}
#company .company_box .box .enkaku {
	margin-top: 30px;
}
#company .company_box .box .enkaku h4.enkaku {
	line-height : 34px;
	background: #f2f2f2;
	padding: 0 10px;
	margin-bottom: 25px;
}
#contact .txt {
	font-size : 110%;
	line-height : 34px;
}
#mailform {
	background: #fff;
	padding: 100px;
}
#mailform .tbl {
	margin: 2em 0;
}
#mailform .tbl th {
	vertical-align: top;
	border-left: none;
	border-right: none;
	font-size : 16px;
	padding: 18px;
}
#mailform .tbl th .need {
	float: right;
	padding: 1px 10px;
	background: var(--color-primary);
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 13px;
}
#mailform .tbl td {
	border-left: none;
	border-right: none;
}
#mailform .btn {
	margin-top: 1.5em;
	/* フレックス */
	display: flex;
	justify-content: center;
}
#mailform .btn li+li {
	margin-left: 15px;
}
#mailform .btn input {
	width: 210px;
	height: 54px;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 30px;
	color: #FFFFFF;
	font-size: 17px;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor: pointer;
}
#mailform .btn input:hover {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
#mailform .btn input[type="reset"] {
	background: #F4F4F4;
	border-color: #DDD;
	color: #666;
}
#mailform .tbl input[type="text"],
#mailform .tbl textarea {
	width: 86%;
	box-sizing: border-box;
	background: #f2f2f2;
	border: none;
	min-height: 40px;
}
#mailform .tbl textarea {
	display: block;
}
#mailform .tbl input.wno {
	width: 100px;
}
#privacy .box {
	background: #fafafa;
	padding: 20px;
	box-sizing: border-box;
	width: 700px;
	font-family: var(--font-mei);
	margin: 50px auto;
}
#privacy .box .ttl {
	font-size: 95%;
}
#privacy .box .txt {
	font-size: 85%;
	line-height : 23px;
}
#privacy .chk_box {
	display: block;
	text-align: center;
	font-size : 16px;
	line-height : 27px;
	margin-bottom: 50px;
}
#privacy .chk_box label,#privacy .chk_box input {
	cursor: pointer;
}

@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	/* お知らせ */
	#top_info dl {
		display: flex;
	}
	#top_info dt {
		width: 100px;
	}
	#top_info dd {
		width: calc(100% - 100px);
	}
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#info h3.info {
		font-size: 22px;
	}
	#about .about_box::before {
		background: url(../img/top/bg01.png) no-repeat top 30px right 30px / 250px 250px, url(../img/main-bg.jpg) repeat center / 100%;
	}
	#about .about_box .txt {
		font-size: 98%;
		line-height: 1.8em;
		letter-spacing: normal;
	}
	#service .service_box {
		column-gap: 20px;
	}
	#service .service_box .box {
		width: 48%;
	}
	#service .service_box .box .img_box .txt_img img {
		width: 60px;
	}
	#service .service_box .box .txt_box li {
		font-size: 110%;
		line-height: 1.8em;
	}
	#company .company_box .box {
		width: 100%;
	}
	#company .company_box .box dl {
		font-size: 98%;
		line-height: 1.8em;
	}
	#company .company_box .box dd {
		width: calc(100% - 100px);
	}
	#contact .txt {
		font-size: 98%;
		line-height: 1.8em;
	}
	#mailform {
		padding: 30px;
	}
	#mailform .tbl th {
		width: 40%;
		font-size: 98%;
	}
	#mailform .tbl input[type="text"],
	#mailform .tbl textarea {
		font-size: 120%;
		width: 100%;
	}
	#mailform .btn input {
		width: 120px;
	}
	#privacy .box {
		width: 100%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#load img {
		width: 250px;
	}
	#info h3.info {
		font-size: 125%;
		width: auto;
		line-height: 1.8em;
		height: auto;
	}
	#info h3.info::after {
		height: 40px;
	}
	#info .info_flex {
		flex-direction: column;
	}
	#info .info_box {
		width: 100%;
		padding: 15px 0;
	}
	#info dl {
		margin-left: 0;
		flex-direction: column;
		font-size: 98%;
		letter-spacing: normal;
	}
	#about .about_box::before {
		background: url(../img/top/bg01.png) no-repeat top 15px right 15px / 150px 150px, url(../img/main-bg.jpg) repeat center / 100%;
	}
	#service .service_box .box {
		width: 100%;
	}
	#service .service_box .box {
		width: 80%;
		margin-bottom: 50px;
	}
	#service .service_box .box:last-of-type {
		margin-bottom: 0;
	}
	#service .service_box .box .txt_box li::before {
		top: 0;
	}
	#company .company_box .box dl dd {
		padding-bottom: 15px;
	}
	#company .company_box .box dl dd.nm {
		padding-bottom: 0;
	}
	#mailform {
		padding: 15px;
	}
	#mailform .tbl th {
		width: 100%;
		padding-bottom: 0;
	}
	#mailform .tbl td {
		border-top: 0;
	}
	#privacy .chk_box {
		font-size: 98%;
	}
}
@media only screen and (max-width: 320px) {
	#service .service_box .box {
		width: 100%;
	}
	#contact .txt {
		font-size: 4vw;
	}
}