@charset "UTF-8";

/* テキスト */

.heading-l {
	font-size: 50px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: .08em;
}

.heading-m {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: .08em;
}

.heading-s {
	font-size: 25px;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: .05em;
}

.main-text-l {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .05em;
}

.main-text-m {
	font-size: 16px;
	font-weight: 500;
	line-height: 2.5;
	letter-spacing: .05em;
}

.main-text-s {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: .05em;
}

.main-text-ss {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: .05em;
}

.link-text-s {
	font-size: 13px;
	font-weight: normal;
	line-height: 2.3;
	letter-spacing: .05em;
}

/* ヘッダー */

header {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 32px 0 36px;
	width: 100%;
	height: 80px;
	z-index: 999;
}

header.active {
	background: rgba(255, 255, 255, .7);
}

header .logo {
	color: #3D3D3D;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 21px;
	font-weight: bold;
	letter-spacing: .05em;
}

.hamburger {
	display: none;
}

header ul li a {
	color: #3D3D3D;
	font-weight: 500;
	transition: .2s;
}

header ul li a:hover {
	color: #FF4613;
}

#js-nav {
	display: flex;
	gap: 39px;
}

#js-nav ul {
	display: flex;
	align-items: center;
	gap: 44px;
}

#js-nav img {
	display: none;
}

header .contact-link {
	background: #FF4613;
	border: 2px solid #FF4613;
	border-radius: 20px;
	box-sizing: border-box;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 20px 0 23px;
	transition: .2s;
}

header .contact-link:hover {
	background: #fff;
	color: #FF4613;
}

header .contact-link:hover svg path {
	fill: #FF4613;
}

@media screen and (max-width: 1180px) {

	header {
		height: 72px;
		padding: 0 0 0 18px;
	}

	header .logo {
		font-size: 17px;
		gap: 4px;
		z-index: 1;
	}

	header .logo svg {
		width: 36px;
		height: 24px;
	}

	header nav {
		position: absolute;
		right: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		background-color: #fff;
		margin: 0;
		overflow-y: scroll;
	}

	.hamburger {
		cursor: pointer;
		background: #F8400D;
		border: none;
		border-radius: 0 0 0 10px;
		display: block;
		width: 72px;
		height: 72px;
		padding: 0;
		position: relative;
		z-index: 1;
	}

	.hamburger .images {
		background: url(../img/hamburger-line.svg) no-repeat;
		background-size: cover;
		width: 38px;
		height: 8px;
	}

	.hamburger .line {
		height: 3px;
		background: #fff;
	}

	.hamburger span {
		position: absolute;
		left: 50%;
		transform: translatex(-50%);
		transition: .3s;
		width: 38px;
	}

	header.active .hamburger .line {
		background: #fff;
	}

	.hamburger span:nth-child(1) {
		top: 22px;
	}

	.hamburger span:nth-child(2) {
		top: 37px;
	}

	.hamburger span:nth-child(3) {
		top: 47px;
	}

	/* open */
	header nav.ham-active {
		opacity: 1;
		visibility: visible;
		transition: .2s;
	}

	#js-nav {
		flex-flow: column;
		gap: 40px;
	}

	#js-nav ul {
		flex-flow: column;
		gap: 16px;
		margin: 112px auto 0;
		width: 272px;
	}

	#js-nav ul li {
		border-bottom: 1px solid;
		border-image: linear-gradient(to right, #F8F846, #A1C574) 1;
		width: 100%;
	}

	#js-nav ul li a {
		color: #508F02;
		display: block;
		font-size: 16px;
		line-height: 2.5;
		padding-bottom: 16px;
		position: relative;
		width: 100%;
	}

	#js-nav ul li a::after {
		content: "";
		position: absolute;
		top: 16px;
		right: 8px;
		background: #508F02;
		border-radius: 50%;
		width: 8px;
		height: 8px;
	}

	#js-nav img {
		display: block;
		width: 290px;
		margin: 40px auto 0;
	}

	header .contact-border {
		background: linear-gradient(to right, #F8F846, #A1C574);
		border-radius: 10px;
		display: block;
		padding: 2px;
		margin: 0 auto;
		width: max-content;
		transition: .3s;
	}

	header .contact-border .contact-link {
		border: none;
		border-radius: 8px;
		background: #fff;
		box-sizing: border-box;
		color: #508F02;
		padding: 12px 80px;
		transition: .3s;
	}

	header .contact-border .contact-link span {
		color: #508F02;
		padding-left: 18px;
		position: relative;
	}

	header .contact-border .contact-link span::before {
		content: "";
		position: absolute;
		left: 0;
		top: 52%;
		transform: translateY(-50%);
		background: #508F02;
		border-radius: 50%;
		width: 8px;
		height: 8px;
	}

	header .contact-border .contact-link svg path {
		fill: #508F02;
	}

	header .contact-border:hover {
		background: url(../img/noise-btn.webp);
		background-size: contain;
	}

	header .contact-border:hover .contact-link {
		background: transparent;
	}

	header .contact-border:hover .contact-link span {
		color: #fff;
	}

	header .contact-border:hover .contact-link span::before {
		background: #fff;
	}

	header .contact-border:hover .contact-link svg path {
		fill: #fff;
	}
}

