@charset "UTF-8";
/*
Theme Name: レスポンシブテンプレート
Theme URI: 
Description: サインズ
Version: 1.0
Author: sains
Author URI: 
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

/*オールクリア*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object {
	margin: 0;
	padding: 0;
}

/******************
共通
******************/
html {
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", sans-serif;;
	font-size: 1.6rem ;
	font-weight: 400;
	color: #262626;
	line-height: 1.8;
	word-break: break-all;
}
#wrapper {
	width: 100%;
	position: relative;
}
img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
a {
	color: #262626;
	text-decoration: none;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	backface-visibility: hidden;
}
a:hover {
	color: #919191;
	backface-visibility: hidden;
}
a img {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	outline:none;
	box-shadow: #000 0 0 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a:hover img {
	opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
}
table {
	border-collapse: collapse;
	border-color: #f2f2f2;
}


@media screen and (max-width: 960px) {
	body {
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}


/******************
ヘッダー
******************/
.header {
	width: 100%;
	height: 100px;
	display: flex;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.header:before {
	content: "";
	width: calc(100% - 100px);
	height: 1px;
	background-color: #ebebeb;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1.1s;
}
.header.scrolled:before {
	transform: scaleX(1);
	transform-origin: left;
}
.header-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	max-width: 210px;
	margin-left: 2%;
}
.header-logo a {
	display: block;
}
.header-logo a img {
	width: 100%;
}
.header-contents {
	width: calc(98% - (210px + 5rem));
}
.header-contents-inner {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.header-nav {
	margin-right: 4rem;
}
.sub-nav {
	
}
.sub-nav ul {
	display: flex;
	justify-content: flex-end;
	padding-bottom: .5rem;
}
.sub-nav ul li {
	list-style: none;
	position: relative;
}
.sub-nav ul li:not(:last-child) {
	padding-right: 2rem;
	margin-right: 2rem;
}
.sub-nav ul li:not(:last-child):before {
	content: "";
	width: 1px;
	height: 18px;
	background-color: #c7c7c7;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
}
.sub-nav ul li a {
	color: #4d4d4d;
	font-size: 1.4rem;
	display: block;
}
.sub-nav ul li a:hover {
	color: #9d9d9d;
}
.sub-nav ul li.has-ext-link a {
	position: relative;
	padding-right: 22px;
}
.sub-nav ul li.has-ext-link a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 13px;
	height: 13px;
	background: url(./images/common/h_ext_link_icon.png) center / 100% no-repeat;
}
.global-nav {
	
}
.global-nav > ul {
	display: flex;
}
.global-nav > ul > li {
	list-style: none;
}
.global-nav > ul > li:not(:last-child) {
	margin-right: 4rem;
}
.global-nav > ul > li > a {
	display: block;
	color: #262626;
	padding: 0 0 21px;
	font-weight: 500;
	position: relative;
}
.global-nav > ul > li > a:before {
	content: "";
	width: 60%;
	height: 2px;
	background-color: #db0209;
	position: absolute;
	bottom: 13px;
	left: 20%;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s;
}
.global-nav > ul > li > a:hover:before {
	transform: scaleX(1);
	transform-origin: left;
}

/** 子ページまである場合のレイアウト **/

.child-menu-container {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 99px;
	left: 0;
	width: 100vw;
	background-color: #fff;
	border-top: 1px solid #ebebeb;
	transition: .3s all ease;
	box-shadow: 0 5px 5px rgba(193, 193, 193, 0.2);
}
.global-nav > ul > li:hover .child-menu-container {
	visibility: visible;
	opacity: 1;
}
.child-menu-inner {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 2em 0 3em;
}
.child-menu-inner ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
}
.child-menu-inner ul li {
	list-style: none;
	width: calc(25% - 3rem);
}
.child-menu-inner ul li a {
	cursor: pointer;
	color: #262626;
	display: block;
	font-size: 1.5rem;
	border-bottom: 1px dashed #ebebeb;
	padding: .5rem calc(.5rem + 25px) .5rem .5rem;
	position: relative;
}
.child-menu-inner ul li a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: .5rem;
	margin: auto;
	width: 15px;
	height: 5px;
	background: url(./images/common/arrow_red.png) center / 100% no-repeat;
	transition: .1s all ease;
}
.child-menu-inner ul li a:hover:before {
	right: .2rem;
}

/** 孫ページまである場合のレイアウト **/
.global-nav .has-category {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: min-content;
	grid-template-areas:
		"item1 item2 item3"
		"item1 item4 item5";
	gap: 2em 4em;
}
.global-nav .category-item {
	
}
.global-nav .category-item.maritime {
	grid-area: item1;
	grid-row: span 2;
	align-self: start;
}
.global-nav .category-item .parent {
	border-bottom: 1px solid #ebebeb;
	position: relative;
}
.global-nav .category-item .parent:before {
	content: "";
	width: 30px;
	height: 1px;
	background-color: #db0209;
	position: absolute;
	bottom: -1px;
	left: 0;
}
.global-nav .category-item .parent a {
	display: inline-block;
	font-size: 1.7rem;
	font-weight: 500;
	margin-bottom: 0.5em;
	position: relative;
}
.global-nav .category-item .parent a:before {
	
}
.global-nav .category-item .child {
	flex-direction: column;
	gap: 0;
}
.global-nav .category-item .child li {
	width: 100%;
}
.global-nav .category-item .child li a {
	font-size: 1.4rem;
	padding: 1rem calc(.5rem + 25px) 1rem .5rem;
}

