@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;
	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 {
	background: linear-gradient(to top left, #173479, #3a579c, #dfe5eb);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
/*見出し01*/
.btitle {
	margin-bottom: 65px;
	display: block;
	text-align: center;
	line-height: 0.65;
	position: relative;
	font-weight: 700;
	font-size: 5.9rem;
}
.btitle .mf {
	white-space: nowrap;
	opacity: 0.6;
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-family: "Aboreto", system-ui;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #dfe5eb;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.bg_gray .btitle .mf {
	color: #fff !important;
}
.btitle .sf {
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 25%;
	color: #173479;
}
@media (max-width: 550px) {
	.btitle {
		margin-bottom: 40px;
		font-size: 4rem;
	}
}
/*見出し02*/
.maintitle {
	margin-bottom: 65px;
	display: block;
	text-align: center;
	line-height: 0.65;
	position: relative;
	font-weight: 700;
	font-size: clamp(2.3rem, 0.8rem + 4.8vw, 3.5rem);
}
.maintitle .mf {
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	position: relative;
	font-family: "Aboreto", system-ui;
	font-weight: 400;
	letter-spacing: 0.12em;
	color: #173479;
}
.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-color: #173479;
	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;
	}
}
/* animation */
.mf span {
	opacity: 0;
}
/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.mf.glow span {
	animation: glow_anime_on 1.3s ease-out forwards;
}
@keyframes glow_anime_on {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
		text-shadow: 0 0 5px #fff, 0 0 10px #fff;
	}
	100% {
		opacity: 1;
		text-shadow: none;
	}
}
/*見出し03*/
.stitle {
	font-weight: 500;
	position: relative;
	font-size: clamp(1.07rem, 0.7825rem + 0.92vw, 1.3rem);
	padding-left: 2px;
	line-height: 1.75;
	padding-bottom: 9px;
	padding-top: 7px;
	margin-bottom: 17px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
.stitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 95px;
	height: 1px;
	background: #173479;
}
.stitle .mf {
	font-size: 80%;
	font-family: "Aboreto", system-ui;
	font-weight: 400;
	text-transform: capitalize;
	margin-right: 12px;
	color: #173479;
}
@media (max-width: 800px) {
	.stitle .mf {
		margin-right: 0;
		display: block;
	}
}
@media (max-width: 550px) {
	.stitle {
		margin-bottom: 12px;
	}
}
/*見出し04*/
.mtitle {
	font-weight: 500;
	position: relative;
	margin-bottom: 17px;
	letter-spacing: 0.1em;
	font-size: clamp(1.2rem, 0.95rem + 0.8vw, 1.4rem);
	line-height: 1.7;
	background: #173479;
	color: #fff;
	padding: 6px 9px 9px;
	padding-right: 23px;
}
.mtitle::after {
	content: '';
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	pointer-events: none;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 18px;
	transition: .4s;
	display: inline-block;
	width: 260px;
	z-index: 1;
	overflow: hidden;
	line-height: 1.6;
	background: #fff;
	color: #173479;
	border: 1px solid #173479;
	text-transform: uppercase;
	text-align: center;
}
.mainbtn a span {
	text-align: left;
}
.mainbtn a:hover {
	color: #fff;
	border: 1px solid #fff;
	background: #173479;
	transition: .4s;
}
@media (max-width:550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 210px;
		padding: 17px;
		font-size: 95%;
	}
}
/*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%;
	}
}
/**/
@media (max-width:750px) {
	.spimgmaint {
		margin-bottom: 35px;
	}
	.spimgst {
		margin-bottom: 15px;
	}
}
.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_gray::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #dfe5eb;
	z-index: -100;
}
/*=== 共通部分ここまで ===*/
/* header ================================*/
header {
	position: fixed;
	display: block;
	width: 100%;
	height: 95px;
	top: 0;
	right: 0;
	z-index: 75;
	transition: .6s;
}
.change {
	background: #dfe5eb;
}
/* logo */
.header_title a:hover {
	opacity: 0.6;
}
.header_title {
	position: fixed;
	top: 11px;
	left: 23px;
	width: 275px;
	z-index: 100;
	transition: .6s;
}
.header_title img {
	width: 100%;
}
.toppage .header_title {
	opacity: 0;
	pointer-events: none;
}
.toppage .change .header_title {
	opacity: 1;
	pointer-events: auto;
}
/* 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: #173479;
}
/* hamburger */
.hamburger {
	position: fixed;
	display: block;
	height: 33px;
	top: 27px;
	right: 24px;
	z-index: 9999;
	width: 60px;
	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: 60px;
	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-color: #173479;
}
.hamburger__line:before {
	top: -11.5px;
}
.hamburger__line:after {
	top: 11.5px;
}
.hamburger__text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	font-weight: 700;
	color: #fff;
	bottom: -20px;
}
.change .hamburger__text {
	color: #173479;
}
.hamburger__text::before {
	content: "menu";
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-left: 3px;
}
.hamburger.-active .hamburger__text::before {
	content: 'close';
	position: relative;
	bottom: -13px;
	color: #fff !important;
}
.header__nav-area {
	position: fixed;
	top: 0;
	right: 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.-active {
	opacity: 1;
	visibility: visible;
}
/* ハンバーガー 背景アニメーション */
.header__nav-area::before, .header__nav-area::after, .global-navigation::before, .global-navigation::after {
	content: '';
	width: calc(100% / 4);
	height: 0;
	position: absolute;
	top: 0;
	background: #173479;
	z-index: -1;
}
.header__nav-area.-active::before, .header__nav-area.-active::after, .header__nav-area.-active .global-navigation::before, .header__nav-area.-active .global-navigation::after {
	height: 100%;
	transition: 0.5s cubic-bezier(0.6, 0.05, 0.6, 0.2);
}
.header__nav-area::before {
	transition-delay: 0.6s !important;
	left: 0;
}
.header__nav-area::after {
	transition-delay: 0.45s !important;
	left: calc(100% / 4);
	border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.global-navigation::before {
	transition-delay: 0.3s !important;
	right: calc(100% / 4);
	border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.global-navigation::after {
	border-left: 1px solid rgba(255, 255, 255, 0.07);
	transition-delay: 0.15s !important;
	right: 0;
}
.global-navigation {
	margin: auto;
	height: fit-content;
	width: 85%;
}
.global-navigation__list {
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.global-navigation__list > li {
	width: 49%;
	border-bottom: 1px solid #fff;
	margin: 3px 0;
	font-size: 1.3rem;
	transition: .35s;
	line-height: 1.75;
	display: block;
	padding: 23px 0;
}
.global-navigation__list a:hover {
	opacity: 0.6;
}
.global-navigation__list > li a {
	display: inline-block;
	width: 100%;
	color: #fff;
	line-height: 1;
}
.global-navigation__list > li a span {
	font-weight: 700;
	margin-right: 10px;
	font-size: 160%;
	transition: all .3s;
	text-transform: uppercase;
	white-space: nowrap;
}
/*btn*/
.global-navigation .mainbtn {
	margin-bottom: 5px;
}
.global-navigation .mainbtn a {
	font-size: 0.9rem;
}
.global-navigation .mainbtn.telbtn a {
	background: #173479;
	color: #fff;
}
.global-navigation .mainbtn.telbtn a:hover {
	background: #fff;
	color: #173479;
}
/*icon*/
.global-navigation .ficons a {
	font-size: 1.55rem;
}
/* animation */
.header__nav-area {
	overflow-x: hidden;
}
.header__nav-area ul {
	transform: translateX(20px);
	opacity: 0;
}
.header__nav-area.-active ul {
	transform: translateX(0);
	transition: 1.6s ease, opacity 2.6s ease;
	opacity: 1;
	transition-delay: 0.35s;
}
@media (max-width: 750px) {
	.global-navigation__list {
		display: block;
	}
	.global-navigation__list > li {
		width: 100%;
		font-size: 1rem;
	}
}
@media (max-width: 550px) {
	header {
		height: 65px;
	}
	.header_btn {
		display: none;
	}
	.hamburger__line {
		width: 55px;
	}
	.hamburger__line:before {
		top: -9.5px;
	}
	.hamburger__line:after {
		top: 9.5px;
	}
	.hamburger__text {
		bottom: -16px;
	}
	.header_title {
		top: 8px;
		left: 12px;
		width: 180px;
	}
	.hamburger {
		top: 10px;
		right: 10px;
	}
	.global-navigation__list > li {
		font-size: 0.83rem;
		padding: 17px 0;
	}
	.global-navigation .mainbtn a {
		font-size: 0.67rem !important;
		width: 80%;
		max-width: 185px;
	}
}
/* footer =======================================*/
.footer_contact .inner {
	max-width: 720px;
}
.footer_contact {
	padding: 85px 0 90px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: #dfe5eb;
}
.footer_contact .maintitle {
	margin-bottom: 30px;
}
/*
.footer_contact .maintitle .mf {
	color: #e07f5c;
}
*/
.ctext {
	margin-bottom: 37px;
	font-size: 115%;
	text-align: center;
}
/*btn*/
.footer_contact .btn {
	text-align: center;
	width: 49%;
}
.footer_contact .btn a {
	display: block;
	height: 100%;
	width: 100%;
	color: #173479;
	padding: 22px 5px;
	font-size: 1.1rem;
	background-color: transparent;
	border: 1px solid #173479;
	white-space: nowrap;
}
.footer_contact .btn a:hover {
	background-color: rgba(0, 0, 0, 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(0, 0, 0, 0.07);
	padding: 17px 0 23px;
	background: #dfe5eb;
	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: #e07f5c;
	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.05rem;
	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.95rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
	background: #fff;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #173479;
	z-index: 1;
	opacity: 0.45;
}
/**/
.slide_items {
	position: relative;
	width: 100%;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 520px;
	object-fit: cover;
}
/**/
.mainvisual {
	position: relative;
}
.mainvisual div:nth-child(1) {
	position: absolute;
	top: 0;
	left: 0;
	width: 32%;
	z-index: 1;
	clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
}
.mainvisual div:nth-child(2) {
	width: 32%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
}
@media (max-width: 1050px) {
	.mainvisual div:nth-child(1) {
		width: 100%;
		clip-path: polygon(0 0, 100% 0, 100% 75%, 0 25%);
	}
	.mainvisual div:nth-child(2) {
		width: 100%;
		clip-path: polygon(0 50%, 100% 25%, 100% 100%, 0 100%);
	}
	.mainvisual div:nth-child(1) img, .mainvisual div:nth-child(2) img {
		height: 27%;
	}
}
@media (max-width: 550px) {
	.mainvisual div:nth-child(1) {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 75%);
	}
	.mainvisual div:nth-child(2) {
		clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
	}
	.slide_items img {
		/*height: calc(100vh - 55px);*/
		min-height: auto;
	}
	.topslide::after {
		opacity: 0.15;
	}
}
/*============*/
.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.stitle {
	position: relative;
	border-bottom: none;
}
.bdb.stitle::after {
	content: none;
}
.bdb::before {
	content: '';
	display: block;
	height: 1px;
	background: #3eb6f7;
	position: relative;
	bottom: -76px;
	opacity: 0;
	width: 0;
	transition: 1.8s;
	transition-delay: 0.5s;
}
.inview.bdb::before {
	width: 100%;
	opacity: 1;
}
@media(max-width:750px) {
	.bdb::before {
		bottom: -69px;
	}
}
/*delay*/
.delay01 {
	transition-delay: 0.45s !important;
}
.delay02 {
	transition-delay: 0.65s !important;
}
@media (max-width: 750px) {
	.delay01, .delay02 {
		transition-delay: 0.3s !important;
	}
}
/* キャッチコピー（ローディングとスライド上） ============================*/
.slogan {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	text-align: center;
	z-index: 2;
	width: 90%;
}
.slogan img {
	width: 80%;
	max-width: 490px;
	margin-bottom: 7px;
	filter: brightness(0) invert(1);
}
.slogan p {
	white-space: nowrap;
	font-weight: 700;
	font-size: 2.3rem;
	line-height: 1.65;
	color: #fff;
}
.slogan p span {
	font-size: 50%;
	text-transform: uppercase;
	display: block;
	color: #e07f5c;
}
.slogan p span br {
	display: none;
}
@media (max-width:1020px) {
	.slogan img {
		max-width: 50vw;
	}
	.slogan p {
		font-size: 3.7vw;
	}
}
@media (max-width:600px) {
	.slogan img {
		max-width: 100%;
	}
	.slogan p {
		font-size: 4.8vw;
	}
	.slogan p span {
		margin-top: 5px;
		font-size: 69%;
	}
	.slogan p span br {
		display: block;
	}
}
/* 新着情報 ============================*/
/**/
.videoarea {
	position: fixed;
	z-index: -1000;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}
.video {
	position: absolute;
	z-index: -1000;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 177.77777778vh;
	height: 56.25vw;
	min-height: 100%;
	min-width: 100%;
}
/**/
.bgw::before {}
.bgw::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #173479;
	opacity: 0.85;
	z-index: -300;
}
/**/
.news {
	padding: 60px 0 0;
}
.news .maintitle {
	filter: brightness(0) invert(1);
}
.news .inner {
	max-width: 1300px;
}
.news .flexbox {
	flex-wrap: nowrap;
}
.newstitle {
	white-space: nowrap;
	height: fit-content;
	margin-right: 150px;
}
.newsl {
	width: 100%;
}
@media (max-width: 1100px) {
	.newstitle {
		margin-right: 50px;
	}
}
@media (max-width: 750px) {
	.newstitle {
		margin-right: 0;
	}
	.news {
		padding: 55px 0 0 !important;
	}
	.news .maintitle {
		margin-bottom: 3px !important;
	}
}
/* について ============================*/
.welcome .btitle .mf {
	opacity: 0.4;
}
.welcome, .welcome .btitle .sf {
	color: #fff;
}
.abutext {
	font-size: 130%;
	margin-bottom: 25px;
	font-weight: 700;
}
.welcome::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(16, 19, 21, 0) 1%, #fff);
	z-index: -200;
	width: 100%;
	height: 200%;
}
@media (max-width: 750px) {
	.abutext {
		font-size: 110%;
		margin-bottom: 15px;
	}
}
/* 事業内容 ============================*/
/*img*/
.serflex {
	display: flex;
	justify-content: space-between;
}
.serflex div {
	width: 47%;
	position: relative;
}
.serflex div:first-child {
	top: -30px;
}
.reverse .serflex div:first-child {
	top: 0;
}
.reverse .serflex div:last-child {
	top: -30px;
}
/**/
.services {
	background: #dfe5eb;
}
.services .btitle .mf {
	color: #fff !important;
}
/* 保有重機 ============================*/
.ownedvehicle {
	background: #fff;
}
.p_slider ul .slick-slide {
	margin-left: 25px !important;
	transition: .3s ease;
}
.p_slider ul li {
	position: relative;
}
/*
.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.3s ease;
}
@media (max-width: 750px) {
	/*
	.p_slider ul .slick-slide {
		margin-left: 15px !important;
	}
	.p_slider ul li:nth-child(2n+1) {
		margin-top: 15px;
	}
	*/
}
/* 施工実績 ============================*/
.works .inner {
	max-width: 1500px;
}
.works .p_slider {
	position: relative;
}
.works .p_slider ul .slick-slide {
	margin-left: 0 !important;
}
.works .p_slider ul li::before {
	padding-top: 100%;
}
/**/
.workstext {
	clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
	z-index: 1;
	position: absolute;
	left: 0;
	padding: 0 60px 0;
	background: #173479;
	color: #fff;
	height: 100%;
	width: 35%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.workstext .mainbtn {
	margin-top: 2px;
}
.workstext .mainbtn.tbtn {
	margin-top: 27px;
}
.workstext .maintitle {
	filter: brightness(0) invert(1);
}
@media (max-width: 1400px) {
	.works .p_slider ul li::before {
		padding-top: 45vw;
	}
	.workstext {
		padding: 0 60px 0 40px;
	}
}
@media (max-width: 1150px) {
	.workstext {
		width: 40%;
	}
}
@media (max-width: 1050px) {
	.works {
		padding-bottom: 0;
	}
	.works .p_slider ul li::before {
		padding-top: 70%;
	}
	.works {
		background: #173479;
	}
	.works .inner {
		width: 100%;
	}
	.workstext {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		position: initial;
		padding: 0;
		width: 89%;
		margin: auto;
		margin-bottom: 60px;
	}
	.workstext .mainbtn, .workstext .maintitle.mtleft.spcenter {
		text-align: center;
	}
	.workstext .maintitle.mtleft.spcenter .sf {
		padding-left: 0;
	}
	.workstext .maintitle.mtleft.spcenter .sf::before {
		content: none;
	}
	.workstext p {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
}
/* ブログ ============================*/
.blog {
	background: #fff;
}
.blog .longimg {
	display: flex;
	height: auto;
}
.blog .longimg img {
	object-fit: cover;
}
.btext {
	padding: 50px 0;
}
.btext {
	width: 35%;
}
.blog .longimg {
	width: 30%;
}
.blog .flexbox {
	align-items: center;
}
@media (max-width: 1580px) {
	.blog .flexbox {
		align-items: stretch;
	}
}
@media (max-width: 1285px) {
	.btext {
		width: 45%;
	}
	.blog .longimg {
		width: 24%;
	}
}
@media(max-width: 750px) {
	.blog {
		padding: 50px 0 0;
	}
	.blog .longimg img {
		height: auto;
		margin-bottom: 0;
	}
	.btext {
		padding: 55px 0 65px;
		width: 90% !important;
		margin: auto;
	}
	.blog .longimg {
		width: 100%;
	}
}
/*採用情報 ============*/
.recruit {
	padding: 0;
	color: #fff;
}
.recruit .btitle .mf {
	opacity: 0.3;
}
.recruit .btitle .sf {
	color: #fff;
}
/*img*/
.recmask {
	position: relative;
	z-index: -1;
	mask-image: url(../img/mask.png);
	-webkit-mask-image: url(../img/mask.png);
	mask-size: 100%;
	-webkit-mask-size: 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}
.rectext {
	margin: 0 auto;
}
/*背景*/
.recruit::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/area.jpg);
	background-size: cover;
	background-position: center;
	z-index: -2;
}
.recruit::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #173479;
	opacity: 0.6;
}
@media (max-width: 1435px) {
	.recmask {
		mask-size: 100% 52vw;
		-webkit-mask-size: 100% 52vw;
	}
	.recmask img {
		object-fit: cover;
		width: 100%;
		height: 52vw;
	}
}
@media (max-width: 1145px) {
	.recmask {
		mask-size: 100% 70vw;
		-webkit-mask-size: 100% 70vw;
	}
	.recmask img {
		height: 70vw;
	}
}
@media (max-width: 835px) {
	.recmask {
		mask-size: 100% 80vw;
		-webkit-mask-size: 100% 80vw;
	}
	.recmask img {
		height: 80vw;
	}
}
@media (max-width: 750px) {
	.recruit::before {
		opacity: 0.75;
	}
	.rectext {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 3;
		width: 89% !important;
	}
	.recmask {
		mask-size: 75% 550px;
		-webkit-mask-size: 75% 550px;
	}
	.recmask img {
		width: 75%;
		height: 550px;
	}
}
/* 下層ページトップ ===================================================================================================================*/
.fv {
	padding: 130px 0 90px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/fv.jpg);
	background-repeat: repeat !important;
	background-size: cover !important;
	background-position: 50% 25%;
	z-index: -1;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #173479;
	opacity: 0.55;
	z-index: 1;
}
.fv h2 {
	text-align: center;
	margin-bottom: 20px !important;
	font-size: clamp(1.45rem, 0.2625rem + 3.8vw, 2.4rem);
	font-weight: 500;
	line-height: 1;
	z-index: 1;
	position: relative;
	color: #fff;
	text-transform: capitalize;
}
@media(max-width:1020px) {
	.fv {
		padding: 100px 0 60px;
	}
}
@media(max-width:550px) {
	.fv {
		padding: 67px 0 30px;
	}
	.fv h2 {
		margin-bottom: 15px !important;
	}
}
/* 背景写真 各ページ */
.fvservices.fv::after {
	background: url(../img/fvservices.jpg);
	background-position: 50% 45%;
}
.fvworks.fv::after {
	background: url(../img/fvworks.jpg);
	background-position: 50% 50%;
}
.fvblog.fv::after {
	background: url(../img/fvblog.jpg);
	background-position: 50% 25%;
}
.fvrecruit.fv::after {
	background: url(../img/fvrecruit.jpg);
	background-position: 50% 55%;
}
.fvabout.fv::after {
	background: url(../img/fvabout.jpg);
	background-position: 50% 65%;
}
.fvcontact.fv::after {
	background: url(../img/fvcontact.jpg);
	background-position: 50% 40%;
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 1.05rem;
	font-weight: 500;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: relative;
	top: -6px;
	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.9rem;
	}
}
@media(max-width:650px) {
	.binner {
		font-size: 0.75rem;
	}
}
/*footer*/
.footerbg_white .footer_contact, .footerbg_white .copyright {
	background: #fff;
}
/* 事業内容ページ ===================================================================================================================*/
.sertop {
	max-width: 1000px;
}
.left_border {
	display: flex;
	max-width: 1500px;
}
.border_space {
	border-right: 1px solid rgba(23, 52, 121, 0.2);
	margin-right: 50px;
}
/*見出し 縦*/
.vertical {
	margin-right: 50px;
	font-weight: 700;
	font-size: 2.2rem;
	padding: 15px 0;
	color: #fff;
	background: #173479;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
/* FireFox */
_:lang(x)::-moz-placeholder, .border_space {
	border-right: none;
	margin-right: 50px !important;
}
_:lang(x)::-moz-placeholder, .vertical {
	margin-right: 0 !important;
}
@media(max-width:1200px) {
	.vertical {
		margin-right: 30px;
	}
	.border_space {
		margin-right: 30px;
	}
	.vertical {
		font-size: 1.7rem;
	}
}
@media(max-width:675px) {
	.border_space {
		margin-right: 20px;
	}
	.vertical {
		padding: 10px 0;
		font-size: 1.1rem;
	}
}
/* 施工実績ページ ===================================================================================================================*/
@media(max-width:700px) {
	.btitle .mflong {
		font-size: 14vw !important;
	}
}
@media(max-width:550px) {
	.maintitle .mflong {
		font-size: 10vw !important;
	}
}
/* 工事経歴 */
/* table */
.c_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.c_table tr {
	border: 1px solid #d1d1d1;
}
.c_table th, .c_table td {
	padding: 15px 5px;
	font-size: 95%;
}
.c_table th {
	font-weight: 400;
	background: #fafafa;
	width: 30%;
	border-right: 1px solid #d1d1d1;
}
.c_table td {
	padding-left: 10px;
	background: #fff;
	width: 70%;
	border-right: 1px solid #d1d1d1;
	border-left: 1px solid #d1d1d1;
}
/* table sp*/
.spsctext {
	display: none;
	font-size: 0.9rem;
}
@media (max-width:1130px) {
	.spsctext {
		display: block;
	}
	.ct_wrap .c_table {
		width: 1200px;
	}
	.ct_wrap {
		padding-bottom: 5px;
		overflow-x: scroll;
	}
}
@media (max-width:550px) {
	.ct_wrap .c_table {
		width: 780px;
	}
	.consname {
		width: 55% !important;
	}
}
/* 採用情報ページ ===================================================================================================================*/
.rectop {
	margin-bottom: 30px;
}
/*list*/
.acheck li {
	padding-left: 20px;
	position: relative;
	border-bottom: 1px dotted #333;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #e07f5c;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/*table*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 1px solid rgba(23, 52, 121, 0.2);
}
.info_table tr:first-child {
	border-top: 1px solid rgba(23, 52, 121, 0.2);
}
.info_table th {
	background: transparent;
	width: 35%;
}
.info_table th, .info_table td {
	font-weight: 400;
	padding: 15px 0;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
}
.info_table .acheck li {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.ib {
	display: inline-block;
}
/*map*/
.mapbox iframe {
	width: 100%;
	height: 280px;
}
@media(max-width: 550px) {
	.sptb.info_table {
		border-collapse: collapse;
	}
	.sptb.info_table tr {
		border-bottom: none;
	}
	.sptb.info_table td {
		border-bottom: 1px solid rgba(23, 52, 121, 0.2);
		margin-bottom: 0;
	}
	.sptb.info_table td, .sptb.info_table th {
		width: 100%;
		padding: 8px 8px 13px;
		display: block;
	}
	.sptb.info_table th {
		font-weight: 700;
		text-align: left;
		padding-bottom: 0;
	}
	.sptb.info_table .mapbox th {
		padding-bottom: 5px !important;
	}
}
/* フィルター */
.disabled_wrap {
	position: relative;
}
.disabled_wrap::after {
	content: '';
	width: 101.5%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	pointer-events: none;
	z-index: 1;
	background: rgba(0, 0, 0, 0.45);
}
.disabled_wrap .disabled_text {
	position: absolute;
	top: 10%;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 2;
	color: #fff;
	white-space: nowrap;
}
@media (max-width: 600px) {
	.disabled_wrap .disabled_text {
		width: 90%;
		left: 50%;
		transform: translateX(-50%);
		text-align: left;
		white-space: normal;
	}
}
/* 会社概要ページ ===================================================================================================================*/
/*理念*/
.vsbox {
	padding: 40px;
	background: #fff;
}
.vsbox p {
	font-size: clamp(1.15rem, 0.4rem + 2.4vw, 1.75rem);
	color: #173479;
}
.vsbox p span {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	display: block;
	line-height: 1.6;
	font-weight: 700;
}
.vsbox p span.en {
	opacity: 0.7;
	font-size: 70%;
	text-transform: uppercase;
	font-family: "Aboreto", system-ui;
	font-weight: 400;
	margin-top: 10px;
	line-height: 2;
}
@media(max-width: 550px) {
	.vsbox {
		padding: 20px;
	}
	.vsbox p span.en {
		line-height: 1.8;
		font-size: 80%;
	}
}
/*代表挨拶*/
.glast {
	text-align: right;
	margin-top: 23px;
}
/* お問い合わせページ ===================================================================================================================*/
.contact_sec .inner {
	max-width: 1050px;
}
@media(max-width: 700px) {
	.contact_sec .btitle .mflong {
		font-size: 16vw !important;
	}
}
/*本ホームページに関する質問につきましては*/
.contop {
	max-width: 950px;
	margin-bottom: 50px;
}
@media (max-width: 550px) {
	.contop {
		margin-bottom: 40px;
	}
	.contop, .mailform label, .mnote p {
		font-size: 0.9rem;
	}
}
/* 電話・FAX */
/*title*/
.cotitle {
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.2rem, 0.8875rem + 1vw, 1.45rem);
	line-height: 1.55;
	border-left: 4px solid #173479;
	padding-left: 12px;
}
@media (max-width: 550px) {
	.cotitle {
		margin-bottom: 17px;
	}
}
/*box*/
.telbox {
	border: 2px solid #dfe5eb;
	padding: 20px 30px;
}
.telbox h3 {
	font-size: 100%;
	padding-left: 39px;
	font-weight: 500;
	position: relative;
	margin-bottom: 3px;
}
.telbox h3::before {
	background-color: #333;
	position: absolute;
	content: "";
	top: 0.95em;
	left: 0;
	width: 30px;
	height: 1px;
}
@media (max-width:750px) {
	.telbox {
		margin-bottom: 10px;
	}
	.telbox:last-child {
		margin-bottom: 0;
	}
}
@media (max-width:550px) {
	.telbox {
		padding: 17px;
	}
	.telbox h3 {
		font-size: 90%;
	}
}
/* 番号 */
.telbox a {
	font-size: 1.6rem;
	color: #173479;
	font-weight: 700;
	white-space: nowrap;
}
.telbox a:hover {
	opacity: 0.6;
}
.telwrap {
	margin-top: 0 !important;
}
.telwrap p {
	margin-top: 5px;
	margin-bottom: 0;
}
@media (max-width:550px) {
	.telbox a {
		font-size: 1.43rem;
	}
}
/*fax*/
.telboxwrap {
	margin-top: 50px;
}
.telboxwrap .telbox a {
	margin-right: 40px;
}
.telboxwrap .telbox p {
	margin-bottom: 4px;
}
.telboxwrap .telbox {
	display: flex;
	align-items: center;
}
.fcheck {
	display: flex;
}
.fcheck li {
	padding-left: 18px;
	margin-right: 20px;
	position: relative;
}
.fcheck li:last-child {
	margin-right: 0;
}
.fcheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #e07f5c;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
@media (max-width: 965px) {
	.telboxwrap .telbox {
		display: block;
	}
	.telboxwrap .telbox a {
		margin-right: 0;
	}
	.telboxwrap .telbox p {
		margin-top: 7px;
	}
}
@media (max-width:550px) {
	.telboxwrap .telbox p, .fcheck li {
		font-size: 90%;
	}
}
@media (max-width: 500px) {
	.telboxwrap .telbox {
		display: block;
	}
	.telboxwrap .telbox p {
		margin-bottom: 7px;
	}
	.fcheck {
		display: block;
	}
	.fcheck li {
		margin-right: 0;
	}
}
/* メール */
.mnote {
	max-width: 865px;
	margin: auto;
	margin-top: 55px;
}
.mpdb {
	padding-bottom: 55px !important;
	margin-bottom: 0 !important;
}
@media(max-width:550px) {
	.mnote {
		margin-top: 45px;
	}
	.mpdb {
		padding-bottom: 27px !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-weight: 500;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #173479;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	font-weight: 500;
}
.mailform .row span.mailsp {
	color: #173479;
	background: #fff;
	border: 1px solid #173479;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #333;
	font-weight: 500;
}
.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;
	width: 270px;
	padding: 21px;
	text-align: center;
	margin: 0 auto;
	white-space: nowrap;
	border: 1px solid #173479;
	color: #fff;
	background: #173479;
	font-weight: 500;
	transition: .4s;
	position: relative;
	overflow: hidden;
}
.mailform button:hover {
	color: #173479;
	background: #fff;
}
.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 #173479;
	border-bottom: 3px solid #173479;
	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;
}
/**/
.mails {
	padding-bottom: 60px;
}
@media (max-width: 550px) {
	.mails {
		padding-bottom: 30px;
	}
	.mailform button {
		width: 200px;
		padding: 10px;
	}
	.formsel label {
		font-size: 0.95rem;
	}
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
@media (max-width: 800px) {
	.mailform .row:first-child {
		padding-top: 5px;
	}
	.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 #173479;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	font-weight: 500;
	transition: ease-in-out 100ms;
	font-size: clamp(0.95rem, 0.6375rem + 1vw, 1.2rem);
	padding-bottom: 7px;
}
.privacy_header i {
	color: #173479 !important;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 95%;
}
.privacy_text span {
	color: #173479;
	font-weight: 700;
}
@media(max-width:750px) {
	.privacy_text {
		font-size: 0.9rem;
		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: 47%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 90%;
}
.privacy_gold {
	color: #173479;
}