@charset "UTF-8";


/*========================================

  indexページ

========================================*/
#wrap {
	overflow-x: hidden;
	opacity: 0;
	transition: 1s;
}

#wrap.active {
	opacity: 1;
}

#postSliderWrap .bx-wrapper {
	margin: 0 auto;
}



/* hero */
#hero h1:before {
	position: absolute;
	content: "";
	top: 28vw;
	left: 2vw;
	display: block;
	width: 80px;
	height: 80px;
	background-image: url(../img/mrk_01.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

#hero h1::after {
	position: absolute;
	content: "";
	top: 28vw;
	right: 2vw;
	display: block;
	width: 80px;
	height: 80px;
	background-image: url(../img/mrk_02.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
	#hero h1:before {
		position: absolute;
		content: "";
		top: 36vw;
		left: 2vw;
		display: block;
		width: 10vw;
		height: 10vw;
		background-image: url(../img/mrk_01.svg);
		background-size: contain;
		background-repeat: no-repeat;
	}

	#hero h1::after {
		position: absolute;
		content: "";
		top: 36vw;
		right: 2vw;
		display: block;
		width: 10vw;
		height: 10vw;
		background-image: url(../img/mrk_02.svg);
		background-size: contain;
		background-repeat: no-repeat;
	}
}



/* sec001 */
#sec001 {
	background-color: #faf5d8;
	padding-bottom: 200px;
}

#sec001 .news {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-radius: 100vh;
	background-color: #fff;
	box-shadow: 0px 7px 0px 0px rgba(140, 131, 68, .2);
	padding: 30px;
	margin-top: -35px;
}

#sec001 .news .boxL {
	padding-right: 40px;
}

#sec001 .news .boxR {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-left: 2px solid #333;
	padding-left: 40px;
}

#sec001 .news .boxR ul {
	text-align: left;
	margin-right: 0;
}

#sec001 .news .boxR ul li {
	display: flex;
	list-style: none;
	margin: .3em 0;
}

#sec001 .news .boxR ul li a {
	width: 530px;
	font-size: 18px;
}

#sec001 .news .boxR ul li a:hover {
	opacity: .7;
}

#sec001 .news .boxR ul li span {
	width: 120px;
	display: block;
	font-size: 18px;
}

#sec001 .news .boxR .more a {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	letter-spacing: 1px;
	border-radius: 100vh;
	background-color: #3bafa5;
	padding: 1em 1.5em;
}

#sec001 .news .boxR .more a::before {
	content: "\f0ca";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: .5em;
}

#sec001 .news .boxR .more a:hover {
	opacity: .7;
	transition: .3s;
}

#sec001 .txt {
	position: relative;
	margin-top: 110px;
}

#sec001 .txt strong {
	font-size: 30px;
	letter-spacing: 1px;
}

#sec001 .txt p {
	font-size: 18px;
	line-height: 2em;
	margin-top: 2em;
}

#sec001 .txt .btn {
	margin-top: 40px;
}

#sec001 .txt .btn a {
	display: inline-block;
	margin: 0 auto;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	border: 4px solid #fff;
	border-radius: 100vh;
	background-color: #4a77e3;
	box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
	padding: 1em 2em;
}

#sec001 .txt .btn a::after {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: .5em;
}

#sec001 .txt .btn a:hover {
	opacity: .7;
	transition: .3s;
}

#sec001 .txt .s01 {
	position: absolute;
	top: -170px;
	left: -420px;
}

#sec001 .txt .s02 {
	position: absolute;
	top: 0;
	right: -430px;
	z-index: 50;
}