.header-contact {
	height: 100px;
	width: 100px;
}
.header-contact a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #262626;
	transition: .3s all ease;
}
.header-contact a:hover {
	background-color: #474747;
}
.header-contact a span {
	font-family: "Montserrat", sans-serif;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	position: relative;
	padding-top: 25px;
}
.header-contact a span:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 30px;
	height: 24px;
	background: url(./images/common/h_mail_icon.png) center / 100% no-repeat;
}

.header-sp-btn {
	display: none;
}
.global-nav .sp-menu {
	display: none;
}

.global-nav ul li .sub-menu-btn {
	display: none;
}

@media screen and (max-width: 1080px) {
	.child-menu-inner {
		width: 95%;
	}
	.global-nav .has-category {
		gap: 2em 2em;
	}
}
@media screen and (max-width: 1024px) {
	.header {
		height: 80px;
	}
	.header:before {
		width: calc(100% - 80px);
	}
	.header-logo {
		max-width: 190px;
	}
	.header-sp-btn {
		cursor: pointer;
		display: block;
		width: 80px;
		height: 80px;
		border: 0;
		padding: 0;
		background-color: #323232;
		position: relative;
	}
	.header-sp-btn span:nth-child(1),
	.header-sp-btn span:nth-child(2),
	.header-sp-btn span:nth-child(3) {
		position: absolute;
		left: 25%;
		height: 2px;
		background-color: #fff;
		transition: .3s all ease;
	}
	.header-sp-btn span:nth-child(1) {
		top: 19px;
		width: 40%;
	}
	.header-sp-btn span:nth-child(2) {
		top: 28px;
		width: 50%;
	}
	.header-sp-btn span:nth-child(3) {
		top: 37px;
		width: 30%;
	}
	.header-sp-btn span:nth-child(4):before {
		content: "MENU";
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		bottom: 15px;
		width: 100%;
		text-align: center;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 600;
	}
	.header-sp-btn.open span:nth-child(1) {
		top: 30px;
		width: 60%;
		transform: rotate(25deg);
		left: 20%;
	}
	.header-sp-btn.open span:nth-child(2) {
		top: 30px;
		width: 60%;
		transform: rotate(-25deg);
		left: 20%;
	}
	.header-sp-btn.open span:nth-child(3) {
		width: 0;
	}
	.header-sp-btn.open span:nth-child(4):before {
		content: "CLOSE";
	}
	.header-contents {
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		transition: .3s all ease;
		overflow-y: auto;
	}
	.header-contents.open {
		visibility: visible;
		opacity: 1;
	}
	.header-contents-inner {
		display: block;
		width: 80%;
		margin: 140px auto 60px;
	}
	.header-nav {
		margin-right: 0;
		display: flex;
		flex-direction: column;
		margin-bottom: 4em;
	}
	.sub-nav {
		order: 2;
	}
	.sub-nav ul {
		display: block;
	}
	.global-nav > ul {
		display: block;
	}
	.global-nav > ul > li {
		position: relative;
		border-bottom: 1px solid #dfdfdf;
	}
	.global-nav > ul > li:before {
		content: "";
		width: 60px;
		height: 1px;
		background-color: #db0209;
		position: absolute;
		left: 0;
		bottom: -1px;
		z-index: 2;
	}
	.global-nav > ul > li:not(:last-child) {
		margin-right: 0;
	}
	.global-nav > ul > li > a {
		padding: 1.5em 0;
		font-size: 1.8rem;
	}
	.global-nav > ul > li > a:before {
		display: none;
	}
	.global-nav > ul > li.has-child > a {
		
	}
	.global-nav .sp-menu {
		display: block;
	}
	
	.child-menu-container {
		display: none;
		visibility: visible;
		opacity: 1;
		position: static;
		box-shadow: 0 0 0;
		margin: 0 0 1.5em;
		transition: none;
	}
	.sub-nav ul li {
		position: relative;
	}
	.sub-nav ul li:before {
		content: "";
		width: 60px;
		height: 1px;
		background-color: #db0209;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 2;
	}
	.sub-nav ul li:not(:last-child):before {
		content: "";
		width: 60px;
		height: 1px;
		background-color: #db0209;
		top: auto;
		right: auto;
		margin: 0;
	}
	.sub-nav ul li:not(:last-child) {
		padding-right: 0;
		margin-right: 0;
	}
	.sub-nav ul li a {
		color: #323232;
		padding: 1.5em 0;
		border-bottom: 1px solid #dfdfdf;
		font-size: 1.8rem;
		font-weight: 500;
		position: relative;
	}
	
	.header-contact {
		height: auto;
		width: 100%;
	}
	.header-contact a {
		padding: 1.5em 0;
		border-radius: 999px;
	}
	.header-contact a span {
		font-size: 2rem;
		font-weight: 600;
		padding-top: 0;
		padding-left: 40px;
	}
	.header-contact a span:before {
		bottom: 0;
		right: auto;
	}
	
	.child-menu-container {
		width: 100%;
		border-top: 0;
	}
	.child-menu-inner {
		width: 100%;
		padding: 0;
	}
	.global-nav .has-category {
		display: block;
		gap: 0;
		width: 100%;
	}
	.child-menu-inner ul {
		display: block;
	}
	.child-menu-inner ul li {
		width: 100%;
		margin-bottom: 0.5em;
	}
	.child-menu-inner ul li a {
		border-bottom: 0;
		padding: 1em 1em;
		font-size: 1.6rem;
		background-color: #f4f4f4;
		border-radius: 5px;
		font-weight: 500;
	}
	.child-menu-inner ul li a:before {
		right: 1.5rem;
	}
	.child-menu-inner ul li a:hover:before {
		right: 1.5rem;
	}
	
	.child-menu-inner.has-category ul {
		padding: 0 1em 1em;
	}
	.global-nav .category-item {
		background-color: #f4f4f4;
		border-radius: 5px;
	}
	.global-nav .category-item:not(:last-child) {
		margin-bottom: 0.5em;
	}
	.global-nav .category-item .child {
		display: none;
	}
	.global-nav .category-item .parent {
		border-bottom: 0;
	}
	.global-nav .category-item .parent:before {
		display: none;
	}
	.global-nav .category-item .parent a {
		display: block;
		margin-bottom: 0;
		padding: 1em 1em;
		font-size: 1.6rem;
	}
	.global-nav .category-item .parent .sub-menu-btn:before {
		height: 30px;
		top: 17px;
	}
	.global-nav .category-item .parent .sub-menu-btn button:before {
		top: 30px;
		width: 16px;
	}
	.global-nav .category-item .parent .sub-menu-btn button:after {
		top: 23px;
		height: 16px;
	}
	.global-nav .category-item .child li {
		margin-bottom: 0.3em;
	}
	.global-nav .category-item .child li a {
		padding: 1.5rem;
		background-color: #fff;
	}
	
	.global-nav ul li .sub-menu-btn {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 100%;
	 }
	.global-nav ul li .sub-menu-btn:before {
		content: "";
		width: 1px;
		height: 43px;
		background-color: #ebebeb;
		position: absolute;
		top: 22px;
		left: 0;
	}
	.global-nav ul li .sub-menu-btn button {
		cursor: pointer;
		display: block;
		width: 100%;
		height: 100%;
		border: 0;
		background-color: transparent;
		padding: 0;
		position: relative;
	}
	.global-nav ul li .sub-menu-btn button:before,
	.global-nav ul li .sub-menu-btn button:after {
		content: "";
		position: absolute;
		background-color: #db0209;
		margin: auto;
		right: 0;
		left: 0;
	}
	.global-nav ul li .sub-menu-btn button:before {
		top: 42px;
		width: 20px;
		height: 2px;
	}
	.global-nav ul li .sub-menu-btn button:after {
		top: 33px;
		width: 2px;
		height: 20px;
		transition: .3s all ease;
	}
	
	.global-nav ul li.open > .sub-menu-btn button:after {
		height: 0;
	}
	.global-nav .category-item.open .parent .sub-menu-btn button:after {
		height: 0;
	}
	
	.sub-nav ul li.has-ext-link a:before {
		right: 1em;
		width: 17px;
		height: 17px;
	}
}
@media screen and (max-width: 768px) {
	.header {
		height: 60px;
	}
	.header:before {
		width: calc(100% - 60px);
	}
	.header-logo {
		max-width: 140px;
	}
	.header-sp-btn {
		width: 60px;
		height: 60px;
	}
	.header-sp-btn span:nth-child(1),
	.header-sp-btn span:nth-child(2),
	.header-sp-btn span:nth-child(3) {
		left: 22%;
	}
	.header-sp-btn span:nth-child(1) {
		top: 14px;
		width: 45%;
	}
	.header-sp-btn span:nth-child(2) {
		top: 21px;
		width: 56%;
	}
	.header-sp-btn span:nth-child(3) {
		top: 28px;
		width: 38%;
	}
	.header-sp-btn span:nth-child(4):before {
		bottom: 10px;
		font-size: 1.2rem;
	}
	
	.header-sp-btn.open span:nth-child(1) {
		top: 20px;
	}
	.header-sp-btn.open span:nth-child(2) {
		top: 20px;
	}
	
	.header-contents-inner {
		margin: 80px auto 60px;
	}
	.header-nav {
		margin-bottom: 2em;
	}
	.global-nav > ul > li > a {
		padding: 1em 0;
	}
	.global-nav > ul > li:before {
		width: 40px;
	}
	.global-nav ul li .sub-menu-btn:before {
		height: 33px;
		top: 18px;
	}
	.global-nav ul li .sub-menu-btn button:before {
		top: 33px;
		width: 18px;
	}
	.global-nav ul li .sub-menu-btn button:after {
		top: 25px;
		height: 18px;
	}
	.sub-nav ul li a {
		padding: 1em 0;
	}
	.header-contact a {
		padding: 1em 0;
	}
}

