:root {
	--white: #fffffa;
	--base__color: #F9F9E0;
	--base__color2: #ebeae4;
	--light__base: #FFFFF6;
	--light__base2: #fefeeb;
	--heavy__base: #CCCCA0;
	--heavy__base2: #ADA07E;
	--red: #dc4848;
	--deep__red: #BE191E;
	--logo__font: #585757;
	--font__color: #212121;
	--light__gray: #f2f2f2;
	--orange: #f9a354;
	--heavy__orange: #EF7212;
	--pink: #EEB8B8;
	--heavy__pink: #e47786;
	--blue: #9CC0D1;
	--heavy__blue: #3f6b7f;
	--green: #ADD2A4;
	--heavy__green: #6BA25E;
	--box__shadow: rgba(135, 135, 135, 0.5);
	--yellow: #fce57b;
	--heavy__yellow: #e1c342;
	--purple: #c475f1;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
	font-style: normal;
	background-image: url(../images/section_background_05.gif);
	color: var(--font__color);
}

p {
	line-height: 1.8em;
	font-size: 1.1rem;
}

a {
	text-decoration: none;
}

ul li {
	list-style: none;
}

.small {
	font-size: 0.8em;
}

.large {
	font-size: 1.2em;
}

.link__text {
	color: var(--deep__red);
	border-bottom: 1px solid var(--heavy__base);
}

main {
	margin-top: 60px;
}

.br__sp {
	display: none;
}

.bold {
	font-weight: 700;
}

.text__center {
	text-align: center;
}

em {
	font-style: normal;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)60%, rgba(230, 141, 141, 0.537)60%, rgba(230, 141, 141, 0.537));
}

.pc__text--center {
	text-align: center;
}

.pc__hidden {
	display: none;
}

/* header */

header {
	width: 100%;
	height: 60px;
	max-width: 2200px;
	background: var(--base__color2);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: all 0.3s;
	display: grid;
	place-items: center;
}

.header__inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1em;
}

.header__logo img {
	height: 50px;
}

.header__nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	padding: 0;
}

.header__nav img {
	height: 30px;
	object-fit: cover;
}

.header__nav span {
	color: var(--font__color);
	font-weight: bold;
	letter-spacing: 0.1em;
	transition: all 0.3s;
}

header nav ul li a {
	display: flex;
	align-items: end;
}

header nav ul li a img {
	opacity: 0;
	transition: all 0.3s;
}

header nav ul li a:hover img {
	opacity: 1;
}

header nav ul li a:hover span {
	color: var(--heavy__base2);
}

.gnav__sp {
	position: fixed;
	top: -200px;
	right: 50px;
	transition: all 0.3s;
	z-index: 10;
}

.gnav__sp ul {
	display: flex;
	flex-direction: column;
	background: var(--white);
	padding: 1em;
	border-radius: 0 0 1em 1em;
}

.gnav__sp ul li:nth-child(1) a span {
	color: var(--green);
}

.gnav__sp ul li:nth-child(2) a span {
	color: var(--heavy__pink);
}

.gnav__sp ul li:nth-child(3) a span {
	color: var(--heavy__yellow);
}

.gnav__sp ul li:nth-child(4) a span {
	color: var(--blue);
}

.gnav__sp ul li:nth-child(5) a span {
	color: var(--purple);
}


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

#burger-icon {
	display: none;
	height: 50px;
	width: 50px;
	background: var(--heavy__base);
	border-radius: 0 0 0 1em;
	z-index: 10;
	position: fixed;
	top: 0;
	right: 0;
}

#burger-icon span {
	width: 30px;
	height: 4px;
	border-radius: 2px;
	background: #fff;
	position: absolute;
}

#burger-icon span:nth-child(1) {
	left: 10px;
	top: 12.5px;
}

#burger-icon span:nth-child(2) {
	left: 10px;
	top: 23px;
}

#burger-icon span:nth-child(3) {
	left: 10px;
	top: 33.5px;
}

.burger-line1 {
	transform: translateY(10.5px) rotate(45deg);
	opacity: 0;
	animation: open-burger-line 0.5s linear;
	animation-fill-mode: forwards;
}

.burger-line2 {
	opacity: 0;
}

.burger-line3 {
	transform: translateY(-10.5px) rotate(-45deg);
	opacity: 0;
	animation: open-burger-line 0.5s linear;
	animation-fill-mode: forwards;
}

@keyframes burger-line {
	to {
		opacity: 1;
	}
}

@keyframes open-burger-line {
	to {
		opacity: 1;
	}
}

.open-nav {
	top: 0;
}

/* footer */

footer {
	width: 100%;
	background: var(--base__color2);
	display: flex;
	flex-direction: column;
	padding: 1em;
	margin: 2em 0 0 0;
	gap: 1em;
}

.footer__logo__wrap {
	display: flex;
	justify-content: space-between;
}

.footer__logo img {
	height: 50px;
}

.scroll__top {
	background: var(--heavy__base);
	width: 60px;
	height: 60px;
	border-radius: 30px;
	cursor: pointer;
	position: relative;
}

.scroll__top span:nth-child(1) {
	width: 30px;
	height: 5px;
	background: var(--logo__font);
	position: absolute;
	top: 25px;
	left: 6px;
	transform: rotate(-45deg);
	border-radius: 5px 0 0 5px;
}

