@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	transition: .4s;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 100px 0 130px;
	position: relative;
}
main section.stb {
	padding: 120px 0;
}
@media (max-width: 550px) {
	main section {
		padding: 60px 0 75px;
	}
	main section.stb {
		padding: 60px 0;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(255, 239, 135, 0.75);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 80px;
	display: block;
	text-align: center;
	line-height: 1.3;
	position: relative;
	font-weight: 700;
}
.maintitle .mf {
	text-align: center;
	font-size: clamp(2.2rem, 0.95rem + 4vw, 3.2rem);
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	color: #0a235e;
	text-transform: capitalize;
}
.maintitle:first-letter {
	color: #0474b4;
}
.maintitle .sf {
	font-size: 80%;
	color: #0a235e;
}
.maintitle.mtleft {
	text-align: left;
}
.maintitle.mtleft .sf {
	position: relative;
	padding-left: 50px;
}
.maintitle.mtleft .sf:before {
	background-color: #0a235e;
	position: absolute;
	content: "";
	top: 0.8em;
	left: 0;
	width: 38px;
	height: 1px;
}
.txtmgb {
	margin-bottom: 45px !important;
}
@media (max-width: 750px) {
	.maintitle.mtleft.spcenter .sf {
		padding-left: 0;
	}
	.maintitle.mtleft.spcenter .sf:before {
		content: none;
	}
}
@media (max-width: 550px) {
	.txtmgb {
		margin-bottom: 30px !important;
	}
	.maintitle.mtleft .sf {
		padding-left: 33px;
	}
	.maintitle.mtleft .sf::before {
		width: 23px;
	}
	.maintitle {
		margin-bottom: 40px;
	}
	.maintitle.mtleft {
		margin-bottom: 30px;
	}
	.maintitle {
		line-height: 1.05;
	}
	.maintitle .sf {
		font-size: 60%;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.3rem, 0.925rem + 1.2vw, 1.6rem);
	line-height: 1.7;
}
.mtitle span {
	font-size: 56%;
	position: relative;
	padding-left: 40px;
	color: #0474b4;
}
.mtitle span::before {
	background-color: #0474b4;
	position: absolute;
	content: "";
	top: 0.75em;
	left: 0;
	width: 29px;
	height: 1px;
}
@media (max-width: 750px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
/*見出し03*/
.stitle {
	font-weight: 500;
	position: relative;
	font-size: clamp(1.15rem, 0.8375rem + 1vw, 1.4rem);
	margin-bottom: 20px;
	padding-bottom: 8px;
	padding-left: 2px;
	color: #333;
	line-height: 1.7;
}
.stitle span {
	font-size: 76%;
	color: #4994e6;
	margin-right: 12px;
	font-weight: 700;
	text-transform: capitalize;
}
.bdb {
	position: relative;
}
.bdb::after {
	content: '';
	display: block;
	height: 1px;
	background: #4994e6;
	position: relative;
	top: 10px;
	opacity: 0;
	width: 0;
	transition: 1.8s;
	transition-delay: 1.2s;
}
.inview.bdb::after {
	width: 100%;
	opacity: 1;
}
.kbdb {
	font-size: clamp(1.05rem, 0.7375rem + 1vw, 1.3rem);
}
.kbdb::after {
	transition-delay: 0.3s;
}
@media (max-width: 1060px) {
	.stitle {
		line-height: 1.9;
	}
	.stitle span {
		font-size: 70%;
		display: block;
	}
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 15px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px;
	transition: .4s;
	display: inline-block;
	width: 250px;
	text-align: center;
	color: #fff;
	background: #0474b4;
	border: 1px solid #0474b4;
	z-index: 1;
	overflow: hidden;
	border-radius: 50px;
}
section .mainbtn a::before {
	position: absolute;
	top: 50%;
	right: 15px;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	transform: translate(0, -50%);
	font-size: .75em;
}
.mainbtn a:hover {
	color: #0474b4;
	background: #fff;
	transition: .4s;
}
@media (max-width: 450px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 220px;
		padding: 7px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 10px;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 1700px) {
	.inner02 {
		max-width: 1500px;
		width: 92%;
		margin: 0 auto;
	}
}
@media (max-width: 1699px) {
	.inner02 {
		max-width: 100%;
		width: 100%;
	}
	.mauto {
		margin-left: auto;
		margin-right: auto;
	}
	.mauto.w48 {
		width: 42%;
	}
	.mauto.w41 {
		width: 37%;
	}
}
@media (max-width: 750px) {
	.inner02 {
		width: 90%;
		margin: 0 auto;
	}
	.mauto.w48, .mauto.w41 {
		width: 100%;
	}
}
.w65 {
	width: 64.5%;
}
.w56 {
	width: 56%;
}
.w52 {
	width: 52%;
}
.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 47.5%;
}
.w44 {
	width: 44%;
}
.w38 {
	width: 38%;
}
.w32 {
	width: 31.5%;
}
/* 背景 */
.bg_blue::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #e8f4fc;
	z-index: -100;
}
/* 背景 */
.bg_blue, .yhalf, .thalf {
	position: relative;
}
.thalf::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	height: 0;
	background-color: #0474b4;
	z-index: -1;
	opacity: 0.1;
}
.thalf.rvs::before {
	left: auto;
	right: 0;
}
.inview.thalf:before {
	transition: 4.5s;
	height: 100%;
}
@media (max-width: 750px) {
	.thalf:before {
		width: 25%;
		left: auto;
		right: 0;
	}
	.thalf.rvs::before {
		right: auto;
		left: 0;
	}
}
/*=== 共通部分ここまで ===*/
/* header */
.change_color {
	background: #0474b4;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.4);
	transition: .5s;
}
.header_sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.header {
	padding: 13px 5px 15px;
	transition: all .5s;
	width: 100%;
	z-index: 100;
	position: relative;
}
.change_color .header {
	background: transparent;
}
.header_inner {
	width: 98%;
	max-width: 1700px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_title {
	filter: drop-shadow(0px 0.3px 1px rgb(0 0 0 / 20%)) drop-shadow(0px -0.3px 2px rgb(0 0 0 / 20%));
}
.header_logo {
	width: 320px;
	filter: brightness(0) invert(1);
}
.change_color .header_title {
	filter: none;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	margin-right: 30px;
	position: relative;
	line-height: 1.6;
}
.header ul li:last-child {
	margin-right: 0;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 3px 0;
	color: #fff;
	line-height: 1.55;
	font-size: 0.95rem;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 20%), 0px -0.3px 3px rgb(0 0 0 / 15%);
}
.change_color ul li a {
	text-shadow: none;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 110%;
	color: #fff;
	font-weight: 700;
}
.hnav {
	margin-left: auto;
	width: fit-content;
	margin-right: 15px;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 17px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 11rem;
	line-height: 1.55;
	padding: 6px;
	font-size: 0.75rem;
	border: 1px solid #fff;
	color: #fff;
	background: #0474b4;
}
.header_item .mainbtn a:hover {
	color: #0474b4;
	background: #fff;
	border: 1px solid #0474b4 !important;
}
.change_color .header_item .mainbtn a:hover {
	border: 1px solid #fff !important;
}
.telbtn a {
	color: #0474b4 !important;
	background: #fff !important;
	border: 1px solid #0474b4 !important;
	font-size: 0.85rem !important;
	padding: 3.75px 0 !important;
}
.telbtn a:hover {
	color: #fff !important;
	background: #0474b4 !important;
}
.tel a {
	color: #fff;
}
.change_color .tel a {
	text-shadow: none;
}
.tel {
	font-size: 1.63rem;
	line-height: 1.3;
	transition: .3s;
}
.tel:hover {
	opacity: 0.6;
	transition: .3s;
}
.tel i {
	font-size: 80%;
}
.header_item .mainbtn a:after {
	content: none;
}
.hamburger_menu {
	display: none;
}
.hum_tel {
	text-align: center;
	margin-bottom: 15px;
}
.hum_tel:last-child {
	margin-bottom: 0;
}
.hum_tel a {
	pointer-events: none;
	color: #0474b4;
}
.htm {
	font-size: 87%;
	pointer-events: none;
}
.hts {
	font-size: 1.35rem;
	pointer-events: auto;
	transition: .3s;
	padding-bottom: 3px;
	border-bottom: 1px solid #0474b4;
}
.hts:hover {
	opacity: 0.6;
	transition: .3s;
}
@media (max-width: 450px) {
	.hts {
		font-size: 1.15rem !important;
	}
}
.menut {
	color: #fff;
	font-weight: 700;
	font-size: 0.6rem;
	position: absolute;
	bottom: 3px;
	left: 50%;
	margin-left: 0.5px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.menu_btn {
	position: fixed;
	top: 19px;
	right: 16px;
	cursor: pointer;
	display: flex;
	height: 55px;
	width: 23px;
	justify-content: center;
	align-items: center;
	z-index: 110;
	opacity: 1;
	transition: .3s;
	filter: drop-shadow(0px 0.3px 1px rgb(0 0 0 / 20%)) drop-shadow(0px -0.3px 2px rgb(0 0 0 / 20%));
}
.change_color .menu_btn {
	filter: none;
}
#menu_btn_check:checked ~ .menu_btn .menut {
	opacity: 0;
	transition: .3s;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 33px;
	background: #fff;
	position: absolute;
	transition: all 0.4s;
}
.menu_btn span:before {
	bottom: 7px;
}
.menu_btn span:after {
	top: 7px;
}
#menu_btn_check:checked ~ .menu_btn {
	filter: none;
}
#menu_btn_check:checked ~ .menu_btn span {
	background-color: rgba(255, 255, 255, 0) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::before {
	bottom: 0;
	transform: rotate(45deg) !important;
	transition: all 0.4s;
	background: #333;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
	background: #333;
}
#menu_btn_check {
	display: none;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 80;
	overflow: auto;
}
.menu_content .menu_padding {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	max-width: 600px;
	width: 95%;
}
.menu_content nav {
	padding: 0 30px 40px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 3px 0;
	list-style: none;
	border-bottom: 1px dashed #0474b4;
	text-align: left;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 0.95rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 8px 5px;
	color: #0a235e;
	position: relative;
	line-height: 1.65;
}
.menu_content ul li a::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: bold;
	margin-right: 5px;
}
.menu_padding ul li a span {
	font-size: 95%;
	color: #0474b4;
	font-weight: 700;
}
.menu_content ul li a:hover {
	opacity: 0.6;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	transition: all 0.6s;
	pointer-events: none;
	opacity: 0;
	background: #fff;
	background-size: cover;
	background-position: 30% 50%;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 5px;
}
.menu_content .mainbtn:last-child {
	margin-bottom: 0;
}
.menu_content .mainbtn a:after {
	content: none;
}
.menu_content .mainbtn a {
	padding: 10px;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1360px) {
	.header_logo {
		width: 270px;
	}
	.header ul li a {
		font-size: 0.85rem;
	}
	.header ul li {
		margin-right: 23px;
	}
}
@media (max-width: 1165px) {
	.header {
		background: transparent;
		padding: 13px 17px;
	}
	.header_logo {
		width: 270px;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.header_inner {
		margin: 0;
	}
	.menu_btn {
		top: 2px;
		right: 30px;
	}
}
@media (max-width: 500px) {
	.header_title {
		width: 220px;
	}
	.header {
		padding: 12px;
		padding-left: 12px;
	}
	.menu_btn {
		top: -2px;
		right: 21px;
	}
	.menu_content .mainbtn a {
		padding: 6px !important;
		font-size: 0.87rem;
	}
	.menu_content ul li a {
		font-size: 0.85rem;
	}
}
@media (max-width: 315px) {
	.header_title {
		width: 44vw;
	}
	.menu_btn {
		top: -11px;
		right: 15px;
	}
	.menut {
		display: none;
	}
}
/* footer */
/* フッターお問い合わせリンク */
.footer_bg {
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: 24% 0%;
	background-attachment: fixed;
	overflow: hidden;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .footer_bg {
	background-attachment: scroll;
}
.footer_bg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.6;
	z-index: -1;
}
.footer_contact {
	padding: 45px 0 85px;
	text-align: center;
	color: #fff;
	position: relative;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 25px;
}
.footer_contact .maintitle:first-letter {
	color: #fff;
}
.footer_contact .maintitle span {
	color: #fff;
}
.footer_contact .btn_wrap {
	display: flex;
	justify-content: space-around;
	margin: 40px auto 0;
	max-width: 1050px;
}
.footer_contact .btn_wrap .btn {
	width: 32%;
	margin: 0 auto;
}
.footer_contact .btn_wrap .btn a {
	text-align: center;
	display: block;
	width: 100%;
	color: #fff;
	padding: 20px 5px;
	font-size: 1.1rem;
	white-space: nowrap;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background-color: #0474b4;
}
.fax {
	pointer-events: none;
}
.btn_wrap .fax a {
	background-color: #024c75 !important;
	border: 1px solid rgba(255, 255, 255, 0.6) !important;
}
.footer_contact .btn_wrap .btn a:hover {
	border: 1px solid rgba(255, 255, 255, 0.6);
	background-color: #fff;
	color: #0474b4;
}
.footer_contact p {
	text-align: center;
	margin-bottom: 45px;
	font-size: 115%;
	font-weight: 700;
}
@media (max-width: 950px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 0.93rem;
	}
}
@media (max-width: 750px) {
	.footer_bg {
		background-attachment: scroll;
	}
	.footer_contact p {
		font-size: 100%;
	}
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 100%;
		margin-bottom: 15px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 100%;
	}
	.footer_contact {
		padding: 40px 0 53px;
	}
	.footer_contact p {
		margin-bottom: 30px;
	}
	.footer_contact .btn_wrap .btn {
		margin-bottom: 7px;
	}
	.footer_contact .btn_wrap .btn a {
		padding: 15px 5px;
	}
	.footer_contact .btn_wrap {
		margin-top: 35px;
	}
	.footer_contact .maintitle {
		margin-bottom: 25px !important;
	}
}
/* ロゴとアドレス */
.footer_address_bg {
	position: relative;
	color: #fff;
}
.footer_address_bg::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.75;
	z-index: -1;
}
.footer_address_bg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	pointer-events: none;
	z-index: -1;
}
.footer_address .flexbox {
	max-width: 850px;
	margin: auto;
}
.footer_address {
	position: relative;
	text-align: center;
	padding: 35px 0;
	z-index: 1;
}
.flogo {
	width: 390px;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
}
.footer_address p {
	margin-bottom: 0;
	font-size: 97%;
}
.address br {
	display: none;
}
/* コピーライト */
.copyright {
	text-align: center;
	padding: 7px 3px 35px;
}
@media (max-width: 750px) {
	.address br {
		display: block;
	}
	.footer_address p {
		font-size: 0.78rem;
		margin-bottom: 10px;
		line-height: 2;
	}
	.footer_address {
		padding: 30px 0 20px;
	}
	.flogo {
		width: 80%;
		max-width: 290px;
		margin-bottom: 17px;
	}
	.copyright {
		font-size: 0.75rem;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 57px;
	height: 57px;
	box-sizing: border-box;
	background: #0474b4;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 5 Free";
	content: "\f077";
	font-weight: bold;
	color: #fff;
	font-size: 1.5rem;
	position: absolute;
	top: 45%;
	left: 49.5%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 50px;
		height: 50px;
		right: 15px;
		opacity: 1;
	}
	.go_top::before {
		font-size: 1.2rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
}
.slide_items {
	position: relative;
	width: 100%;
	opacity: 0.7;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 520px;
	object-fit: cover;
}
/*スライドアニメーション*/
@keyframes fadezoom {
	0% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}
.slick-animation {
	animation: fadezoom 10s linear 0s normal both;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	top: 51%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 3.7rem;
	letter-spacing: 0.06em;
	color: #fff;
	font-weight: 700;
	z-index: 2;
	line-height: 1.5;
	text-align: center;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 45%), 0px -0.3px 3px rgb(0 0 0 / 65%);
}
.slide_text p {
	margin-bottom: 0;
}
.glowAnime span {
	opacity: 0;
	display: inline-block;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .glowAnime span {
	filter: blur(0) !important;
	-webkit-backdrop-filter: blur(0) !important;
}
/*文字アニメーション*/
.glowAnime.glow span {
	animation: glow_anime_on .6s ease forwards;
	animation-duration: 3s;
}
@keyframes glow_anime_on {
	0% {
		opacity: 0;
		filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
		-webkit-backdrop-filter: blur(0);
	}
}
@media (max-width: 1170px) {
	.slide_text {
		font-size: 2.7rem;
	}
	.slide_items img {
		min-height: auto;
		height: 650px;
	}
}
@media (max-width: 750px) {
	.slide_text {
		font-size: 2.1rem;
	}
	.slide_items img {
		height: 480px;
	}
}
@media (max-width: 550px) {
	.slide_text {
		font-size: 7.5vw;
	}
}
.pdb {
	padding-bottom: 60px !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 0 !important;
	}
}
.center {
	text-align: center;
}
@media (max-width:750px) {
	.spcenter {
		text-align: center !important;
	}
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 35px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 30px;
	}
}
.aic {
	align-items: center;
}
/*アニメーション*/
/*flowup*/
.flowup {
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 1.6s, transform 1.3s;
	transition-delay: 0.3s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*delay*/
.delay01 {
	transition-delay: 0.65s !important;
}
.delay02 {
	transition-delay: 0.85s !important;
}
@media (max-width: 750px) {
	.delay01, .delay02 {
		transition-delay: 0.3s !important;
	}
}
/* 新着情報 */
.news .inner {
	max-width: 1200px;
}
.newstitle {
	height: fit-content;
	width: 150px;
}
.newsl {
	width: calc(100% - 150px);
}
.news {
	padding: 70px 0;
}
@media (max-width: 750px) {
	.news {
		padding: 35px 0 40px !important;
	}
	.news .maintitle {
		margin-bottom: 20px !important;
	}
}
/*ご挨拶*/
.welcome {
	padding: 65px 0 70px;
}
.welcome {
	position: relative;
	z-index: 1;
	background: url(../img/welcome.jpg);
	background-size: cover;
	background-position: 50% 10%;
	color: #fff;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .welcome {
	background-attachment: scroll;
}
@media (max-width: 450px) {
	.welcome {
		background-attachment: scroll;
	}
}
.welcome::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #333;
	opacity: 0.75;
	z-index: -1;
}
.welcome .inner {
	max-width: 905px;
}
.welcome .maintitle:first-letter {
	color: #fff;
}
.welcome .maintitle span {
	color: #fff;
}
.welcome p {
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 855px) {
	.welcome p {
		text-align: left;
		margin-bottom: 10px;
	}
	.welcome p br {
		display: none;
	}
}
@media (max-width: 550px) {
	.welcome {
		padding: 45px 0 55px;
	}
	.welcome::after {
		opacity: 0.8;
	}
}
/*事業内容*/
.services .flexbox {
	margin-bottom: 70px;
}
.services .flexbox:last-child {
	margin-bottom: 0 !important;
}
/*コンテンツ*/
.contitle {
	margin-bottom: 0;
	line-height: 1.25;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	width: auto;
	max-width: 105px;
}
.contitle .maintitle {
	text-align: left !important;
}
.linkswrap {
	width: calc(100% - 155px);
}
.link {
	overflow: hidden;
	position: relative;
	width: 90%;
	margin-bottom: 20px;
}
.link:last-child {
	margin-bottom: 0 !important;
}
.link:last-child {
	margin-left: auto;
}
.link::before {
	position: absolute;
	bottom: 8%;
	right: 25px;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	font-size: 0.95rem;
	color: #fff;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .6s;
	z-index: 2;
	pointer-events: none;
}
.link:hover::before {
	color: #0474b4;
	background: #fff;
	transition: .3s;
}
.link::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	z-index: 1;
	opacity: 0.35;
	pointer-events: none;
}
.link a:hover img {
	transform: scale(1.07);
	transition: .6s;
}
.link img {
	margin-bottom: 0 !important;
	transition: .8s;
}
.link img {
	object-fit: cover;
	width: 100%;
	height: 270px;
	object-position: 50% 15%;
}
.link h3 {
	position: absolute;
	top: 8%;
	left: 4%;
	color: #fff;
	z-index: 2;
	font-size: 1.9rem;
	font-weight: 700;
	transition: .3s;
	white-space: nowrap;
	line-height: 1.45;
}
.link h3 span {
	text-transform: capitalize;
	display: block;
	font-size: 70%;
}
@media(max-width:1260px) {
	.link h3 {
		font-size: 1.65rem;
	}
	.link img {
		height: 200px;
	}
}
@media(max-width:970px) {
	.link h3 {
		font-size: 1.4rem;
		line-height: 1.4;
	}
}
@media(max-width:750px) {
	.link::after {
		opacity: 0.5;
	}
	.link::before {
		bottom: 8%;
		right: 15px;
		font-size: 0.55rem;
		width: 30px;
		height: 30px;
	}
	.contitle {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		max-width: 100%;
	}
	.contitle .maintitle {
		text-align: center !important;
		margin-bottom: 43px !important;
	}
	.link {
		margin-bottom: 5px;
	}
	.link:last-child {
		margin-bottom: 0 !important;
	}
}
@media(max-width:550px) {
	.link img {
		height: 140px;
	}
	.link h3 {
		font-size: 1.2rem;
		left: 17px;
		text-shadow: 0px 0.3px 3px rgb(0 0 0 / 20%), 0px -0.3px 3px rgb(0 0 0 / 15%);
	}
}
/* fv ===============================================================================================================================*/
.fv {
	height: 360px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0% 35%;
	position: relative;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.45;
}
.fv .inner {
	max-width: 80%;
}
.fv h2 {
	margin-bottom: -50px !important;
	z-index: 1;
	position: relative;
}
.fv h2 .mf, .fv h2 .sf {
	color: #fff;
	font-weight: 700;
}
.fv h2:first-letter {
	color: #fff;
}
@media(max-width:1165px) {
	.fv {
		height: 270px;
	}
	.fv h2 {
		margin-bottom: -20px !important;
	}
}
@media(max-width:550px) {
	.fv {
		height: 170px;
	}
	.fv h2 {
		line-height: 1.03;
		margin-bottom: -20px !important;
	}
	.fv h2 .mf {
		font-size: 1.85rem;
	}
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.8rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #0474b4;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.63rem;
	}
}
/* プラスチック製品の検査ページ =======================================================================================================*/
/*作業環境*/
.shenery {
	display: flex;
	flex-wrap: wrap;
}
.shenery li {
	width: 31.5%;
	margin: 0 0.9% 20px;
	font-size: 0;
	position: relative;
}
.shenery li::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.shenery li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
	.shenery li {
		width: 47%;
		margin: 0 1.5% 10px;
	}
}
/* 半導体製造装置の製造ページ =======================================================================================================*/
.serflex {
	display: flex;
	justify-content: space-between;
	position: relative;
	top: 30px;
}
.serflex div {
	width: 47%;
	position: relative;
}
.serflex div:first-child {
	top: -30px;
}
.reverse .serflex div:last-child {
	top: -30px;
}
.reverse .serflex div:first-child {
	top: 0;
}
@media (max-width: 750px) {
	.serflex {
		margin-bottom: 45px;
	}
}
/* 製造の流れ */
.flows .w56 {
	position: relative;
	top: 30px;
}
.flows .inner {
	max-width: 1100px;
}
.flows .maintitle.mtleft {
	margin-left: -20px;
}
@media (max-width: 750px) {
	.flows .maintitle.mtleft {
		margin-left: -5px;
	}
	.flows .w56 {
		top: 0;
	}
}
.sflow {
	position: relative;
	counter-reset: number 0;
}
.bg_blue .sitem {
	background: #fff;
}
.sitem {
	position: relative;
	background: #f7f7f7;
	padding: 10px 5px;
	padding-left: 30px;
	margin-bottom: 15px;
	box-shadow: rgb(0 0 0 / 2.5%) 0px 2px 8px 0px;
}
.sitem::after {
	font-family: "Font Awesome 5 Free";
	content: "\f0d7";
	font-weight: bold;
	font-size: 0.9rem;
	color: #0474b4;
	line-height: 1;
	position: absolute;
	bottom: -15px;
	left: -10px;
}
.sitem:last-child {
	margin-bottom: 0;
}
.sitem:last-child::after {
	content: none;
}
.sitem p {
	margin-bottom: 0;
}
.sitem p::after, .sitem p::before {
	content: "";
	display: block;
	position: absolute;
}
.sitem p::before {
	z-index: 1;
	width: 2.5em;
	height: 2.5em;
	background: #0474b4;
	border-radius: 50%;
	top: 50%;
	left: -25px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	box-shadow: rgb(0 0 0 / 2.5%) 0px 2px 8px 0px;
}
.sitem p::after {
	font-weight: 700;
	font-size: 1.1rem;
	color: #fff;
	z-index: 1;
	counter-increment: number 1;
	content: "0"counter(number);
	top: 50%;
	left: -14px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
@media(max-width:750px) {
	.sflow {
		margin-left: 10px;
	}
	.sitem_wrap {
		margin: auto;
		width: 94% !important;
	}
}
/* ワイヤーハーネスの製造ページ =======================================================================================================*/
/*画像3つ並び*/
.plastic {
	margin-top: 70px;
}
.threeflex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.threeflex div {
	width: 32%;
	position: relative;
}
.threeflex div:nth-child(2) {
	top: 10px;
}
.threeflex div:nth-child(3) {
	top: 20px;
}
@media(max-width:550px) {
	.threeflex {
		display: block;
	}
	.threeflex div {
		width: 65%;
		margin-bottom: 13px;
	}
	.threeflex div:nth-child(2) {
		margin-left: auto;
		margin-right: auto;
		top: 0;
	}
	.threeflex div:nth-child(3) {
		margin-left: auto;
		top: 0;
	}
	.plastic {
		margin-top: 40px;
	}
}
/* ワイヤーハーネスの製造ページ =======================================================================================================*/
/*理念*/
.philosophy {
	padding: 70px 0 110px;
}
.philosophy .inner {
	max-width: 1050px;
}
.phtext {
	background: #fff;
	padding: 23px 17px;
	box-shadow: rgb(0 0 0 / 1.5%) 0px 2px 8px 0px;
}
.phtext p {
	letter-spacing: 0.12em;
	margin-bottom: 0;
	font-weight: 700;
	font-size: clamp(1.1rem, 0.475rem + 2vw, 1.6rem);
}
@media(max-width:550px) {
	.philosophy {
		padding: 50px 0 70px;
	}
}
/*代表挨拶*/
@media(max-width:750px) {
	.greeting .maintitle {
		margin-bottom: 35px !important;
	}
	/*
	.greeting .serflex {
		margin-bottom: 0;
		margin-top: 43px;
	}
	*/
}
/*会社概要*/
.about .imgflex {
	margin-bottom: 90px;
}
@media(max-width:550px) {
	.about .imgflex {
		margin-bottom: 33px;
	}
}
/*画像2つ並び*/
.imgflex {
	display: flex;
	justify-content: space-between;
}
.imgflex div {
	position: relative;
	width: 49%;
}
.imgflex div:last-child {
	top: 30px;
}
@media(max-width:550px) {
	.imgflex div {
		width: 48.5%;
	}
	.imgflex div:last-child {
		top: 12px;
	}
}
/*table*/
.c_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.c_table tr {
	border: 2px solid #e8e8e8;
}
.c_table th, .c_table td {
	padding: 15px 5px;
}
.c_table th {
	font-weight: 500;
	background: #0474b4;
	color: #fff;
	width: 30%;
	border-right: 2px solid #e8e8e8;
}
.c_table td {
	padding-left: 10px;
	background: #fff;
	width: 70%;
	border-right: 2px solid #e8e8e8;
	border-left: 2px solid #e8e8e8;
}
.spblock {
	display: none;
}
.abt::before {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	display: inline-block;
	margin-right: 4px;
	color: #0a235e;
}
@media(max-width:1155px) {
	.c_table th {
		text-align: left;
		padding-left: 20px;
		padding-right: 15px;
	}
}
@media (max-width: 620px) {
	.spblock {
		display: block;
	}
	.c_table {
		border-collapse: collapse;
	}
	.c_table td, .c_table th {
		width: 100%;
		padding: 8px 10px;
		display: block;
		border: none;
		text-align: left;
	}
	.c_table th {
		border-bottom: 2px solid #e8e8e8;
	}
	.c_table td {
		padding-bottom: 10px !important;
	}
}
/* check list absolute */
.acheck li {
	padding-left: 20px;
	position: relative;
	border-bottom: 1px dotted #0a235e;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #0a235e;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/* map */
.maps .inner {
	max-width: 1100px;
}
.mapbox .cftitle {
	margin-bottom: 15px;
}
@media(max-width: 750px) {
	.mapbox {
		margin-bottom: 35px;
	}
	.mapbox:last-child {
		margin-bottom: 0;
	}
	.mapbox .cftitle {
		margin-bottom: 12px;
	}
	.mapbox iframe {
		height: 280px;
	}
}
/* 見出し */
.cftitle {
	background: linear-gradient(60deg, #0a235e 0%, #0a235e 90%, #0474b4 90%);
	padding: 8px 15px;
	color: #fff;
	margin-bottom: 17px;
	font-size: clamp(1.05rem, 0.675rem + 1.2vw, 1.35rem);
	font-weight: 500;
}
@media(max-width:550px) {
	.cftitle {
		padding: 7px 10px;
		margin-bottom: 10px;
	}
}
/* 採用情報・お問い合わせページ =======================================================================================================*/
/* 求める人材 */
.requirements .acheck li {
	padding-bottom: 7px;
	margin-bottom: 7px;
	font-size: 110%;
}
@media(max-width:825px) {
	.requirements .acheck li {
		padding-bottom: 5px;
		margin-bottom: 5px;
		font-size: 100%;
	}
	.requirements .stitle {
		margin-bottom: 10px;
	}
}
/* 応募内容 */
.application .c_table {
	margin-bottom: 80px;
}
.application .c_table:last-child {
	margin-bottom: 0 !important;
}
@media(max-width:550px) {
	.application .c_table {
		margin-bottom: 50px;
	}
}
/*お問い合わせ====================*/
.contacts {
	padding-bottom: 0;
}
.contacts .inner {
	max-width: 1150px;
}
@media(max-width:550px) {
	.contacts {
		padding-bottom: 20px;
	}
}
.contop {
	margin-bottom: 50px;
}
.conbox {
	width: 49.5%;
	padding: 10px 20px 20px;
	background: #f7fafc;
	position: relative;
	border: 1px solid #e8f4fc;
}
.conbox .stitle {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.conbox .stitle::before {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	color: #0474b4;
	display: inline-block;
	margin-right: 7px;
	font-size: 0.8em;
}
.conbox a {
	display: block;
	font-size: 1.9rem;
	color: #0a235e;
	font-weight: 700;
	line-height: 1.8;
}
.conbox a:hover {
	opacity: 0.4;
}
.clink {
	margin-bottom: 13px;
}
.conbox p {
	font-size: 90%;
}
.bnote {
	font-size: 110%;
}
@media (max-width: 1060px) {
	.conbox {
		width: 49.5%;
		margin-bottom: 10px;
	}
}
@media (max-width: 750px) {
	.contop {
		text-align: left;
	}
	.spnone {
		display: none;
	}
	.conbox:last-child {
		margin-bottom: 0 !important;
	}
	.acheck.flexbox li {
		margin-right: 0 !important;
	}
}
@media (max-width: 550px) {
	.contop {
		margin-bottom: 30px;
	}
	.conbox {
		padding: 10px 15px;
		margin-bottom: 15px;
	}
	.conbox .stitle {
		font-size: 1.05rem;
	}
	.conbox a {
		font-size: 1.5rem;
	}
	.conbox .acheck {
		margin-bottom: 5px;
	}
}
/* check list */
.acheck.flexbox {
	justify-content: flex-start;
}
.acheck.flexbox li {
	margin-right: 25px;
}
.acheck.flexbox li:last-child {
	margin-right: 0;
}
.acheck.flexbox li {
	border-bottom: none;
}
.mails .cftitle {
	max-width: 1150px;
	margin: auto;
	margin-bottom: 0;
}
.mails {
	padding-bottom: 50px;
}
.mails .maintitle {
	margin-bottom: 50px;
}
@media(max-width:550px) {
	.mails {
		padding-bottom: 20px;
		padding-top: 30px;
	}
	.mails .maintitle {
		margin-bottom: 20px;
	}
}
.mnote {
	max-width: 915px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 55px !important;
	margin-bottom: 0 !important;
}
@media(max-width:550px) {
	.mnote {
		font-size: 90%;
		margin-top: 45px;
	}
	.mpdb {
		padding-bottom: 25px !important;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	max-width: 1150px;
	margin: 30px auto 0;
}
@media (max-width: 550px) {
	.mailform {
		margin-top: 5px;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #333;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.95rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #0474b4;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #0474b4;
	color: #0474b4 !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #333;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
	color: #333;
}
.mailform button {
	display: block;
	text-align: center;
	font-size: 1rem;
	margin: 0 auto;
	white-space: nowrap;
	border: 1px solid transparent;
	color: #fff;
	background: #0474b4;
	padding: 1% 7%;
	transition: .4s;
	border-radius: 30px;
}
.mailform button:hover {
	background-color: #fff;
	color: #0474b4;
	border: 1px solid #0474b4;
	opacity: 1;
}
.mailform button::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #0474b4;
	border-bottom: 3px solid #0474b4;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
@media (max-width: 450px) {
	.mailform button {
		width: 65%;
		padding: 6px;
	}
	.formsel label {
		font-size: 0.95rem;
	}
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	font-size: clamp(1.05rem, 0.9rem + 0.5333vw, 1.3rem);
	color: #333;
	margin: 0 auto;
	max-width: 1150px;
	border-bottom: 1.5px solid #333;
}
@media(max-width:450px) {
	.privacy_wrap {
		font-size: 1rem;
	}
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
}
.privacy_header i {
	color: #0474b4 !important;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	position: relative;
}
.privacy_text span::before {
	content: "■";
	display: inline-block;
	font-size: 0.7rem;
	margin-right: 0.35em;
	transform: translateY(-3px);
	color: #0474b4;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #0474b4;
}