/*-- header --*/
.site-name {
	display: none;
}
.header {
	background: #000;
	position: fixed;
	width: 100vw;
	z-index: 100;
}
.header-img {
	width: 100%;
	height: auto;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 11px 20px 11px 40px;
	position: relative;
	gap: 0;
}
.logo-area {
	width: 15%;
}
.logo-area .site-name {
	font-size: 28px;
	margin: 0;
}
.nav {
	width: calc(100% - 15%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.nav-list {
	align-self: end;
}
.nav-list a {
	border-bottom: solid 1px #000;
	text-underline-offset: 3px;
}
.nav-list a:hover {
	border-bottom: solid 1px #fafafa;
}
.nav-list li {
	padding: 1.55em;
	position: relative;
}
.nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav a {
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease-in-out;
	color: #fafafa;
}
.btn {
	padding: 8px 16px;
	border-radius: 6px;
	color: #fff;
	display: inline-block;
	font-weight: bold;
}
.btn.access {
	background: #6ac200;
}
.btn.recruit {
	background: #f7a800;
}
.btn.contact {
	background: #e26c5b;
}
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 30px;
	height: 27px;
	cursor: pointer;
	z-index: 1000;
}
.hamburger span {
	display: block;
	height: 3px;
	background-color: #fafafa;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(9px, 8px);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(9px, -8px);
}
.submenu {
	padding-top: 2.1em !important;
	display: block !important;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	background: #000;
	padding: 12px 20px;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	left: 0;
	width: 210px;
}
.submenu.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.submenu li {
	padding: 1.55em;
}
@media screen and (max-width: 768px) {
	body.menu-open {
		overflow: hidden;
		height: 100vh;
	}
	.header-inner {
		padding: 5px 10px;
	}
	.nav {
		position: absolute;
		top: 100%;
		right: 0;
		width: 100%;
		background: #f5f1e9;
		padding: 15px;
		height: 100vh;
		justify-content: flex-start;
		gap: 32px;
		z-index: 999;
		display: none;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.32s ease, visibility 0.32s ease;
	}
	.nav.active {
		opacity: 1;
		visibility: visible;
		display: block;
	}
	.nav.visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.nav ul {
		flex-direction: column;
		align-self: center;
	}
	.nav li {
		text-align: left;
		padding: 0;
		margin-bottom: 21px;
	}
	.nav .submenu {
		opacity: 1 !important;
		visibility: visible !important;
		position: static;
		pointer-events: auto;
		display: block;
		padding-top: 0 !important;
		padding-left: 50px;
		background: none;
		margin-top: 0 !important;
		width: 100%;
	}
	.submenu li {
		padding: 0 0 25px;
		margin-bottom: 0 !important;
	}
	.submenu li:first-child {
		padding-top: 16px;
	}
	.submenu li:last-child {
		padding-bottom: 0;
	}
	.nav a {
		color: #333;
		text-decoration: underline;
		text-underline-offset: 3px;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: calc((150 / 1000) * 1em);
	}
	.hamburger {
		display: flex;
		flex-direction: column;
		gap: 9px;
		cursor: pointer;
	}
	.hamburger span {
		width: 30px;
		height: 3px;
	}
	.header-img {
		width: 138px;
		height: 40px;
		object-fit: cover;
	}
	.nav-list {
		width: 320px;
	}
	.nav-list a {
		border-bottom: none;
	}
	.nav-list a:hover {
		border-bottom: none;
	}
	.logo-area {
		width: auto;
		height: 40px;
	}
}
/*-- / header --*/
/*-- MRC Online --*/
.banner__mrc-online {
	position: fixed;
	right: 0;
	bottom: 32px;
	z-index: 1000;
}
.mrc-online__wrap img {
	width: 60px;
	height: auto;
}
.mrc-online__pc-none {
	display: none;
}
.help-wrap-01 {
	max-width: 100vw !important;
	width: 100%;
}
.help-wrap-02 {
	display: none;
}
.help-02 {
	z-index: 1 !important;
}
@media screen and (max-width: 768px) {
	.mrc-online__sp-none {
		display: none;
	}
	.mrc-online__pc-none {
		display: block;
		text-decoration: none !important;
		width: 100%;
	}
	.banner__mrc-online {
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 !important;
		width: 100vw !important;
		max-width: 100vw !important;
	}
	.mrc-online__bg {
		background: #008d0b;
		color: #fff;
		padding: 18px 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.mrc-online__txt {
		font-family: "Noto Sans JP", sans-serif !important;
		font-size: 16px;
		font-weight: 600;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.mrc-online__txt::before {
		content: "";
		display: block;
		background: url(../img/cart_btn.png) no-repeat center;
		background-size: cover;
		width: 30px;
		height: 29px;
		margin-right: 8px;
	}
}
/*-- / MRC Online --*/
/*-- footer --*/
.sdgs-area {
	background: #fafafa;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sdgs-logo {
	width: 100px;
	height: auto;
	margin-right: 30px;
}
.sdgs-txt {
	text-align: left;
}
.sdgs-txt h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}
.sdgs-txt p {
	font-size: 18px;
}
.site-footer {
	width: 100vw;
	background-color: #f6f3ed;
	padding: 60px 0 22px;
	font-size: 14px;
	color: #333;
	text-align: center;
	border-top: 1px solid #ddd;
}
.footer-content-top {
	display: flex;
	justify-content: space-between;
	align-items: start;
	max-width: 1000px;
	margin: 0 auto 30px;
	gap: 66px;
}
.footer-address {
	width: calc((100% - 66px) / 2);
	text-align: left;
}
.footer-address h3 {
	font-size: 20px;
	margin-bottom: 25px;
}
.footer-time {
	font-size: 17px;
	margin-bottom: 15px;
	font-weight: 400;
}
.footer-address address {
	padding-top: 20px;
	border-top: 1px dashed #b9b9b9;
	margin-bottom: 20px;
	font-size: 17px;
	font-style: normal;
}
.footer-address address h4,
.footer-address address p {
	font-weight: 400;
	margin-bottom: 7px;
}
.footer-address address a {
	padding: 5px 25px;
	border: 1px solid #333;
	background: #fafafa;
	display: inline-block;
	transition: all 0.3s ease;
}
.footer-address address a:hover {
	background: #333;
	color: #fafafa;
}
.footer-map {
	width: 467px;
	height: 549px;
}
.footer-content-bottom {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 0 0;
}
.footer-left {
	flex: 1;
	text-align: center;
	font-size: 11px;
}
.footer-right {
	flex: 1;
	text-align: center;
	margin-bottom: 150px;
}
.footer-right ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: flex-start;
}
.footer-right li {
	display: inline-block;
	width: calc(97% / 5);
	line-height: 1.2;
	border-right: 1px solid #333;
	margin-bottom: 15px;
}
.footer-right li:first-child,
.footer-right li:nth-child(6) {
	border-left: 1px solid #333;
}
.footer-right a {
	text-decoration: none;
	color: #333;
}
.footer-right a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.site-footer {
		padding: 60px 15px 80px;
	}
	.footer-content-top {
		flex-flow: column;
		margin-bottom: 10px;
	}
	.footer-address {
		width: 100%;
	}
	.footer-map {
		width: 100%;
		height: 549px;
	}
	.sdgs-area {
		padding: 17px 0 17px 10px;
	}
	.sdgs-logo {
		width: 55px;
		margin-right: 8px;
	}
	.sdgs-txt h4 {
		margin-bottom: 5px;
	}
	.sdgs-txt p {
		line-height: 2.05em;
	}
	.footer-content-bottom {
		padding-top: 20px;
	}
	.footer-right {
		margin-bottom: 60px;
	}
	.footer-right ul {
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.footer-right li {
		border-left: none;
		border-right: none;
		width: 100%;
		padding: 11px 0;
		border-bottom: 1px solid #333;
		margin-bottom: 0;
	}
	.footer-right li:first-child,
	.footer-right li:nth-child(6) {
		border-left: none;
	}
	.footer-right li:first-child {
		border-top: 1px solid #333;
	}
}
/*-- / footer --*/
/*-- YouTube --*/
.hero {
	position: relative;
	width: 100vw;
	height: 56.25vw; /* 16:9比率に基づく幅に対する高さ */
	max-height: 100vh;
	overflow: hidden;
}
.hero iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 63.25vw; /* 16:9比率 */
	min-height: 100%;
	pointer-events: none;
	padding-top: 93px;
}
.hero-content {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	color: #fff;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	text-align: center;
	padding: 94px 20px 0;
	box-sizing: border-box;
}
.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}
.hero-content p {
	font-size: 40px;
}
.hero-content img {
	width: 500px;
}
@media (max-width: 768px) {
	.hero {
		height: 100vh;
	}
	.hero iframe {
		height: 100vh;
		padding-top: 49px;
	}
	.hero::after {
		height: 100vh;
	}
	.hero iframe {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 100vh;
		width: 380vw;
		pointer-events: none;
	}
	.hero-content {
		padding-top: 0;
	}
}
/*-- / YouTube --*/
/*-- btn --*/
.btn-slide {
	position: relative;
	display: inline-block;
	padding: 14px 87px;
	border: 1px solid #fafafa;
	font-size: 20px;
	letter-spacing: 0.08em;
	text-decoration: none;
	color: #fafafa;
	overflow: hidden;
	transition: color 0.4s ease;
	border-radius: 30px;
}
.btn-slide span {
	position: relative;
	z-index: 2;
}
.btn-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: -125%;
	width: 120%;
	height: 100%;
	background: #571c1c;
	transform: skewX(+20deg);
	transition: left 0.5s ease;
	z-index: 1;
}
.btn-slide:hover::before {
	left: -5%;
}
.btn-slide:hover {
	color: #fff;
	border: 1px solid #571c1c;
}
.btn-wood {
	background: url(../img/bg_blown_tex.png) no-repeat center;
	border: 1px solid #c49566;
	padding: 14px 108px;
}
.sec9 .btn-slide {
	color: #571c1c;
	border: 1px solid #571c1c;
}
.sec9 .btn-slide:hover {
	color: #fafafa;
}
@media (max-width: 768px) {
	.btn-slide {
		font-size: 16px;
		padding: 14px 55px;
	}
}
/*-- / btn --*/
/*-- body --*/
.sec1 {
	padding-top: 0;
}
.sec1-bg {
	display: flex;
	background: url(../img/top_bana01-1.png) no-repeat center;
	background-size: cover;
	background-position: top;
	width: 100vw;
	height: 596px;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.sec1-bg p {
	display: contents;
	max-width: 900px;
	margin: auto;
	font-size: 52px;
	color: #fafafa;
}
.sec2 {
	display: flex;
	position: relative;
	background: url(../img/top_bana08.png) no-repeat center;
	background-size: cover;
	background-position: top;
	width: 100vw;
	height: 700px;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.sec2-img {
	width: 200px;
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
}
.sec2-txt-img {
	width: 480px;
	height: auto;
	margin-bottom: 36px;
}
.sec2 div {
	display: flex;
	flex-flow: column;
	align-items: center;
}
.sec2 p {
	color: #fafafa;
	line-height: 2.25em;
	margin-bottom: 68px;
	max-width: 800px;
	font-weight: 400;
}
.sec3 {
	display: flex;
	gap: 32px;
	width: 100vw;
	background: #f6f1e9;
}
.sec3-img1 {
	display: flex;
	position: relative;
	background: url(../img/top_ibushi_bg_01.png) no-repeat center;
	background-size: cover;
	background-position: top;
	width: 100vw;
	height: 378px;
	align-items: center;
	justify-content: center;
}
.sec3-img2 {
	display: flex;
	position: relative;
	background: url(../img/top_ibushi_bg_02.png) no-repeat center;
	background-size: cover;
	background-position: top;
	width: 100vw;
	height: 378px;
	align-items: center;
	justify-content: center;
}
.sec3-txt {
	width: 500px;
	height: auto;
}
.sec4 {
	display: flex;
	position: relative;
	background: url(../img/bg_washi02.png) no-repeat center;
	background-size: cover;
	background-position: top;
	width: 100vw;
	height: 534px;
	align-items: center;
	justify-content: center;
}
.sec4-wrap {
	display: flex;
	flex-flow: column;
	position: relative;
	background: url(https://marucyou.jp/wp-content/uploads/bg_ibushi_moji.png) top
		right no-repeat;
	width: 100vw;
	height: 534px;
	align-items: center;
	justify-content: center;
}
.sec4-wrap div {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.sec4-img {
	width: 480px;
	height: auto;
	margin-bottom: 24px;
}
.sec4-txt {
	max-width: 800px;
	font-size: 16px;
	line-height: 2.05em;
	margin-bottom: 32px;
}
.sec5 {
	display: flex;
	position: relative;
	background: url(../img/top_bana06-1.png) no-repeat center;
	background-size: cover;
	background-position: top;
	width: 100vw;
	height: 620px;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.sec5-img {
	width: 200px;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
.sec5-txt {
	width: 880px;
	height: auto;
}
.sec6 {
	background: #f6f1e9;
	padding-bottom: 57px;
	width: 100vw;
}
.sec6-area {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 57px;
	gap: 54px;
}
.sec6-area div {
	width: 100%;
	padding: 57px !important;
}
.sec6-area div p {
	line-height: 2.15em;
}
.sec6-img {
	width: 627px;
	height: auto;
}
.sec6-txt-img {
	width: 628px;
	height: auto;
}
.sec7 {
	background: #f6f1e9;
	text-align: center;
	width: 100vw;
}
.sec7-txt-img {
	display: inline-block;
	width: 680px;
}
.item {
	width: 23%;
	display: inline-block;
	box-sizing: border-box;
	margin-right: 1%;
	padding-bottom: 2.55em;
	vertical-align: text-top;
	position: relative;
}
.item_name {
	display: block;
	text-align: center;
	width: 100%;
	border-bottom: 1px solid #333;
	min-height: 4.25em;
	height: 90px;
	line-height: 1.5;
	display: flex;
	justify-content: center;
	align-items: center;
}
.item img {
	width: 100%;
}
.item p {
	color: #fff;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.55em;
	line-height: 2.05em;
}
.item:hover p {
	opacity: 1;
	transition: all 0.6s ease;
}
.sec8 {
	background: #f6f1e9;
	padding-top: 3.25em;
	padding-bottom: 61px;
	width: 100vw;
}
.sec8-heading {
	width: 100%;
	max-width: 1000px !important;
	margin: 0 auto;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	margin-bottom: 5.25em;
	padding: 0.75em;
}
.item_list02 {
	margin: 0 auto;
	text-align: center;
}
ul.item_list02 li {
	width: 18%;
	display: inline-block;
	box-sizing: border-box;
	margin-right: 1%;
	padding-bottom: 2.55em;
	vertical-align: text-top;
}
.sec9 {
	display: flex;
	position: relative;
	background: url(../img/tsuyomi_bg.png) no-repeat center;
	background-size: cover;
	background-position: top;
	width: 100vw;
	height: auto;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	padding: 92px 0;
	margin-bottom: 84px;
}
.sec9-txt {
	width: 800px;
	height: auto;
	margin-bottom: 64px;
}
.sec9-img {
	width: 800px;
	height: auto;
	margin-bottom: 70px;
}
.sec9-sdgs {
	background: #fafafa;
	padding: 35px 67px;
	width: 100%;
	max-width: 1000px;
}
.sec9-sdgs__area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
.sec9-sdgs__area p {
	padding: 25px 0 0 47px;
	margin-bottom: 25px;
}
.sec9-sdgs-logo {
	width: 129px;
	height: auto;
}
.sec10-img {
	width: 200px;
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.sec10-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
}
.sec10-txt h3 {
	font-size: 48px;
	margin-bottom: 36px;
	color: #fafafa;
}
.sec10-txt p {
	font-size: 20px;
	color: #fafafa;
}
@media (max-width: 768px) {
	.sec1-bg {
		height: 350px;
		gap: 20px;
		background-position: bottom;
	}
	.sec1-bg p {
		font-size: 30px;
		letter-spacing: 0.2em;
		text-align: center;
	}
	.sec2 {
		height: 800px;
		padding: 0 20px;
	}
	.sec2-img {
		width: 100px;
	}
	.sec2-txt-img {
		width: 350px;
	}
	.sec2 p {
		margin-bottom: 52px;
	}
	.sec3 {
		flex-flow: column;
		padding-top: 16px;
	}
	.sec3-txt {
		width: 308px;
	}
	.sec3-img1,
	.sec3-img2 {
		height: 211px;
	}
	.sec4 {
		height: 800px;
		padding: 0 15px;
	}
	.sec5 {
		height: 395px;
	}
	.sec5-img {
		width: 100px;
	}
	.sec6 {
		padding-bottom: 0;
	}
	.sec6-area {
		flex-flow: column;
		padding: 25px;
		padding-bottom: 40px;
	}
	.sec6-area div {
		padding: 0 !important;
	}
	.order1 {
		order: 1;
	}
	.order2 {
		order: 2;
	}
	.item,
	ul.item_list02 li {
		width: 48%;
	}
	.item p {
		font-size: 14px;
		padding: 10px 5px;
		text-align: left;
	}
	.sec8 {
		padding-bottom: 20px;
	}
	.sec9 {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.sec9-img {
		padding: 0 15px;
	}
	.sec9-sdgs {
		padding: 25px 15px 28px;
	}
	.sec9-sdgs-logo {
		width: 83px;
	}
	.sec9-sdgs__area p {
		line-height: 2.05em;
		text-align: left;
		padding-left: 0;
	}
	.sec10-img {
		width: 100px;
	}
	.sec10-txt {
		width: 100%;
		transform: translate(-50%, -35%);
	}
	.sec10-txt h3 {
		font-size: 22px;
		margin-bottom: 16px;
	}
	.sec10-txt p {
		font-size: 16px;
		color: #fafafa;
	}
}
/*-- / body --*/
/*-- slider --*/
.slider {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	height: 600px;
	overflow: hidden;
}
.slide {
	position: absolute;
	width: 100vw;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.slide.active {
	opacity: 1;
}
.slide img {
	width: 100vw;
	height: 100%;
	display: block;
	object-fit: cover;
}
@media (max-width: 768px) {
	.slider {
		height: 300px;
	}
}
/*-- / slider --*/
/*-- animation --*/
.scrollin {
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}
[class^="fade--"],
[class*=" fade--"] {
	opacity: 0;
	transition: opacity 1s ease, transform 1s ease;
}
.fade--up {
	transform: translate(0, 20px);
	transition-delay: 0.8s;
}
.fade--down {
	transform: translate(0, -20px);
}
.fade--left {
	transform: translate(-20px, 0);
}
.fade--right {
	transform: translate(20px, 0);
}
.fade--up-01,
.fade--down-01,
.fade--left-01,
.fade--right-01 {
	transition-delay: 0.6s;
}
.fade--up-02,
.fade--down-02,
.fade--left-02,
.fade--right-02 {
	transition-delay: 0.8s;
}
.fade--up-03,
.fade--down-03,
.fade--left-03,
.fade--right-03 {
	transition-delay: 1s;
}
.fade--up-04,
.fade--down-04,
.fade--left-04,
.fade--right-04 {
	transition-delay: 1.2s;
}
.fade--up-05,
.fade--down-05,
.fade--left-05,
.fade--right-05 {
	transition-delay: 1.8s;
}
.fade--up-06,
.fade--down-06,
.fade--left-06,
.fade--right-06 {
	transition-delay: 2.2s;
}
@media screen and (max-width: 599px) {
	[class^="fade--"],
	[class*=" fade--"] {
		transition-delay: 1s !important;
	}
}
/*-- / animation --*/
