@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
	overflow: auto;
}
.hamopen {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}
a {
	text-decoration: none;
	transition: .4s;
}
/*=====ウェブアクセシビリティ=====*/
a:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
button:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 100px 0;
	position: relative;
}
@media (max-width: 550px) {
	main section {
		padding: 60px 0 55px;
	}
}
/* 画像 */
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.55);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*最初にロゴを表示*/
.start {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9999;
	background: #fff;
	background-size: cover;
	background-position: center;
}
.start div {
	width: 330px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
}
.start div img {
	width: 100%;
	height: 100%;
}
@media (max-width: 1090px) {
	.start div {
		width: 35vw;
	}
}
@media (max-width: 500px) {
	.start div {
		width: 55vw;
	}
}
/*見出し01*/
.maintitle {
	margin-bottom: 65px;
	display: block;
	text-align: center;
	line-height: 0.65;
	position: relative;
	font-weight: 500;
	font-size: clamp(2.2rem, 0.7rem + 4.8vw, 3.4rem);
	color: #5274BD; /*#417ee0*/
}
.maintitle .mf {
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	position: relative;
	font-weight: 400;
	letter-spacing: 0.17em;
}
.maintitle.mtleft {
	text-align: left;
}
.txtmgb {
	margin-bottom: 47px !important;
}
.maintitle .sf {
	font-size: 35%;
}
.maintitle.mtleft .sf {
	position: relative;
	padding-left: 47px;
}
.maintitle.mtleft .sf::before {
	background: #5274BD;
	position: absolute;
	content: "";
	top: 0.8em;
	left: 0;
	width: 35px;
	height: 1px;
}
@media (max-width: 750px) {
	.maintitle.mtleft.spcenter .sf {
		padding-left: 0;
	}
	.maintitle.mtleft.spcenter .sf::before {
		content: none;
	}
}
@media (max-width: 550px) {
	.maintitle {
		line-height: 0.75;
	}
	.maintitle .sf {
		font-size: 42%;
	}
	.txtmgb {
		margin-bottom: 33px !important;
	}
	.maintitle {
		margin-bottom: 45px;
	}
}
/*見出し02*/
.mtitle {
	background: linear-gradient(60deg, #5274BD, #f5f5f5);
	padding: 5px 12px;
	color: #fff;
	font-weight: 400;
	font-size: clamp(1.15rem, 0.7125rem + 1.4vw, 1.5rem);
	margin-bottom: 15px;
}
.bg_gray .mtitle {
	background: linear-gradient(60deg, #5274BD, #ddd);
}
/*見出し03*/
.stitle {
	font-weight: 400;
	position: relative;
	font-size: clamp(1.15rem, 0.8375rem + 1vw, 1.4rem);
	margin-bottom: 20px;
	padding-bottom: 8px;
	padding-left: 2px;
	line-height: 1.7;
	border-bottom: 1px solid #ddd;
}
.stitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 95px;
	height: 1px;
	background: #5274BD;
}
.stitle .en {
	font-size: 60%;
	margin-right: 12px;
	color: #5274BD;
	text-transform: uppercase;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 15px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 20px 0;
	display: inline-block;
	width: 275px;
	text-align: center;
	z-index: 1;
	border: 1px solid #5274BD;
	color: #5274BD;
	background: #fff;
	text-transform: uppercase;
	transition: all .4s;
}
section .mainbtn a::after {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #5195BD;
	opacity: 0;
	z-index: -1;
	transition: all .4s;
}
section .mainbtn a:hover::after {
	width: 100%;
	opacity: 0.1;
}
section .mainbtn a::before {
	filter: invert(47%) sepia(12%) saturate(2082%) hue-rotate(183deg) brightness(91%) contrast(93%);
	content: url(../img/deco.svg);
	display: inline-block;
	position: absolute;
	top: 50%;
	right: -25px;
	transform: translateY(-50%);
	height: 47px;
	width: 61px;
	transition: all .4s;
}
section .mainbtn a:hover::before {
	right: -35px;
}
@media (max-width: 550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 220px;
		padding: 13px;
	}
	section .mainbtn a::before {
		width: 51px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 89%;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 2000px) {
	.inner02 {
		max-width: 1700px;
		width: 92%;
		margin: 0 auto;
	}
}
@media (max-width: 1999px) {
	.inner02 {
		max-width: 100%;
		width: 100%;
	}
	.mauto {
		margin-left: auto;
		margin-right: auto;
	}
	.mauto.w48 {
		width: 42%;
	}
	.mauto.w43 {
		width: 37%;
	}
}
@media (max-width: 750px) {
	.inner02 {
		width: 90%;
		margin: 0 auto;
	}
	.mauto.w48, .mauto.w43 {
		width: 100%;
	}
}
.w65 {
	width: 65%;
}
.w52 {
	width: 52%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w43 {
	width: 43%;
}
.w32 {
	width: 32%;
}
/*background*/
.bg_white::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: -100;
}
.bg_gray::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #f5f5f5;
	z-index: -100;
}
.whitetext, .whitetext span {
	color: #fff;
}
.whitetext .maintitle.mtleft .sf::before, .whitetext.maintitle.mtleft .sf::before {
	background: #fff;
}
.bg_half::before {
	content: '';
	width: 40%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #5274BD;
	z-index: -99;
	opacity: 0.3;
}
.bg_half::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1c3e73;
	z-index: -100;
}
@media (max-width: 750px) {
	.bg_half::before {
		width: 90px;
	}
}
/*=== 共通部分ここまで ===*/
/* header ================================*/
/* logo */
.header_title a:hover {
	opacity: 0.6;
}
.header_title {
	position: fixed;
	top: 15px;
	left: 23px;
	width: 215px;
	z-index: 100;
	transition: .6s;
}
.header_title img {
	width: 100%;
	filter: brightness(0) invert(1);
}
.change .header_title img {
	filter: none;
}
/* btn */
.header_btn {
	position: fixed;
	top: 15px;
	right: 100px;
	display: flex;
	z-index: 999;
	font-size: 1.17rem;
}
.header_btn a {
	color: #fff;
}
.header_btn a:hover {
	opacity: 0.6;
}
.change .header_btn a {
	color: #5274BD;
}
/* hamburger */
.hamburger {
	position: fixed;
	display: block;
	height: 33px;
	top: 27px;
	right: 40px;
	z-index: 9999;
	width: 55px;
	border: none;
	background-color: transparent;
}
.hamburger.-active .hamburger__line {
	background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
	top: 0;
	transform: rotate(45deg);
	background-color: #fff !important;
}
.hamburger.-active .hamburger__line::after {
	top: 0;
	transform: rotate(-45deg);
	background-color: #fff !important;
}
.hamburger__line {
	display: block;
	height: 2px;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
	background-color: #fff;
}
.change .hamburger__line, .change .hamburger__line:before, .change .hamburger__line:after {
	background: #5274BD;
}
.hamburger__line:before {
	top: -13.5px;
}
.hamburger__line:after {
	top: 13.5px;
}
/* menu close */
.hamburger__text {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	font-size: 0.9rem;
	letter-spacing: 0.15em;
	text-align: center;
	font-weight: 600;
}
.hamburger__text:before {
	color: #fff;
}
.change .hamburger__text::before {
	color: #5274BD;
}
.hamburger__text::before {
	content: "menu";
	text-transform: uppercase;
}
.hamburger.-active .hamburger__text::before {
	content: 'close';
	position: relative;
	bottom: -13px;
	color: #fff !important;
}
.header__nav-area {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100vh; /* fallback */
	height: calc(var(--vh, 1vh) * 100);
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}
.header__nav-area::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1c3e73;
	opacity: 0.9;
	z-index: -1;
}
.header__nav-area::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/hamburger.webp);
	background-size: cover;
	background-position: center;
	z-index: -2;
	filter: grayscale(100%);
}
.header__nav-area.-active {
	opacity: 1;
	visibility: visible;
}
.global-navigation {
	margin: auto;
	height: fit-content;
	width: 85%;
}
.global-navigation__list {
	margin-bottom: 15px;
}
.global-navigation__list > li {
	margin: 3px 0;
	font-size: 0.9rem;
	transition: .35s;
	line-height: 1.75;
	display: block;
	padding: 12px 0;
}
.global-navigation__list a {
	color: #fff;
}
.global-navigation__list a:hover {
	opacity: 0.6;
}
.global-navigation__list > li a {
	display: inline-block;
	width: 100%;
	text-align: center;
}
.global-navigation__list > li a span {
	display: block;
	font-size: 155%;
	transition: all .3s;
	text-transform: uppercase;
	white-space: nowrap;
	letter-spacing: 0.17em;
}
/*btn*/
.global-navigation .mainbtn {
	margin-bottom: 5px;
}
.global-navigation .mainbtn a {
	font-size: 1rem;
	color: #fff;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
}
.global-navigation .mainbtn a:hover {
	border: 2px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
/*icon*/
.global-navigation .ficons a {
	font-size: 1.55rem;
}
/*accordion menu*/
.accordion__list li {
	font-size: 1rem;
}
.accordion__list li + li {
	margin-top: 11px;
}
.accordion__list li a::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 7px;
	font-size: 0.6rem;
	transform: translateY(-2px);
	color: #4c5434;
}
.accordion__link {
	opacity: 0.85;
}
.accordion {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: 0.4s;
}
.accordion.-active {
	height: auto;
	padding-top: 17px;
	visibility: visible;
}
.global-navigation__link.-accordion {
	position: relative;
	background: none;
	border: none;
	appearance: none;
	width: 100%;
	padding: 0;
	text-align: left;
	color: #fff;
}
.global-navigation__link.-accordion::after {
	content: '';
	display: block;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 2px;
	background-color: #4c5434;
	transform: translateY(-50%);
	transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	background-color: #4c5434;
	transform: translateY(-50%);
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
/* animation */
.header__nav-area {
	overflow-x: hidden;
}
.header__nav-area ul li {
	transform: translateX(200px);
	opacity: 0;
}
.header__nav-area .mainbtn {
	transform: translateX(200px);
	opacity: 0;
}
.header__nav-area.-active ul li {
	transform: translateX(0);
	transition: 1.6s ease, opacity 2.6s ease;
	opacity: 1;
}
.header__nav-area.-active .mainbtn {
	transform: translateX(0);
	transition: 1.6s ease, opacity 2.6s ease;
	opacity: 1;
}
.header__nav-area.-active ul li:nth-child(2) {
	transition-delay: 0.15s;
}
.header__nav-area.-active ul li:nth-child(3) {
	transition-delay: 0.3s;
}
.header__nav-area.-active ul li:nth-child(4) {
	transition-delay: 0.45s;
}
.header__nav-area.-active ul li:nth-child(5) {
	transition-delay: 0.6s;
}
.header__nav-area.-active ul li:nth-child(6) {
	transition-delay: 0.75s;
}
.header__nav-area.-active .mainbtn {
	transition-delay: 0.45s;
}
@media (max-width: 750px) {
	.header_btn {
		display: none;
	}
	.hamburger__line {
		width: 53px;
	}
	.hamburger__line:before {
		top: -9.5px;
	}
	.hamburger__line:after {
		top: 9.5px;
	}
	.header_title {
		top: 8px;
		left: 12px;
		width: 150px;
	}
	.hamburger {
		top: 12px;
		right: 12px;
	}
	.hamburger__text {
		bottom: -13px;
		font-size: 0.7rem;
	}
	.global-navigation__list > li {
		font-size: 0.65rem;
		padding: 5px 0;
	}
	.global-navigation .mainbtn a {
		font-size: 0.8rem !important;
		width: 80%;
		max-width: 185px;
	}
}
/* footer =======================================*/
.footerbg {
	position: relative;
}
.footerbg::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1c3e73;
	opacity: 0.77;
	z-index: -1;
}
.footerbg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/footer.webp);
	background-size: cover;
	background-position: 50% 70%;
	z-index: -2;
	filter: grayscale(100%);
}
.footer_contact .inner {
	max-width: 700px;
}
.footer_contact {
	padding: 85px 0 90px;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 30px;
}
.footer_contact .maintitle .mf {
	color: #fff;
}
.ctext {
	margin-bottom: 37px;
	font-size: 115%;
	text-align: center;
}
/*btn*/
.footer_contact .btn {
	text-align: center;
	width: 48.5%;
}
.footer_contact .btn a {
	display: block;
	height: 100%;
	width: 100%;
	color: #fff;
	padding: 22px 5px;
	font-size: 1.1rem;
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
	white-space: nowrap;
}
.footer_contact .btn a:hover {
	border: 2px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.fax {
	pointer-events: none;
}
@media (max-width: 925px) {
	.footer_contact .btn a {
		font-size: 0.9rem;
	}
}
@media (max-width: 750px) {
	.footer_contact::after {
		background-attachment: scroll;
	}
	.footer_contact .inner {
		width: 83%;
	}
	.footer_contact .maintitle {
		margin-bottom: 15px;
	}
	.ctext {
		text-align: left;
		margin-bottom: 27px;
		font-size: 95%;
	}
	.footer_contact {
		padding: 55px 0;
	}
	.footer_contact .flexbox {
		max-width: 400px;
		margin: auto;
	}
	.footer_contact .btn {
		margin-bottom: 8px;
		width: 100%;
		height: auto;
	}
	.footer_contact .btn:last-child {
		margin-bottom: 0 !important;
	}
	.footer_contact .btn a {
		font-size: 1.03rem;
		padding: 15px 5px;
	}
}
/*copyright*/
.copyright {
	font-size: 0.9rem;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 13px 0 20px;
	color: #fff;
	margin: auto;
}
@media (max-width: 550px) {
	.copyright {
		padding: 10px 0 13px;
		font-size: 0.75rem;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 61px;
	height: 61px;
	box-sizing: border-box;
	background: #5195BD;
	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 6 Free";
	content: "\f077";
	font-weight: bold;
	color: #fff;
	font-size: 1.1rem;
	position: absolute;
	top: 47%;
	left: 49.5%;
	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: 0.93rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #1c3e73;
	z-index: 1;
	opacity: 0.4;
}
/**/
.slide_items {
	position: relative;
	width: 100%;
}
.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 14s linear 0s normal both;
}
/* text */
.slide_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
	color: #fff;
}
.slide_text p {
	margin-bottom: 0;
	white-space: nowrap;
	line-height: 1.5;
	font-size: 2.3rem;
	letter-spacing: 0.08em;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
	animation: fadeIn 2s ease 0.35s 1 normal backwards;
}
.slide_text .bdb::before {
	background: rgba(255, 255, 255, 0.45);
	transition-delay: 3.8s;
}
@media (max-width: 1050px) {
	.slide_text p {
		font-size: 4vw;
	}
}
@media (max-width: 550px) {
	.slide_items img {
		height: calc(100vh - 55px);
		min-height: auto;
	}
	.slide_text p {
		font-size: 5vw;
	}
}
/*============*/
.pdb {
	padding-bottom: 55px !important;
}
.pdb0 {
	padding-bottom: 1px !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 20px !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: 45px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 27px;
	}
}
.aic {
	align-items: center;
}
/*アニメーション*/
/* flowup */
.flowup {
	opacity: 0;
	transform: translateY(7px);
	transition: opacity 1.15s, transform 1.15s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*見出しアニメ*/
.bdb {
	position: relative;
}
.bdb.stitle {
	border-bottom: none;
}
.bdb.stitle::after {
	content: none;
}
.bdb::before {
	content: '';
	display: block;
	height: 1px;
	background: #5274BD;
	position: absolute;
	bottom: 0;
	opacity: 0;
	width: 0;
	transition: 1.8s;
	transition-delay: 0.5s;
}
.inview.bdb::before {
	width: 100%;
	opacity: 1;
}
/*delay*/
.delay01 {
	transition-delay: 0.45s !important;
}
.delay02 {
	transition-delay: 0.65s !important;
}
@media (max-width: 750px) {
	.delay01, .delay02 {
		transition-delay: 0.3s !important;
	}
}
/**/
@media (max-width:750px) {
	.spmgb {
		margin-bottom: 35px;
	}
}
/* 新着情報　======================*/
.news .flexbox {
	flex-wrap: nowrap;
}
.newstitle {
	margin-right: 90px;
}
.newsl {
	padding: 10px 20px;
	background: #fff;
	width: 100%;
}
@media (max-width:750px) {
	.news {
		padding: 50px 0 60px;
	}
	.newstitle {
		margin-right: 0;
	}
	.newsl {
		padding: 0 10px 10px;
	}
}
/* について　======================*/
.aboutus, .aboutus .maintitle span {
	color: #fff;
}
.aboutus::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1c3e73;
	opacity: 0.75;
	z-index: -1;
}
.aboutus::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/aboutus.webp);
	background-size: cover;
	background-position: center;
	z-index: -2;
	filter: grayscale(100%);
}
.abubox {
	padding: 70px 85px;
	position: relative;
	box-shadow: 0px 2.5px 3px rgba(0, 0, 0, 0.03), 0px -2.5px 3px rgba(0, 0, 0, 0.02);
	background: rgba(255, 255, 255, 0.02);
}
.abubox::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	pointer-events: none;
	z-index: -1;
}
@media (max-width:1250px) {
	.abubox {
		padding: 60px 40px 65px;
	}
}
@media (max-width:550px) {
	.abubox {
		padding: 40px 17px 45px;
	}
}
/*btn*/
.whitebtn.mainbtn a {
	color: #fff;
	border: 1px solid #fff;
	background: transparent;
}
section .whitebtn.mainbtn a::before {
	filter: brightness(0) invert(1);
}
section .whitebtn.mainbtn a:hover::after {
	opacity: 0.35;
}
/* 事業内容　======================*/
.serttop {
	margin-bottom: 60px;
}
.topservices .tbtn {
	margin-top: 10px;
}
.topservices::after {
	content: "";
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 105%;
	height: 105%;
	z-index: -1000;
	background-image: url(../img/bg.webp);
	background-size: cover;
	filter: blur(7px);
	overflow: hidden;
}
/* 熱絶縁 */
.sertitle {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: clamp(1.35rem, 0.85rem + 1.6vw, 1.75rem);
	font-weight: 400;
	margin-bottom: 60px;
	white-space: nowrap;
	color: #5274BD;
	position: relative;
}
.sertitle::before, .sertitle::after {
	content: '';
	border-top: 1px solid #5274BD;
	width: 4em;
}
.sertitle::before {
	margin-right: .7em;
}
.sertitle::after {
	margin-left: .7em;
}
.sertitle span {
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 43%;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}
@media (max-width:550px) {
	.serttop {
		margin-bottom: 35px;
	}
	.sertitle {
		margin-bottom: 40px;
	}
}
/* card */
.sercard {
	width: 48.5%;
	box-shadow: 0px 2.5px 3px rgba(0, 0, 0, 0.03), 0px -2.5px 3px rgba(0, 0, 0, 0.02);
	margin-bottom: 40px;
}
.cardtext {
	padding: 10px 17px;
	background: #fff;
}
.srtitle {
	font-size: clamp(1.05rem, 0.8625rem + 0.6vw, 1.2rem);
	font-weight: 400;
	margin-bottom: 10px;
	color: #5195BD;
}
.srtitle span {
	font-size: 95%;
	text-transform: uppercase;
	border-right: 1px solid #5195BD;
	padding-right: 15px;
	margin-right: 15px;
}
@media (max-width:750px) {
	.sercard {
		width: 100%;
	}
}
/* 対応可能エリア　======================*/
.area {
	overflow: hidden;
}
.area .inner {
	max-width: 1025px;
}
.areaimg {
	position: absolute;
	top: 50%;
	left: -9%;
	transform: translateY(-50%);
	width: 50%;
}
.areatext {
	width: 53%;
	margin-left: auto;
}
.areastr {
	padding: 5px 10px;
	background: #fff;
	font-size: 140%;
}
.areastr::before {
	font-family: "Font Awesome 6 Free";
	content: "\f3c5";
	font-weight: bold;
	color: #5195BD;
	margin-right: 7px;
}
@media (max-width:750px) {
	.area {
		padding: 70px 0;
	}
	.areaimg {
		max-width: 300px;
		width: 65% !important;
		position: initial;
		transform: translateY(0);
		margin: auto;
		margin-top: 30px;
	}
	.areastr {
		font-size: 115%;
	}
	.areatext {
		width: 100%;
	}
}
@media (max-width:550px) {
	.area {
		padding: 50px 0 45px;
	}
}
/* 施工実績　======================*/
.p_slider ul .slick-slide {
	margin-left: 25px !important;
	transition: .3s ease;
}
.p_slider ul li {
	position: relative;
	overflow: hidden;
}
.p_slider ul li:nth-child(2n+1) {
	margin-top: 30px;
}
.p_slider ul li::before {
	content: '';
	display: block;
	padding-top: 70%; /*高さの比率*/
}
.p_slider ul li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.9s ease;
}
.p_slider ul li a:hover img {
	transform: scale(1.05);
}
.p_slider ul li p {
	position: absolute;
	bottom: -40px;
	left: 0;
	z-index: 3;
	display: none;
}
@media (max-width: 750px) {
	.p_slider ul .slick-slide {
		margin-left: 15px !important;
	}
	.p_slider ul li:nth-child(2n+1) {
		margin-top: 15px;
	}
}
@media (max-width: 420px) {
	.p_slider ul li p {
		bottom: -35px;
		font-size: 0.77rem;
	}
}
/* 採用情報　======================*/
.blurimg {
	position: relative;
}
.blurimg::before, .blurimg::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 5%;
	right: 5%;
}
.reverse .blurimg::before, .reverse .blurimg::after {
	right: auto;
	left: 5%;
}
.blurimg::after {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	pointer-events: none;
	z-index: -1;
}
.blurimg::before {
	filter: brightness(0.7);
	background-image: url(../img/recruit.jpg);
	background-size: 100%;
	z-index: -2;
}
.recruit .blurimg {
	width: 62%;
}
.recruit .rectext {
	width: 35%;
}
@media (max-width: 1220px) {
	.recruit .blurimg {
		width: 53%;
	}
	.recruit .rectext {
		width: 40%;
	}
}
@media (max-width: 750px) {
	.blurimg {
		left: 2.3%;
	}
	.reverse .blurimg {
		left: auto;
		right: 2.3%;
	}
	.recruit .blurimg, .recruit .rectext {
		width: 100%;
	}
	.recruit .blurimg {
		margin-bottom: 75px;
	}
	.blurimg {
		margin-bottom: 37px;
	}
	.recruit .rectext {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width: 550px) {
	.recruit .blurimg {
		margin-bottom: 50px;
	}
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
	padding: 120px 0 110px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	mask-image: linear-gradient(to bottom, #000 20%, #000 50%, transparent 100%); /* 徐々に透明にする */
	-webkit-mask-image: linear-gradient(to bottom, #000 20%, #000 50%, transparent 100%); 
}
.fv .inner {
	width: 97%;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/fv.webp);
	background-repeat: repeat;
	background-size: cover;
	background-position: 50% 25%;
	z-index: -1;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #1c3e73;
	opacity: 0.65;
	z-index: 1;
}
.fv h2 {
	text-align: center;
	margin-bottom: 20px !important;
	font-size: clamp(1.5rem, 0.5rem + 3.2vw, 2.3rem);
	font-weight: 400;
	line-height: 1;
	z-index: 1;
	position: relative;
	color: #fff;
	text-transform: capitalize;
	padding-bottom: 13px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.fv h2 span {
	font-size: 65%;
	display: block;
	margin-bottom: 12px;
}
.fv h2::before {
	background: rgba(255, 255, 255, 0.45);
	transition-delay: 0.1s;
}
@media(max-width:750px) {
	.fv {
		padding: 90px 0 80px;
	}
}
@media(max-width:550px) {
	.fv h2 {
		padding-bottom: 10px;
		margin-bottom: 17px !important;
	}
}
/**/
.fvbg {
	position: relative;
}
/**/
.serfv {
	position: relative;
}
.serfv::before {
	content: '';
	width: 42.5%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #5274BD;
	z-index: -99;
	opacity: 0.3;
}
.serfv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1c3e73;
	z-index: -100;
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 0.95rem;
	font-weight: 400;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: relative;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}
.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 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:850px) {
	.binner {
		font-size: 0.75rem;
	}
}
/* 事業内容ページ  ===========================================================================================================*/
/* 特徴 */
.features .inner {
	max-width: 1315px;
}
.features.bg_half::before {
	width: 42.5%;
}
/*box*/
.fea div {
	width: 31.5%;
	background: rgba(81, 149, 189, 0.2);
	position: relative;
	padding: 20px 30px;
}
.fea div::before, .fea div::after {
	content: '';
	position: absolute;
	border: solid rgba(81, 149, 189, 0.6);
	width: 20px;
	height: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.fea div::before {
	top: -6px;
	left: -6px;
	border-width: 1px 0 0 1px;
}
.fea div::after {
	bottom: -6px;
	right: -6px;
	border-width: 0 1px 1px 0;
}
/*title*/
.fea div .sertitle {
	font-size: clamp(1.2rem, 1.0125rem + 0.6vw, 1.35rem);
	margin-bottom: 17px;
	letter-spacing: 0.12em;
	color: #fff;
}
.fea div .sertitle::before, .fea div .sertitle::after {
	opacity: 0.3;
	border-top: 1px solid #fff;
	width: 15%;
}
.fea div .sertitle::before {
	margin-right: .9em;
}
.fea div .sertitle::after {
	margin-left: .7em;
}
@media(max-width:1050px) {
	.fea div {
		width: 48%;
		margin-bottom: 40px;
	}
	.fea div:last-child {
		margin-bottom: 0;
		margin-left: auto;
		margin-right: auto;
	}
}
@media(max-width:750px) {
	.fea div {
		width: 100%;
		margin-bottom: 30px;
		padding: 20px;
	}
	.fea div:last-child {
		margin-bottom: 0;
	}
}
/* 事業内容 */
.services .inner {
	max-width: 1400px;
}
.services .maintitle {
	margin-bottom: 90px;
}
.services .srtitle {
	font-size: 1.45rem;
	margin-bottom: 20px;
}
.services .flexbox {
	border-bottom: 1px solid rgba(81, 149, 189, 0.3);
	margin-bottom: 100px;
	padding-bottom: 100px;
}
.services .flexbox:last-child {
	border-bottom: none;
	padding-bottom: 0 !important;
	margin-bottom: 30px !important;
}
/*img*/
.services .blurimg img {
	box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 13px;
}
.services .flexbox:nth-of-type(1) .blurimg::before {
	background-image: url(../img/services01.jpg);
}
.services .flexbox:nth-of-type(2) .blurimg::before {
	background-image: url(../img/services02.jpg);
}
.services .flexbox:nth-of-type(3) .blurimg::before {
	background-image: url(../img/services03.jpg);
}
.services .flexbox:nth-of-type(4) .blurimg::before {
	background-image: url(../img/services04.jpg);
}
.services .flexbox:nth-of-type(5) .blurimg::before {
	background-image: url(../img/services05.jpg);
}
@media(max-width:1020px) {
	.services .flexbox {
		margin-bottom: 80px;
		padding-bottom: 70px;
	}
	.services .srtitle {
		font-size: 1.15rem;
	}
}
@media(max-width:550px) {
	.services .maintitle {
		margin-bottom: 47px;
	}
	.services .flexbox {
		border-bottom: none;
		margin-bottom: 60px;
		padding-bottom: 0;
	}
	.services .flexbox:last-child {
		margin-bottom: 0 !important;
	}
}
/* 施工実績ページ  ===========================================================================================================*/
/*table*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr {
	border: 2px solid #ededed;
}
.info_table th, .info_table td {
	padding: 18px 0;
}
.info_table th {
	background: #5274BD;
	color: #fff;
	width: 33%;
	border-right: 2px solid #ededed;
	font-weight: 400;
}
.info_table.tbleft th {
	text-align: left !important;
	padding-left: 10px;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	background: #fff;
	width: 67%;
	border-right: 2px solid #ededed;
	border-left: 2px solid #ededed;
}
.ib {
	display: inline-block;
}
@media (max-width:750px) {
	.sptable.info_table {
		border-collapse: collapse;
	}
	.sptable.info_table td, .sptable.info_table th {
		width: 100%;
		padding: 8px 10px;
		display: block;
		border: none;
		text-align: left;
	}
	.sptable.info_table th {
		border-bottom: 2px solid #ededed;
	}
	.sptable.info_table td {
		padding-bottom: 10px !important;
	}
}
/* 工事経歴 */
.ct_wrap {
	max-width: 1100px;
	margin: auto;
	margin-bottom: 45px;
}
.ct_wrap:last-child {
	margin-bottom: 0;
}
.ct_wrap .info_table th {
	text-align: left;
	padding-left: 10px;
}
.ct_wrap .info_table span {
	display: inline-block;
}
/**/
.consname {
	width: 70% !important;
}
.ct_wrap td span {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width:550px) {
	.spsctext {
		display: none;
	}
	.ct_wrap .info_table {
		width: 100%;
		font-size: 95%;
	}
	.consname {
		width: 65% !important;
	}
}
/* 採用情報ページ  ===========================================================================================================*/
/* スタッフ紹介 */
/*img*/
.top_memimg {
	width: 100%;
	max-width: 900px;
	margin: auto;
	margin-bottom: 80px;
}
@media (max-width:550px) {
	.top_memimg {
		margin-bottom: 40px;
	}
}
/*スタッフを紹介します！*/
.memtop {
	position: relative;
	font-size: 115%;
	max-width: 560px;
	width: 90%;
	margin: auto;
	margin-bottom: 75px;
	color: #5274BD;
	line-height: 1.6;
}
.memtop span {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.memtop::before, .memtop::after {
	content: '';
	display: block;
	width: 1px;
	height: 1.5em;
	background: #5274BD;
	position: absolute;
	bottom: 0;
}
.memtop::before {
	left: -1em;
	transform: rotate(-25deg);
}
.memtop::after {
	right: -1em;
	transform: rotate(25deg);
}
@media (max-width:750px) {
	.memtop {
		font-size: 100%;
		margin-bottom: 35px;
	}
}
/**/
.members .inner {
	max-width: 1300px;
}
.member {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 45px;
}
.member:last-child {
	margin-bottom: 0 !important;
}
.member .membox {
	/*
	width: 31%;
	margin: 0 1.1% 37px;
	*/
	width: 47%;
	margin: 0 1.5% 37px;
}
.membox .masked {
	margin-bottom: 8px;
}
.memtext {
	padding: 0 10px;
}
.member .membox .stitle {
	margin-bottom: 17px;
}
.mamimg {
	background: #fff;
	margin-bottom: 7px;
}
/*table*/
.m_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.m_table th, .m_table td {
	padding: 12px 10px;
}
.m_table th {
	position: relative;
	width: 40%;
	border-bottom: 2px solid #3b5887;
	background: #1c3e73;
	color: #fff;
	font-weight: 400;
}
.m_table tr:last-child th {
	border-bottom: none;
}
.m_table td {
	background: #ededed;
	width: 60%;
	padding-left: 15px;
}
.m_table tr:nth-child(odd) td {
	background-color: #f5f5f5;
}
.comment th {
	border-top: 2px solid #3b5887;
}
@media(max-width:950px) {
	.member {
		margin-bottom: 35px;
	}
}
@media(max-width:800px) {
	.m_table th {
		width: 55%;
	}
	.m_table td {
		width: 45%;
	}
	.comment {
		margin-top: 10px;
	}
	.comment th {
		text-align: left;
		padding-left: 15px;
		border-top: none;
	}
	.comment th, .comment td {
		width: 100% !important;
		display: block;
	}
}
@media(max-width:550px) {
	.m_table th {
		width: 45%;
	}
	.m_table td {
		width: 55%;
	}
	.member {
		display: block;
		margin-bottom: 65px;
	}
	.member .membox .stitle {
		margin-bottom: 15px;
	}
	.member .membox {
		width: 100%;
		margin: 0 0 45px;
	}
	.member .membox:last-child {
		margin-bottom: 0;
	}
}
/* 1日の流れ */
.flow {
	position: relative;
}
.flow::before {
	content: "";
	width: 16px;
	height: 100%;
	background: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.15;
}
.flow .flowd::after, .flow .flowd::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.flow .flowd::before {
	z-index: 1;
	width: 11px;
	height: 11px;
	background: #fff;
	border-radius: 50%;
	left: 3px;
}
.flow .flowd::after {
	width: 63px;
	border-bottom: 1px dashed #fff;
	position: absolute;
	left: 13px;
}
.flow .flowd {
	padding-left: 80px;
	position: relative;
	margin-bottom: 10px;
}
.flow .fwrap {
	padding: 15px;
	background: #fff;
	position: relative;
	z-index: 1;
}
.flow .fwrap p {
	margin-bottom: 0;
	position: relative;
	padding-left: 70px;
}
.time {
	font-weight: 500;
	color: #5274BD;
	position: absolute;
	top: 0;
	left: 0;
}
.fnote {
	margin-top: 25px;
}
@media(max-width: 950px) {
	.flow .flowd {
		padding-left: 35px;
	}
	.flow .fwrap {
		padding: 10px 13px;
	}
}
@media(max-width: 750px) {
	.spflow {
		position: relative;
	}
	.spflow::before {
		content: "";
		width: 16px;
		height: 100%;
		background: #fff;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0.3;
	}
	.flow::before {
		content: none;
	}
}
@media(max-width: 550px) {
	.time {
		position: initial;
		display: block;
	}
	.flow .fwrap p {
		padding-left: 0;
	}
}
/* 求める人材 */
.requirements .inner {
	max-width: 1300px;
}
.requirements .acheck li {
	padding-bottom: 7px;
	margin-bottom: 7px;
}
.rnote {
	margin-top: 13px;
}
@media (max-width:750px) {
	.requirements img {
		margin-bottom: 15px;
	}
}

.out_cover{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
   
}
.out_cover::after{
	content: "";
	position: absolute;
	background:rgba(53,52,52,0.10);
	backdrop-filter: blur(8px);
	z-index: 11;
	TOP:0;
	left:0;
	right: 0;
	bottom:0;
}
.out_txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 12;
	color: red;
	font-size: 2vw;
}

@media(max-width: 550px) {
	.out_txt{
		font-size: 15px;
	}
}

/* 会社概要ページ  ===========================================================================================================*/
/* 理念 */
.vision {
	overflow: hidden;
	padding: 220px 0 205px;
}
.vision .inner {
	position: relative;
}
/* img */
.viimg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -3%;
	width: 50%;
	opacity: 0.8;
}
.viimg div::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: calc(100% + 50px);
	height: calc(100% + 50px);
	border: 50px solid #1c3e73;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	z-index: 1;
	filter: blur(10px);
}
.viimg img {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}
/* text */
.vitext p {
	line-height: 1.6;
	font-size: clamp(1.3rem, -0.075rem + 4.4vw, 2.4rem);
	letter-spacing: 0.12em;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
@media (max-width:1300px) {
	.vision {
		padding: 18vw 0 17vw;
	}
	.viimg {
		width: 60%;
	}
}
@media (max-width:750px) {
	.vision {
		padding: 22vw 0 21vw;
	}
	.viimg {
		width: 77%;
		right: -7%;
	}
}
@media (max-width:550px) {
	.viimg div::before {
		width: calc(100% + 20px);
		height: calc(100% + 20px);
		border: 20px solid #1c3e73;
		filter: blur(5px);
	}
}
/* 代表挨拶 */
.glast {
	margin-top: 23px;
	text-align: right;
}
.gbox {
	padding: 60px 50px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 2.5px 3px rgba(0, 0, 0, 0.01), 0px -2.5px 3px rgba(0, 0, 0, 0.01);
}
.gimg {
	display: flex;
	height: auto;
}
.gimg img {
	object-fit: cover;
}
.bg_light .inner {
	z-index: 1;
	position: relative;
}
/*background*/
.bg_light {
	overflow: hidden;
	position: relative;
	background-image: url(../img/bg.webp);
	background-size: cover;
	background-position: 43% 50%;
	background-attachment: fixed;
}
.bg_light::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #1c3e73;
	opacity: 0.05;
}
.bg_light::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	pointer-events: none;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .bg_light {
	background-attachment: scroll;
}
@media (max-width: 550px) {
	.bg_light {
		background-attachment: scroll;
	}
	.bg_light::after {
		-webkit-backdrop-filter: blur(0);
		backdrop-filter: blur(0);
	}
	.greeting .sertitle {
		margin-bottom: 25px;
	}
	.gbox {
		padding: 30px 20px;
	}
	.gimg {
		margin-bottom: 20px;
	}
}
/* 会社概要 */
/*img*/
.twflex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
}
.twflex div {
	width: 48.5%;
	position: relative;
}
.twflex div:last-child {
	top: 20px;
}
@media (max-width: 550px) {
	.twflex {
		margin-bottom: 35px;
	}
	.twflex div:last-child {
		top: 10px;
	}
}
/*map*/
.info_table .mapbox td {
	padding: 7px;
}
.mapbox iframe {
	width: 100%;
	height: 450px;
	vertical-align: middle;
}
@media (max-width:550px) {
	.mapbox iframe {
		height: 280px;
	}
}
/* お問い合わせページ  ===========================================================================================================*/
.contactpage .inner {
	max-width: 1100px;
}
.contop {
	max-width: 690px;
	margin: auto;
	margin-bottom: 60px;
}
.conbox {
	width: 49.5%;
	padding: 10px 20px 20px;
	background: #fff;
	position: relative;
}
.conbox .stitle {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.conbox a {
	display: block;
	font-size: 1.9rem;
	color: #5274BD;
	line-height: 1.8;
	font-weight: 500;
}
/*pdf*/
.conbox a.pdf {
	font-size: 100%;
}
.conbox a:hover {
	opacity: 0.4;
}
.clink {
	margin-bottom: 13px;
}
.conbox p {
	margin-bottom: 0;
}
.conbox p, .conbox li {
	font-size: 94%;
}
.bnote {
	font-size: 110%;
}
@media (max-width: 1060px) {
	.conbox {
		width: 49.5%;
		margin-bottom: 10px;
	}
}
@media (max-width: 750px) {
	.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;
	}
}
/*list*/
.acheck li {
	padding-left: 20px;
	position: relative;
	border-bottom: 1px dotted #5195BD;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: lighter;
	display: inline-block;
	color: #5195BD;
	font-size: .95em;
	position: absolute;
	top: 0.1em;
	left: 0;
}
/**/
.acheck.flexbox {
	justify-content: flex-start;
}
.acheck.flexbox li {
	margin-right: 25px;
	margin-bottom: 0;
	padding-bottom: 0;
}
.acheck.flexbox li:last-child {
	margin-right: 0;
}
.acheck.flexbox li {
	border-bottom: none;
}
/* メール ==========================*/
.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: 910px;
	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 .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: #5274BD;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #5274BD;
	color: #5274BD !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;
	margin: 0 auto;
	white-space: nowrap;
	transition: .4s;
	width: 270px;
	padding: 19px 0;
	background-color: #fff;
	color: #5274BD;
	border: 1px solid #5274BD;
}
.mailform button:hover {
	border: 1px solid transparent;
	color: #fff;
	background: #5274BD;
}
.mailform button::before {
	font-family: "Font Awesome 6 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 #5274BD;
	border-bottom: 3px solid #5274BD;
	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: 550px) {
	.mailform button {
		width: 210px;
		padding: 12px;
	}
	.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 {
	margin: 0 auto;
	border-bottom: 1px solid #5195BD;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-size: clamp(1rem, 0.625rem + 1.2vw, 1.3rem);
	padding-bottom: 7px;
	font-weight: 400;
}
.privacy_header i {
	color: #5195BD;
}
.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: #5195BD;
}
@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: 0;
	transform: translate(-50%, -50%);
	font-size: 90%;
}
.privacy_header span i {
	color: #5195BD !important;
}
.privacy_gold {
	color: #5195BD;
}