@charset "UTF-8";

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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

.fontRobotoCondensed {
	font-family: "Roboto Condensed", sans-serif;
}

a.hover:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
	transition-duration: 0.3s;
}

/*---------------------------------------------*/

/* CSS Document */
:root {
	--corporate-color: ;
	--background-color: ;
	--btn-color: ;
	--text-color: #E6E6E6;
	--subtext-color: #E6E6E6;
	--border-color: #7D7D7D;
}

html {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	color: var(--text-color);
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-size: 15px;
}

img {
	width: 100%;
}

main {}


.taCenterSPL {
	text-align: center;
}

@media(max-width:768px) {
	.taCenterSPL {
		text-align: left;
	}
}

.text_link {
	text-decoration: underline;
}

@media(max-width:768px) {}

@media(max-width:768px) {}

/*************
下層共通
*************/
/* h1 */
.h1_wrap {
	height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-size: cover;
}

h1:not(.headerLogo01) {
	text-align: center;
}

.h1_ja,
.h1_en {
	display: block;
	color: #FFF;
	margin: 0 auto;
}

.h1_ja {
	font-weight: bold;
	color: #FFF;
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: 0.15em;
}

.h1_en {
	font-weight: bold;
	color: #FFF;
	font-size: 48px;
	font-family: "Roboto Condensed";
	font-optical-sizing: auto;
	line-height: 1.1;
	margin-top: 8px;
	letter-spacing: 0;
}

@media(max-width:768px) {
	.h1_wrap {
		height: 110px;
	}

	.h1_ja {
		font-size: 15px;
	}

	.h1_en {
		font-size: 32px;
	}
}

/* コンテンツ内部 */
.content_wrapper {
	padding: 80px;
	display: flex;
	row-gap: 48px;
	flex-direction: column;
}

@media(max-width:768px) {
	.content_wrapper {
		padding: 40px 20px;
	}
}

.divCenter>div,
.divCenter>a {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

/*************
TOPに戻るボタン
*************/
#top_btn {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	height: 48px;
	width: 48px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	z-index: 999;
	transition: all 0.3s;
}

#top_btn::after {
	content: "";
	position: absolute;
	top: 56%;
	left: 50%;
	height: 12px;
	width: 12px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: translate(-50%, -50%) rotate(-45deg);
}

/*************
スクロールで下から出現
*************/
.fadeUp {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}



@media(max-width:1024px) {}

@media(max-width:768px) {}

/*************
メディアクエリ
*************/
@media(min-width:1025px) {

	.sp,
	.tbsp,
	.tb {
		display: none;
	}
}

@media(max-width:1024px) {
	.pc {
		display: none;
	}
}

@media(min-width:769px) {
	.sp {
		display: none;
	}
}

@media(max-width:768px) {

	.pc,
	.pctb,
	.tb {
		display: none;
	}
}

@media(max-width:480px) {
	.pctbsp {
		display: none;
	}
}

/*—————————————————————
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - デスクトップ
   1024-768    - タブレット横長
   768-480     - タブレット縦長
   480-less    - スマホ
——————————————————————*/
@media all and (min-width: 1024px) and (max-width: 1280px) {}

@media all and (min-width: 768px) and (max-width: 1024px) {}

@media all and (min-width: 480px) and (max-width: 768px) {}

@media all and (max-width: 480px) {}


/*--------------------------------------------------------*/

.bodyBg01 {
	background-image: url("../img/top_bg01.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 650px auto;
}

.contIn1140 {
	max-width: 1140px;
	margin: auto;
	box-sizing: content-box;
	padding: 0px 40px;
}

/*タブレット横長*/
@media(max-width:1024px) {

	.contIn1140 {
		padding: 0px 20px;
	}

}

/*タブレット縦長*/
@media(max-width:768px) {

	.bodyBg01 {
		background-size: 325px auto;
	}

	.contIn1140 {
		padding: 0px 20px;
	}

}

/*スマホ*/
@media(max-width:480px) {}

/*--------------------------------------------------------*/

/*************
header
*************/

.headerBase01 {
	height: 200px;
}

.headerWrap01 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 20px 0px 20px 0px;
	height: 200px;
	width: 100%;
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 100;
	background-color: rgba(31, 31, 31, 0.4);
	backdrop-filter: blur(36px);
	-webkit-backdrop-filter: blur(36px);
}

