@charset "utf-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	line-height: 1;
}

:root {
	--navy_color: #1e1e3c;
	--black_color: #222222;
	--green_color: #a5e84e;
	--yellow_green_color: #c3d72d;
	--pale_green_color: #f5ffeb;
	--white_color: #fff;
}

html,
body {
	width: 100%;
	height: 100%;
	font-family: YakuHanJP, 'IBM Plex Sans JP', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #222222;
}

body.noscroll {
	overflow: hidden;
	/*メニューでスクロールさせないため*/
}

main {
	overflow-x: hidden;
}

.container {
	width: 1240px;
	margin: 0 auto;
}

.width1040 {
	width: 1040px;
	margin: 0 auto;
}

.width1720 {
	width: 1720px;
	margin: 0 auto;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

ol {
	padding-left: 20px;
	list-style-position: outside;
}

a {
	display: block;
	text-decoration: none;
	color: var(--black_color);
	transition: 0.4s;
}

a:hover {
	transition: 0.4s;
}

p {
	font-size: 1rem;
}

h1,
h2,
h3 {
	text-align: justify;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
}

address {
	font-style: normal;
}

.flex_box {
	display: flex;
}

.reverse {
	flex-direction: row-reverse;
}

.grid {
	display: grid;
}

.mb_br {
	display: none;
}

.center,
.center > p {
	text-align: center;
}

.txt_left {
	text-align: left;
}

.txt_right {
	text-align: right;
}

.inline_btn {
	display: inline;
	font-weight: 500;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.inline_btn:hover {
	color: #2dae5d;
}

.black_btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 2rem;
	width: 13rem;
	font-family: 'DotGothic16', sans-serif;
	color: var(--white_color);
	letter-spacing: 0.05em;
	background-color: var(--black_color);
}

.black_btn::before {
	content: '';
	position: absolute;
	left: 1.75rem;
	width: 0.8667rem;
	height: 1.2rem;
	background-size: contain;
	background-position: center;
	background-image: url(../images/common/triangle_luminous.svg);
}

.more_btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 1.8667rem;
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-size: 1.667rem;
	width: 33.0667rem;
	height: 5.667rem;
	background-color: var(--white_color);
	border: solid 2px #000;
	border-radius: 5px;
	box-shadow: 4px 4px 0 #000;
}

.more_btn:hover,
.black_btn:hover {
	background-color: #2dae5d;
	transform: translate(4px, 4px) !important;
	box-shadow: none;
}

.more_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 4.334rem;
	bottom: 0;
	margin: auto;
	width: 1.0667rem;
	height: 1.667rem;
	background-position: center;
	background-size: contain;
	background-image: url(../images/common/triangle_luminous.svg);
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border: solid 1px #676767;
	background-color: #fff;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background-color: #72ff54;
}

/*コンタクト以外のページでreCAPTCHAを非表示*/
body:not(.contact) .grecaptcha-badge {
	visibility: hidden;
}

/* ============
	responsive
================ */
@media screen and (max-width: 1740px) {
	.width1720 {
		width: calc(100% - 8rem);
	}
}

@media screen and (max-width: 1280px) {
	.container {
		width: calc(100% - 8rem);
	}
}

@media screen and (max-width: 768px) {
	.container {
		width: calc(100% - 4rem);
	}

	.more_btn {
		max-width: 21rem;
		width: 100%;
		font-size: 1.2667rem;
		line-height: 1.4;
	}

	.more_btn::before {
		left: 3.2rem;
		width: 1.0667rem;
		height: 1.6rem;
	}

	.more_btn .mb_br {
		display: block;
	}
}

@media screen and (max-width: 480px) {
	.container {
		width: calc(100% - 2.667rem);
	}
}

