/* #region theme =================================== */
:root {
	--color-text: #595757;
	--color-primary: #5cb136;
	--color-secondary: #efefef;
	--color-red: #c61528;
}
/* #endregion theme -------------------------------- */

/* #region Reset and Setup =================================== */
html, body, div,
p, a, img, figure,
dl, dt, dd,
ul, ol, li,
button,
h1, h2, h3, h4, h5, h6,
hr, header, footer, section, article {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

html {
	box-sizing: border-box;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--color-text);
}

a, button {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 1025px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: middle;
}

svg {
	display: block;
	max-width: 100%;
	height: auto;
	fill: currentcolor;
}
.clipSVG {
	/* display: none; */
    position: fixed;
    top: 0;
    left: -5000px;
}

.inner {
	display: block;
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}
@media only screen and (min-width: 1025px) {
	br.mb {
		display: none;
	}
}
@media only screen and (max-width: 1024px) {
	br.pc {
		display: none;
	}
}

.img-box {
	position: relative;
	overflow: hidden;
}
.img-box img, .img-box video {
	position: absolute;
	height: 100%;
	width: 100%;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: cover;
}

.u-visually-hidden {
	position: absolute!important;
	width: 1px!important;
	height: 1px!important;
	margin: -1px!important;
	padding: 0!important;
	border: 0!important;
	white-space: nowrap!important;
	clip: rect(0,0,0,0)!important;
	overflow: hidden!important;
}
/* #endregion Reset and Setup -------------------------------- */

/* #region layout =================================== */
.l-header {
	position: relative;
	width: 100%;
	background: #fff;
	z-index: 40;
	overflow-x: hidden;
}

.l-header-sub-cont {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 40px;
	padding-right: 175px;
}
.l-header-sub-cont .title {
	width: 415px;
}
.l-header-sub-cont .title .mb-logo {
	display: none;
}
.l-header-sub-cont .c-sns-box {
	margin-bottom: 30px;
}

