@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: #595757;
	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: 90px 0 120px;
	position: relative;
}
main section.stb {
	padding: 110px 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-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.maintitle .mf {
	text-align: center;
	font-size: clamp(2.2rem, 0.95rem + 4vw, 3.2rem);
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	color: #0b23a3;
	text-transform: capitalize;
}
.maintitle:first-letter {
	color: #29abe2;
}
.maintitle .sf {
	font-size: 80%;
}
.maintitle.mtleft {
	text-align: left;
}
.maintitle.mtleft .sf {
	position: relative;
	padding-left: 50px;
}
.maintitle.mtleft .sf:before {
	background-color: #595757;
	position: absolute;
	content: "";
	top: 0.8em;
	left: 0;
	width: 38px;
	height: 1px;
}
.txtmgb {
	margin-bottom: 50px !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 {
		margin-bottom: 40px;
	}
	.maintitle.mtleft {
		margin-bottom: 30px;
	}
	.maintitle {
		line-height: 1.15;
	}
	.maintitle .sf {
		font-size: 65%;
	}
}
/*見出し02*/
.mtitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	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%;
	font-weight: 600;
	position: relative;
	padding-left: 40px;
	color: #29abe2;
}
.mtitle span::before {
	background-color: #29abe2;
	position: absolute;
	content: "";
	top: 0.75em;
	left: 0;
	width: 29px;
	height: 1px;
}
@media (max-width: 750px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
/*見出し03*/
.stitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	position: relative;
	font-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
	border-bottom: 1px solid #29abe2;
	margin-bottom: 15px;
	padding-bottom: 8px;
	padding-left: 2px;
	color: #595757;
	line-height: 1.7;
}
.stitle span {
	font-size: 72%;
	color: #0b23a3;
	text-transform: capitalize;
}
.stitle:first-letter {
	color: #29abe2;
}
@media (max-width: 750px) {
	.stitle {
		border-bottom: 1px solid #29abe2;
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 12px;
	transition: .4s;
	display: inline-block;
	width: 270px;
	text-align: center;
	color: #fff;
	background: #29abe2;
	border: 1px solid #29abe2;
	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: #29abe2;
	background: #fff;
	transition: .4s;
}
@media (max-width: 450px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 240px;
		padding: 8px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 15px;
	}
	.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%;
}
.w54 {
	width: 54%;
}
.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 47.5%;
}
.w41 {
	width: 41%;
}
.w32 {
	width: 31.5%;
}
/* 背景 */
.bg_blue::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(42, 184, 245, 0.85), rgba(42, 184, 245, 0.7)), url(../img/bg.svg) no-repeat center/cover;
	z-index: -100;
}
.bg_blue02 {
	position: relative;
}
.bg_blue02::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(42, 184, 245, 0.25), rgba(42, 184, 245, 0.35)), url(../img/bg.svg) no-repeat center/cover;
	z-index: -100;
	opacity: 0.2;
}
/*=== 共通部分ここまで ===*/
/* header */
.header_tel {
	display: flex;
	align-items: center;
}
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 10px 5px;
	transition: .3s;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.4);
	background: #fff;
}
.header {
	transition: all .5s;
	z-index: 100;
	position: relative;
	width: calc(100% - 166px);
}
.tel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 166px;
	transition: .3s;
}
.tel a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50%;
	width: 100%;
	text-align: center;
	background: #29abe2;
	color: #fff;
	font-size: 0.87rem;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	white-space: nowrap;
}
.tel a:last-child {
	font-size: 0.8rem;
	position: relative;
	bottom: 0;
	background: #2593c2;
}
.tel a:hover {
	opacity: 0.8;
	transition: .3s;
}
.tel a i {
	margin-right: 7px;
	font-size: 95%;
}
.header_inner {
	width: 99%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	margin-left: 15px;
	width: 190px;
}
.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 {
	position: relative;
	line-height: 1.65;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 0 14px;
	color: #595757;
	font-size: 0.87rem;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	white-space: nowrap;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 80%;
	color: #0b23a3;
	font-weight: 600;
	text-transform: capitalize;
}
.hnav {
	margin-left: auto;
	width: fit-content;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 12px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 11rem;
	line-height: 1.55;
	padding: 5px;
	font-size: 0.9rem;
}
.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: #ffd638;
}
.htm {
	font-size: 87%;
	pointer-events: none;
}
.hts {
	font-size: 1.35rem;
	pointer-events: auto;
	transition: .3s;
	padding-bottom: 3px;
	border-bottom: 1px solid #ffd638;
}
.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;
}
#menu_btn_check:checked ~ .menu_btn {
	filter: none;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 33px;
	position: absolute;
	transition: all 0.4s;
	background: #0b23a3;
}
.menu_btn span:before {
	bottom: 7px;
}
.menu_btn span:after {
	top: 7px;
}
#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;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
}
#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%);
	width: 90%;
}
.menu_content nav {
	padding: 0 30px 17px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 3px 0;
	list-style: none;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 0.8rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 6.5px 0;
	position: relative;
	line-height: 1.75;
	color: #595757;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.menu_padding ul li a span {
	font-size: 120%;
	display: block;
	font-weight: 600;
	color: #0b23a3;
	text-transform: capitalize;
}
.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;
}
.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: 7px;
	width: 250px;
	border: 1px solid #29abe2 !important;
	color: #fff;
	background: #29abe2;
	font-size: 0.9rem;
}
.menu_content .mainbtn a:hover {
	color: #29abe2;
	background: #fff;
}
.menu_content .hicon {
	width: fit-content;
	margin: auto;
	margin-top: 20px;
}
.menu_content .hicon a {
	font-size: 1.4rem;
	margin: 0 3px;
	color: #29abe2;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1065px) {
	.header_logo {
		width: 160px;
		margin-left: 0;
	}
	.header_sticky {
		padding: 10px 17px;
	}
	.header {
		padding: 0;
		width: 100%;
	}
	.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: 2.5px;
		right: 23px;
	}
	.tel {
		display: none;
	}
}
@media (max-width: 500px) {
	.header_title {
		width: 130px;
	}
	.header_sticky {
		padding: 9px 13px;
	}
	.menu_btn {
		top: -3px;
		right: 21px;
	}
	.menu_content ul li a {
		font-size: 0.7rem;
		padding: 4px 0;
	}
	.menu_content .mainbtn a {
		padding: 7px !important;
		width: 200px;
		font-size: 0.73rem;
	}
}
@media (max-width: 300px) {
	.header_title {
		width: 63vw;
	}
	.menu_btn {
		top: 0;
		right: 15px;
	}
	.menu_content .mainbtn a {
		width: 90%;
	}
}
/* footer */
/* フッターお問い合わせリンク */
.fwrap {
	padding: 65px 0 40px;
}
@media (max-width: 550px) {
	.fwrap {
		padding: 35px 0 25px;
	}
}
.footer_contact {
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: bottom;
	padding: 60px 0 0;
	color: #fff;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .footer_contact {
	background-attachment: scroll;
}
.footer_contact::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	pointer-events: none;
	z-index: -1;
}
.footer_contact::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(42, 184, 245, 0.85), rgba(42, 184, 245, 0.7)), url(../img/bg.svg) no-repeat center/cover;
	z-index: -1;
	opacity: 0.8;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 35px;
}
.footer_contact .maintitle .mf {
	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: 600;
	font-family: 'Noto Serif JP', serif;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background-color: #29abe2;
}
.fax {
	pointer-events: none;
}
.btn_wrap .fax a {
	background-color: #2593c2 !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: #29abe2;
}
.footer_contact p {
	text-align: center;
	margin-bottom: 45px;
	font-size: 110%;
}
@media (max-width: 950px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 0.93rem;
	}
}
@media (max-width: 750px) {
	.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%;
	}
}
@media (max-width: 450px) {
	.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: 27px !important;
	}
	.footer_contact {
		padding: 50px 0 0;
	}
	.footer_contact {
		background-attachment: scroll;
	}
}
/* コピーライト */
.copyright {
	text-align: center;
	padding: 130px 0 35px;
}
@media (max-width: 450px) {
	.copyright {
		padding: 45px 0 35px;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 57px;
	height: 57px;
	box-sizing: border-box;
	background: #0b23a3;
	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.8rem;
	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.6rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.slide_items {
	position: relative;
	width: 100%;
}
.slide_items img {
	width: 100%;
	height: calc(100vh - 70px);
	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.4rem;
	letter-spacing: 0.08em;
	color: #fff;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	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;
}
@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: 50px !important;
}
.pdb0 {
	padding-bottom: 0 !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 30px !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: 40px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 35px;
	}
}
.aic {
	align-items: center;
}
/*アニメーション*/
/*flowup*/
.flowup {
	opacity: 0;
	transform: translate(15px, 15px);
	transition: opacity 2.1s, transform 1.8s;
	transition-delay: 0.3s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
.opanim {
	opacity: 0;
	transition: 1.8s;
	transition-delay: 0.5s;
}
.opanim.inview {
	opacity: 1;
}
/*delay*/
.delay01 {
	transition-delay: 0.65s !important;
}
.delay02 {
	transition-delay: 0.85s !important;
}
@media (max-width: 750px) {
	.delay01, .delay02 {
		transition-delay: 0.3s !important;
	}
}
/* ローディング風アニメ */
.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start div {
	display: none;
}
.start div p {
	font-size: 4.5rem;
	position: fixed;
	left: 50.5%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	z-index: 9999;
	color: #0b23a3;
	letter-spacing: 0.02;
	white-space: nowrap;
}
@media (max-width: 1050px) {
	.start div p {
		font-size: 3rem;
	}
}
@media (max-width: 550px) {
	.start div p {
		font-size: 8.8vw;
	}
}
/*新着情報*/
.white, .white span {
	color: #fff !important;
}
.white:first-letter {
	color: #fff !important;
}
.news .inner {
	max-width: 1100px;
}
/*ご挨拶*/
.welcome {
	padding: 100px 0;
}
.welcome .inner02 {
	position: relative;
}
.welflex {
	width: 94%;
	margin: auto;
	justify-content: space-around;
}
.welpwrap .maintitle {
	text-align: left;
	margin-left: 25px;
	margin-bottom: 0;
	line-height: 1.25;
}
.welpwrap {
	width: auto;
	max-width: 465px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.welpwrap p {
	font-size: 107%;
	line-height: 2.2;
	letter-spacing: 0.15em;
	margin-left: 23px;
}
.wtext {
	font-size: 125% !important;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.welimgs {
	width: calc(100% - 505px);
	display: flex;
	justify-content: space-between;
}
.welimgs .weldiv01 {
	width: 66%;
}
.welimgs .weldiv01 img {
	object-fit: cover;
	width: 100%;
	height: 620px;
}
.welimgs .weldiv02 {
	width: 32%;
}
.welimgs .weldiv02 img {
	margin-bottom: 15px;
	object-fit: cover;
	width: 100%;
	height: 300px;
}
.welimgs .weldiv02 img:last-child {
	margin-bottom: 0;
}
@media (max-width: 1250px) {
	.welimgs {
		width: calc(100% - 445px);
	}
}
@media (max-width: 1065px) {
	.welcome {
		padding: 70px 0 100px;
	}
	.welflex {
		display: block;
	}
	.welimgs {
		width: 100%;
	}
	.welpwrap {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		max-width: 100%;
		margin-bottom: 70px;
	}
	.welpwrap p {
		font-size: 100%;
		margin-left: 0;
		margin-bottom: 0;
		line-height: 1.9;
		text-align: center;
	}
	.welpwrap p br {
		display: none;
	}
	.welpwrap .maintitle {
		margin-left: 0;
		margin-bottom: 55px;
		text-align: center;
	}
	.wtext {
		font-size: 107% !important;
		margin-bottom: 20px !important;
	}
}
@media (max-width: 1010px) {
	.welpwrap p {
		text-align: left;
	}
}
@media (max-width: 750px) {
	.welcome {
		padding: 50px 0 70px;
	}
	.welimgs {
		display: block;
	}
	.welimgs .weldiv02 {
		display: flex;
		justify-content: space-between;
	}
	.welimgs .weldiv01 img, .welimgs .weldiv02 img {
		height: auto;
	}
	.welimgs .weldiv01, .welimgs .weldiv02 {
		width: 100%;
	}
	.welimgs .weldiv01 img {
		margin-bottom: 2.5%;
	}
	.welimgs .weldiv02 img {
		margin-bottom: 0;
		width: 48.5%;
	}
	.welpwrap .maintitle {
		margin-bottom: 35px;
	}
	.welpwrap {
		margin-bottom: 40px;
	}
	.welpwrap p {
		margin-bottom: 10px;
	}
	.welflex {
		width: 100%;
	}
}
/*採用情報*/
.recruit {
	padding: 0 0 30px;
	position: relative;
}
.recimg {
	background: url(../img/recruit.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 460px;
	width: 100%;
	clip-path: ellipse(100% 100% at top);
}
/*Safari*/
::-webkit-full-page-media, :future, :root .recimg {
	background-attachment: scroll;
}
.flowimg {
	position: relative;
}
.flowimg::before, .flowimg::after {
	content: "I.S.S Co., Ltd.";
	position: absolute;
	bottom: 8px;
	width: 100vw;
	height: auto;
	color: #fff;
	font-size: 12rem;
	line-height: 1.0;
	text-align: center;
	opacity: 0.1;
	white-space: nowrap;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	z-index: -1;
}
.flowimg::before {
	left: 0;
	animation: flowimg 30s linear infinite;
}
.flowimg::after {
	left: 1360px; /*文字数、文字の大きさによって変更*/
	animation: flowimg 30s linear infinite;
}
@keyframes flowimg {
	0% {
		transform: translateX(0);
	}
	100% {
		/*文字数、文字の大きさによって変更*/
		transform: translateX(-1360px);
	}
}
.recbox .maintitle {
	margin-bottom: 30px;
}
.rectext {
	color: #29abe2;
	font-size: 135%;
	margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	line-height: 1.7;
}
.acheck li {
	padding-left: 21px;
	position: relative;
	border-bottom: 1px dashed #ddd;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	font-weight: bold;
	display: inline-block;
	color: #29abe2;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
.recbox .acheck {
	margin-bottom: 20px;
}
.recbox {
	padding: 40px 40px 60px;
	background: #fff;
	width: 100%;
	max-width: 700px;
	position: relative;
	top: -80px;
	z-index: 2;
}
@media (min-width: 1700px) {
	.recbox {
		margin-left: 0;
	}
}
@media (max-width: 1699px) {
	.recbox {
		margin-left: 3%;
	}
}
@media (max-width: 750px) {
	.rectext {
		font-size: 107%;
		margin-bottom: 17px;
	}
	.rectext br {
		display: none;
	}
	.recbox {
		top: -40px;
		padding: 25px 20px 45px;
	}
	.recimg {
		height: 58vw;
	}
	.recimg {
		background-attachment: scroll;
	}
	.recbox {
		margin: auto;
	}
}
@media (max-width: 550px) {
	.flowimg::before, .flowimg::after {
		font-size: 4.5rem;
		bottom: -10px;
	}
	.flowimg::after {
		left: 520px;
	}
	@keyframes flowimg {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-520px);
		}
	}
}
/*事業内容*/
.serflex {
	display: flex;
	justify-content: space-between;
}
.serflex div {
	width: 47%;
	position: relative;
}
.serflex div:first-child {
	top: -30px;
}
@media (max-width: 750px) {
	.serflex {
		margin-bottom: 15px;
	}
}
/*コンテンツ*/
.contents .inner {
	max-width: 1500px;
	width: 95%;
}
.link {
	overflow: hidden;
	position: relative;
	width: 33%;
}
.link::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: calc(100% - 13px);
	height: calc(100% - 13px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	pointer-events: none;
	z-index: 2;
}
.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.1);
	transition: .6s;
}
.link img {
	margin-bottom: 0 !important;
	transition: .8s;
}
.link img {
	object-fit: cover;
	width: 100%;
	height: 270px;
}
.link h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	color: #fff;
	z-index: 2;
	font-size: 1.9rem;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 95%), 0px -0.3px 3px rgb(0 0 0 / 85%);
	transition: .3s;
	white-space: nowrap;
}
.link h3 span {
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	opacity: 0.25;
	font-size: 300%;
	text-shadow: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-transform: capitalize;
}
@media(max-width:1260px) {
	.link h3 {
		font-size: 1.65rem;
	}
	.link h3 span {
		top: 40%;
	}
	.link img {
		height: 200px;
	}
}
@media(max-width:970px) {
	.link h3 {
		font-size: 1.4rem;
	}
}
@media(max-width:750px) {
	.link::before {
		width: calc(100% - 7px);
		height: calc(100% - 7px);
	}
	.link img {
		height: 140px;
	}
	.link {
		margin-bottom: 5px;
	}
	.link:last-child {
		margin-bottom: 0 !important;
	}
	.link h3 span {
		font-size: 260%;
	}
}
/* 下層ページトップ =================================================================================================*/
.fv {
	height: 315px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 55%;
	position: relative;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(42, 184, 245, 0.85), rgba(42, 184, 245, 0.7)), url(../img/bg.svg) no-repeat center/cover;
	opacity: 0.87;
}
.fv .inner {
	max-width: 99.5%;
}
.fv h2 {
	margin-bottom: 20px !important;
	line-height: 1.2;
	z-index: 1;
	position: relative;
	color: #fff !important;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.fv .maintitle:first-letter {
	color: #fff !important;
}
.fv span, .fv .maintitle .sf span {
	color: #fff !important;
}
.fv .maintitle .mf {
	font-size: clamp(1.5rem, 0.375rem + 3.6vw, 2.4rem);
}
@media (max-width: 1505px) {
	.fv {
		height: 270px;
	}
}
@media(max-width:1145px) {
	.fv .maintitle .mf {
		font-size: 2rem;
	}
	.fv {
		height: 235px;
	}
}
@media(max-width:650px) {
	.fv {
		height: 210px;
	}
	.fv h2 {
		line-height: 1.05;
	}
	.fv .maintitle .mf {
		font-size: 1.4rem;
	}
}
@media(max-width:550px) {
	.fv {
		height: 155px;
	}
	.fv h2 {
		margin-bottom: 17px !important;
	}
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 1rem;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100%;
	text-align: center;
	font-weight: 600;
}
.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: #fff;
}
.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:1145px) {
	.breadcrumb {
		top: -13px;
		font-size: 0.9rem;
	}
}
@media(max-width:750px) {
	.breadcrumb {
		top: -10px;
		font-size: 0.85rem;
	}
}
@media(max-width:550px) {
	.breadcrumb {
		top: -7px;
		font-size: 0.7rem;
	}
}
/* 事業内容ページ ======================================================================================================================*/
/*特徴*/
.features .inner {
	max-width: 1000px;
}
.feabox {
	position: relative;
	border: 1px solid #29abe2;
	text-align: center;
	padding: 13px 0;
}
.feabox::before {
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	font-size: 1.5rem;
	color: #29abe2;
	line-height: 1;
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	background: #fff;
}
.feabox p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin-bottom: 0;
	font-size: 1.45rem;
	color: #0b23a3;
}
.featext {
	text-align: center;
	margin-top: 45px;
}
@media(max-width:880px) {
	.featext {
		text-align: left;
		margin-top: 45px;
	}
	.featext p br {
		display: none;
	}
}
@media(max-width:750px) {
	.feabox {
		max-width: 450px;
		margin: auto;
		margin-bottom: 23px;
	}
	.feabox:last-child {
		margin-bottom: 0;
	}
}
@media(max-width:550px) {
	.features .maintitle {
		margin-bottom: 50px;
	}
	.feabox {
		padding: 11px 0;
	}
	.feabox p {
		font-size: 1.25rem;
	}
	.feabox::before {
		font-size: 1.2rem;
		top: -13px;
	}
	.featext {
		margin-top: 35px;
	}
}
/*自動車部品 半導体装置の一部組立*/
@media(max-width:750px) {
	.spimgmgb img {
		margin-bottom: 2px;
	}
}
/*作業環境*/
.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;
	}
}
/* 作業の流れ・Q&Aページ ======================================================================================================================*/
/* 流れ */
.sitem .stitle {
	font-size: 1.15rem;
	margin-bottom: 7px;
}
.sitem .stitle:first-letter, .sitem .stitle span {
	color: #29abe2;
}
.sitem .stitle span {
	font-size: 80%;
}
.sitem {
	position: relative;
	background: #f5fbfc;
	padding: 13px 15px 15px;
	margin-bottom: 25px;
}
.sitem::after {
	font-family: "Font Awesome 5 Free";
	content: "\f0d7";
	font-weight: bold;
	font-size: 1rem;
	color: #29abe2;
	line-height: 1;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.sitem:last-child {
	margin-bottom: 0;
}
.sitem:last-child::after {
	content: none;
}
.sitem p {
	margin-bottom: 0;
}
@media(max-width:950px) {
	.sitem .stitle {
		line-height: 1.9;
		font-size: 1.05rem;
	}
	.sitem .stitle span {
		display: block;
	}
}
@media(max-width:750px) {
	.sflow {
		margin-bottom: 40px;
	}
}
@media(max-width:550px) {
	.sitem .stitle {
		font-size: 103%;
	}
	.sitem {
		padding: 13px 15px 20px;
	}
}
/*よくある質問*/
.faqbox {
	margin-bottom: 25px;
	background: #f5fbfc;
	box-shadow: rgba(0, 0, 0, 0.03) 0px 6px 24px 0px, rgba(0, 0, 0, 0.02) 0px 0px 0px 1px;
}
.qtwrap, .atwrap {
	padding: 13px;
}
.qtwrap {
	background: #29abe2;
	color: #fff;
}
.atwrap {
	background: #f5fbfc;
	position: relative;
	padding-top: 7px;
	padding-bottom: 15px;
}
.atwrap p:last-child {
	margin-bottom: 0;
}
.subfaq {
	counter-reset: sub-number 0;
}
.faq {
	counter-reset: number 0;
}
.qt, .at {
	position: relative;
	padding-left: 43px;
}
.qt {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 1.15rem;
}
.at {
	font-size: 1.03rem;
}
.qt::before, .at::before {
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.qt::before {
	counter-increment: number 1;
	content: "Q"counter(number);
	top: -3px;
}
.at::before {
	counter-increment: sub-number 1;
	content: "A"counter(sub-number);
	color: #0b23a3;
	top: -4px;
}
@media (max-width: 550px) {
	.qtwrap, .atwrap {
		padding: 10px 13px;
	}
	.atwrap {
		padding-top: 10px;
		padding-bottom: 15px;
	}
	.qt, .at {
		padding-left: 37px;
		font-size: 1rem;
	}
	.qt::before, .at::before {
		font-size: 1.05rem;
	}
	.qt::before {
		top: -0.5px;
	}
	.at::before {
		top: -1px;
	}
}
/* スタッフ紹介・採用情報ページ ======================================================================================================================*/
.rectoptext {
	font-size: 113%;
	text-align: center;
	color: #0b23a3;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
@media(max-width:720px) {
	.rectoptext {
		font-size: 100%;
		text-align: left;
	}
}
/*スタッフ紹介*/
.staff .flexbox {
	margin-bottom: 50px;
}
.staff .flexbox:last-child {
	margin-bottom: 0;
}
.sta {
	font-size: 0.95rem;
	padding: 0 10px;
	background: #29abe2;
	color: #fff;
	font-weight: 400;
	width: fit-content;
}
@media(max-width:550px) {
	.sta {
		font-size: 0.8rem;
		padding: 1px 7px;
	}
}
/*1日の流れ*/
/*
.dflow {
	border-left: 1px solid #29abe2;
	padding: 15px 0 10px;
}
.ditem {
	position: relative;
	margin-bottom: 25px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.ditem::before {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	border-bottom: 1px dotted #29abe2;
	z-index: -100;
}
.ditem::after {
	content: '';
	width: 95%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: #f5fbfc;
	z-index: -100;
	border-left: 3px solid #29abe2;
}
.ditem p {
	position: relative;
	padding-left: 127px;
	font-weight: 400;
	font-size: 107%;
	margin-bottom: 0;
}
.ditem p::before {
	content: '';
	background: #29abe2;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	position: absolute;
	top: 11px;
	left: -5px;
}
.ditem p .time {
	position: absolute;
	top: 0;
	left: 7px;
	padding-left: 25px;
}
*/
.dflow {
	border-left: 1px solid #29abe2;
	padding: 15px 0 10px;
}
.ditem {
	margin-bottom: 25px;
}
.ditem p {
	position: relative;
	padding-left: 117px;
	font-weight: 400;
	font-size: 107%;
}
.ditem p::before {
	content: '';
	background: #29abe2;
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: -7px;
}
.ditem p .time {
	position: absolute;
	top: 0;
	left: 7px;
	padding-left: 15px;
}
.longtime {
	padding-left: 100px !important;
}
@media(max-width:930px) {
	.ditem p {
		font-size: 100%;
	}
}
@media(max-width:750px) {
	.spdflow {
		margin-bottom: 45px;
	}
	.ditem {
		margin-bottom: 15px;
	}
}
/*求める人材*/
.requirements p {
	padding: 10px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.02) 0px 6px 24px 0px, rgba(0, 0, 0, 0.01) 0px 0px 0px 1px;
}
.requirements p span {
	padding-left: 22px;
	position: relative;
	display: inline-block;
}
.requirements p span::before {
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #29abe2;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/*応募内容*/
.spblock {
	display: none;
}
@media (max-width: 750px) {
	.spblock {
		display: block;
	}
	.spnone {
		display: none;
	}
}
/* table */
.application .opanim {
	margin-bottom: 85px;
}
@media (max-width: 550px) {
	.application .opanim {
		margin-bottom: 50px;
	}
}
.application .opanim:last-child {
	margin-bottom: 0 !important;
}
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr {
	border: 2px solid #f5f5f5;
}
.info_table th, .info_table td {
	padding: 14px 0;
	font-weight: 400;
}
.info_table th {
	background: #29abe2;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5f5f5;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
@media(max-width:550px) {
	.info_table {
		font-size: 0.9rem;
	}
	.info_table.fzmini {
		font-size: 0.87rem;
	}
	.info_table.fzmini th {
		width: 37%;
	}
	.info_table.fzmini td {
		width: 63%;
	}
}
/*title*/
.cftitle {
	padding: 10px 15px;
	color: #fff;
	margin-bottom: 25px;
	font-size: clamp(1.05rem, 0.6125rem + 1.4vw, 1.4rem);
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	position: relative;
	border-left: 10px solid #29abe2;
}
.cftitle::after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -15;
	background: linear-gradient(0deg, rgba(11, 35, 163, 0.75), rgba(11, 35, 163, 0.8)), url(../img/bg.svg) no-repeat center/cover;
}
@media(max-width:550px) {
	.cftitle {
		padding: 7px 10px;
		margin-bottom: 15px;
	}
}
/* 会社概要ページ ======================================================================================================================*/
/*理念*/
.bdb {
	position: relative;
	border-bottom: none;
}
.bdb::after {
	content: '';
	display: block;
	height: 1px;
	background: #29abe2;
	position: relative;
	top: 10px;
	opacity: 0;
	width: 0;
	transition: 1.6s;
	transition-delay: 0.9s;
}
.inview.bdb::after {
	width: 100%;
	opacity: 1;
}
.philosophy {
	padding-bottom: 135px;
}
.phtext {
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin-bottom: 100px;
}
/*画像*/
.phflex {
	display: flex;
	justify-content: space-between;
}
.phflex div {
	width: 49%;
	position: relative;
}
.phflex div:last-child {
	top: 20px;
}
@media(max-width:660px) {
	.philosophy {
		padding-top: 60px;
		padding-bottom: 80px;
	}
	.phtext {
		font-size: 1.13rem;
		margin-bottom: 70px;
	}
	.phflex div {
		width: 48.5%;
	}
	.phflex div:last-child {
		top: 10px;
	}
}
/* 代表挨拶 */
.greeting .maintitle:first-letter {
	color: #fff;
}
.greeting .maintitle .mf, .greeting .maintitle .sf {
	color: #fff;
}
.greeting {
	padding: 50px 0 55px;
	position: relative;
	z-index: 1;
	background: url(../img/greeting.jpg);
	background-size: cover;
	background-position: 50% 10%;
	color: #fff;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .greeting {
	background-attachment: scroll;
}
@media (max-width: 550px) {
	.greeting {
		background-attachment: scroll;
	}
}
.greeting::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(11, 35, 163, 0.85), rgba(11, 35, 163, 0.7)), url(../img/bg.svg) no-repeat center/cover;
	opacity: 0.7;
	z-index: -1;
}
.greeting p {
	text-align: center;
	margin-bottom: 18px;
}
.glast {
	margin-top: 20px;
}
@media (max-width: 790px) {
	.greeting p {
		text-align: left;
		margin-bottom: 10px;
	}
	.greeting p br {
		display: none;
	}
	.glast {
		text-align: right !important;
		margin-top: 20px;
	}
}
@media (max-width: 550px) {
	.greeting .maintitle {
		margin-bottom: 40px !important;
	}
	.greeting::after {
		opacity: 0.8;
	}
}
/*map*/
@media (max-width: 550px) {
	.map iframe {
		height: 280px;
	}
}
/* お問い合わせページ ========================================================================================================*/
.contact_top_text {
	margin-top: 10px;
	margin-bottom: 70px;
	text-align: center;
}
@media(max-width:850px) {
	.contact_top_text {
		text-align: left;
	}
	.contact_top_text br {
		display: none;
	}
}
@media(max-width:550px) {
	.contact_top_text {
		font-size: 90%;
		margin-bottom: 35px;
	}
}
.conmgb {
	margin-bottom: 70px;
}
.contactp .rtext {
	margin-bottom: 45px;
}
@media (max-width: 750px) {
	.contactp .rtext {
		margin-bottom: 30px;
	}
}
.contact_wrap {
	position: relative;
	background-color: transparent;
	margin: auto;
	padding: 20px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.02) 0px 6px 24px 0px, rgba(0, 0, 0, 0.01) 0px 0px 0px 1px;
}
.rcheck p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #29abe2;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
.tel_contact {
	font-size: clamp(1.6rem, 1.24rem + 1.28vw, 2.2rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #0b23a3;
	z-index: 1;
	position: relative;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.tel_contact:hover {
	opacity: 0.6;
}
.telflex {
	max-width: 1125px;
	margin: auto;
	align-items: flex-start;
}
.telflex .contact_wrap {
	margin: 0;
}
.tel_text {
	font-size: 0.9rem;
	margin-top: 7px;
	margin-bottom: 5px;
}
.te.tel_text {
	margin-top: 7px !important;
}
@media (max-width: 750px) {
	.te.tel_text {
		font-size: 0.8rem;
		margin-bottom: 45px;
	}
}
.faxlist {
	display: flex;
	justify-content: center;
}
.faxlist p {
	margin-right: 25px;
	font-size: 0.9rem;
	margin-bottom: 0;
	white-space: nowrap;
}
.faxlist p:last-child {
	margin-right: 0 !important;
}
@media (max-width: 760px) {
	.faxlist p {
		margin-right: 20px;
	}
}
.telmini {
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 0.97rem + 0.64vw, 1.45rem);
	line-height: 1.5;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.spb {
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 40px;
}
@media (max-width: 750px) {
	.faxlist p {
		margin-right: 30px;
	}
	.telflex .contact_wrap {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	.contact_wrap.fax {
		margin-bottom: 0;
	}
}
@media (max-width: 570px) {
	.tel_text {
		margin-bottom: 2.5px;
	}
}
@media (max-width: 490px) {
	.spb {
		margin-bottom: 20px;
	}
	.spb {
		font-size: 1.15rem;
	}
	.telmini {
		margin-bottom: 17px;
	}
}
@media (max-width: 365px) {
	.tel_text {
		margin-bottom: 13px;
	}
	.faxlist {
		display: block;
		width: 100% !important;
		margin: auto;
		margin-left: 0;
	}
	.faxlist p {
		border-bottom: 1px dotted #29abe2;
		margin-right: 0;
		padding-bottom: 3px;
	}
}
.tmgb {
	margin-bottom: 25px;
}
.fpdt {
	padding-top: 60px;
}
@media (max-width: 950px) {
	.fpdt {
		padding-top: 20px;
	}
}
@media (max-width: 550px) {
	.fpdt {
		padding-top: 50px;
	}
}
.tl_text {
	margin-top: 13px;
	font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
}
@media (max-width: 450px) {
	.tmgb {
		margin-bottom: 15px;
	}
	.contact_wrap {
		max-width: 100%;
		padding: 15px 0;
	}
	.tl_text {
		margin-top: 7px;
	}
}
/* メール */
.mnote {
	max-width: 920px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 45px !important;
	margin-bottom: 0 !important;
}
@media(max-width:450px) {
	.mnote {
		font-size: 0.9rem;
		margin-top: 30px;
	}
	.mpdb {
		padding-bottom: 35px !important;
	}
}
.formsel p {
	display: inline-block;
	margin-right: 3%;
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	max-width: 1100px;
	margin: 0 auto 0;
}
@media (max-width: 850px) {
	.mailform {
		margin: 50px auto 0;
	}
}
@media (max-width: 450px) {
	.formsel p {
		font-size: 0.9rem;
		margin-right: 5%;
	}
	.mailform {
		margin-top: 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #595757;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-weight: 400;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #29abe2;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
	font-weight: 400;
}
.mailsp {
	background: transparent !important;
	border: 1px solid #29abe2;
	color: #29abe2 !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	font-weight: 400;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button {
	display: block;
	text-align: center;
	font-size: 1rem;
	margin: 0 auto;
	white-space: nowrap;
	padding: 1% 7%;
	transition: .4s;
	border: 1px solid #29abe2;
	color: #fff;
	background: #29abe2;
	border-radius: 30px;
}
.mailform button:hover {
	opacity: 1;
	background-color: transparent;
	color: #29abe2;
}
.mailform button::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
@media (max-width: 450px) {
	.mailform button {
		width: 65%;
		padding: 6px;
	}
	.selection small {
		font-size: 0.8rem;
	}
}
@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%;
	}
}
/* メール */
.mnote {
	max-width: 910px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 55px !important;
	margin-bottom: 0 !important;
}
@media(max-width:450px) {
	.mnote {
		margin-top: 40px;
	}
	.mpdb {
		padding-bottom: 25px !important;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	font-size: clamp(1rem, 0.862rem + 0.4907vw, 1.23rem);
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 1px solid #0b23a3;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.privacy_header i {
	color: #0b23a3;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	font-size: 103%;
}
@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: #29abe2;
}