/* ===========================================
	header
============================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	transition: all 0.5s;
	z-index: 50;
}

.header.hide {
	transform: translateY(-100%);
	transition: 1s;
}

@keyframes change_animation_return {
	0% {
		transform: translateY(-100%);
	}

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

.header.change {
	background-color: rgba(255, 255, 255, 0);
	transition: all 0.5s;
}

.header_inner {
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
}

.header_logo.open {
	position: fixed;
	top: 0;
	left: 0;
}

.header_logo_link {
	justify-content: center;
	align-items: center;
	padding: 2.1334rem 2.667rem;
}

.header_logo_link:hover {
	opacity: 0.6;
}

.g_nav_list {
	margin-right: 2.9334rem;
}

.g_nav_list > li > a {
	padding: 1.0667rem;
	font-size: 1.0667rem;
	line-height: 1;
	letter-spacing: 0.01em;
}

.g_nav_list > li > a:hover {
	opacity: 0.6;
}

.g_nav_list > li > a.h_entry_btn {
	margin-left: 2.667rem;
	padding-left: 3rem;
	letter-spacing: 0.05em;
	border-radius: 9999px;
}

.g_nav_list > li > a.h_entry_btn:hover {
	opacity: 1;
}

.humb_menu {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	width: 5.334rem;
	height: 4.5334rem;
}

.humb_menu:hover {
	cursor: pointer;
	opacity: 0.6;
}

.humb_menu_inner {
	position: relative;
	width: 2.667rem;
	height: 1.1334rem;
}

.bar {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
	transform-origin: 0% 50%;
	transition: all 0.4s;
}

.bar:first-of-type {
	top: 0;
}

.bar:nth-child(2) {
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

.bar:last-of-type {
	bottom: 0;
}

.humb_menu.active .bar:first-of-type {
	width: 3.1rem;
	transform: rotate(20deg);
}

.humb_menu.active .bar:nth-child(2) {
	display: none;
}

.humb_menu.active .bar:last-of-type {
	width: 3.1rem;
	transform: rotate(-20deg);
}

/* ============
	responsive
================ */
@media screen and (max-width: 1145px) {
	.g_nav_list {
		margin-right: 1.334rem;
	}

	.header_logo_link {
		padding-right: 1.334rem;
		padding-left: 1.334rem;
	}

	.header_logo_link > img {
		width: 14.5334rem;
		height: auto;
	}
}

@media screen and (max-width: 1024px) {
	.header.hide {
		transform: translateY(0);
	}

	.header_logo_link {
		padding-top: 1.0667rem;
		padding-bottom: 1.0667rem;
	}

	.g_nav_list {
		display: none;
	}

	.humb_menu {
		display: flex;
	}
}

/* ===========================================
	drawer_menu
============================================== */
.drawer_menu,
.drawer_menu_inner {
	width: 100vw;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
}

.drawer_menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	background-position: bottom center;
	background-size: contain;
	background-image: url(../images/common/town.png);
	background-color: #badafb;
	overflow-y: scroll;
	z-index: 49;
}

.drawer_menu.open {
	display: block;
}