/******************
アニメーション関連
******************/



/******************
main
******************/
.main {
	margin-top: 100px;
}

@media screen and (max-width: 1024px) {
	.main {
		margin-top: 80px;
	}
}
@media screen and (max-width: 768px) {
	.main {
		margin-top: 60px;
	}
}

/*メインビジュアル*/
#main-visual {
	position: relative;
}
#main-visual .mv-swiper {
	overflow: hidden;
	width: 97.5%;
	margin-left: 2.5%;
	border-radius: 20px 0 0 20px;
	height: clamp( calc(100vw * 3 / 8), calc(100svh - 140px), calc(100vw * 4 / 7) );
}
#main-visual .top-h1 {
	position: absolute;
	top: 5%;
	left: 8%;
	z-index: 10;
	padding: 3em 0;
}
#main-visual .top-h1 h1 {
	display: inline-block;
	font-size: clamp(2.6rem, 3.6vw, 6.2rem);
	line-height: 150%;
	font-weight: 700;
	letter-spacing: .4rem;
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0.2em;
	
	overflow: hidden;

}
#main-visual .top-h1 h1:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #323232;
	
	transition: width 0.3s ease;
}
#main-visual .top-h1 h1 span {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.5s ease;
}
#main-visual .top-h1 p {
	font-size: 1.6rem;
	font-weight: 500;
	
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}
#main-visual .top-h1 p span br {
	display: none;
}

