@charset "utf-8";

/*-------------------------------
	基本設定
-------------------------------*/

/*----- フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
	line-height: 1.5;
	word-wrap: break-word;
	margin: 0;
}

html {
	font-size: 62.5%;
}

body {
	background: url(../img/common/bg.jpg) top no-repeat;
	background-size: cover;
	width: 100%;
	font-size: 1.2rem;
	letter-spacing: .05rem;
	font-weight: 400;
	color: #000;
	font-family: 'Shippori Mincho', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

ul,
li {
	list-style: none;
}

/*----- ナビメニュー関連 */
.navBlock .nav__menu {
	margin: 0;
	padding: 0;
}

.navBlock .nav__menu .nav__item .nav__link {
	width: 100%;
	color: #000;
	text-decoration: none;
	transition: .3s all;
	display: block;
}

.navBlock .nav__menu .nav__item .nav__link:hover {
	opacity: 0.7;
	transition: .3s all;
}

@media screen and (max-width:599px) {

	.header__hamburger {
		padding: 30px 10px;
		position: absolute;
		top: 0;
		right: 0;
	}

	/* fixednav を画面全体に広げる */
	#fixednav {
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: #fff;
		z-index: 1001;
		overflow-y: auto;
		padding: 20px;
		/* メニュー内の余白調整 */
		box-sizing: border-box;
		opacity: 0;
		transition: all .3s;
	}

	/* 開いたときに表示 */
	#fixednav.is-open {
		visibility: visible;
		display: block;
		position: fixed !important;
		top: 0 !important;
		z-index: -1;
		opacity: 1;
		transition: all .3s;
	}

	/* オーバーレイ背景 */
	#js-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1000;
	}

	/* オーバーレイ表示時 */
	#js-overlay.is-active {
		display: block;
	}

	/* ハンバーガーアイコンのアニメーション */
	#js-hamburger span {
		display: block;
		width: 25px;
		height: 1px;
		background: #333;
		margin: 5px 0;
		transition: 0.3s;
	}

	#js-hamburger.is-open span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	#js-hamburger.is-open span:nth-child(2) {
		opacity: 0;
	}

	#js-hamburger.is-open span:nth-child(3) {
		transform: rotate(-45deg) translate(4px, -3px);
	}

	/* スクロール無効化用クラス */
	body.is-fixed {
		overflow: hidden;
	}

}

/*----- 装飾関連 */

.vertical {
	writing-mode: vertical-rl;
}



.arrow {
	position: relative;
	display: inline-block;
}

.arrow::before {
	/* くの字の表示設定 */
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -80px;
	/* 要素の右からの距離 */
	width: 10px;
	height: 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	/* 角度調整 */
}

.arrow::after {
	/* 棒の表示設定 */
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -80px;
	/* 要素の右からの距離 */
	width: 60px;
	height: 2px;
	background: #000;
}


/*----- 画像関連 */
img {
	height: auto;
	vertical-align: bottom;
}