.scroll__top span:nth-child(2) {
	width: 30px;
	height: 5px;
	background: var(--logo__font);
	position: absolute;
	top: 25px;
	left: 24px;
	transform: rotate(45deg);
	border-radius: 0 5px 5px 0;
}

.scroll__top:hover {
	animation: scroll__top__btn 1s linear infinite;
}

@keyframes scroll__top__btn {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}

	100% {
		transform: translateY(0);
	}
}

footer ul {
	display: flex;
	gap: 1em;
}

footer ul li {
	font-size: 1.5rem;
	font-weight: 500;
	transition: all 0.3s;
}

footer ul li:hover {
	color: var(--heavy__base2);
}

.footer__sns {
	display: flex;
	gap: 0.5em;
	align-items: center;
	font-size: 1.3rem;
}

.footer__sns img {
	height: 1.5em;
	width: 1.5em;
	object-fit: cover;
}

.footer__img {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.copy {
	text-align: right;
}

/* 共通 */
.page__title {
	width: 100%;
	text-align: center;
	padding: 2em 1em;
}

.page__title h1 {
	font-size: clamp(1.8rem, 1.364rem + 2.18vw, 3rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--heavy__base2);
	width: fit-content;
	margin: 0 auto;
}

.page__title h2 {
	font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
	line-height: 1.8em;
	color: var(--heavy__base2);
}

/* お問い合わせ */
.contact {
	margin: 2em auto;
	padding: 0 1em;
}

.contact__title h2 {
	font-size: 2rem;
	letter-spacing: 0.1em;
	color: var(--heavy__base2);
	text-align: center;
}

.contact__title p {
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	color: var(--font__color);
	text-align: center;
}

.contact__inner {
	width: 100%;
	max-width: 800px;
	background: var(--yellow);
	margin: 1em auto;
	padding: 2em 1em;
	border-radius: 1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1em;
}

.contact__inner h5 {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
}

.contact__logo__wrap {
	background: var(--base__color);
	padding: 15px;
	border-radius: 50%;
}

.contact__inner img {
	width: 50px;
}

.contact__inner p {
	text-align: center;
}

.contact__btn {
	background: var(--white);
	padding: 0.2em 1em;
	border-radius: 2em;
	transition: all 0.3s;
	font-size: 1.3rem;
	font-weight: 500;
}

.contact__btn:hover {
	background: var(--orange);
}

/* ニュース */
.section8__inner {
	width: 100%;
	padding: 1em;
	background: var(--base__color2);
	margin: 2em auto;
}

.section8__inner h2 {
	font-size: 2rem;
	letter-spacing: 0.1em;
	color: var(--heavy__base2);
	text-align: center;
}

.section8__inner h3 {
	text-align: center;
	color: var(--heavy__base2);
}

.news {
	width: 100%;
	max-width: 1100px;
	display: grid;
	grid-template-columns: 300px 1fr;
	padding: 1em;
	margin: 0 auto;
	gap: 2em;
	align-items: center;
}

.news__img img {
	width: 300px;
	height: 300px;
	object-fit: cover;
	border-radius: 1em;
}

.news__contents {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.news__date {
	font-size: 1em;
	color: var(--)
}

.news__title {
	font-size: 1.5rem;
}

.news__message img {
	width: 100px;
	object-fit: cover;
}

.news__link {
	width: fit-content;
	padding: 0.2em 1em;
	margin-left: auto;
	background: var(--heavy__base);
	border-radius: 2em;
	transition: all 0.3s;
	font-weight: 500;
}

.news__link:hover {
	background: var(--white);
	box-shadow: 0px 0px 3px var(--heavy__base2);
}

.section8__inner hr {
	border: 1px solid var(--heavy__base2);
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.news__all__btn {
	width: fit-content;
	padding: 0.2em 1em;
	background: var(--heavy__base2);
	border-radius: 2em;
	font-size: 1.3rem;
	display: block;
	margin: 2em auto;
	color: var(--white);
	transition: all 0.3s;
}

.news__all__btn:hover {
	background: var(--white);
	box-shadow: 0px 0px 3px var(--heavy__base2);
	color: var(--heavy__base2);
}

.news__category {
	width: fit-content;
	padding: 0.2em 1em;
	border-radius: 0.5em;
}

.category1 {
	background: var(--heavy__pink);
}

.category2 {
	background: var(--red);
}

.category3 {
	background: var(--heavy__green);
}

.category4 {
	background: var(--heavy__yellow);
}

.category5 {
	background: var(--heavy__orange);
}

.category6 {
	background: var(--blue);
}

.category7 {
	background: var(--purple);
}

.category8 {
	background: var(--heavy__base);
}

@media screen and (max-width:900px) {
	.br__sp {
		display: block;
	}

	.pc__hidden {
		display: block;
	}


	.sp__hidden {
		display: none;
	}

	.pc__text--center {
		text-align: left;
	}

	.sp__text--center {
		text-align: center;
	}

	/* header */
	.header {
		height: 200px;
	}

	.header__inner {
		display: block;
	}

	.gnav__pc {
		display: none;
	}

	#burger-icon {
		display: block;
	}

	/* footer */
	footer ul {
		flex-direction: column;
	}

	/* news */
	.news {
		display: flex;
		flex-direction: column;
	}
}