.drawer_menu.open .drawer_menu_inner {
	animation-name: gnaviAnime;
	animation-duration: 1s;
	animation-delay: 0.2s;
	/*0.2 秒遅らせて出現*/
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes gnaviAnime {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.drawer_menu_wrap {
	justify-content: center;
	column-gap: 1.4rem;
	margin-right: auto;
	margin-left: auto;
	padding-top: 6.9334rem;
	width: calc(100% - 3rem);
}

.drawer_menu_wrap > .f_cont_item {
	flex-direction: column;
	row-gap: 1rem;
}

/* ============
	responsive
================ */
@media screen and (max-width: 768px) {
	.drawer_menu {
		background-size: 67.2rem;
	}
}

/* ===========================================
	post
============================================== */
.news_area {
	padding-top: 2.4rem;
	padding-bottom: 6.667rem;
	background-repeat: repeat;
	background-position: center top;
	background-size: 128rem;
	background-image: url(../images/common/blue_bg.png);
}

.news_ttl_h2 {
	margin-bottom: 5.8667rem;
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-size: 6.2667rem;
	color: #c8cdd3;
	text-align: center;
	letter-spacing: 0.05em;
}

.news_ttl_wrap {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 1.0667rem;
	margin-bottom: 6.4667rem;
}

.news_ttl_h3 {
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-size: 1.9334rem;
	letter-spacing: 0.05em;
}

.post_wrap {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	gap: 3.5334rem 4rem;
	margin-bottom: 2rem;
}

.post_link {
	position: relative;
	border: solid 2px var(--black_color);
	border-radius: 10px;
}

.post_link:hover {
	border: solid 2px #2dae5d;
}

.post_link:first-child {
	grid-column: 1 / 3;
	margin-bottom: 1.8rem;
}

.post_link:not(:first-child) {
	padding: 1.334rem 2rem 1.2rem;
	height: 8.0667rem;
	background-color: var(--white_color);
}

.post_cate {
	position: absolute;
	bottom: 100%;
	left: 1.334rem;
	padding: 8px;
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: var(--white_color);
	background-color: #222222;
	border-radius: 8px 8px 0 0;
	transition: all 0.4s;
}

.post_link:hover .post_cate {
	background-color: #2dae5d;
	transition: all 0.4s;
}

.post_link:first-child .post_cate {
	font-size: 1.2rem;
}

.post_thumb {
	width: 30rem;
	aspect-ratio: 225 / 139;
	border-radius: 10px 0 0 10px;
}

.post_thumb > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
}

.post_link:first-child .post_cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 39.334rem;
	height: 18.5334rem;
	padding-right: 2.667rem;
	padding-left: 2.667rem;
	background-color: var(--white_color);
	border-radius: 0 10px 10px 0;
}

.post_date {
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-size: 1.0667rem;
	color: #008933;
	letter-spacing: 0.06em;
}

.post_link:first-child .post_date {
	font-size: 1.334rem;
}

.post_date.new {
	position: relative;
	padding-left: 2.6rem;
}

.post_link:first-child .post_date.new {
	padding-left: 3.4rem;
}

.post_date.new::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 1.9334rem;
	height: 1.667rem;
	background-position: center;
	background-size: contain;
	background-image: url(../images/common/new.svg);
}

.post_link:first-child .post_date.new::before {
	width: 2.334rem;
	height: 2rem;
}