@media screen and (max-width: 767px) {
	#sec001 {
		padding-top: 6vw;
		padding-bottom: 100vw;
	}

	#sec001 .news {
		position: relative;
		flex-direction: column;
		border-radius: 3vw;
		box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
		padding: 5vw;
		margin-top: 0;
		z-index: 60;
	}

	#sec001 .news .boxL {
		padding-right: 0;
	}

	#sec001 .news .boxL h2 img {
		width: 50vw;
		margin-bottom: 3vw;
	}

	#sec001 .news .boxR {
		flex-direction: column;
		border-top: 2px solid #333;
		border-left: none;
		padding-left: 0;
	}

	#sec001 .news .boxR ul {
		margin-right: 0;
	}

	#sec001 .news .boxR ul li {
		display: block;
		border-bottom: 1px solid #ccc;
		padding: 3vw 0;
	}

	#sec001 .news .boxR ul li:last-child {
		display: none;
	}

	#sec001 .news .boxR ul li a {
		width: 100%;
		font-size: 3.8vw;
	}

	#sec001 .news .boxR ul li span {
		width: 100%;
		display: block;
		font-size: 3.8vw;
	}

	#sec001 .news .boxR .more {
		margin-top: 3vw;
	}

	#sec001 .news .boxR .more a {
		font-size: 3.6vw;
		padding: .7em 2em;
	}

	#sec001 .txt {
		position: relative;
		margin-top: 70vw;
	}

	#sec001 .txt strong {
		font-size: 5vw;
	}

	#sec001 .txt p {
		font-size: 3.6vw;
		line-height: 1.7em;
		margin-top: 1.3em;
	}

	#sec001 .txt .btn {
		margin-top: 5vw;
	}

	#sec001 .txt .btn a {
		width: 80%;
		font-size: 4vw;
		border: 3px solid #fff;
		box-shadow: 0px 3px 0px 0px rgba(140, 131, 68, .2);
		padding: .7em 0;
	}

	#sec001 .txt .s01 {
		position: absolute;
		top: -85vw;
		left: -15vw;
	}

	#sec001 .txt .s01 img {
		width: 110vw;
	}

	#sec001 .txt .s02 {
		position: absolute;
		top: 95vw;
		right: -30vw;
		z-index: 50;
	}

	#sec001 .txt .s02 img {
		width: 110vw;
	}
}



/* sec002 */
#sec002 {
	position: relative;
	background-color: #ff8a49;
	padding-top: 40px;
	padding-bottom: 200px;
}

#sec002::before {
	position: absolute;
	content: "";
	top: -100px;
	left: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100px;
	background-image: url(../assets/img/bg_01_pc.png);
	background-size: 100% 100px;
	background-repeat: no-repeat;
}


#sec002 .box {
	position: relative;
	text-align: center;
	width: 1120px;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
}


#sec002 .box .item {
	width: 350px;
	margin: 0;
}

#sec002 .box .item figure {
	border-radius: 15px;
	box-shadow: 0px 7px 0px 0px rgba(140, 131, 68, .2);
	border-radius: 15px;
	border: 5px solid #fff;
}

#sec002 .box .item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

#sec002 .box .item span a {
	display: block;
	color: #fff;
	font-size: 20px;
	margin-top: .7em;
}

#sec002 .box .item span a small {
	display: block;
	line-height: 1.4em;
	font-size: 24px;
	letter-spacing: 1px;
}

#sec002 .noevent {
	color: #fff;
	font-size: 20px;
	margin-top: 3em;
}

@media screen and (max-width: 767px) {
	#sec002 {
		position: relative;
		padding-top: 0;
		padding-bottom: 40vw;
		margin-top: 10vw;
	}

	#sec002::before {
		position: absolute;
		content: "";
		top: -100px;
		left: 0;
		right: 0;
		display: block;
		width: 100%;
		height: 100px;
		background-image: url(../assets/img/bg_01_sp.png);
		background-size: 150% 100px;
		background-position-x: center;
		background-repeat: no-repeat;
	}

	#sec002 .box {
		position: relative;
		flex-direction: column;
		width: 90%;
		margin: 0 auto;
		margin-top: 8vw;
	}

	#sec002 .box .item {
		width: 95%;
		margin: 0 auto;
	}

	#sec002 .box .item:nth-child(2) {
		display: none;
	}

	#sec002 .box .item:nth-child(3) {
		display: none;
	}

	#sec002 .box .item figure {
		border-radius: 3vw;
		box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
		border-radius: 3vw;
		border: 3px solid #fff;
	}

	#sec002 .box .item span a {
		font-size: 4vw;
	}

	#sec002 .box .item span a small {
		font-size: 5vw;
	}

	#sec002 .box .item img {
		height: 60vw;
	}

	#sec002 .noevent {
		font-size: 4vw;
	}
}

#sec002 .btn {
	margin-top: 50px;
}

#sec002 .btn a {
	display: inline-block;
	margin: 0 auto;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	border: 4px solid #fff;
	border-radius: 100vh;
	box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
	padding: 1em 2em;
}

#sec002 .btn a::after {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: .5em;
}

#sec002 .btn a:hover {
	opacity: .7;
	transition: .3s;
}

@media screen and (max-width: 767px) {
	#sec002 .btn a {
		width: 80%;
		font-size: 4vw;
		border: 3px solid #fff;
		box-shadow: 0px 3px 0px 0px rgba(140, 131, 68, .2);
		padding: .7em 0;
	}

	#sec002 .btn {
		margin-top: 5vw;
	}
}