.l-header-menu {
	position: absolute;
}
.l-menu {
	position: fixed;
	width: 375px;
	height: 100vh;
	padding: 30px;
	padding-bottom: 100px;
	top: 0;
	right: 0;
	background: #fff;
	overflow-y: scroll;
	text-align: center;
	z-index: 50;
	transform: translateX(105%);
	transition: transform 0.4s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-header.is-open .l-menu {
	transform: translateX(0);
}
.l-menu .logo {
	width: 100px;
	height: 105px;
	margin-bottom: 20px;
	text-align: left;
}
.l-menu > ul {
	margin-bottom: 60px;
	text-align: center;
}
.l-menu > ul > li {
	margin-bottom: 30px;
}
.l-menu > ul > li > a {
	display: inline-block;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-menu > ul > li > a:hover {
	opacity: 0.4;
}
.l-menu .c-sns-box {
	margin-bottom: 35px;
}
.l-menu .banner-box {
}
.l-menu .banner-box a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	padding: 11px 60px;
	margin-bottom: 12px;
	background: #fff;
	box-shadow : 0px 0px 2.24px rgba(0, 0, 0, 0.2);
	border-radius: 16px;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-menu .banner-box a:hover {
	opacity: 0.6;
}
.l-menu .banner-box a img {
	max-width: 188px;
	max-height: 49px;
}
.l-header-menu-btn {
	display: block;
	position: fixed;
	top: 50px;
	right: 40px;
	z-index: 99;
}
.l-menu-btn {
	cursor: pointer;
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	text-align: center;
}
.l-menu-btn .border1, .l-menu-btn .border2, .l-menu-btn .border3 {
	display: inline-block;
	position: absolute;
	width: 30px;
	height: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-top: 2px solid #fff;
	transform-origin: left;
	transform-origin: center;
	transition: transform 0.4s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-menu-btn .border1 {
	transform: translateY(-8px);
}
.l-menu-btn .border3 {
	transform: translateY(8px);
}
.l-header.is-open .l-menu-btn .border1 {
	transform: translateY(0) rotate(-135deg);
}
.l-header.is-open .l-menu-btn .border2 {
	opacity: 0;
}
.l-header.is-open .l-menu-btn .border3 {
	transform: translateY(0) rotate(-225deg);
}
@media only screen and (max-width: 1024px) {
	.l-header-sub-cont  {
		padding: 30px;
	}
	.l-header-sub-cont .title {
		width: 100px;
	}
	.l-header-sub-cont .title .pc-logo {
		display: none;
	}
	.l-header-sub-cont .title .mb-logo {
		display: block;
	}
	.l-header-sub-cont .c-sns-box {
		display: none;
	}
	.l-header-menu-btn {
		top: 35px;
		right: 20px;
	}
}
@media only screen and (max-width: 480px) {
	.l-menu {
		width: 100%;
	}
}


.l-main {
	overflow-x: hidden;
}

.l-footer {
	position: relative;
	padding: 135px 20px 40px;
	background: url('../images/common/bg-img01.jpg') top center;
	color: #fff;
	text-align: center;
	overflow-x: hidden;
	overflow-x: clip;
}
.l-footer-cont {
	margin-bottom: 70px;
}
.l-footer-cont .logo-link {
	display: block;
	width: 327px;
	height: 345px;
	margin: 0 auto 80px;
}
.l-footer .copyright {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	letter-spacing: 0.075em;
}
@media only screen and (max-width: 1024px) {
	.l-footer {
		padding-top: 110px;
	}
	.l-footer-cont {
		margin-bottom: 145px;
	}
	.l-footer-cont .logo-link {
		display: block;
		width: 269px;
		height: 284px;
		margin: 0 auto 115px;
	}
}

.l-sub-header {
	position: relative;
	height: 580px;
	padding-top: 160px;
	color: #fff;
	overflow: hidden;
}
.l-sub-header-title {
	position: relative;
	line-height: 1.3;
	text-align: center;
	z-index: 1;
}
.l-sub-header-title .en {
	font-family: 'Poppins', sans-serif;
	font-weight: 100;
	font-size: 102px;
}
.l-sub-header-title .ja {
	font-weight: 700;
	font-size: 29px;
	letter-spacing: 0.05em;
}
.l-sub-header .img-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}
.l-sub-header .img-box img {
	object-position: 38% 20%;
}
.l-sub-header .img-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #426f1b;
    opacity: 0.55;
    z-index: 1;
}
.l-sub-header .c-leaves {
	bottom: -55px;
}
@media only screen and (max-width: 1024px) {
	.l-sub-header {
		height: 480px;
		padding-top: 200px;
	}
	.l-sub-header-title .en {
		margin-bottom: 10px;
		font-size: 53px;
	}
	.l-sub-header-title .ja {
		font-size: 25px;
	}
	.l-sub-header .c-leaves {
		bottom: 0px;
	}
}

.l-event-block {
	position: relative;
	padding-top: 75px;
}
.l-event-block .c-title01 {
	margin-bottom: 75px;
}
.l-event-block .banner-box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 35px 45px;
	padding-bottom: 120px;
}
.l-event-block .banner-item {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}
.l-event-block .banner-item a {
	display: block;
	width: 430px;
	height: 194px;
	padding: 35px 27px 0;
	margin-bottom: 20px;
	border-radius: 15px;
	box-shadow : 0px 0px 4px rgba(0, 0, 0, 0.2);
	background: #fff;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-event-block .banner-item a:hover {
	opacity: 0.6;
}
.l-event-block .banner-item a img {
	width: 300px;
}
.l-event-block .charactor {
	position: absolute;
	width: 137px;
	bottom: 0;
	left: -25px;
	z-index: 3;
}
.l-event-block .leaves-l, .l-event-block .leaves-r {
	position: absolute;
	display: block;
	bottom: 0;
	width: 440px;
	height: 265px;
}
.l-event-block .leaves-l {
	left: 0;
}
.l-event-block .leaves-r {
	right: 0;
}
.l-event-block .leaves-c {
	display: none;
}
@media only screen and (max-width: 1024px) {
	.l-event-block {
		padding-top: 85px;
	}
	.l-event-block .c-title01 {
		margin-bottom: 55px;
	}
	.l-event-block .banner-item a {
		width: 318px;
		height: 144px;
	}
	.l-event-block .banner-item a img {
		width: 198px;
	}
	.l-event-block .banner-box {
		padding-bottom: 260px;
	}
	.l-event-block .charactor {
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.l-event-block .leaves-l, .l-event-block .leaves-r {
		display: none;
	}
	.l-event-block .leaves-c {
		display: block;
		position: absolute;
		min-width: 663px;
		width: 100%;
		bottom: 0;
		left: -500px;
		right: -500px;
		margin: 0 auto;
	}
}
/* #endregion layout -------------------------------- */

/* #region components =================================== */
.c-sns-box {
	display: flex;
	justify-content: center;
	column-gap: 33px;
}
.c-sns-box a {
	display: block;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.c-sns-box a:hover {
	opacity: 0.4;
}

.c-ellipse-top {
	position: absolute;
	top: -100px;
	left: -1000px;
	right: -1000px;
	width: 100%;
	height: 100px;
	margin: 0 auto;
	background: inherit;
	background-position: bottom center;
	align-items: center;
}
.c-zigzag-top {
	position: absolute;
	top: -13px;
	left: -1000px;
	right: -1000px;
	width: 100%;
	height: 13px;
	margin: 0 auto;
	background: inherit;
	background-position: bottom center;
}
.c-zigzag-bottom {
	position: absolute;
	bottom: -13px;
	left: -1000px;
	right: -1000px;
	width: 100%;
	height: 13px;
	margin: 0 auto;
	background: inherit;
	background-position: top center;
}
@media only screen and (max-width: 1920px) {
	.c-ellipse-top, .c-zigzag-top, .c-zigzag-bottom {
		min-width: 1920px;
		overflow-x: hidden;
	}
}
@media only screen and (max-width: 1024px) {
	.c-ellipse-top {
		min-width: 720px;
	}
}
.c-leaves {
	position: absolute;
	display: block;
	bottom: 0;
	left: -1000px;
	right: -1000px;
	width: 100%;
	margin: 0 auto;
	z-index: 0;
}
@media only screen and (max-width: 1920px) {
	.c-leaves {
		min-width: 1920px;
		max-width: none;
	}
}
@media only screen and (max-width: 1024px) {
	.c-leaves {
		min-width: 930px;
	}
}


.c-title01 {
	text-align: center;
}
.c-title01 .en {
	margin-bottom: 10px;
	color: var(--color-primary);
	font-family: 'Poppins', sans-serif;
	font-weight: 200;
	font-size: 78px;
	height: 1.3em;
}
.c-title01 .ja {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.05em;
	height: 1.3em;
}
@media only screen and (max-width: 1024px) {
	.c-title01 .en {
		margin-bottom: 0;
		font-size: 50px;
	}
}

.c-title02 {
	margin-bottom: 60px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 45px;
	letter-spacing: 0.05em;
	line-height: 1.28;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.c-title02 {
		margin-bottom: 40px;
		font-size: 25px;
	}
}

.c-accordion-block {
	position: relative;
	max-width: 835px;
	margin: 0 auto;
}
.c-accordion-block > dl {
	margin-bottom: 30px;
}
.c-accordion-block > dl > dt {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 88px;
	padding: 0 55px;
	border-radius: 50px;
	background: var(--color-primary);
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.c-accordion-block > dl > dt:hover {
	opacity: 0.6;
}
.c-accordion-block > dl > dt::after {
	content: url(../images/common/arrow03.svg);
	display: block;
	width: 30px;
	height: 30px;
}
.c-accordion-block > dl.is-open > dt::after {
	transform: rotate(180deg);
}
.c-accordion-block > dl > dd {
	display: none;
	padding: 30px 55px 40px;
}
.c-accordion-block > dl.is-open > dd {
	display: block;
}
@media only screen and (max-width: 1024px) {
	.c-accordion-block > dl {
		margin-bottom: 15px;
	}
	.c-accordion-block > dl > dt {
		height: 74px;
		padding-left: 35px;
		padding-right: 25px;
		font-size: 18px;
	}
	.c-accordion-block > dl > dd {
		padding: 25px 0;
	}

}
/* #endregion components -------------------------------- */

/* #region top =================================== */
.top-hero-block {
	position: relative;
	height: 1053px;
	padding-top: 300px;
}
.top-hero-block .img-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.top-hero-block .img-box img {
	object-position: 30% top;
}
.top-hero-block .img-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #231815;
    opacity: 0.25;
    z-index: 1;
}
.top-hero-cont {
	position: relative;
	text-align: center;
}
.top-hero-cont .logo {
	width: 327px;
	margin-bottom: 85px;
}
@media only screen and (max-width: 1024px) {
	.top-hero-block {
		height: 830px;
		padding-top: 215px;
	}
	.top-hero-cont .logo {
		max-width: 270px;
		margin-bottom: 65px;
	}
}

.top-intro-block {
	position: relative;
	padding-top: 110px;
	background: url('../images/common/bg-img02.jpg') top center;
}
.top-intro-block .cont-box {
	max-width: 660px;
	margin: 0 auto;
	padding-bottom: 125px;
}
.top-intro-block .headding {
	margin-bottom: 25px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 25px;
	line-height: 1.72;
	letter-spacing: 0.05em;
	text-align: center;
}
.top-intro-block .text {
	font-weight: 500;
	font-size: 14px;
	line-height: 2.0714;
	letter-spacing: 0.01em;
}
.top-intro-block .photo {
	display: block;
	position: absolute;
	width: min(357px, 25vw);
	bottom: 0;
	right: 20px;
	z-index: 0;
}
@media only screen and (min-width: 1025px) {
	.top-intro-block .inner {
		max-width: 1395px;
		padding: 20px;
	}
}
@media only screen and (max-width: 1024px) {
	.top-intro-block {
		padding-top: 65px;
	}
	.top-intro-block .headding {
		margin-bottom: 30px;
		font-size: 20px;
	}
	.top-intro-block .cont-box {
		padding: 0 25px;
	}
	.top-intro-block .cont-box .text {
		margin-bottom: 30px;
	}
	.top-intro-block .photo {
		position: relative;
		width: 235px;
		right: auto;
		margin: 0 auto;
	}
}

.home .l-event-block {
	padding-top: 0;
}
.home .l-event-block .c-title01 {
	margin-top: -70px;
}
@media only screen and (max-width: 1024px) {
	.home .l-event-block {
		padding-top: 90px;
	}
	.home .l-event-block .c-title01 {
		margin-top: 0px;
	}
}

.top-guide-block {
	position: relative;
	padding-top: 85px;
	padding-bottom: 140px;
	background: url('../images/common/bg-img01.jpg') top center;
	color: #fff;
}
.top-guide-cont {
	display: flex;
	justify-content: center;
	position: relative;
	margin-left: min(55px, 6vw);
}
.top-guide-cont .right-box {
	order: 2;
	width: 584px;
	margin-left: -30px;
	text-align: center;
}
.top-guide-cont .right-box .img-box {
	display: inline-block;
	width: 100%;
	aspect-ratio: 1.528;
	border-radius: 11px;
}
.top-guide-cont .right-box .img-box:nth-of-type(2) {
	width: 60%;
	margin-top: -5%;
	margin-left: 4%;
}
.top-guide-cont .left-box {
	display: inline-block;
	position: relative;
	padding-top: 90px;
	z-index: 3;
}
.top-guide-cont .title {
	margin-bottom: 30px;
	text-align: center;
}
.top-guide-cont .title .en {
	margin-bottom: 10px;
	margin-left: 45px;
	font-family: 'Poppins', sans-serif;
	font-weight: 100;
	font-size: 102px;
	line-height: 1;
}
.top-guide-cont .title .ja {
	font-weight: 700;
	font-size: 29px;
	letter-spacing: 0.05em;
	line-height: 1;
}
.top-guide-cont .text-cont {
	position: relative;
	max-width: 440px;
	margin: 0 auto;
}
.top-guide-cont .text-cont .text {
	margin-bottom: 45px;
	font-size: 14px;
	line-height: 2.0714;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.top-guide-cont .text-cont .btn-box {
	text-align: right;
}
.top-guide-cont .text-cont .btn-box .btn-link {
	display: inline-block;
	position: relative;
	width: 300px;
	height: 55px;
	padding-left: 35px;
	padding-right: 60px;
	border-radius: 30px;
	border: 2px solid #fff;
	font-style: 500px;
	font-size: 15px;
	line-height: 51px;
	letter-spacing: 0.05em;
	text-align: left;
	vertical-align: middle;
	transition: background 0.3s cubic-bezier(0.4, 0.6, 0.6, 1), color 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.top-guide-cont .text-cont .btn-box .btn-link::after {
	content: url('../images/common/arrow01.svg');
	position: absolute;
	width: 31px;
	height: 31px;
	top: 10px;
	right: 20px;
}
.top-guide-cont .text-cont .btn-box .btn-link:hover {
	background: #fff;
	color: var(--color-primary);
}
@media only screen and (max-width: 1024px) {
	.top-guide-block {
		padding-bottom: 110px;
	}
	.top-guide-cont {
		display: block;
		margin: 0;
		text-align: center;
	}
	.top-guide-cont .right-box {
		max-width: 584px;
		width: 100%;
		margin: 0 auto;
		padding-left: 10px;
		padding-right: 40px;
	}
	.top-guide-cont .right-box .img-box {
		border-radius: 11px;
	}
	.top-guide-cont .right-box .img-box:nth-of-type(2) {
		margin-left: 50%;
	}
	.top-guide-cont .left-box {
		padding-top: 0;
	}
	.top-guide-cont .title {
		margin-top: -20px;
		margin-bottom: 25px;
	}
	.top-guide-cont .title .en {
		margin: 0;
		margin-bottom: 25px;
		font-size: 52px;
	}
	.top-guide-cont .title .ja {
		font-size: 23px;
	}
	.top-guide-cont .text-cont {
		position: relative;
		max-width: 440px;
		padding: 0 20px;
		text-align: justify;
	}
	.top-guide-cont .text-cont .btn-box {
		text-align: center;
	}
}

.top-products-block {
	position: relative;
	padding-top: 110px;
	padding-bottom: 95px;
	background: url('../images/common/bg-img02.jpg') top center;
}
.top-products-block .c-title01 {
	margin-bottom: 45px;
}
.top-products-block .product-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 286px));
	justify-content: center;
	gap: 30px;
	margin-bottom: 60px;
}
.top-products-block .product-list li {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}
.top-products-block .product-list .img-box {
	width: 100%;
	aspect-ratio: 1.456 / 1;
	margin-bottom: 24px;
}
.top-products-block .btn-box {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
}
.top-products-block .btn-box .link-btn {
	display: block;
	width: 380px;
	height: 86px;
	padding: 26px 55px 0;
	border-radius: 50px;
	margin: 0 auto 15px;
	background: #fff;
	box-shadow : 0px 0px 3.23px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1024px) {
	.top-products-block {
		padding-top: 80px;
	}
	.top-products-block .product-list {
		grid-template-columns: repeat(2, minmax(0, 286px));
		padding: 0 15px;
		margin: 0 auto 40px;
		gap: 20px 15px;
	}
	.top-products-block .product-list li {
		font-size: 12px;
	}
	.top-products-block .product-list .img-box {
		margin-bottom: 10px;
	}
	.top-products-block .btn-box {
		font-size: 14px;
	}
	.top-products-block .btn-box .link-btn {
		width: 283px;
		height: 64px;
		padding: 19px 42px 0;
		border-radius: 50px;
		margin-bottom: 10px;
	}
}

.top-company-block {
	position: relative;
	padding-top: 115px;
}
.top-company-cont {
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 100px;
	max-width: 1170px;
	margin: 0 auto;
	padding-bottom: 130px;
}
.top-company-cont .text-box {
	padding-left: 20px;
	text-align: center;
}
.top-company-cont .text-box .c-title01 {
	margin-bottom: 30px;
}
.top-company-cont .text-box .c-title01 .en {
	font-size: 54px;
}
.top-company-cont .text-box .info {
	display: inline-block;
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.7857;
	text-align: left;
}
/* .top-company-cont .map-box {
	position: relative;
	flex: 0 1 465px;
	height: 295px;
	text-align: center;
}
.top-company-cont .map {
	width: 100%;
	height: 100%;
}
.top-company-cont .map iframe {
	width: 100%;
	height: 100%;
}
.top-company-cont .link-btn {
	display: inline-block;
	position: absolute;
	width: 274px;
	height: 50px;
	left: -370px;
	top: 205px;
	padding-left: 30px;
	padding-right: 50px;
	border-radius: 30px;
	background: var(--color-primary);
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 50px;
	text-align: left;
}
.top-company-cont .link-btn::after {
	content: '〉';
	position: absolute;
	top: 0;
	right: 30px;
} */
.top-company-block .charactor {
	position: absolute;
	width: 137px;
	bottom: 0;
	right: 0;
	transform: rotateY(180deg);
	z-index: 3;
}
@media only screen and (max-width: 1024px) {
	.top-company-block {
		padding-top: 80px;
	}
	.top-company-cont {
		display: block;
		max-width: 465px;
		margin: 0 auto;
		padding: 0 20px;
		padding-bottom: 250px;
	}
	.top-company-cont .text-box {
		padding: 0;
	}
	.top-company-cont .text-box .c-title01 {
		margin-bottom: 45px;
	}
	.top-company-cont .text-box .c-title01 .en {
		font-size: 50px;
	}
	/* .top-company-cont .map-box {
		height: auto;
	}
	.top-company-cont .map {
		max-width: 465px;
		margin-bottom: 30px;
		aspect-ratio: 1.572;
	}
	.top-company-cont .link-btn {
		position: relative;
		left: auto;
		top: auto;
	} */
	.top-company-block .charactor {
		left: 0;
		margin: 0 auto;
	}
}
/* #endregion top -------------------------------- */

/* #region guide =================================== */
.guide-block .text-block {
	position: relative;
	max-width: 725px;
	margin: 0 auto;
}
.guide-block .text-block--intro {
	margin-bottom: 90px;
}
.guide-block .text-block p {
	margin-bottom: 1.8667em;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.8667;
}
.guide-block .text-block .img-block {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 1.8667em;
}
.guide-block .text-block .img-block figcaption {
	margin-top: 1em;
	color: var(--color-primary);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}
.guide-block .supplement-box {
	margin-top: 60px;
	margin-bottom: 30px;
}
.guide-block .supplement-box > dl {
	padding: 20px 0;
}
.guide-block .supplement-box > dl:not(:last-of-type) {
	border-bottom: 2px dotted var(--color-primary);
}
.guide-block .supplement-box > dl > dt {
	color: var(--color-primary);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.guide-block .supplement-box > dl > dt.vmc-main {
	color: #0080bd;
}
.guide-block .supplement-box > dl > dt.vmc-premium {
	color: #f15839;
}
.guide-block .supplement-box > dl > dd {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6154;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {
	.guide-block .text-block {
		padding: 0 10px;
	}
	.guide-block .text-block--intro {
		margin-bottom: 45px;
	}
	.guide-block .text-block p {
		font-size: 13px;
	}
	.guide-block .text-block .img-block {
		gap: 10px;
	}
	.guide-block .text-block .img-block figcaption {
		font-size: 13px;
	}
	.guide-block .supplement-box > dl {
		padding: 15px 0;
	}
	.guide-block .supplement-box > dl > dt {
		font-size: 20px;
	}
}

.guide-block--care {
	padding-top: 155px;
	margin-bottom: 180px;
}
@media only screen and (max-width: 1024px) {
	.guide-block--care {
		padding-top: 100px;
		margin-bottom: 120px;
	}
}

.guide-species-block {
}
.species-item {
	margin-bottom: 195px;
}
.species-item-header {
	position: relative;
	padding: 0 20px;
	padding-top: 140px;
	margin-bottom: 175px;
	background: url('../images/common/bg-img02.jpg') bottom center;
	text-align: center;
}
.species-item-header .title {
	margin-bottom: 15px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 45px;
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.species-item-header .scientific-name {
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.species-item-header .scientific-name span::after {
	content: ' ／ ';
}

.species-photos {
	position: relative;
	max-width: 838px;
	aspect-ratio: 1.891 / 1;
	margin: 0 auto;
	margin-top: -120px;
	z-index: 3;
}
.species-photos .caption {
	position: absolute;
	left: 15px;
	bottom: -120px;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-weight: 100;
	font-size: 78px;
	line-height: 1;
	letter-spacing: 0.01em;
	z-index: 3;
}
.species-photos .swiper {
	border-radius: 40px;
	bottom: -120px;
}
/* ナビゲーションボタン */
.species-photos .swiper-button-prev,
.species-photos .swiper-button-next {
	position: absolute;
	width: min(72px, 8vw);
	height: min(72px, 8vw);
	top: calc(50% + 100px);
	border-radius: 50%;
	background: rgba(92, 177, 54, 0.75);
	z-index: 10;
	cursor: pointer;
	transition: background 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.species-photos .swiper-button-prev:hover,
.species-photos .swiper-button-next:hover {
	background: rgba(92, 177, 54, 1);
}
.species-photos .swiper-button-prev {
	left: max(-32px, -4vw);
}
.species-photos .swiper-button-next {
	right: max(-32px, -4vw);
}
.species-photos .swiper-button-prev::after,
.species-photos .swiper-button-next::after {
	content: url(../images/common/arrow02.svg);
	position: absolute;
	width: 73%;
	top: 50%;
}
.species-photos .swiper-button-prev::after {
	left: 40%;
	transform: rotateY(180deg) translateY(-70%);
}
.species-photos .swiper-button-next::after {
	right: 40%;
	transform: translateY(-70%);
}
/* ページネーション（ドット） */
.species-photos .swiper-pagination {
	position: absolute;
	bottom: 20px;
	right: 40px;
	width: 100%;
	text-align: right;
	transition: 300ms opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}
.species-photos .swiper-pagination-bullet {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 6px;
	border-radius: 100%;
	background: #fff;
}
.species-photos .swiper-pagination-bullet-active {
	background: var(--color-primary);
}

.species-item-main {
	max-width: 878px;
	margin: 0 auto;
}
.species-item-main .description {
	margin-bottom: 80px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2.0714;
}
.species-item-main .guide-box {
	border-radius: 23px;
	box-shadow : 0px 0px 4.42px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
.species-item-main .guide-box .title-cont {
	padding: 25px;
	padding-top: 35px;
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}
.species-item-main .guide-box .main-cont {
	padding: 20px 55px 55px;
}
.species-item-main .guide-box .main-cont dl {
	display: flex;
	padding: 40px 0;
	border-bottom: 2px dotted var(--color-primary);
}
.species-item-main .guide-box .main-cont dl:last-of-type {
	border-bottom: none;
}
.species-item-main .guide-box .main-cont dt {
	flex: 0 0 130px;
	color: var(--color-primary);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.species-item-main .guide-box .main-cont dd {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1.9333;
	text-align: justify;
}
.species-item-main .guide-box .img-block {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top:  1.8667em;
	margin-bottom: 1.8667em;
}
.species-item-main .guide-box .img-block figcaption {
	margin-top: 1em;
	color: var(--color-primary);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
	.species-item {
		margin-bottom: 105px;
	}
	.species-item-header {
		padding: 0 30px;
		padding-top: 75px;
		padding-bottom: 30px;
		margin-bottom: 40px;
	}
	.species-item-header .title {
		margin-bottom: 20px;
		font-size: 25px;
	}
	.species-item-header .scientific-name {
		margin-bottom: 35px;
	}
	.species-item-header .scientific-name span {
		display: block;
		margin-bottom: 5px;
	}
	.species-item-header .scientific-name span::after {
		display: none;
	}

	.species-photos {
		margin-top: 0;
	}
	.species-photos .caption {
		left: 5px;
		bottom: 0;
		font-size: 10vw;
	}
	.species-photos .swiper {
		bottom: 0;
		border-radius: 12px;
	}
	.species-photos .swiper-button-prev,
	.species-photos .swiper-button-next {
		top: 40%;
	}
	.species-photos .swiper-pagination {
		bottom: 8px;
		right: 15px;
	}
	.species-photos .swiper-pagination-bullet {
		width: 5px;
		height: 5px;
		margin: 0 3px;
	}

	.species-item-main {
		padding: 0 10px;
	}
	.species-item-main .description {
		margin-bottom: 40px;
	}
	.species-item-main .guide-box {
		border-radius: 12px;
	}
	.species-item-main .guide-box .title-cont {
		padding: 20px;
		padding-top: 25px;
	}
	.species-item-main .guide-box .main-cont {
		padding: 10px 35px;
	}
	.species-item-main .guide-box .main-cont dl {
		display: block;
		padding: 30px 0;
	}
	.species-item-main .guide-box .main-cont dt {
		margin-bottom: 5px;
		font-size: 16px;
	}
	.species-item-main .guide-box .main-cont dd {
		font-size: 13px;
		letter-spacing: 0;
	}
	.species-item-main .guide-box .img-block {
		gap: 10px;
	}
	.species-item-main .guide-box .img-block figcaption {
		font-size: 13px;
	}
}

.guide-block--health {
	padding-top: 180px;
	padding-bottom: 220px;
	background: #f2ffe5;
}
.guide-block--health figure {
	flex: 0 1 426px;
}
@media only screen and (max-width: 1024px) {
	.guide-block--health {
		padding-top: 90px;
		padding-bottom: 120px;
	}
}
/* #endregion guide -------------------------------- */