.post_ttl {
	margin-top: 1rem;
	font-weight: 500;
	font-size: 1.0667rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.post_link:first-child .post_ttl {
	font-size: 1.5334rem;
	-webkit-line-clamp: 3;
}

.news_area .black_btn {
	margin-bottom: 8.8rem;
	margin-left: auto;
	padding-left: 1.5rem;
	width: 14.667rem;
	height: 3.667rem;
	border: solid 2px #e7e7e7;
	border-radius: 5px;
}

.intern_cont {
	position: relative;
	padding-top: 5.8667rem;
	padding-bottom: 3.334rem;
	background-color: var(--white_color);
	border: solid 5px #57b543;
	border-radius: 10px;
}

.intern_cont > span {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: #a8a8a8;
}

.intern_cont > span:nth-child(1) {
	top: 10px;
	left: 10px;
}

.intern_cont > span:nth-child(2) {
	bottom: 10px;
	left: 10px;
}

.intern_cont > span:nth-child(3) {
	top: 10px;
	right: 10px;
}

.intern_cont > span:nth-child(4) {
	bottom: 10px;
	right: 10px;
}

.intern_ttl_h2 {
	display: flex;
	justify-content: center;
	position: absolute;
	top: -2.7rem;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
}

.intern_txt {
	margin-right: auto;
	margin-left: auto;
	max-width: 40rem;
	width: 100%;
	font-weight: 400;
	font-size: 1.0667rem;
	line-height: 2;
}

/* ============
	responsive
================ */
@media screen and (max-width: 1440px) {
	.news_ttl_h2 {
		font-size: min(
			max(39px, calc(2.4375rem + ((1vw - 4.8px) * 5.7292))),
			94px
		);
	}
}

@media screen and (max-width: 1280px) {
	.post_link:first-child .post_cont {
		width: calc(100% - 30rem);
	}
}

@media screen and (max-width: 1024px) {
	.news_area {
		padding-top: 2.0667rem;
		padding-bottom: 5.334rem;
	}

	.news_ttl_h2 {
		margin-bottom: 2.667rem;
	}

	.news_ttl_wrap {
		margin-bottom: 5.0667rem;
	}

	.news_ttl_wrap > img {
		width: 2.2rem;
		height: 3rem;
	}

	.news_ttl_h3 {
		font-size: 1.4667rem;
	}

	.post_link {
		border-radius: 5px;
	}

	.post_link:not(:first-child) {
		padding: 1.2rem 10px;
	}

	.post_link:first-child {
		margin-bottom: 0;
	}

	.post_link:first-child .post_cate,
	.post_cate {
		left: 5px;
		padding: 4px 8px;
		font-size: 0.8667rem;
		border-radius: 5px 5px 0 0;
	}

	.post_thumb {
		width: 50%;
		border-radius: 5px 0 0 5px;
	}

	.post_thumb > img {
		border-radius: 5px 0 0 5px;
	}

	.post_link:first-child .post_cont {
		padding: 1.0667rem 1.334rem 1.0667rem;
		width: 50%;
		height: 100%;
		border-radius: 0 5px 5px 0;
	}

	.post_wrap {
		gap: 2.667rem 1rem;
	}

	.post_link:first-child .post_date.new,
	.post_date.new {
		padding-left: 2.334rem;
	}

	.post_link:first-child .post_date.new::before,
	.post_date.new::before {
		top: 0;
		width: 1.667rem;
		height: 1.4rem;
	}

	.post_link:first-child .post_date,
	.post_date {
		font-size: 0.8667rem;
	}

	.post_link:first-child .post_ttl,
	.post_ttl {
		margin-top: 0.9334rem;
		font-size: 0.9334rem;
	}
}

@media screen and (max-width: 768px) {
	.news_area .black_btn {
		margin-right: auto;
		margin-bottom: 10.7334rem;
	}

	.intern_ttl_h2 {
		top: -5.4rem;
	}

	.intern_ttl_h2 > picture > img {
		width: 21.334rem;
	}

	.intern_cont {
		padding: 2.8rem 2rem 2rem;
		border: solid 3px #57b543;
	}
}

@media screen and (max-width: 540px) {
	.post_link:not(:first-child) {
		height: 10.1334rem;
	}

	.post_link:first-child {
		flex-direction: column;
	}

	.post_thumb,
	.post_link:first-child .post_cont {
		width: 100%;
	}

	.post_thumb,
	.post_thumb > img {
		border-radius: 5px 5px 0 0;
	}

	.post_link:first-child .post_cont {
		border-radius: 0 0 5px 5px;
	}

	.post_ttl {
		-webkit-line-clamp: 4;
	}
}

@media screen and (max-width: 375px) {
	.intern_ttl_h2 {
		top: -5.85rem;
	}
	.intern_ttl_h2 > picture > img {
		width: 100%;
	}
}

/* ===========================================
	gallery
============================================== */
.gallery_slider .swiper-wrapper {
	transition-timing-function: linear;
}

.gallery_slider .swiper-slide {
	width: 32.667rem;
}

/* ============
	responsive
================ */
@media screen and (max-width: 1024px) {
	.gallery_slider .swiper-slide {
		width: 25.4667rem;
	}
}

/* ===========================================
	interview
============================================== */
.interview_area {
	position: relative;
	padding-top: 9.334rem;
	padding-bottom: 7.2667rem;
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	color: var(--white_color);
	background-position: center top;
	background-size: 128rem;
	background-repeat: repeat;
	background-image: url(../images/common/black_bg.png);
	overflow: hidden;
}

.loop_box {
	position: absolute;
	top: 1.5334rem;
	flex-direction: column;
	row-gap: 2.2rem;
	overflow: hidden;
}

.loop_box01 {
	left: 0;
}

.loop_box02 {
	right: 0;
}

.loop_item {
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4.0667rem;
	color: #4f4f4f;
	letter-spacing: 0.05em;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.interview_ttl_h2 {
	margin-bottom: 2.8rem;
	font-weight: 400;
	font-size: 1.9334rem;
	letter-spacing: 0.05em;
	text-align: center;
}

.interview_ttl_h3 {
	position: relative;
	margin-right: auto;
	margin-bottom: 5.334rem;
	margin-left: auto;
	padding-top: 0.8667rem;
	padding-bottom: 0.8667rem;
	padding-left: 3rem;
	width: 19.5334rem;
	font-weight: 400;
	font-size: 1.5334rem;
	text-align: center;
	letter-spacing: 0.05em;
	border-top: solid 2px #fff;
	border-bottom: solid 2px #fff;
}

.interview_ttl_h3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 1.2667rem;
	bottom: 0;
	margin: auto;
	width: 2.4667rem;
	height: 2.2rem;
	background-position: center;
	background-size: contain;
	background-image: url(../images/common/interview.png);
}

.interview_cont {
	grid-template-columns: repeat(3, 1fr);
	column-gap: 3.6rem;
	margin-bottom: 5.8667rem;
}

.interview_cont_item > a:hover {
	opacity: 0.7;
}

.interview_photo_wrap,
.interview_photo_wrap > img {
	border-radius: 9999px;
}

.interview_photo_wrap {
	width: 20.667rem;
	height: 20.667rem;
	border: solid 3px var(--white_color);
	overflow: hidden;
}

.interview_photo_wrap > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s;
}