/* ハンバーガーメニュー */

.ham-wait span:nth-of-type(1),
.ham-wait span:nth-of-type(2),
.ham-wait span:nth-of-type(3) {
	transition: none !important;
	animation-duration: 0s !important;
}

.hamburger span:nth-of-type(1) {
	animation: btn07-bar01 .75s forwards;
}

@keyframes btn07-bar01 {
	0% {
		transform: translate(-50%, 7px) rotate(30deg);
	}

	50% {
		transform: translate(-50%, 7px) rotate(0);
	}

	100% {
		transform: translate(-50%, 0) rotate(0);
	}
}

.hamburger span:nth-of-type(2) {
	transition: all .25s .25s;
	opacity: 1;
}

.hamburger span:nth-of-type(3) {
	animation: btn07-bar03 .75s forwards;
}

@keyframes btn07-bar03 {
	0% {
		transform: translate(-50%, -13px) rotate(-30deg);
	}

	50% {
		transform: translate(-50%, -13px) rotate(0);
	}

	100% {
		transform: translate(-50%, 0) rotate(0);
	}
}

.hamburger.ham-active .images {
	background: #fff;
	height: 3px;
}

.hamburger.ham-active span:nth-of-type(1) {
	animation: active-btn07-bar01 .75s forwards;
}

@keyframes active-btn07-bar01 {
	0% {
		transform: translate(-50%, 0) rotate(0);
	}

	50% {
		transform: translate(-50%, 13px) rotate(0);
	}

	100% {
		transform: translate(-50%, 13px) rotate(30deg);
	}
}

.hamburger.ham-active span:nth-of-type(2) {
	opacity: 0;
}

.hamburger.ham-active span:nth-of-type(3) {
	animation: active-btn07-bar03 .75s forwards;
}

@keyframes active-btn07-bar03 {
	0% {
		transform: translate(-50%, 0) rotate(0);
	}

	50% {
		transform: translate(-50%, -13px) rotate(0);
	}

	100% {
		transform: translate(-50%, -13px) rotate(-30deg);
	}
}

/* コンテンツ内 共有 */

.fadeIn {
	margin-top: 80px;
}

.wrap {
	margin: 0 auto;
	width: 90%;
}

/* フッター */

footer {
	background: #fff;
	border-radius: 200px 200px 0 0;
	display: flex;
	flex-flow: row-reverse;
	justify-content: center;
	gap: 49px;
	position: relative;
}

footer .logo {
	color: #508F02;
	font-size: 21px;
	line-height: 1.9;
	letter-spacing: .05em;
	display: flex;
	align-items: center;
	gap: 8px;
}

footer .gradation {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 80px;
	padding: 73px 0 53px 130px;
	position: relative;
	margin-top: 96px;
}

footer .gradation::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #DBD466 0%, #CADF63 100%);
	border-radius: 200px 0 0 0;
	width: 100vw;
	height: 100%;
}

footer .gradation .character-footer {
	display: flex;
	align-items: flex-start;
	position: absolute;
	right: 0;
	top: -118px;
	z-index: 1;
}

footer .gradation .character-footer img {
	width: 388px;
}

footer .gradation .character-footer p {
	background: #fff;
	border: 2px solid #508F02;
	border-radius: 30px;
	color: #508F02;
	display: inline-block;
	flex-shrink: 0;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2;
	padding: 28px 13px 30px 15px;
	margin: -29px 0 0 -16px;
	z-index: -1;
}

footer .gradation a {
	color: #3D3D3D;
	transition: .2s;
}

footer .gradation>ul li {
	padding-left: 17px;
	position: relative;
}

footer .gradation>ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #3D3D3D;
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

footer .gradation>ul li:hover a {
	color: #FF4613;
}

footer .gradation>ul li:hover::before {
	background: #FF4613;
}

footer .gradation>ul li.link-text-s {
	padding-left: 0;
}

footer .gradation>ul li.link-text-s::before {
	content: none;
}

footer .gradation .contact-footer {
	background: #fff;
	border-radius: 40px;
	box-sizing: border-box;
	padding: 20px 27px 22px;
	position: relative;
	width: 234px;
	height: 171px;
}