#main-visual.inview .top-h1 h1 span {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

/* 線が左→右へ */
#main-visual.inview .top-h1 h1:before {
	width: 100%;
}

/* 少し遅らせて表示 */
#main-visual.inview .top-h1 p {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}

/*swiper*/
.mv-swiper {
	height: 100%;
}
.mv-swiper .slide-img {
	height: 100%;
}
@keyframes zoom-in {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
.mv-swiper .swiper-slide-active .slide-img, .mv-swiper .swiper-slide-duplicate-active .slide-img, .mv-swiper .swiper-slide-prev .slide-img{
	animation: zoom-in 10s linear 0s 1 normal both;  
}
.mv-swiper .slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mv-swiper.sp {
	display: none !important;
}

/* ページネーション全体のコンテナ */
.swiper-pagination {
	display: flex;
	justify-content: flex-end !important;
	gap: .5em;
	bottom: -19px !important;
	left: 0 !important;
	right: 2.5% !important;
	width: 95% !important;
	max-width: 340px;
	margin-left: auto;
}
/* 各バーの土台*/
.swiper-pagination-bullet {
	border-radius: 0 !important;
	flex: 1;
	height: 2px !important;
	background: rgba(157, 157, 157, 0.3) !important;
	margin: 0 !important;
	opacity: 1 !important;
	position: relative;
	overflow: hidden;
}
/* 内部の動く線 */
.swiper-pagination-bullet span {
	display: block;
	width: 100%;
	height: 100%;
	background: #db0209;
	transform: scaleX(var(--progress, 0));
	transform-origin: left;
}
.swiper-pagination-bullet {
	border-radius: 0 !important;
	flex: 1;
	height: 2px !important;
	background: rgba(157, 157, 157, 0.3) !important;
	margin: 0 !important;
	opacity: 1 !important;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 1024px) {
	#main-visual .mv-swiper {
		height: clamp( calc(100vw * 3 / 4), calc(100svh - 120px), calc(100vw * 6 / 7) );
	}
}

@media screen and (max-width: 768px) {
	.mv-swiper.pc {
		display: none !important;
	}
	.mv-swiper.sp {
		display: block !important;
	}
	
	#main-visual .mv-swiper {
		height: calc(100svh - 100px);
	}
	#main-visual .top-h1 {
		top: 2%;
		left: 11%;
	}
	#main-visual .top-h1 h1 {
		letter-spacing: .2rem;
	}
	#main-visual .top-h1 p {
		font-size: 1.4rem;
	}
	#main-visual .top-h1 p span br {
		display: block;
	}
	
	.swiper-pagination {
		max-width: 140px;
	}
}


/******************
コンテンツ
******************/
.contents {
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
}


/*コンテンツ内共通*/

.common-section {
	margin-top: 6em;
}
.left-over-section {
	margin-left: calc(50% - 50vw);
}
.right-over-section {
	margin-right: calc(50% - 50vw);
}
.over-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.over-section-inner {
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
}

.top-h2 {
	margin-bottom: 2em;
}
.top-h2 p {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(3.5rem, 4.8vw, 7.8rem);
	line-height: 100%;
	margin-bottom: 1rem;
}
.top-h2 p:first-letter {
	color: #db0209;
}
.top-h2 h2 {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: .1rem;
	line-height: 100%;
}
.top-h3 {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: .2rem;
	line-height: 160%;
	margin-bottom: 1em;
}


.common-link {
	margin-top: 4em;
	max-width: 340px;
}
.common-link a {
	background-color: #262626;
	color: #fff;
	font-weight: 500;
	display: block;
	border-radius: 10px;
	padding: 2rem calc(3rem + 35px) 2rem 3rem;
	position: relative;
	transition: .3s all ease;
}
.common-link a:hover {
	background-color: #474747;
}
.common-link a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 3rem;
	margin: auto;
	width: 20px;
	height: 6px;
	background: url(./images/common/arrow_wht.png) center / 100% no-repeat;
	transition: .1s all ease;
}
.common-link a:hover:before {
	right: 2.8rem;
	opacity: 0.6;
}
.common-link.wht a {
	background-color: #fff;
	color: #262626;
}
.common-link.wht a:hover {
	color: #919191;
}
.common-link.wht a:before {
	background: url(./images/common/arrow_blk.png) center / 100% no-repeat;
}
.common-link.external a:before {
	width: 15px;
	height: 15px;
	background: url(./images/common/ext_link_icon_wht.png) center / 100% no-repeat;
	transition: .3s all ease;
}
.common-link.external a:hover:before {
	right: 3rem;
}