.interview_cont_item > a:hover .interview_photo_wrap > img {
	transform: scale(1.1);
	transition: all 0.4s;
}

.interview_txt_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 0.8rem;
	margin-top: -2rem;
	width: 20.667rem;
	height: 9.7334rem;
	border: solid 3px var(--white_color);
	border-radius: 1rem;
	background-color: var(--black_color);
	z-index: 1;
}

.interview_slider {
	display: none;
}

.interview_txt_catch,
.interview_txt_name,
.interview_txt_lv {
	font-weight: 400;
	letter-spacing: 0.05em;
}

.interview_txt_catch {
	font-size: 1.1334rem;
	color: #72ff54;
}

.interview_txt_name {
	font-size: 2.2667rem;
	color: var(--white_color);
}

.interview_txt_lv {
	font-size: 1rem;
	color: var(--white_color);
}

.interview_area .more_btn {
	margin-right: auto;
	margin-left: auto;
	letter-spacing: 0.05em;
}

.interview_area .more_btn::before {
	left: 3rem;
}

/* ============
	responsive
================ */
@media screen and (max-width: 1280px) {
	.interview_cont {
		grid-template-columns: repeat(3, 16rem);
		justify-content: center;
		margin-bottom: 4.9334rem;
	}

	.interview_photo_wrap {
		width: 16rem;
		height: 16rem;
	}

	.interview_txt_wrap {
		row-gap: 0.8rem;
		width: 16rem;
		height: 8rem;
	}

	.interview_txt_catch {
		font-size: 1rem;
	}

	.interview_txt_name {
		font-size: 1.5334rem;
	}

	.interview_txt_lv {
		font-size: 0.8667rem;
	}
}