/* sec003 */
#sec003 {
	position: relative;
	background-color: #ffed80;
	padding-top: 40px;
	padding-bottom: 220px;
}

#sec003::before {
	position: absolute;
	content: "";
	top: -100px;
	left: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100px;
	background-image: url(../assets/img/bg_02_pc.png);
	background-size: 100% 100px;
	background-repeat: no-repeat;
}

#sec003 .copy {
	font-size: 18px;
	margin-top: 60px;
}

#sec003 .box {
	flex-wrap: wrap;
	width: 1040px;
	margin: 0 auto;
	margin-top: 10px;
}

#sec003 .box .item {
	width: 500px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0px 7px 0px 0px rgba(140, 131, 68, .2);
	margin-top: 40px;
}

#sec003 .box .item figure {
	border-radius: 20px 20px 0 0;
}

#sec003 .box .item h3 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 1em;
}

#sec003 .box .item p {
	width: 420px;
	margin: 0 auto;
	font-size: 15px;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-top: 1em;
	padding-bottom: 2em;
}


#sec003 .box2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 298px;
	width: 1040px;
	margin: 0 auto;
	margin-top: 50px;
	border-radius: 15px;
	box-shadow: 0px 7px 0px 0px rgba(140, 131, 68, .2);
}


#sec003 .box2 .photo {
	width: 520px;
	overflow: hidden;
	border-radius: 15px 0 0 15px;
}

#sec003 .box2 .photo img {}

#sec003 .box2 .txt {
	display: flex;
	align-items: center;
	width: 520px;
	height: 298px;
	text-align: left;
	border-radius: 0 15px 15px 0;
	background-color: #fff;
	padding: 0 50px;
}

#sec003 .box2 .txt strong {
	font-size: 24px;
	font-weight: 600;
}

#sec003 .box2 .txt p {
	font-size: 15px;
	font-weight: 600;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-top: 1.5em;
}

#sec003 .box2 .txt p a {
	color: #4a77e3;
	text-decoration: underline;
}


@media screen and (max-width: 767px) {
	#sec003 {
		position: relative;
		padding-top: 3vw;
		padding-bottom: 40vw;
	}

	#sec003::before {
		position: absolute;
		content: "";
		top: -100px;
		left: 0;
		right: 0;
		display: block;
		width: 100%;
		height: 100px;
		background-image: url(../assets/img/bg_02_sp.png);
		background-size: 150% 100px;
		background-position-x: center;
		background-repeat: no-repeat;
	}

	#sec003 h2 {
		width: 86vw;
		margin: 0 auto;
	}

	#sec003 .copy {
		font-size: 3.8vw;
		margin-top: 7vw;
	}

	#sec003 .box {
		width: 90%;
		margin: 0 auto;
		margin-top: 0;
	}

	#sec003 .box .item {
		width: 100%;
		border-radius: 3vw;
		box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
		margin-top: 7vw;
	}

	#sec003 .box .item figure {
		border-radius: 3vw 3vw 0 0;
	}

	#sec003 .box .item h3 {
		font-size: 4.5vw;
		margin-top: .7em;
	}

	#sec003 .box .item p {
		width: 90%;
		margin: 0 auto;
		font-size: 3.4vw;
		margin-top: .7em;
		padding-bottom: 1.2em;
	}

	#sec003 .box2 {
		flex-direction: column;
		height: auto;
		margin-top: 7vw;
		width: 90%;
		border-radius: 3vw;
		box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
	}

	#sec003 .box2 .photo {
		width: 100%;
		border-radius: 3vw 3vw 0 0;
	}

	#sec003 .box2 .photo img {}

	#sec003 .box2 .txt {
		display: block;
		width: 100%;
		height: auto;
		border-radius: 0 0 3vw 3vw;
		padding: 5vw 5vw;
	}

	#sec003 .box2 .txt strong {
		display: block;
		font-size: 4.5vw;
		text-align: center;
	}

	#sec003 .box2 .txt p {
		font-size: 3.4vw;
		margin-top: 1em;
	}
}



/* sec004 */
#sec004 {
	position: relative;
	background-color: #faf5d8;
	padding-top: 20px;
	padding-bottom: 210px;
}

#sec004 .copy {
	font-size: 18px;
	margin-top: 60px;
}

#sec004 .showroom {
	margin-top: 50px;
}

#sec004 .box2 {
	margin-top: 70px;
}