@media screen and (max-width: 1024px) {
	
	.top-h3 {
		font-size: 2.4rem;
		letter-spacing: .1rem;
	}
	.common-link {
		max-width: 300px;
	}
	.common-link a {
		padding: 1.5rem calc(3rem + 35px) 1.5rem 3rem;
		border-radius: 5px;
	}
}
@media screen and (max-width: 768px) {
	.top-h2 h2 {
		font-size: 1.6rem;
		letter-spacing: 0;
	}
	.top-h3 {
		font-size: 2rem;
	}
	
	
	.common-link {
		margin-top: 3em;
	}
}

/*アニメーション関連
.top-h2.fade-text p {
	opacity: 0;
	transform: translateY(20px);
}
.top-h2.text-anime p {
	animation: textAnim 0.8s ease forwards;
}
@keyframes textAnim {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
*/

/*お知らせ*/
.news-container ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
}
.news-container ul li {
	list-style: none;
	display: flex;
	align-items: center;
	width: calc(50% - 2rem);
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 2rem;
}
.news-container .news-date {
	font-family: "Montserrat", sans-serif;
	text-align: center;
	font-weight: 500;
	width: 70px;
	margin-right: 20px;
}
.news-container .news-date .year {
	display: block;
	font-size: 1.4rem;
}
.news-container .news-date .date {
	display: block;
	font-size: 4rem;
	line-height: 100%;
}
.news-container .news-title {
	width: calc(100% - 90px);
	line-height: 150%;
}

.news-section .common-link {
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1024px) {
	.news-container ul {
		gap: 2rem 2rem;
	}
	.news-container ul li {
		width: calc(50% - 1rem);
	}
	.news-container .news-date {
		margin-right: 10px;
	}
	.news-container .news-date .date {
		font-size: 3rem;
	}
	.news-container .news-title {
		width: calc(100% - 80px);
	}
}
@media screen and (max-width: 768px) {
	.news-container ul li {
		width: 100%;
	}
	.news-container .news-date {
		width: 60px;
	}
	.news-container .news-date .year {
		font-size: 1.2rem;
	}
	.news-container .news-date .date {
		font-size: 2.2rem;
	}
	.news-container .news-title {
		width: calc(100% - 70px);
	}
}