/* object-fit */
.obj-img img {
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

/*----- ボタン関連 */

button {
	padding: 0;
	border: none;
	outline: none;
	font: inherit;
	color: inherit;
	background: none;
}

.btn {
	width: 156px;
	height: 42px;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn.--contact {
	background-color: #D22917;
}


.btn.--section {
	margin-top: 88px;
	width: 265px;
	height: 85px;
	background-color: #fff;
	border: 0.75px solid #000;
	border-radius: 12px;
	position: relative;
}

@media screen and (max-width:599px) {
	.btn.--section {
		width: 100%;
	}
}

.btn.--section::after {
	content: "";
	background: url(../img/common/icon_character.png) no-repeat center;
	background-size: contain;
	width: 88px;
	aspect-ratio: 243 / 244;
	position: absolute;
	bottom: 76px;
	left: 50%;
	transform: translateX(-50%);
}

.btn__link {
	width: 100%;
	height: 100%;
	font-size: 1.2rem;
	letter-spacing: 0.2rem;
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width:599px) {
	.btn__link {
		font-size: 1.6rem;
	}
}

.btn-arrow {
	width: 147px;
	height: 40px;
	border-bottom: 1px solid #D22917;
	text-align: left;
	position: relative;
}

.btn-arrow::after {
	content: "";
	border-right: 1px solid #D22917;
	transform: skew(45deg);
	position: absolute;
	right: 5px;
	bottom: 0;
	width: 10px;
	height: 10px;
}

.btn-arrow .btn__link {
	color: #D22917;
	letter-spacing: 0.5rem;
}

.btn.--section .btn__role {
	font-size: 1.5rem;
}

/*----- コンテンツ */

.basewidth {
	width: min(1280px, 100vw - 40px);
	margin-left: auto;
	margin-right: auto;
}

.innerwidth {
	max-width: 920px;
	padding-left: 60px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width:599px) {
	.innerwidth {
		max-width: 100%;
		padding-left: 10px;
		padding-right: 10px;
		margin-left: auto;
		margin-right: auto;
	}
}

.sec {
	padding-top: 80px;
	padding-bottom: 80px;
}

.textBlock {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width:599px) {
	.textBlock {
		flex-direction: column;
	}
}

.text,
.text-en {
	max-width: 252px;
	font-size: 1.2rem;
	line-height: 2;
	letter-spacing: 0.05rem;
	text-align: justify;
}

@media screen and (max-width:768px) {

	.text,
	.text-en {
		max-width: calc(50% - 52px);
	}
}

@media screen and (max-width:599px) {

	.text,
	.text-en {
		max-width: 100%;
	}
}

.text {
	margin-right: 52px;
}

@media screen and (max-width:599px) {

	.text {
		margin-right: 0;
	}

}

/*----- 文字 */
.sec__title {
	margin-bottom: 54px;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.2rem;
	font-family: 'Shippori Mincho', serif;
	position: relative;
}

.h1title {
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	color: #fff;
	position: absolute;
	left: 120px;
	bottom: 60px;
}

.h1title::before {
	content: attr(data-title-en);
	font-size: 8.5rem;
	font-weight: 600;
	color: #fff;
	position: absolute;
	bottom: 40px;

}

.sec__h3title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.2rem;
	font-family: 'Shippori Mincho', serif;
	position: relative;
}

.sec__h3title-en {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05rem;
	font-family: 'Shippori Mincho', serif;
	position: relative;
}

@media screen and (max-width:599px) {

	*,
	*::before,
	*::after {
		box-sizing: border-box;
		line-height: 1.5;
		word-wrap: break-word;
		margin: 0;
	}

	html {
		font-size: 62.5%;
	}

	body {
		width: 100%;
		font-size: 1.8rem;
		letter-spacing: .025em;
		font-weight: 400;
		-webkit-text-size-adjust: 100%;
		color: #000;
	}

	a {
		text-decoration: none;
		transition: .3s all ease;
		color: #fff;
		position: relative;
	}

	/*----- 装飾関連 */

	.vertical {
		writing-mode: vertical-rl;
	}


	/*----- 画像関連 */
	img {
		height: auto;
		vertical-align: bottom;
	}

	/* object-fit */
	.obj-img img {
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}

	/*----- ボタン関連 */

	button {
		padding: 0;
		border: none;
		outline: none;
		font: inherit;
		color: inherit;
		background: none;
	}

	.btn {
		border-radius: 8px;
		position: relative;
		display: flex;
		justify-content: space-around;
		align-items: center;
		transition: 0.3s all;
	}

	/*----- コンテンツ */

	.basewidth {
		width: calc(100% - 5vw);
		margin-left: auto;
		margin-right: auto;
	}

	/*----- 文字 */
	.sec-title {
		margin-bottom: 12.5vw;
		font-size: 6.5vw;
	}

	.h1title {
		font-size: 5.5vw;
		font-weight: 600;
		letter-spacing: 0.1rem;
		color: #fff;
		position: absolute;
		left: 20px;
		bottom: 20px;
	}

	.h1title::before {
		content: attr(data-title-en);
		font-size: 11.5vw;
		font-weight: 600;
		color: #fff;
		position: absolute;
		bottom: 30px;

	}

}

/*-------------------------------
	固定表示
-------------------------------*/


/*-------------------------------
	動画
-------------------------------*/

.sec-video {
	width: 100%;
	height: auto;
	aspect-ratio: 1024 / 576;
	position: relative;
	top: initial;
	overflow: hidden;
}


.sec-video video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	aspect-ratio: 1024 / 576;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.sec-video .catch {
	font-size: 2.5rem;
	font-family: "Shippori Mincho", serif;
	color: #fff;
	letter-spacing: 0.2rem;
	position: absolute;
	bottom: 100px;
}

@media screen and (max-width:599px) {
	.sec-video {
		position: relative;
		top: 80px;

	}

	.sec-video .catch {
		left: 20px;
	}
}

/*-------------------------------
	ヘッダー
-------------------------------*/

.header {
	width: 100%;
	position: absolute;
	z-index: 9999;
}

.header .flexBlock {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
}

.header .basewidth {
	position: relative;
}

.header .headerBlock {
	z-index: 9999;
}

.header .headerBlock-top {
	padding-top: 32px;
	display: flex;
	align-items: center;
}

.header .headerBlock .catch {
	margin-left: 100px;
	font-size: 2rem;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	letter-spacing: 0.2rem;
}

.header .header-logo {
	width: 20rem;
}

.header .header-logo .logo {
	width: 100%;
	aspect-ratio: 100 / 23;
}


@media screen and (max-width:768px) {
	.header .headerBlock .catch {
		margin-left: 40px;
	}
}

@media screen and (max-width:599px) {

	.header {
		position: absolute;
		top: 0;
	}

	.header .header-logo {
		min-width: 13rem;
		width: 13rem;
	}

	.header .headerBlock .catch {
		margin-left: 20px;
		font-size: 1.4rem;
		line-height: 1.333;
	}

	.header .headerBlock .catch br {
		display: block;
	}
}




/*下層ページ*/

.lowerPage .header .headerBlock .catch {
	color: #fff;
	transition: color 0.3s ease-out;
}

/* スクロールしたらヘッダーメニューのフォントカラー変更 */


.lowerPage .header .headerBlock .catch.colorScroll {
	color: #000;
	transition: color 0.3s ease-out;
}

.lowerPage .textBlock {
	justify-content: space-between;
}

.lowerPage .textBlock .cnt:first-of-type {
	margin-bottom: 40px;
}

.lowerPage .text,
.lowerPage .text-en {
	max-width: 360px;
}

.lowerPage .text {
	margin-right: 88px;
}

@media screen and (max-width:599px) {
	.lowerPage .header .headerBlock .catch {
		color: #000;
	}

	.lowerPage .text,
	.lowerPage .text-en {
		max-width: 100%;
	}

	.lowerPage .text {
		margin-right: 0;
	}

}

/*----- グローバルメニュー */

.header .navBlock.--header {
	width: 0;
	position: absolute;
	top: 155px;
}

.header .navBlock.--header .nav__menu {
	width: 20px;
}


.header .navBlock.--header .nav__item {
	width: 20px;
	margin-bottom: 40px;
}

.header .navBlock.--header .nav__item:last-of-type {
	margin-bottom: 0;
}



@media screen and (max-width:599px) {
	.header .navBlock.--header .nav__menu {
		margin-top: 120px;
		width: 100%;
	}

	.header .navBlock.--header .nav__item {
		width: 100%;
	}

	.nav__menu .nav__item .nav__link {
		width: 100%;
		color: #000;
		text-decoration: none;
		transition: .3s all;
		writing-mode: inherit;
	}
}


/*----- contactボタン */

.header .btnBlock {
	display: flex;
	justify-content: flex-end;
}


.header .btnBlock .btn__link {
	width: 150px;
}

.header .btn.--contact {
	position: absolute;
	top: 0px;
	z-index: 9999;
}


.header .btn.--contact::after {
	content: "";
	background: url(../img/common/icon_character.gif) no-repeat center;
	background-size: contain;
	width: 150px;
	aspect-ratio: 548 / 683;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9998;
}

.header .btn.--contact:hover::after {
	background: url(../img/common/icon_character-2.gif) no-repeat center;
	background-size: contain;
	animation: poyoyon 0.5s infinite;
}

@keyframes poyoyon {
	0% {
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	100% {
		bottom: 26px;
		left: 50%;
		transform: translateX(-50%);
	}
}

.header .btn__role,
.header .btn__role:visited {
	font-size: 1.5rem;
	color: #fff;
}


@media screen and (max-width:599px) {
	.header .btn.--contact {
		width: 100%;
		height: 54px;
		border-radius: 0;
		position: absolute;
		top: inherit;
		left: 0;
		bottom: 0;
	}

	.header .btn.--contact::after {
		width: 80px;
		left: 50px;
	}

	.header .btn.--contact:hover::after {
		background: url(../img/common/icon_character-2.gif) no-repeat center;
		background-size: contain;
		animation: none;
	}

}

/*-------------------------------
	mainvisulal
-------------------------------*/
.mv {
	overflow-x: hidden;
}

.mv .innerwidth {
	margin: auto;
	position: relative;
}

.mv .innerwidth .h1title {
	position: absolute;
}

.mv .innerwidth .mv-img {
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	position: relative;
	z-index: -1;
}

.mv .innerwidth .mv-img::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.2;
	position: absolute;

}

.mv .innerwidth .mv-img img {
	width: 100%;
	aspect-ratio: 178 / 123;
	object-fit: cover;
	object-position: left bottom;
}

@media screen and (max-width:599px) {
	.mv {
		margin-top: 100px;
	}
}

/*-------------------------------
	CONTACT
-------------------------------*/
.sec-contact {
	padding-top: 0;
	padding-bottom: 0;
	overflow-x: hidden;
}

.sec-contact .innerwidth {
	padding-top: 77px;
	padding-bottom: 180px;
	background-color: #fff;
	position: relative;
}

.sec-contact .innerwidth:after {
	content: "";
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: -50%;
	z-index: -1;
}

.sec-contact .btnBlock {
	padding-right: 40px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.sec-contact .btnBlock .text {
	margin-right: 85px;
	font-size: 1.5rem;
	font-weight: 600;
	position: relative;
}

.sec-contact .btnBlock .text::before {
	content: "";
	background: url(../img/common/icon_mail-red.png) no-repeat center;
	background-size: contain;
	width: 36px;
	aspect-ratio: 76 / 53;
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
}

.sec-contact .btnBlock .btn.--contact {
	width: 265px;
	height: 60px;
	background-color: #fff;
	border: 1px solid #000;
	transition: all .3s;
}

.sec-contact .btnBlock .btn.--contact .btn__link {
	font-size: 1.5rem;
	transition: all .3s;
}

.sec-contact .btnBlock .btn.--contact:hover {
	border: 1px solid #D22917;
	background-color: #D22917;
	transition: all .3s;
}

.sec-contact .btnBlock .btn.--contact:hover .btn__link {
	color: #fff;
	transition: all .3s;
}

@media screen and (max-width:599px) {
	.sec-contact .innerwidth {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.sec-contact .btnBlock {
		padding-right: 0;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.sec-contact .btnBlock .text {
		margin-right: 0;
		margin-top: 80px;
		margin-bottom: 40px;
	}

	.sec-contact .btnBlock .btn.--contact {
		width: 100%;
		height: 84px;
	}
}

/*-------------------------------
	footer
-------------------------------*/
.footer {
	padding-top: 180px;
	padding-bottom: 80px;
	position: relative;
}

.footer .footerBlock-top {
	margin-bottom: 60px;
	display: flex;
	align-items: center;
}

.footer .catch {
	margin-left: 100px;
	font-size: 1.5rem;
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.2rem;
}

.footer .footer-logo {
	width: 20rem;
}

.footer .footer-logo .logo {
	width: 100%;
	aspect-ratio: 100 / 23;
}

.footer .footer__block {
	margin-bottom: 130px;
}

.footer .navBlock.--footer .nav__item {
	margin-bottom: 28px;
}

.footer .navBlock.--footer .nav__item {
	margin-bottom: 28px;
}

.footer .navBlock.--footer .nav__item:last-of-type {
	margin-bottom: 0;
}

.footer .navBlock.--footer .nav__link {
	margin-bottom: 28px;
	font-size: 1.6rem;
}

.footer .footer__block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer .footer__block .infoBlock {
	padding-right: 160px;
}

.footer .footer__block .infoBlock .companyName {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.1rem;
}

.footer .footer__block .infoBlock .companyInfoBlock {
	display: flex;
	align-items: flex-end;
}

.footer .footer__block .infoBlock .companyInfoBlock .companyAddress {
	margin-right: 48px;
	font-size: 1.2rem;
	line-height: 1.666;
	letter-spacing: 0.2rem;
}

.footer .footer__block .infoBlock .companyInfoBlock .tel,
.footer .footer__block .infoBlock .companyInfoBlock .fax {
	font-size: 1.2rem;
	line-height: 1.666;
	letter-spacing: 0.2rem;
}

.footer .footer__block .infoBlock .companyInfoBlock .tel {
	margin-bottom: 10px;
}

.footer .footer__block .infoBlock .companyInfoBlock .tel span,
.footer .footer__block .infoBlock .companyInfoBlock .fax span {
	margin-right: 20px;
}

/* .footer .footer-catch {
	margin-left: 20px;
	margin-bottom: 120px;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: 0.2rem;
} */
.footer .footer-catch {
	margin-left: 20px;
	margin-bottom: 120px;
}

.footer .footer-catch img {
	width: 226px;
	aspect-ratio: 113 / 38;
}

footer .footerBlock-bottom {
	text-align: center;
	position: relative;
}

footer .footerBlock-bottom .copyright {
	position: absolute;
	left: 0;
	bottom: 0;
}

footer .footerBlock-bottom .footer__link {
	color: #000;
	text-decoration: none;
}

@media screen and (max-width:599px) {
	.footer {
		padding-top: 80px;
		padding-bottom: 120px;
		position: relative;
		overflow-x: hidden;
	}

	.footer .footerBlock-top {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.footer .catch {
		margin-left: 0;
		margin-top: 20px;
	}

	.footer .footer__block {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.footer .footer__block .infoBlock {
		margin-top: 80px;
		padding-right: 0;
	}

	.footer .footer__block .infoBlock .companyInfoBlock {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer .footer__block .infoBlock .companyInfoBlock .companyAddress {
		margin-right: 0;
		margin-bottom: 10px;
		font-size: 1.6rem;
		line-height: 2;
	}


	.footer .footer__block .infoBlock .companyInfoBlock .tel,
	.footer .footer__block .infoBlock .companyInfoBlock .fax {
		font-size: 1.6rem;
		line-height: 1.666;
		letter-spacing: 0.2rem;
	}

	footer .footerBlock-bottom {
		text-align: right;
	}

	.footer .footer-catch {
		margin-left: 0;
	}

	footer .footerBlock-bottom .footer__link {
		font-size: 1.5rem;
	}
}

.page-top {
	position: absolute;
	top: calc(50% + 100px);
	right: 20px;
}

.page-top .pageTop__link {
	color: #000;
	text-decoration: none;
	display: block;
	transform: rotate(90deg);
	position: relative;
}

.page-top .pageTop__link::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -220px;
	width: 200px;
	height: 1px;
	margin: auto;
	background-color: #000;
}

@media screen and (max-width:599px) {
	.page-top {
		position: absolute;
		top: 340px;
		right: -20px;
	}

	.page-top .pageTop__link::before {
		top: 15px;
	}
}

/*-------------------------------
	PC専用
-------------------------------*/
/* @media screen and (min-width:769px),
print {

	a[href^="tel:"] {
		pointer-events: none;
	}

} */
.pc-none {
	display: none;
}

@media screen and (max-width:599px) {

	.pc-none {
		display: block;
	}
}

/*-------------------------------
	スクロール時の挙動
-------------------------------*/
.hidden {
	animation: fade .2s ease-in-out forwards;
	pointer-events: none;
	/* 重要 */
}

@keyframes fade {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.visible {
	animation: fadeOut .2s ease-in-out forwards;
	pointer-events: all;
	/* 重要 */
}

@keyframes fadeOut {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}