#sec004 .box2 .item2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 580px;
	border: 5px solid;
	border-radius: 15px;
	background-color: #fcf9e7;
	box-shadow: 0px 7px 0px 0px rgba(140, 131, 68, .2);
	padding: 30px 0;
}

#sec004 .box2 .i01 {
	border-color: #ff8a49;
}

#sec004 .box2 .i01 h3 a {
	color: #ff8a49;
}

#sec004 .box2 .i02 {
	border-color: #4a77e3;
}

#sec004 .box2 .i02 h3 a {
	color: #4a77e3;
	margin-left: 30px;
}

#sec004 .box2 .item2 h3 {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
	#sec004 {
		position: relative;
		padding-top: 3vw;
		padding-bottom: 30vw;
	}

	#sec004::before {
		position: absolute;
		content: "";
		top: -170px;
		left: 0;
		right: 0;
		display: block;
		width: 100%;
		height: 170px;
		background-image: url(../assets/img/bg_03_sp.png);
		background-size: 150% 170px;
		background-position-x: center;
		background-repeat: no-repeat;
	}

	#sec004 h2 {
		width: 76vw;
		margin: 0 auto;
	}

	#sec004 .copy {
		font-size: 3.8vw;
		margin-top: 7vw;
	}

	#sec004 .showroom {
		margin-top: 0;
	}

	#sec004 .box2 {
		margin-top: 10vw;
	}

	#sec004 .box2 .item2 {
		width: 90%;
		margin: 0 auto;
		border: 3px solid;
		border-radius: 3vw;
		box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
		padding: 5vw 0;
		margin-bottom: 5vw;
	}

	#sec004 .box2 .i01 {
		border-color: #ff8a49;
	}

	#sec004 .box2 .i02 {
		border-color: #4a77e3;
	}

	#sec004 .box2 .i02 h3 a {
		margin-left: 5vw;
	}

	#sec004 .box2 .item2 h3 {
		font-size: 4.5vw;
	}

	#sec004 .box2 .item2 span img {
		width: 35vw;
	}
}



/* sec005 */
#sec005 {
	position: relative;
	background-color: #84c642;
	padding-top: 50px;
	padding-bottom: 80px;
}

#sec005::before {
	position: absolute;
	content: "";
	top: -110px;
	left: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 110px;
	background-image: url(../assets/img/bg_04_pc.png);
	background-size: 100% 110px;
	background-repeat: no-repeat;
}

#sec005::after {
	position: absolute;
	content: "";
	bottom: -130px;
	left: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 130px;
	background-image: url(../assets/img/bg_05_pc.png);
	background-size: 100% 130px;
	background-repeat: no-repeat;
}

#sec005 h2 {
	color: #fff;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 2px;
}

#sec005 .box {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

#sec005 .box li {
	width: 220px;
	list-style: none;
	border-radius: 10px;
	border: 6px solid #fff;
	box-shadow: 0px 7px 0px 0px rgba(140, 131, 68, .2);
	box-sizing: border-box;
}

#sec005 .box li img {
	object-fit: cover;
	width: 208px;
	height: 260px;
	border-radius: 5px;
}

@media screen and (max-width: 767px) {
	#sec005 {
		position: relative;
		padding-top: 0;
		padding-bottom: 10vw;
	}

	#sec005::before {
		position: absolute;
		content: "";
		top: -110px;
		left: 0;
		right: 0;
		display: block;
		width: 100%;
		height: 110px;
		background-image: url(../assets/img/bg_04_sp.png);
		background-size: 150% 110px;
		background-position-x: center;
		background-repeat: no-repeat;
	}

	#sec005::after {
		position: absolute;
		content: "";
		bottom: -130px;
		left: 0;
		right: 0;
		display: block;
		width: 100%;
		height: 130px;
		background-image: url(../assets/img/bg_05_sp.png);
		background-size: 150% 130px;
		background-position-x: center;
		background-repeat: no-repeat;
	}

	#sec005 h2 {
		font-size: 7vw;
	}

	#sec005 .box {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 90%;
		margin: 0 auto;
		margin-top: 0;
	}

	#sec005 .box li {
		width: 47%;
		border-radius: 3vw;
		border: 3px solid #fff;
		box-shadow: 0px 4px 0px 0px rgba(140, 131, 68, .2);
		margin-top: 5vw;
	}

	#sec005 .box li:nth-child(n+5) {
		display: none;
	}

	#sec005 .box li {
		border-radius: 3vw;
	}

	#sec005 .box li img {
		width: 37vw;
		height: 50vw;
		border-radius: 2.3vw;
	}
}