/*事業案内*/
.business-container {
	display: flex;
	align-items: center;
	gap: 4em;
}
.business-container .img-area {
	width: calc(55% - 2em);
	order: 2;
}
.business-container .img-area .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}
.business-container .img-area .img:first-child {
	width: 100%;
}
.business-container .img-area .img:not(:first-child) {
	width: calc(33.33% - 2em/3);
}
.business-container .img-area .img img {
	width: 100%;
}
.business-container .img-area .img:first-child img {
	border-radius: 10px 0 0 10px;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.business-container .img-area .img:not(:first-child) img {
	border-radius: 10px 10px;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.business-container .img-area .img:last-child img {
	border-radius: 10px 0 0 10px;
}
.business-container .text-area {
	width: calc(45% - 2em);
}
.business-container .text-area .top-h3 br {
	display: none;
}

@media screen and (max-width: 1220px) {
	.business-container .text-area .top-h3 br {
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.business-section {
		margin-right: 0 !important;
	}
	.business-container {
		flex-direction: column;
		gap: 3em;
	}
	.business-container .img-area {
		width: 100%;
		order: 1;
		position: relative;
	}
	
	.business-container .img-area .swiper-wrapper {
		flex-wrap: nowrap;
		gap: 0;
	}
	.business-container .img-area .img img {
		border-radius: 10px !important;
		aspect-ratio: 3/2 !important;
		object-fit: cover;
	}
	
	.business-container .text-area {
		width: 100%;
		order: 2;
	}
	.business-container .text-area .top-h2 {
		text-align: center;
	}
	.business-container .text-area .top-h3 {
		text-align: center;
	}
	.business-container .text-area .top-h3 br {
		display: none;
	}
	.business-section .common-link {
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 390px) {
	.business-container .text-area .top-h3 br {
		display: block;
	}
}

/*奈雅井について*/
.about-section {
	overflow: hidden;
}
.about-section-upper {
	width: 95%;
	margin-right: 2.5%;
	position: relative;
	background: url(./images/top/about_bkg.jpg) center/cover no-repeat;
	padding: 6em 0 6em 2.5%;
	border-radius: 0 20px 20px 0;
	color: #fff;
}
.about-section-upper:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
	height: 100%;
	background-color: rgba(10, 32, 59, 0.8);
	border-radius: 0 20px 20px 0;
}
.about-section-upper:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 2.5vw;
	width: 100%;
	height: 33.33%;
	background-color: #f4f4f4;
	z-index: -1;
}
.about-section-lower {
	width: 95%;
	margin-left: 2.5%;
	background-color: #f4f4f4;
	padding: 6em 2.5% 6em 0;
	border-radius: 0 0 0 20px;
	
}
.about-section-inner {
	width: 100vw;
	margin-left: -2.5vw;
}
.about-container {
	position: relative;
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
}
.about-section-upper .img-area {
	background: #fff;
	padding: 0 2.5vw 0 0;
	margin-top: 2em;
	border-radius: 0 20px 20px 0;
	color: #262626;
	position: relative;
}
.about-section-upper .img-area:before {
	content: "";
	width: 100vw;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	right: calc(100% - 3em);
}
.about-section-upper .img-area-inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.about-section-upper .about-deta-item {
	flex-basis: calc(25% - 11.25px);
}
.about-section-upper .about-deta-item-inner {
	position: relative;
	padding: 4em 0;
}
.about-section-upper .about-deta-item .img {
	max-width: 100px;
	margin: 0 auto 0.5em;
}
.about-section-upper .about-deta-item .title {
	background-color: #f4f4f4;
	color: #db0209;
	text-align: center;
	padding: 0 0.5em;
	font-size: clamp(1.3rem, 1.1vw, 1.6rem);
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -.1rem;
	white-space: nowrap;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.about-section-upper .about-deta-item .deta {
	font-family: "Montserrat", sans-serif;
	font-size: 3.8rem;
	font-weight: 600;
	line-height: 120%;
	text-align: center;
	margin-top: 0.5em;
}
.about-section-upper .about-deta-item .unit {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
	margin-left: 0.5rem;
}
.about-section-upper .about-deta-item .notes {
	font-size: 1.4rem;
	line-height: 150%;
	position: absolute;
	bottom: 2em;
	right: 0;
}


.about-section-lower .link-area {
	display: flex;
	justify-content: space-between;
	gap: 2em;
}
.about-section-lower .about-link {
	width: calc(50% - 1em);
}
.about-section-lower .about-link a {
	display: block;
	background-color: #fff;
	padding: 2em 2em;
	border-radius: 10px;
	height: calc(100% - 4em);
	position: relative;
}
.about-section-lower .about-link a span {
	display: block;
}
.about-section-lower .about-link .ttl {
	display: inline-block;
	font-size: 2.1rem;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 5px;
	position: relative;
	padding-right: 40px;
}
.about-section-lower .about-link .ttl:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 20px;
	height: 6px;
	background: url(./images/common/arrow_red.png) center / 100% no-repeat;
	transition: .1s all ease;
}
.about-section-lower .about-link a:hover .ttl:before {
	opacity: 0.6;
	right: -0.2rem;
}

@media screen and (max-width: 1024px) {
	.about-section-upper .img-area-inner {
		gap: 20px;
		max-width: 670px;
		margin: 0 auto;
	}
	.about-section-upper .about-deta-item {
		flex-basis: calc(50% - 10px);
	}
	.about-section-upper .about-deta-item-inner {
		padding: 2em 0;
	}
	.about-section-upper .about-deta-item .title {
		font-size: clamp(1.4rem, 1.1vw, 1.6rem);
		letter-spacing: 0;
	}
	.about-section-upper .about-deta-item .notes {
		bottom: 0.5em;
	}
	
	.about-section-lower {
		padding: 4em 2.5% 4em 0;
	}
	.about-section-lower .link-area {
		gap: 1em;
	}
	.about-section-lower .about-link {
		width: calc(50% - 0.5em);
	}
	.about-section-lower .about-link .ttl {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 768px) {
	.about-section-upper {
		width: 100%;
		margin-right: 0;
		border-radius: 0;
		padding: 0;
		background: none;
	}
	.about-section-upper:before {
		display: none;
	}
	.about-section-upper:after {
		left: 0;
	}
	.about-section-inner {
		margin-left: 0;
	}
	.about-container {
		width: 100%;
	}
	.about-section-upper .text-area {
		background: url(./images/top/about_bkg.jpg) center/cover no-repeat;
		position: relative;
		margin-bottom: -30px;
	}
	.about-section-upper .text-area:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(10, 32, 59, 0.8);
	}
	.about-section-upper .text-area-inner {
		position: relative;
		width: 90%;
		margin: 0 auto;
		padding: 4em 0 calc(4em + 30px);
	}
	.about-section-upper .img-area {
		padding: 0;
		border-radius: 20px;
		margin-top: 0;
	}
	.about-section-upper .img-area:before {
		display: none;
	}
	.about-section-upper .img-area-inner {
		width: 90%;
	}
	
	
	.about-section-upper .about-deta-item .img {
		max-width: 80px;
	}
	.about-section-upper .about-deta-item .deta {
		font-size: 3rem;
	}
	
	.about-section-lower {
		width: 100%;
		margin-left: 0;
		border-radius: 0;
	}
	.about-section-lower .link-area {
		width: 90%;
		margin: 0 auto;
		flex-direction: column;
	}
	.about-section-lower .about-link {
		width: 100%;
	}
	.about-section-lower .about-link a {
		padding: 1.5em 2em;
	}
}
@media screen and (max-width: 560px) {
	.about-section-upper .img-area-inner {
		padding: 2em 0 1em;
	}
	.about-section-upper .about-deta-item {
		flex-basis: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
	.about-section-upper .about-deta-item-inner {
		padding: 0 0 2em;
	}
}

/*採用情報*/
.recruit-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4em;
}
.recruit-container .img-area {
	width: calc(55% - 2em);
	order: 2;
	display: grid;
	grid-template-columns: repeat(16, 1fr);
	grid-template-rows: repeat(16, 1fr);
}
.recruit-container .text-area {
	width: calc(45% - 2em);
}
.recruit-container .grid-item {
	aspect-ratio: 1/1;
	width: 100%;
	height: 100%;
}
.recruit-container .grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}
.recruit-container .grid-item-01 {
	grid-area: 3 / 6 / 12 / 15;
	background-color: #ed1c24;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}
.recruit-container .grid-item-02 {
	grid-area: 6 / 2 / 15 / 11;
}
.recruit-container .grid-item-03 {
	grid-area: 2 / 2 / 6 / 6;
}
.recruit-container .grid-item-04 {
	grid-area: 2 / 11 / 7 / 16;
}
.recruit-container .grid-item-05 {
	grid-area: 11 / 9 / 17 / 15;
}
.recruit-container .grid-item-06 {
	grid-area: 1 / 7 / 4 / 10;
}
.recruit-container .grid-item-07 {
	grid-area: 8 / 14 / 11 / 17;
}
.recruit-container .grid-item-08 {
	grid-area: 14 / 1 / 17 / 4;
}

@media screen and (max-width: 768px) {
	.recruit-container {
		flex-direction: column;
	}
	.recruit-container .img-area {
		width: 100%;
		max-width: 480px;
		order: 1;
	}
	.recruit-container .text-area {
		width: 100%;
		order: 2;
		text-align: center;
	}
	.recruit-container .top-h3 br {
		display: none;
	}
	.recruit-container .common-link {
		text-align: left;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 540px) {
	.recruit-container .text-area {
		text-align: left;
	}
	.recruit-container .top-h2 {
		text-align: center;
	}
	.recruit-container .top-h3 {
		text-align: center;
	}
}
@media screen and (max-width: 490px) {
	.recruit-container .top-h3 br {
		display: block;
	}
}


/*お問い合わせ*/
.contact-section {
	position: relative;
	background: url(./images/top/contact_bkg.jpg) center/cover no-repeat;
}
.contact-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(18, 39, 65, 0.8);
}
.contact-section .over-section-inner {
	position: relative;
	color: #fff;
	padding: 6em 0;
}
.contact-section .contact-area {
	margin-top: 2em;
	max-width: 880px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.contact-section .contact-area .tel {
	width: 260px;
	white-space: nowrap;
}
.contact-section .contact-area .tel-item {
	
}
.contact-section .contact-area .tel-item:not(:last-child) {
	margin-bottom: 1em;
}
.contact-section .contact-area .tel-item span {
	display: block;
	font-size: 1.7rem;
	line-height: 150%;
}
.contact-section .contact-area .tel-item a {
	display: inline-block;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 3.6rem;
	font-weight: 500;
	letter-spacing: .1rem;
	line-height: 140%;
}
.contact-section .contact-area .inquiry {
	width: calc(100% - 260px - 4em);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1em;
}
.contact-section .contact-area .inquiry-item {
	width: calc(50% - 0.5em);
}
.contact-section .contact-area .inquiry-item a {
	background-color: #fff;
	display: block;
	border-radius: 5px;
	padding: 2rem calc(3rem + 35px) 2rem 3rem;
	position: relative;
}
.contact-section .contact-area .inquiry-item a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 3rem;
	margin: auto;
	width: 20px;
	height: 6px;
	background: url(./images/common/arrow_blk.png) center / 100% no-repeat;
	transition: .1s all ease;
}
.contact-section .contact-area .inquiry-item a:hover:before {
	opacity: 0.6;
	right: 2.8rem;
}
.contact-section .inquiry-item .external {
	padding-left: 20px;
	position: relative;
}
.contact-section .inquiry-item .external:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 13px;
	height: 13px;
	background: url(./images/common/h_ext_link_icon.png) center / 100% no-repeat;
}
.contact-section .contact-area .form {
	width: 100%;
}
.contact-section .contact-area .form a {
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: .1rem;
	background-color: #db0209;
	color: #fff;
	display: block;
	text-align: center;
	border-radius: 5px;
	padding: 2.5rem 0;
	transition: .3s all ease;
}
.contact-section .contact-area .form a:hover {
	background-color: #b52e32;
}
.contact-section .contact-area .form a span {
	position: relative;
	padding-left: 45px;
}
.contact-section .contact-area .form a span:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 30px;
	height: 23px;
	background: url(./images/common/h_mail_icon.png) center / 100% no-repeat;
	transition: .1s all ease;
}