@media screen and (max-width: 1024px) {
	.interview_area {
		padding-top: 4.7334rem;
		padding-bottom: 5.6rem;
	}

	.interview_ttl_h2 {
		font-size: 1.4667rem;
		margin-bottom: 2.0667rem;
	}

	.interview_ttl_h3 {
		margin-bottom: 3.2rem;
		padding-top: 1.1334rem;
		padding-bottom: 1.1334rem;
		padding-left: 3.5rem;
		max-width: 18rem;
		width: 100%;
		font-size: 1.2667rem;
	}

	.interview_ttl_h3::before {
		left: 2.1334rem;
		width: 2.1334rem;
		height: 1.9334rem;
	}
}

@media screen and (max-width: 940px) {
	.interview_cont {
		column-gap: 2.6rem;
	}
}

@media screen and (max-width: 860px) {
	.interview_cont {
		display: none;
	}

	.interview_slider {
		display: block;
		position: relative;
		margin-bottom: 2.667rem;
		padding-bottom: 2.2667rem;
		overflow: visible;
	}

	.interview_slider .swiper-slide,
	.interview_slider .interview_cont_item {
		width: 16rem !important;
	}

	.interview_slider-button-next,
	.interview_slider-button-prev {
		position: absolute;
		top: 6.4667rem;
		z-index: 1;
	}

	.interview_slider-button-next {
		right: -3.1334rem;
	}

	.interview_slider-button-prev {
		left: -3.1334rem;
	}

	.interview_slider-swiper-pagination {
		position: absolute;
		bottom: 0 !important;
		text-align: center;
	}
}

@media screen and (max-width: 768px) {
	.loop_box {
		row-gap: 2.1334rem;
	}

	.loop_box01 {
		left: -0.5rem;
	}

	.loop_box02 {
		right: -0.5rem;
	}

	.loop_item {
		font-size: 2.2667rem;
	}

	.interview_slider-button-next {
		right: 0;
	}

	.interview_slider-button-prev {
		left: 0;
	}
}

@media screen and (max-width: 480px) {
	.interview_slider-button-next {
		right: -10px;
	}

	.interview_slider-button-prev {
		left: -10px;
	}
}

/* ===========================================
	entry
============================================== */
.entry_area {
	padding-top: 6.667rem;
	padding-bottom: 7.8667rem;
	background-position: center bottom;
	background-size: cover;
	background-image: url(../images/common/entry_bg_pc.png);
}

.entry_cont {
	padding-top: 4.667rem;
	padding-bottom: 5.1334rem;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
}

.entry_cont > img {
	margin-right: auto;
	margin-bottom: 2.1334rem;
	margin-left: auto;
}

.entry_ttl_h2 {
	margin-bottom: 2.667rem;
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-size: 1.7334rem;
	text-align: center;
	letter-spacing: 0.05em;
}

.entry_ttl_h2 > span {
	color: #008933;
}

.entry_cont .black_btn {
	margin-right: auto;
	margin-left: auto;
	padding-left: 3.2rem;
	width: 27.0667rem;
	height: 6.1334rem;
	font-size: 1.9334rem;
	letter-spacing: 0.05em;
	border: solid 2px #c3c3c3;
	border-radius: 5px;
	box-shadow: 6px 6px 0 #c3c3c3;
}

.entry_cont .black_btn:hover {
	box-shadow: none;
}

.entry_cont .black_btn::before {
	left: 5.3rem;
	width: 1.1334rem;
	height: 1.667rem;
}

/* ============
	responsive
================ */
@media screen and (max-width: 1024px) {
	.entry_area {
		padding-top: 4.8rem;
		padding-bottom: 12.334rem;
	}

	.entry_cont {
		padding: 2.7334rem 1.8667rem;
	}

	.entry_cont > img {
		margin-bottom: 1.5334rem;
		width: 3.7334rem;
		height: auto;
	}

	.entry_ttl_h2 {
		margin-bottom: 1.7667rem;
		font-size: 1.5334rem;
		line-height: 1.3;
	}

	.entry_ttl_h2 > .mb_br {
		display: block;
	}

	.entry_cont .black_btn {
		padding-left: 2.1334rem;
		width: 17.334rem;
		height: 5.1334rem;
		font-size: 1.2667rem;
		box-shadow: 2px 2px 0 #c3c3c3;
	}

	.entry_cont .black_btn::before {
		left: 3.0667rem;
	}
}