.headerLogo01 {}

.headerLogo01 img {
	width: 79px;
	height: auto;
}

.headerNavi01 {
	display: flex;
	align-items: center;
	font-family: "Roboto Condensed", sans-serif;
}

.headerNavi01 li {
	margin-left: 80px;
}

.headerNavi01 a {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
}

.headerNavi01 a:link {
	color: #E6E6E6;
	text-decoration: none;
}

.headerNavi01 a:visited {
	color: #E6E6E6;
	text-decoration: none;
}

.headerNavi01 a:hover {
	color: #E6E6E6;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.headerNavi01 a:active {
	color: #E6E6E6;
	text-decoration: none;
}

.headerNavi01 .current a {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.headerNavi01 a.contactBtn01:hover {
	color: #E6E6E6;
	text-decoration: none;
}

.menu-btn-pos {
	display: none;
}

.spNaviHeader {
	display: none;
}


/*タブレット横長*/
@media(max-width:1024px) {

	.headerBase01 {
		height: 140px;
	}

	.headerWrap01 {
		padding: 10px 20px 10px 20px;
		height: 140px;
	}

	.headerLogo01 img {
		width: 54px;
	}

	.headerNavi01 li {
		margin-left: 40px;
	}

	.headerNavi01 a {
		font-size: 14px;
	}


}

/*タブレット縦長*/
@media(max-width:768px) {

	.headerBase01 {
		height: 88px;
	}

	.headerWrap01 {
		display: flex;
		align-items: center;
		justify-content: space-between;
		box-sizing: border-box;
		padding: 20px 20px 20px 20px;
		height: 88px;
		position: fixed;
	}

	.headerLogo01 {}

	.headerLogo01 img {
		width: 127px;
		height: auto;
	}

	.headerNavi01 {
		position: relative;
		display: block;
		text-align: center;
	}

	.headerNavi01 li {
		margin-left: 0px;
		margin-top: 48px;
	}

	.headerNavi01 a {
		font-size: 16px;
		line-height: 1.2em;
		font-weight: bold;
		margin-left: auto;
		margin-right: auto;
	}

	/*--------------*/

	.menu-btn-pos {
		display: block;
	}

	.menu-btn-pos img {
		width: 30px;
		height: auto;
	}

	.christmasMenuCont {
		/*display: none;*/
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 2000000;
		visibility: hidden;
		opacity: 0;
		transition-duration: 0.4s;
	}

	.christmasMenuCont.contOpen {
		visibility: visible;
		opacity: 1;
		transition-duration: 0.4s;
	}

	.christmasMenuBg01 {
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(42px);
		-webkit-backdrop-filter: blur(42px);
		position: fixed;
		top: 0px;
		right: 0px;
	}

	.christmasMenu01 {
		box-sizing: border-box;
		height: 100%;
		padding: 70px 30px 20px 30px;
		background-color: #C38F97;
		position: absolute;
		top: 0px;
		right: 0px;
	}

	.spNaviHeader {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		box-sizing: border-box;
		padding: 20px;
		height: 88px;
	}

	.spNaviHeader .logo01 img {
		width: 127px;
		height: auto;
	}

	.menu01 img {
		width: 30px;
		height: auto;
	}

}

/*スマホ*/
@media(max-width:480px) {}

/*--------------------------------------------------------*/

/*************
#recruit
*************/

.topContRecruitBlock {
	position: relative;
	padding: 48px 0px 0px 0px;
	text-align: center;
}

.topRecruitWrap01 {
	background-image: url("../img/top_recruit_bg01.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.topRecruitBox01 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 775px;
}

.topRecruitBox01 .topH401 {
	margin-bottom: 64px;
}

.topRecruitBox01 .topH401 img {
	width: 600px;
	height: auto;
}

.topRecruitBox01 .linkBtn01 {
	margin: auto;
}


/*タブレット横長*/
@media(max-width:1024px) {}

/*タブレット縦長*/
@media(max-width:768px) {

	.topContRecruitBlock {
		position: relative;
		padding: 48px 0px 0px 0px;
		text-align: center;
	}

	.topRecruitWrap01 {
		background-image: url("../img/top_recruit_bg01_sp.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.topRecruitBox01 {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		height: 480px;
		padding: 20px;
	}

	.topRecruitBox01 .topH401 {
		margin-bottom: 64px;
	}

	.topRecruitBox01 .topH401 img {
		width: 100%;
		height: auto;
	}

	.topRecruitBox01 .linkBtn01 {
		margin: auto;
	}

}

/*スマホ*/
@media(max-width:480px) {}

/*--------------------------------------------------------*/

/*************
#contact
*************/

.topContContactBlock {
	position: relative;
	padding: 120px 0px;
	text-align: center;
}

.topContContactBlock .linkBtn01 {
	margin: auto;
	margin-bottom: 160px;
}

.linkBtnContact {
	text-align: left;
}

.linkBtnContactP01 {
	font-size: 15px;
	line-height: 1.1em;
	font-weight: 300;
	margin-bottom: 5px;
}

.linkBtnContactP02 {
	font-size: 40px;
	line-height: 1.1em;
	font-weight: bold;
}

.linkBtnContactP02::before {
	content: "";
	display: inline-block;
	background-image: url("../img/contact_icon_mail01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 35px auto;
	width: 35px;
	height: 36px;
	vertical-align: text-bottom;
	margin-right: 12px;
	margin-bottom: 5px;
}

.topTelBox01 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 720px;
	height: 142px;
	margin: auto;
	border: 1px solid #7D7D7D;
	box-sizing: border-box;
	padding: 20px;
	background-color: #1F1F1F;
	color: #E6E6E6;
}

.topTelBox01 .boxIn01 {
	margin-right: 40px;
}

.topTelBox01 .boxIn02 {
	text-align: left;
}

.topTelBox01P01 {
	font-size: 15px;
	line-height: 1.1em;
	font-weight: 200;
}

.topTelBox01A01 {
	font-size: 40px;
	line-height: 1.1em;
	font-weight: bold;
}

.topTelBox01A01::before {
	content: "";
	display: inline-block;
	background-image: url("../img/contact_icon_tel01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 35px auto;
	width: 35px;
	height: 36px;
	vertical-align: middle;
	margin-right: 10px;
}

.topTelBox01P02 {
	font-size: 15px;
	line-height: 1.1em;
	font-weight: 200;
	margin-top: 7px;
}



/*タブレット横長*/
@media(max-width:1024px) {}

/*タブレット縦長*/
@media(max-width:768px) {

	.topContContactBlock {
		position: relative;
		padding: 80px 0px;
		text-align: center;
	}

	.topContContactBlock .linkBtn01 {
		margin: auto;
		margin-bottom: 80px;
	}

	.linkBtnContact {
		text-align: left;
	}

	.linkBtnContactP01 {
		font-size: 13px;
		line-height: 1.1em;
		font-weight: 300;
		margin-bottom: 5px;
	}

	.linkBtnContactP02 {
		font-size: 30px;
		line-height: 1.1em;
		font-weight: bold;
	}

	.linkBtnContactP02::before {
		content: "";
		display: inline-block;
		background-image: url("../img/contact_icon_mail01.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 35px auto;
		width: 35px;
		height: 36px;
		vertical-align: text-bottom;
		margin-right: 12px;
		margin-bottom: 5px;
	}

	.topTelBox01 {
		display: block;
		text-align: center;
		max-width: 720px;
		height: auto;
		margin: auto;
		border: 1px solid #7D7D7D;
		box-sizing: border-box;
		padding: 20px;
		background-color: #1F1F1F;
		color: #E6E6E6;
	}

	.topTelBox01 .boxIn01 {
		margin-right: 0px;
		margin-bottom: 10px;
	}

	.topTelBox01 .boxIn02 {
		text-align: center;
	}

	.topTelBox01P01 {
		font-size: 15px;
		line-height: 1.1em;
		font-weight: 200;
	}

	.topTelBox01A01 {
		font-size: 30px;
		line-height: 1.1em;
		font-weight: bold;
	}

	.topTelBox01A01::before {
		content: "";
		display: inline-block;
		background-image: url("../img/contact_icon_tel01.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 35px auto;
		width: 35px;
		height: 36px;
		vertical-align: middle;
		margin-right: 10px;
	}

	.topTelBox01P02 {
		font-size: 15px;
		line-height: 1.1em;
		font-weight: 200;
		margin-top: 7px;
	}

}

/*スマホ*/
@media(max-width:480px) {}

/*--------------------------------------------------------*/

/*************
#footer
*************/

.footerWrap01 {
	box-sizing: content-box;
	max-width: 1220px;
	margin: auto;
	padding: 0px 40px;
}

.footerBlock01 {
	color: #E6E6E6;
	background-color: #303030;
	border-radius: 80px 80px 0px 0px;
	padding: 160px 80px 70px 80px;
}

.footerBlock01 a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.footerFlex01 {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.footerLogoWrap01 {}

.footerLogoWrap01 img {
	width: 79px;
	height: auto;
}

.footerFlex01In01 {
	width: 79.8%;
	display: flex;
}

.footerNaviBox01 {
	width: 29.5%;
	margin-right: 32px;
}

.footerNaviBox01 dt {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
	line-height: 1.6em;
	font-weight: bold;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	margin-bottom: 12px;
}

.footerNaviBox01 dd li {
	color: #C1C1C1;
	font-size: 13px;
	line-height: 1.6em;
	font-weight: 200;
	margin-bottom: 8px;
}

.footerNavi01 {
	display: flex;
	margin-top: 32px;
}

.footerNavi01 li {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
	line-height: 1.6em;
	font-weight: bold;
	margin-right: 32px;
}

.footerBottomWrap01 {
	margin-top: 80px;
}

.footerBottomWrap01 {
	color: #C1C1C1;
}

.footerBottomWrap01 .contAd01 {
	font-size: 12px;
	line-height: 1.3em;
	font-weight: 200;
	margin-bottom: 8px;
}

.footerBottomWrap01 .contCopy01 {
	font-size: 11px;
	line-height: 1.3em;
	font-weight: 200;
}


/*タブレット横長*/
@media(max-width:1024px) {

	.footerWrap01 {
		padding: 0px 20px;
	}

	.footerBlock01 {
		padding: 120px 40px 120px 40px;
	}

}

/*タブレット縦長*/
@media(max-width:768px) {

	.footerWrap01 {
		padding: 0px 20px;
	}

	.footerBlock01 {
		border-radius: 40px 40px 0px 0px;
		padding: 40px 20px 40px 20px;
	}

	.footerBlock01 a:hover {
		text-decoration: underline;
		text-underline-offset: 5px;
	}

	.footerFlex01 {
		display: block;
	}

	.footerLogoWrap01 {
		margin-bottom: 30px;
	}

	.footerLogoWrap01 img {
		width: 156px;
		height: auto;
	}

	.footerFlex01In01 {
		width: auto;
		display: block;
	}

	.footerNaviBox01 {
		width: auto;
		margin-right: 32px;
		margin-top: 30px;
	}

	.footerNaviBox01 dt {
		font-family: "Roboto Condensed", sans-serif;
		font-size: 16px;
		line-height: 1.6em;
		font-weight: bold;
		padding-bottom: 8px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		margin-bottom: 12px;
	}

	.footerNaviBox01 dd li {
		color: #C1C1C1;
		font-size: 13px;
		line-height: 1.6em;
		font-weight: 200;
		margin-bottom: 8px;
	}

	.footerNavi01 {
		display: flex;
		margin-top: 32px;
	}

	.footerNavi01 li {
		font-family: "Roboto Condensed", sans-serif;
		font-size: 16px;
		line-height: 1.6em;
		font-weight: bold;
		margin-right: 32px;
	}

	.footerBottomWrap01 {
		margin-top: 40px;
	}

	.footerBottomWrap01 {
		color: #C1C1C1;
	}

	.footerBottomWrap01 .contAd01 {
		font-size: 12px;
		line-height: 1.3em;
		font-weight: 200;
		margin-bottom: 8px;
	}

	.footerBottomWrap01 .contCopy01 {
		font-size: 11px;
		line-height: 1.3em;
		font-weight: 200;
	}

}

/*スマホ*/
@media(max-width:480px) {}

/*--------------------------------------------------------*/

/*************
	TOPページ
*************/

.spBannerWrap01 {
	display: none;
}

.topMainCont01 {
	color: #ffffff;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.topMainCont01 .main01 {}

.topMainCont01 .main02 {}

.hoverScale01 img {
	transform: scale(1, 1);
	transition-duration: 0.3s;
}

.hoverScale01 img:hover {
	transform: scale(1.1, 1.1);
	transition-duration: 0.3s;
}

/*-----------*/

.mainSlideBase01 {
	margin-top: -50px;
	height: 940px;
}

.mainSlideWrap01 {
	box-sizing: border-box;
	width: 100%;
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 0;
}

.mainSlideWrap01.fixed {
	position: fixed;
}

.mainSlideWrap01 .swiper-slide img {
	width: 100%;
	height: 780px;
	object-fit: cover;
	object-position: center center;
}

/*------------*/

.topContAboutBlock {
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(36px);
	-webkit-backdrop-filter: blur(36px);
	padding: 160px 0px 160px 0px;
	position: relative;
}

.topContFlex01 {
	display: flex;
	justify-content: space-between;
}

.topFlexBox01 {}

.topFlexBox02 {
	width: 540px;
	color: #E6E6E6;
}

.topContH301 {
	color: #E6E6E6;
	margin-bottom: 30px;
}

.topContH301 .s01 {
	display: block;
	font-size: 15px;
	line-height: 1.1em;
	font-weight: normal;
	margin-bottom: 6px;
}

.topContH301 .s02 {
	display: block;
	font-size: 48px;
	line-height: 1.1em;
	font-weight: bold;
}

.topAboutSlideWrap01 {
	margin-top: 80px;
	overflow: hidden;
}

.topAboutSlideWrap01 .swiper02 {
	width: 4080px;
}

.topAboutSlideWrap01 .swiper-slide img {
	border-radius: 8px;
	width: 960px;
	height: 560px;
	object-fit: cover;
	object-position: center center;
}

/*-------------*/

.topBg01 {
	background-image: url("../img/top_bg01.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 650px auto;
	position: relative;
}

.topContServiceBlock {
	position: relative;
	padding: 160px 0px 160px 0px;
}

.topServiceFlex01 {
	display: flex;
	align-items: center;
	margin-top: 80px;
}

.topServiceFlex01.flexReverse {
	flex-direction: row-reverse;
}

.topServiceBox01 {
	width: 50%;
}

.topServiceBox02 {
	box-sizing: border-box;
	width: 50%;
	padding: 20px 80px;
	color: #E6E6E6;
}

.topServiceFlex01 .topH401 img {
	width: 165px;
	height: auto;
}

.topServiceFlex01 .topH401 {
	text-align: right;
	margin-bottom: 32px;
}

.topServiceFlex01.flexReverse .topH401 {
	text-align: left;
}

.topServiceFlex01 .topDl01 {
	margin-bottom: 32px;
}

.topServiceFlex01 .topDl01 dt {
	font-size: 32px;
	line-height: 1.1em;
	font-weight: bold;
	margin-bottom: 15px;
}

.topServiceFlex01 .topDl01 dd {
	font-size: 15px;
	line-height: 1.6em;
	font-weight: 200;
}

.topBannerWrap01 {
	margin-top: 160px;
	text-align: center;
}

.topBannerWrap01 img {
	width: 720px;
	height: auto;
}

/*--------------------------------------------------------*/

p {
	margin: 0;
}

img {
	width: 100%;
	height: auto;
}

/*.container {
	max-width: 800px;
	margin: 0 auto;
}*/
.img01 {
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: 8px;
}

.p01 {
	font-weight: bold;
	font-size: 48px;
	line-height: 1.3;
}

.p02 {
	font-size: 15px;
	line-height: 1.6;
	margin-top: 16px;
}


/* mv */
.mv_jaWrap {
	margin-bottom: 16px;
	margin-left: 8px;
}

.mv_ja {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.1;
	letter-spacing: 1em;
}

.mv_ja span {
	opacity: 0;
}

.mv_ja.appeartext span {
	animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.mv_enWrap {
	position: relative;
	width: 633px;
	height: 160px;
}

.mv_en01 {
	position: absolute;
}

.mv_en01svg {
	opacity: 0;
	stroke: #FFF;
	stroke-dasharray: 120;
	width: 613px;
	animation: mv_en01animation 2.7s linear 0.5s forwards;

}

@keyframes mv_en01animation {
	0% {
		opacity: 0;
		stroke-dashoffset: 120;

	}

	1% {
		opacity: 0.7;
		stroke-dashoffset: 120;
	}

	33% {
		stroke-dashoffset: 0;
	}

	66% {
		opacity: 0.7;
	}

	100% {
		opacity: 0.3;
	}
}

.mv_en02 {
	position: absolute;
	top: 6%;
	left: 1.6%;
}

.mv_en02svg {
	stroke: transparent;
	stroke-dasharray: 250;
	stroke-width: 1;
	fill: rgba(255, 255, 255, 0);
	animation: mv_en02animation 2s ease-out 1.2s forwards;
}

@keyframes mv_en02animation {
	0% {
		stroke-dashoffset: 250;
		stroke: #FFF;

	}

	25% {
		fill: rgba(255, 255, 255, 0);
		stroke: #FFF;
	}

	50% {
		stroke-dashoffset: 0;
	}

	100% {
		fill: rgba(255, 255, 255, 1);
	}
}




/* test A */

.picSlideIn {
	overflow: hidden;
}

.picSlideIn .picSlideIn-inner {
	opacity: 0;
}

.picSlideIn.isPlay .picSlideIn-inner {
	animation: picSlideIn-play .4s cubic-bezier(.8, 0, .5, 1) forwards;
	position: relative;
	opacity: 1 !important;
}

.picSlideIn.isPlay .picSlideIn-inner:before {
	animation: picSlideIn-maskOut .4s cubic-bezier(.8, 0, .5, 1) .4s forwards;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #CC0000;
}

@keyframes picSlideIn-play {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes picSlideIn-maskOut {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(100%);
	}
}

/* test B */

.textSlideRight {
	opacity: 0;
}

.textSlideRight.isPlay {
	animation: textSlideRight .5s ease-in-out forwards;
}

@keyframes textSlideRight {
	from {
		transform: translateX(-30px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.textSlideUp {
	opacity: 0;
}

.textSlideUp.isPlay {
	animation: textSlideUp .5s ease-in-out .1s forwards;
}

@keyframes textSlideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}


/* test C */
.linkBtn01 {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 16px;
	width: fit-content;
	padding-right: 8px;
}

.linkBtn01circle {
	width: 80px;
	height: 80px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 40px;
	position: relative;
	transition: all 0.3s;
}

.linkBtn01:hover .linkBtn01circle {
	background-color: #8F8F8F;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.linkBtn01arrow {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.linkBtn01:hover .linkBtn01arrow {
	animation: linkBtnArrowShake 1s ease-in-out infinite;
}

.linkBtn01text {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s;
}

.linkBtn01:hover .linkBtn01text {
	transform: scale(1.1);
}

@keyframes linkBtnArrowShake {
	0% {
		transform: translate(-50%, -50%);
	}

	15% {
		transform: translate(-40%, -60%);
	}

	30% {
		transform: translate(-50%, -50%);
	}

	45% {
		transform: translate(-40%, -60%);
	}

	60% {
		transform: translate(-50%, -50%);

	}
}

/* test C-2 */
.linkBtn02 {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 16px;
	width: fit-content;
	padding-right: 8px;
}

.linkBtn02circle {
	width: 80px;
	height: 80px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 40px;
	position: relative;
	transition: all 0.3s;
}

.linkBtn02:hover .linkBtn02circle {
	background-color: #8F8F8F;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.linkBtn02arrow {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
	transform: translate(-50%, -50%) rotate(270deg);
}

.linkBtn02:hover .linkBtn02arrow {
	animation: linkBtnArrowShake2 1s ease-in-out infinite;
}

.linkBtn02text {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s;
}

.linkBtn02:hover .linkBtn02text {
	transform: scale(1.1);
}

@keyframes linkBtnArrowShake2 {
	0% {
		transform: translate(-50%, -50%) rotate(270deg);
	}

	15% {
		transform: translate(-60%, -60%) rotate(270deg);
	}

	30% {
		transform: translate(-50%, -50%) rotate(270deg);
	}

	45% {
		transform: translate(-60%, -60%) rotate(270deg);
	}

	60% {
		transform: translate(-50%, -50%) rotate(270deg);
	}
}


/* test D */
.contactBtn01 {
	width: fit-content;
	display: flex;
	height: 50px;
	border-radius: 25px;
	background: linear-gradient(90deg, #E50113 0%, #E5B03C 100%);
	align-items: center;
	text-decoration: none;
	padding: 0 40px 0 20px;
	background-position: 99% 50%;
	background-size: 200% auto;
	/*アニメーションの指定*/
	transition: all 0.3s ease-out;
}

.contactBtn01:hover {
	color: #fff;
	background-position: 1% 50%;
}

.contactBtn01arrowWrap {
	position: relative;
	width: 40px;
	height: 40px;
}

.contactBtn01arrow {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;

}

.contactBtn01:hover .contactBtn01arrow {
	animation: contactBtnArrowShake 1s ease-in-out infinite;
}

@keyframes contactBtnArrowShake {
	0% {
		transform: translate(-50%, -50%);
	}

	15% {
		transform: translate(-40%, -60%);
	}

	30% {
		transform: translate(-50%, -50%);
	}

	45% {
		transform: translate(-40%, -60%);
	}

	60% {
		transform: translate(-50%, -50%);
	}
}

.contactBtn01text {
	font-weight: bold;
	color: #FFF;
	font-size: 16px;
	font-family: "Roboto Condensed";
	font-optical-sizing: auto;
	line-height: 0.03em;
}



/*タブレット横長*/
@media(max-width:1024px) {

	.topMainCont01 .main01 {
		margin-bottom: 30px;
	}

	.topMainCont01 .main02 img {
		max-width: 100%;
		width: auto;
		height: auto;
	}

	.topMainCont01 {
		display: block;
	}

	.mainSlideBase01 {
		margin-top: -50px;
		height: 700px;
	}

	.mainSlideWrap01 {
		box-sizing: border-box;
		width: 100%;
		position: relative;
		top: 0px;
		left: 0px;
		z-index: 0;
	}

	.mainSlideWrap01.fixed {
		position: fixed;
	}

	.mainSlideWrap01 .swiper-slide img {
		width: 100%;
		height: 600px;
		object-fit: cover;
		object-position: center center;
	}

	.topFlexBox02 {
		width: 50%;
	}

	.topServiceBox02 {
		padding: 0px 40px;
	}

}

/*タブレット縦長*/
@media(max-width:768px) {

	.spBannerWrap01 {
		position: relative;
		display: block;
	}

	.topMainCont01 {
		display: block;
		margin-top: 30px;
	}

	.topMainCont01 .main01 {}

	.topMainCont01 .main02 {
		display: none;
	}

	.hoverScale01 img {
		transform: scale(1, 1);
		transition-duration: 0.3s;
	}

	.hoverScale01 img:hover {
		transform: scale(1.1, 1.1);
		transition-duration: 0.3s;
	}

	/*-----------*/

	.mainSlideBase01 {
		margin-top: 80px;
		height: 500px;
	}

	.mainSlideWrap01 {
		box-sizing: border-box;
		width: 100%;
		position: relative;
		top: 0px;
		left: 0px;
		z-index: 0;
	}

	.mainSlideWrap01.fixed {
		position: fixed;
	}

	.mainSlideWrap01 .swiper-slide img {
		width: 100%;
		height: 300px;
		object-fit: cover;
		object-position: center center;
	}

	/*------------*/

	.topContAboutBlock {
		padding: 80px 0px 80px 0px;
	}

	.topContFlex01 {
		display: block;
	}

	.topFlexBox01 {}

	.topFlexBox02 {
		width: auto;
		margin-top: 32px;
	}

	.topContH301 {
		color: #E6E6E6;
		margin-bottom: 30px;
	}

	.topContH301 .s01 {
		display: block;
		font-size: 15px;
		line-height: 1.1em;
		font-weight: normal;
		margin-bottom: 6px;
	}

	.topContH301 .s02 {
		display: block;
		font-size: 48px;
		line-height: 1.1em;
		font-weight: bold;
	}

	.topAboutSlideWrap01 {
		margin-top: 80px;
		overflow: hidden;
	}

	.topAboutSlideWrap01 .swiper02 {
		width: 1360px;
	}

	.topAboutSlideWrap01 .swiper-slide img {
		width: 320px;
		height: 186px;
	}

	/*-------------*/

	.topBg01 {
		background-size: 325px auto;
	}

	.topContServiceBlock {
		padding: 40px 0px 40px 0px;
	}

	.topServiceFlex01 {
		display: block;
		margin-top: 64px;
	}

	.topServiceBox01 {
		width: auto;
	}

	.topServiceBox02 {
		width: auto;
		padding: 20px 0px;
		color: #E6E6E6;
	}

	.topServiceFlex01 .topH401 img {
		width: 140px;
		height: auto;
	}

	.topServiceFlex01 .topH401 {
		text-align: left;
		margin-bottom: 16px;
	}

	.topServiceFlex01.flexReverse .topH401 {
		text-align: left;
	}

	.topServiceFlex01 .topDl01 {
		margin-bottom: 32px;
	}

	.topServiceFlex01 .topDl01 dt {
		font-size: 24px;
	}

	.topServiceFlex01 .topDl01 dd {
		font-size: 15px;
	}

	.topBannerWrap01 {
		margin-top: 80px;
		text-align: center;
	}

	.topBannerWrap01 img {
		width: 100%;
		height: auto;
	}

	/*---------------*/

	.mv_ja {
		font-size: 16px;
	}

	.mv_enWrap {
		position: relative;
		width: 100%;
		height: auto;
	}

	.mv_en01svg {
		width: 100%;
		height: auto;
	}

	.mv_en02svg {
		width: 100%;
		height: auto;
	}

	.p01 {
		font-size: 32px;
	}

	.p02 {
		font-size: 15px;
		margin-top: 16px;
	}



}

/*スマホ*/
@media(max-width:480px) {}

/*動画*/
div.vid_contents {
	width: 100%;
	/*背景色を横幅いっぱいに広げる*/
	text-align: center;
	margin: auto;
	padding: 4% 4% 4% 4%;
	/*ここで動画の周りの余白を調整*/
	/*background: #e6e6e6;余白の背景色*/
}

video.vid_main {
	width: 100%;
	max-width: 920px;
	/*PC版での最大幅*/
}


.bn_line {
	position: fixed;
	bottom: 10px;
	right: 70px;
	height: 48px;
	width: auto;
	background-color: #fff;
	border-radius: 4px;
	z-index: 999;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	padding: 0 2px;
}

.bn_line a img {
	width: 144px;
}

.bn_line_txt {
	color: #333333;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.4;
	padding: 0 1em;
}

.sns_link {
	display: flex;
	justify-content: center;
    gap: 80px;
	margin-bottom: 96px;
}

.sns_link li {
	text-align: center;
	transition: all 0.3s;
}

.sns_link li img {
	width: 64px;
}
.sns_link li p {
	margin-top: 6px;
	font-size: 12px;
	font-weight: bold;
}
@media(max-width:480px) {
	.sns_link {
		gap: 40px;
	}
}