footer .gradation .contact-footer b {
	color: #508F02;
}

footer .gradation .gradation-border {
	background: linear-gradient(to right, #F8F846, #A1C574);
	border-radius: 40px;
	display: block;
	padding: 2px;
	margin-top: 7px;
	width: 100%;
	transition: .3s;
}

footer .gradation .gradation-border:hover {
	background: url(../img/noise-btn.webp);
}

footer .gradation .gradation-border:hover a {
	background: transparent;
	color: #fff;
}

footer .gradation .gradation-border:hover svg path {
	fill: #fff;
}

footer .gradation .contact-footer a {
	border-radius: 38px;
	background: #fff;
	box-sizing: border-box;
	color: #508F02;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	padding: 4px 0 6px;
	width: 100%;
}

footer .gradation .contact-footer a:nth-child(1) {
	gap: 7px;
}

footer .gradation .contact-footer a:nth-child(2) {
	gap: 4px;
}

footer .gradation ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px 28px;
}

footer .white {
	background: #fff;
	border-radius: 200px 200px 0 0;
	box-sizing: border-box;
	padding: 75px 0 58px;
	flex-shrink: 0;
}

footer address {
	color: #666;
	font-weight: 500;
	font-style: normal;
	margin: 35px 0 40px;
}

footer address a {
	color: #666;
	margin-right: 1em;
}

footer .map {
	background: linear-gradient(to right, #F8F846, #A1C574);
	border-radius: 10px;
	display: block;
	padding: 2px;
	width: max-content;
	transition: .3s;
}

footer .map-inner {
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
	color: #508F02;
	display: inline-block;
	padding: 10px 95px;
	transition: .3s;
}

footer .map-inner span {
	padding-left: 18px;
	position: relative;
}

footer .map-inner span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #508F02;
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

footer .map:hover {
	background: url(../img/noise-btn.webp);
	background-size: contain;
}

footer .map:hover .map-inner {
	background: transparent;
	color: #fff;
}

footer .map:hover .map-inner span::before {
	background: #fff;
}

footer .copy {
	position: absolute;
	top: 198px;
	right: 23px;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

@media screen and (max-width: 1300px) {
	footer {
		background: linear-gradient(180deg, #DBD466 0%, #CADF63 100%);
		border-radius: 120px 0 0 0;
		flex-flow: column;
		gap: 0;
	}

	footer .gradation {
		background: none;
		justify-content: space-between;
		gap: 27px;
		padding: 43px 41px 42px 90px;
		margin-top: 0;
	}

	footer .gradation::before {
		content: none;
	}

	footer .gradation .character-footer {
		display: block;
		left: auto;
		transform: none;
		right: 48px;
	}

	footer .gradation .character-footer p {
		display: block;
		font-size: 12px;
		line-height: 1.91;
		text-align: center;
		position: absolute;
		top: -75px;
		right: 9px;
		padding: 24px 0;
		margin: 0;
		width: 165px;
		z-index: 1;
	}

	footer .gradation .character-footer img {
		position: relative;
		z-index: 2;
	}

	footer .gradation .contact-footer {
		text-align: center;
		width: 393px;
		height: 168px;
	}

	footer .gradation .gradation-border {
		max-width: 176px;
		margin: 7px auto;
	}

	footer .gradation .contact-footer a {
		max-width: 176px;
	}

	footer .white {
		border-radius: 120px 0 0 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 54px 41px 59px 47px;
		z-index: 2;
	}

	footer address {
		margin-bottom: 0;
	}

	footer .map-inner {
		padding: 41.5px 104.5px;
	}

	footer .copy {
		top: -137px;
		left: 17px;
		right: auto;
	}
}

@media screen and (max-width: 900px) {
	footer .gradation {
		padding: 48px 41px 48px 64px;
	}

	footer .gradation .contact-footer {
		width: 223px;
	}
}

/* sp */
@media screen and (max-width: 767px) {

	/* フッター sp */
	footer .gradation {
		flex-flow: column;
		gap: 30px;
		padding: 51px 24px 36px;
	}

	footer .gradation .character-footer {
		right: 16px;
		top: -78.75px;
	}

	footer .gradation .character-footer img {
		width: 258px;
	}

	footer .gradation ul {
		gap: 0 23px;
	}

	footer .gradation>ul li.link-text-s {
		margin-top: 8px;
	}

	footer .gradation .contact-footer {
		width: 100%;
		max-width: 328px;
	}

	footer .white {
		padding: 46px 26px 38px;
		flex-flow: column;
		gap: 36px;
	}

	footer address {
		margin-top: 23px;
	}

	footer .map-inner {
		padding: 12px 97px;
	}
}