@media screen and (max-width: 540px) {
	.entry_area {
		background-image: url(../images/common/entry_bg_sp.png);
	}
}

/* ===========================================
	footer
============================================== */
.footer {
	padding-top: 3.5334rem;
	padding-bottom: 2.5334rem;
}

.footer_inner {
	justify-content: space-between;
}

.f_logo {
	margin-bottom: 3.2rem;
}

.f_logo:hover {
	opacity: 0.7;
}

.address_txt,
.f_tel_btn {
	font-size: 1.0667rem;
}

.address_txt + .f_tel_btn,
.f_tel_btn + .address_txt {
	margin-top: 1.0667rem;
}

.f_tel_btn {
	letter-spacing: 0.01em;
}

.map_btn {
	position: relative;
	display: inline;
	margin-left: 1.0667rem;
	padding-left: 1.2rem;
	font-family: 'DotGothic16', sans-serif;
	border-bottom: solid 1px var(--black_color);
}

.map_btn:hover {
	opacity: 0.7;
}

.map_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0.8rem;
	height: 1.2rem;
	background-position: center;
	background-size: contain;
	background-image: url(../images/common/map.svg);
}

.f_cont,
.f_cont_item {
	column-gap: 2.1334rem;
}

.f_cont_item > ul {
	width: 14rem;
}

.f_cont_item > ul > li + li {
	margin-top: 1.0667rem;
}

.f_cont_item > ul > li > a,
.f_cont_item > ul > li > ul > li > a {
	font-family: 'DotGothic16', sans-serif;
}

.f_cont_item > ul > li > a:hover,
.f_cont_item > ul > li > ul > li > a:hover {
	transform: translateX(1rem);
}

.f_cont_item > ul > li > a {
	position: relative;
	margin-bottom: 8px;
	padding-left: 1.8667rem;
	font-size: 1.2667rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.f_cont_item > ul > li > a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 0.8667rem;
	height: 1.334rem;
	background-position: center;
	background-size: contain;
	background-image: url(../images/common/triangle_green_icon.svg);
}

.copy {
	margin-top: 7.8rem;
	font-family: 'DotGothic16', sans-serif;
	font-size: 10px;
	letter-spacing: 0.05em;
}

.f_cont_item > ul > li > ul > li > a {
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 0.9334rem;
	color: #525252;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1280px) {
	.f_logo {
		margin-bottom: 2.667rem;
		width: 19.8667rem;
	}

	.f_cont_item > ul {
		width: auto;
	}

	.address_txt {
		margin-bottom: 9px;
		line-height: 1.6;
	}

	.address_txt,
	.f_tel_btn {
		font-size: 1rem;
	}

	.address_txt + .f_tel_btn,
	.f_tel_btn + .address_txt {
		margin-top: 0.8rem;
	}

	.f_cont_item > ul > li > a {
		padding-left: 1.2667rem;
		font-size: 1.0667rem;
	}
}

@media screen and (max-width: 1080px) {
	.footer {
		padding-bottom: 1.667rem;
	}

	.footer_inner {
		flex-direction: column;
		align-items: center;
		row-gap: 3.2rem;
	}

	.address_txt > .mb_br {
		display: block;
	}

	.address_txt .map_btn {
		margin-left: 0;
	}

	.copy {
		margin-top: 3.2rem;
		text-align: center;
	}
}

@media screen and (max-width: 600px) {
	.f_cont {
		justify-content: flex-end;
		column-gap: 1.4rem;
		width: 100%;
	}

	.f_cont_item {
		flex-direction: column;
		row-gap: 1rem;
		width: 50%;
	}

	.f_cont_item > ul {
		width: 100%;
	}

	.f_cont_item > ul > li > ul > li > a {
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 1.5;
	}
}
