@charset "UTF-8";

:root{
	--color-primary: #ee7800;
	--color-primary-rgb: 238,120,0;
	--color-primary-contrast: #fff;
	--color-primary-contrast-rgb: 255,255,255;
	--color-secondary: #22ac38;
	--color-secondary-rgb: 34,172,56;
	--color-accent: #fff000;
	--color-accent-rgb: 255,240,0;
	--color-txt: #000;
	--color-txt-rgb: 0,0,0;
	--color-gray: #f5f5f5;
	--color-gray-rgb: 245,245,245;
	--transition-default: all 0.4s ease; 
}


/* !foundation */
/* --------------------------- */
html,body {
	-webkit-font-feature-settings: "kern" 1, "palt" 1;
	font-feature-settings: "kern" 1, "palt" 1;
	-webkit-font-variant-ligatures:none;
	font-variant-ligatures:none;
}
body {
	color: var(--color-txt);
	background-color: var(--color-primary-contrast);
	text-align: center;
}
* {
	box-sizing: border-box;
}
a,
a img {
	color: var(--color-primary);
	transition: var(--transition-default);
}
a img {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a:visited {
	color: rgba(var(--color-primary-rgb), .875);
}
a:hover {
	color: var(--color-secondary);
	text-decoration: none;	
}
a:hover img {
	opacity: 0.6;
}
a.noborder {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(90deg, rgba(var(--color-primary-rgb),0) 0%, rgba(var(--color-primary-rgb),.5) 50%, rgba(var(--color-primary-rgb),0) 100%);
	margin: 5rem auto;
	clear: both;
}
.btn,
.btn:visited {
	width: fit-content;
	display: block;
	text-align: center;
	text-decoration: none;
	border: solid 1px var(--color-primary);
	padding: 0.5em 1.5em;
	color: var(--color-primary);
	background: var(--color-primary-contrast);
}
.btn:hover {
	background: var(--color-primary);
	border-color:  var(--color-primary);
	color: var(--color-primary-contrast);
}
label.btn {
	transition: var(--transition-default);
	cursor: pointer;
}

/* material
--------------------------- */
.clearFloat {
	clear: both;
}
.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}
.alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0.375em auto;
	text-align: center!important;
}
.sp {
	display: none;
}
.flexCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul[class],ol[class] {
	list-style: none;
	margin: 0 auto;
	padding: 0;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.tate {
	-webkit-font-feature-settings: 'palt' 0;
	font-feature-settings: 'palt' 0;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
/* !font */
/* --------------------------- */
.wf-noto-r, body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.wf-abril, .topInfoTitle {
	font-family: "Abril Fatface", serif;
	font-weight: 400;
	font-style: normal;
}

.txtSdw {
	text-shadow: 0 0 40px rgba(var(--color-accent-rgb),.9),0 0 30px rgba(var(--color-accent-rgb),.9),0 0 20px rgba(var(--color-accent-rgb),.9),0 0 10px rgba(var(--color-accent-rgb),.9);
}
.txtSdwMin {
	text-shadow: 0 0 20px rgba(var(--color-accent-rgb),.9),0 0 15px rgba(var(--color-accent-rgb),.9),0 0 10px rgba(var(--color-accent-rgb),.9),0 0 5px rgba(var(--color-accent-rgb),.9);
}
.capsS {
	font-size: 0.8em;
}
.capsL {
	font-size: 1.5em;
}
.shadow {
	filter: drop-shadow(0 0 20px rgba(var(--color-primary-rgb), .875));
}
/* !header */
/* --------------------------- */
.topHeader {
	height: 9.225vw;
	background: url('../imgs/top_header_bg.jpg') center top no-repeat;
	background-size: cover;
}
.siteTitle {
	margin: 0;
	.home & {
		position: absolute;
		z-index: -1;
		img {
			height: 10px;
		}
	}
}

/* !top */
/* --------------------------- */
.topHero {
	margin: 0 auto;
}
.heroCatch {
	line-height: 1;
	margin: 0 auto 2rem;
}
.heroTitle {
	line-height: 1;
	margin: 0 auto 2rem;
}
.topHeroInfo {
	position: relative;
	margin: 0 auto 2rem;
	background-color: var(--color-accent);
	width: 1170px;
	max-width: 90vw;
	padding: 1.5rem 0 1rem;
}
.topHeroInfo::before,
.topHeroInfo::after,
.topHeroPlace::before,
.topHeroPlace::after,
.topRelation::before,
.topRelation::after,
.topRelation dd::before,
.topRelation dd::after {
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	position: absolute;
}
.topHeroInfo::before,
.topRelation::before {
	border-top: solid 2px #000;
	border-left: solid 2px #000;
	top: -1px;
	left: -1px;
}
.topHeroInfo::after,
.topRelation::after {
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	top: -1px;
	right: -1px;
}
.topHeroPlace::before,
.topRelation dd::before {
	border-bottom: solid 2px #000;
	border-left: solid 2px #000;
	bottom: -1px;
	left: -1px;
}
.topHeroPlace::after,
.topRelation dd::after {
	border-bottom: solid 2px #000;
	border-right: solid 2px #000;
	bottom: -1px;
	right: -1px;
}
.topHeroDate {
	display: block;
	line-height: 1;
	margin: 0 auto 1.125rem;
}
.topHeroPlace {
	margin: 0 auto;
}
.topInfo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 40px;
	overflow: hidden;
	background: var(--color-gray);
}
.topInfoTitle {
	background-color: var(--color-primary);
	color: var(--color-primary-contrast);
	font-weight: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 1.5em;
	font-size: 1.25em;
	line-height: 1;
}
ul.topInfoList {
	width: 100%;
	height: 100%;
	font-size: 1em;
	line-height: 40px;
	text-align: left;
	padding: 0 1rem;
	transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.infoItem {
	height: 40px;
	display: flex;
	align-items: center;
	white-space: nowrap;
	&::before {
		content: "▶︎";
		color: var(--color-primary);
		display: inline-block;
		scale: 0.66;
	}
}

.topMainImg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	height: 46.85vw;
}
.topSlideMain {
	width: 100%;
	height: 46.85vw;
	margin: 0 auto 1.5rem;
}
.swiper-slide {
	width: 100%;
	height: 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.slide1 {
	background-image: url('../imgs/top_slide_01.jpg');
}
.slide2 {
	background-image: url('../imgs/top_slide_02.jpg');
}
.topSlideMain .swiper-button-next {
	right: 0.25rem;
}
.topSlideMain .swiper-button-prev {
	left: 0.25rem;
}
.topSlideMain .swiper-button-next::after, .topSlideMain .swiper-button-prev::after {
	font-size: 1.5rem;
	color: var(--color-primary-contrast);
}
.topSlideSub {
	width: 50vw;
	height: 46.85vw;
	img {
		width: 100%;
	}
}
.topIntro {
	padding: 2rem 0;
	margin: 0 auto 1.5rem;
}
.topIntroTxt {
	font-size: 1.125em;
	line-height: 1.944;
	font-weight: 700;
	margin: 0 auto 2.625em;
}
ul.topIntroPoint {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.9375rem;
	width: 1170px;
	max-width: 90vw;
	margin: 0 auto;
	figure {
		margin: 0;
		position: relative;
	}
	figcaption {
		position: absolute;
		rotate: -15deg;
		li:nth-of-type(1) figure & {
			top: 1rem;
			left: 0;
		}
		li:nth-of-type(2) figure & {
			top: 1.5rem;
			left: -1.5rem;
		}
		li:nth-of-type(3) figure & {
			bottom: -1.5rem;
			right: 2rem;
			line-height: 3.5;
			text-align: right;
			img:last-of-type {
				margin-right: -3rem;
			}
		}
	}
}
.topRelation {
	width: 1170px;
	max-width: 90vw;
	margin: 0 auto 4em;
	position: relative;
	background-color: var(--color-gray);
	padding: 1.5rem;
	font-size: 1em;
	line-height: 1.9375;
	dt {
		margin: 0 0 0.5em;
	}
	dd {
		margin: 0;
	}
}
ul.topRelationList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.25rem 1.5rem;
	li::before {
		content: "●";
	}
}
.topExperience {
	width: 100%;
	padding: 2.75rem 0 3.375rem;
	background: url('../imgs/top_experience_bg.jpg') center center no-repeat;
	background-size: cover;
}
.topExperienceTitle {
	line-height: 1;
	margin: 0 auto 2rem;
}

/* !footer */
/* --------------------------- */
.gFooter {
	background-color: var(--color-gray);
	padding-top: 3rem;
}
.footerTitle {
	line-height: 1;
	margin: 0 auto 2rem;
}
ul.snsList {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin: 0 auto 1.625rem;
}
.footerInfo {
	width: 1000px;
	max-width: 90vw;
	display: grid;
	grid-template-columns: 9em auto;
	gap: 0.5em 0;
	margin: 0 auto 0.5em;
	padding-top: 1.125rem;
	font-size: 0.875em;
	line-height: 1.75;
	text-align: left;
	font-weight: 400;
	position: relative;
	&::before {
		content: "";
		width: 98.9375vw;
		height: 1px;
		background: var(--color-txt);
		position: absolute;
		top: 0;
		left: 50%;
		translate: -50% 0;
	}
	dt {
		margin: 0;
		&::before {
			content: "●";
		}
	}
	dd {
		margin: 0;
	}
}
.footerNotice {
	width: 1000px;
	max-width: 90vw;
	margin: 0 auto 1.5em;
	font-size: 0.875em;
	line-height: 1.75;
	text-align: left;
	font-weight: 400;
}
.copyright {
	background: #646464;
	color: var(--color-primary-contrast);
	padding: 0.5em 0;
	margin: 0;
	font-size: 1em;
	line-height: 1;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	font-weight: 400;
}
.stickyNav {
	position: fixed;
	top: 90%;
	right: 0;
	translate: 0 -100%;
	z-index: 1000;
}
.btnContact {
	display: block;
	font-size: 1.375em;
	line-height: 1;
	min-width: 2em;
	background: var(--color-secondary);
	color: var(--color-primary-contrast);
	padding: 0.75em 0.5em 2.25em;
	&:hover {
		background-color: var(--color-primary);
		color: var(--color-primary-contrast);
	}
	&::before,
	&::after {
		content: "";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 1.2em;
		height: 1.2em;
		background: rgba(var(--color-primary-contrast-rgb), .3);
		border-radius: 50%;
		position: absolute;
		left: 50%;
		bottom: 0.75rem;
		translate: -50% 0;
	}
	&::after {
		background: url('../imgs/icon_arrow.svg') center left no-repeat;
		background-size: 87.5% auto;
	}
}

/* !sp */
/* --------------------------- */
@media screen and (max-width:767px) {
	/* !sp common */
	/* --------------------------- */
	.floatLeft,
	.floatRight,
	.alignleft,
	.alignright {
		display: block;
		text-align: center;
		float: none;
		margin: 16px auto;
	}
	.nosp {
		display: none;
	}
	.sp {
		display: block;
	}
	.flexCont {
		display: block;
	}
	/* !sp layout */
	/* --------------------------- */
	html {
		font-size: 3.5vw;
	}
	/* !sp header */
	/* --------------------------- */
	.topHeader {
		margin-bottom: 1rem;
	}
	/* !sp top */
	/* --------------------------- */
	.heroCatch {
		max-width: 90vw;
		margin-bottom: 1.25rem;
	}
	.heroTitle {
		max-width: 96vw;
		margin-bottom: 1.25rem;
	}
	.topHeroInfo::before,
	.topHeroInfo::after,
	.topHeroPlace::before,
	.topHeroPlace::after,
	.topRelation::before,
	.topRelation::after,
	.topRelation dd::before,
	.topRelation dd::after {
		content: "";
		display: block;
		width: 1.25rem;
		height: 1.25rem;
		position: absolute;
	}
	.topHeroDate {
		max-width: 90%;
		margin-bottom: 0.75em;
	}
	.topHeroPlace {
		max-width: 77.5%;
	}
	.topInfoTitle {
		padding: 0 0.5em;
		font-size: 1em;
	}
	ul.topInfoList {
		font-size: 0.8125em;
		padding: 0 0.5rem;
	}
	.topMainImg {
		grid-template-columns: 1fr;
		height: 187.4vw;
	}
	.topSlideMain {
		height: 93.7vw;
		margin-bottom: 0;
	}
	.topSlideSub {
		width: 100%;
		height: 93.7vw;
	}
	.topIntroTxt {
		font-size: 1em;
	}
	ul.topIntroPoint {
		grid-template-columns: 1fr;
		max-width: 80vw;
		gap: 1.5rem;
		figcaption {
			li:nth-of-type(1) figure & {
				max-width: 55%;
			}
			li:nth-of-type(2) figure & {
				max-width: 90%;
			}
			li:nth-of-type(3) figure & {
				bottom: -1.5rem;
				right: 2rem;
				line-height: 3.5;
				text-align: right;
				img:last-of-type {
					margin-right: -3rem;
				}
			}
		}
	}
	ul.topRelationList {
		gap: 0.5em;
		line-height: 1.625;
		text-align: left;
		justify-content: flex-start;
		li {
			text-indent: -1em;
			padding-left: 1em;
		}
	}
	.topExperience {
		padding: 2rem 1.5rem 2.5rem;
	}
	.topExperienceTitle {
		max-width: 80%;
	}
	/* !sp footer */
	/* --------------------------- */
	.footerTitle {
		max-width: 66vw;
	}
	.footerInfo {
		padding-right: 1.25em;
	}
	.footerNotice {
		line-height: 1.666;
		padding-left: 1em;
		text-indent: -1em;
	}
	.copyright {
		padding: 0.625em 0 0.875em;
	}
	.btnContact {
		font-size: 1.25em;
	}
}