@media screen and (max-width: 1024px) {
	.contact-section .contact-area {
		max-width: 780px;
		align-items: center;
	}
	.contact-section .contact-area .tel {
		width: 230px;
	}
	.contact-section .contact-area .tel-item a {
		font-size: 3rem;
	}
	.contact-section .contact-area .inquiry {
		width: calc(100% - 230px - 2em);
	}
	.contact-section .contact-area .inquiry-item a {
		padding: 1.5rem calc(2rem + 35px) 1.5rem 2rem;
	}
	.contact-section .contact-area .form a {
		padding: 2rem 0;
	}
}
@media screen and (max-width: 768px) {
	.contact-section .contact-area {
		max-width: 100%;
		align-items: flex-start;
		flex-direction: column;
	}
	.contact-section .contact-area .tel {
		width: 100%;
		margin-bottom: 2em;
		display: flex;
		gap: 3em;
	}
	.contact-section .contact-area .inquiry {
		width: 100%;
	}
}
@media screen and (max-width: 530px) {
	.contact-section .contact-area .tel {
		gap: 0;
		flex-direction: column;
	}
}
@media screen and (max-width: 480px) {
	.contact-section .contact-area .inquiry-item {
		width: 100%;
	}
}

/******************
フッター
******************/
.footer {
	background-color: #262626;
	color: #fff;
	padding-bottom: 1em;
}
.footer-inner {
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 6em 0;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.page-top {
	position: absolute;
	right: 0;
	top: 6em;
	width: 210px;
	text-align: center;
}
.page-top a {
	display: inline-block;
	color: #fff;
	position: relative;
	padding-top: 15px;
	transition: .3s all ease;
}
.page-top a:hover {
	opacity: 0.6;
}
.page-top a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	color: #fff;
	width: 1em;
	height: 1em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(25%) rotate(-45deg);
	transition: .3s all ease;
}
.page-top a:hover:before {
	opacity: 0.6;
}

.footer-nav {
	width: calc(100% - 210px - 4em);
	max-width: 920px;
	display: flex;
	gap: 3em;
}
.footer-nav > ul {
	width: calc(33.33% - 2em);
}
.footer-nav > ul > li {
	list-style: none;
}
.footer-nav > ul > li:not(:last-child) {
	margin-bottom: 1em;
}
.footer-nav > ul > li > a {
	display: block;
	color: #fff;
	font-size: 1.4rem;
	padding: .5rem 0;
	border-bottom: 1px solid #525252;
	
}
.footer-nav > ul > li > a:hover {
	color: #c9c9c9;
}
.footer-nav .child-nav {
	margin-top: .5em;
}
.footer-nav .child-nav > li {
	list-style: none;
}
.footer-nav .child-nav > li:not(:last-child) {
	margin-bottom: .5rem;
}
.footer-nav .child-nav > li > a {
	display: block;
	color: #fff;
	font-size: 1.4rem;
}
.footer-nav .child-nav > li > a:hover {
	color: #c9c9c9;
}
.footer-nav .has-grandchild > p {
	display: block;
	font-size: 1.4rem;
	cursor: pointer;
	position: relative;
}
.footer-nav .has-grandchild > p:before,
.footer-nav .has-grandchild > p:after {
	content: "";
	position: absolute;
	background-color: #fff;
}
.footer-nav .has-grandchild > p:before {
	top: 13px;
	right: 0;
	width: 11px;
	height: 1px;
}
.footer-nav .has-grandchild > p:after {
	top: 8px;
	right: 5px;
	width: 1px;
	height: 11px;
	transition: .3s all ease;
}
.footer-nav .has-grandchild > p.is-open:after {
	height: 0;
}
.footer-nav .grandchild-nav {
	display: none;
	margin-bottom: 1em;
}
.footer-nav .grandchild-nav li {
	list-style: none;
}
.footer-nav .grandchild-nav li a {
	display: inline-block;
	font-size: 1.4rem;
	color: #fff;
	position: relative;
	padding-left: 15px;
}
.footer-nav .grandchild-nav li a:hover {
	color: #c9c9c9;
}
.footer-nav .grandchild-nav li a:before {
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 100%;
	background-color: #fff;
	position: absolute;
	top: 11px;
	left: 0;
}
.footer-info {
	margin-top: 6em;
}
.footer-logo {
	width: 210px;
}
.footer-logo a {
	display: block;
}
.footer-add {
	margin-top: 1em;
}
.footer-add p {
	font-size: 1.4rem;
	line-height: 160%;
}
.footer-lower {
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.privacy-policy a {
	color: #fff;
	font-size: 1.2rem;
}
.privacy-policy a:hover {
	color: #c9c9c9;
}
.copy-right p {
	font-size: 1.2rem;
}



@media screen and (max-width: 1024px) {
	.footer-inner {
		flex-direction: column;
		padding: 4em 0 4em;
	}
	.page-top {
		position: static;
		margin: 0 auto 3em;
	}
	
	.footer-nav {
		width: 100%;
		margin-bottom: 6em;
	}
	.footer-logo {
		width: 180px;
	}
	
	.footer-info {
		margin-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.footer-inner {
		padding: 2em 0 4em;
	}
	.page-top a {
		font-size: 1.4rem;
	}
	
	.footer-logo {
		width: 140px;
	}
	.footer-nav {
		flex-wrap: wrap;
		margin-bottom: 4em;
	}
	.footer-nav > ul {
		width: calc(50% - 1.5em);
	}
}
@media screen and (max-width: 460px) {
	.footer-nav {
		gap: 1em;
	}
	.footer-nav > ul {
		width: 100%;
	}
	.footer-logo {
		margin: 0 auto;
	}
	.footer-add {
		text-align: center;
	}
	.footer-lower {
		flex-direction: column;
		align-items: flex-start;
	}
}

/******************
プリントレイアウト
******************/

@media print {
	body {
		width: 1600px;
	}
	#wrapperTop,#wrapper {
		padding-top: 0;
		overflow: visible !important;
	}
	#wrapperTop #header, #wrapper #header {
		position: relative;
	}
}
@page{
	margin: 16mm 10mm;
}
@-moz-document url-prefix() {
	@page {
		margin: auto;
	}
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	@page {
		margin: auto
	}
}