@charset "utf-8";

@font-face {
	font-family: "";
	src: url("../font/") format("truetype");
}

html {
	/* scroll-padding-top: 120px; */
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	background-image: url(../img/bg_sp.webp);
	background-position: 50% 0;
	background-repeat: repeat;
	background-size: contain;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: #333333;
}

main {
	overflow: hidden;
}

table {
	border-collapse: collapse;
}

th,
td {
	border: 1px solid #000;
	padding: 16px 8px;
	font-weight: 400;
}

th {
	vertical-align: baseline;
}

img {
	width: 100%;
}

a :hover{
	cursor: pointer;
}

.inversion_x {
	transform: scale(-1, 1);
}

.inversion_y {
	transform: scale(1, -1);
}

@media screen and (min-width: 768px) {
	body {
		background-image: url(../img/bg_pc.webp);
		background-repeat: repeat;
		background-size: contain;
	}
}

@media screen and (min-width: 1280px) {
	
}

@media screen and (min-width: 1440px) {
	
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 60px;
	padding: 8px;
	background-color: transparent;
	/* background-color: rgba(245, 245, 245, 0.5); */
	/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
    transition: background-color 1s ease; /* ←ここでフワッと */
	z-index: 100;
}

.header.scrolled {
	background-color: rgba(0, 0, 0, 0.5);
}

.header_inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	width: 100%;
	height: 100%;
}

.header_inner_1 {
	width: 100%;
	height: 100%;
}

.header_logo {
	display: block;
	width: 60%;
}

.header_logo picture,
.header_logo img {
	display: block;
	width: 100%;
	height: auto;
    max-width: 100%;
    max-height: 100%;
}

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

@media screen and (min-width: 768px) {
	.header {
		height: auto;
		padding: 12px;
		/* background-color: rgba(243, 241, 245, 0.93); */
	}

	.header.scrolled {
		/* background-color: ; */
	}

	.header_inner {
		flex-direction: column-reverse;
		gap: 12px;
	}

	.header_inner_1 {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
		width: 100%;
	}

	.header_logo {
		width: 180px;
		height: auto;
		background-color: transparent;
	}

	.header_logo picture,
	.header_logo img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
	}

	.header_content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		width: max-content;
		max-width: 100%;
	}

	.header_content_inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		gap: 12px;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.header_btn {
		width: 100%;
	}

	.header_btn_inner {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		gap: 12px;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.header_btn_inner .btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0px;
		width: 180px;
		height: auto;
	}

	.header_btn_inner .btn img {
		width: max-content;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
	}

	.header_btn_inner .btn_1 {
		aspect-ratio: 168 / 37;
	}

	.header_btn_inner .btn_2 {
		aspect-ratio: 283 / 30;
	}

	.header_btn_inner .btn_3 {
		aspect-ratio: 261 / 41;
	}

	.header_list {
		width: max-content;
	}

	.header_list_inner {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-end;
		gap: 12px;
		width: 100%;
		margin: 0 auto 0;
	}

	.header_list_inner li {
		width: max-content;
		margin: 0 auto 0;
	}

	.header_list_inner li a {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 8px;
		font-size: 0.75rem;
		line-height: 1;
		color: #fff;
	}

	.header_list_inner li a::after {
		/* content: "";
		position: absolute;
		bottom: -4px;
		left: 50%;
		transform: translate(-50%, 0);
		width: 16px;
		height: 2px;
		background-color: #041E3E; */
	}

	.header_list_inner li a p:nth-of-type(1) {
		font-size: 0.888888889em;
		font-weight: 700;
		color: #c20000;
	}
}

@media screen and (min-width: 1280px) {
	.header {
		padding: 12px 24px;
	}

	.header_logo {
		width: 380px;
	}

	.header_btn_inner .btn {
		width: 240px;
	}

	.header_list_inner {
		gap: 24px;
	}

	.header_list_inner li a {
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 1440px) {
	.header {
		padding: 12px 36px;
	}

	.header_btn_inner {
		gap: 24px;
	}

	.header_btn_inner .btn {
		width: 300px;
	}

	.header_list_inner {
		gap: 48px;
	}
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.now {
	position: relative;
}

.now::before {
	content: none;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 12px;
	height: 4px;
	background-color: #c20000;
}

/* ---------------------------------------------------------------------------------------------------- */

.fv_top{
	position: relative;
	overflow: hidden;
}

.fv_top .inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
}

.fv_top .wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.fv_top .slider_wrap {
	width: 100%;
}

.fv_top .fv_text_1 {
	position: absolute;
	z-index: 1;
	top: 30%;
	left: 50%;
	transform: translate(-50%, 0);
	width: max-content;
	/* max-width: 100%; */
	height: max-content;
	max-height: 100%;
	margin: 0;
	text-align: left;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 5rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.25);
}

.fv_top .fv_text > * {
	display: block;
}

.fv_top .fv_text_1 > * {
	font-size: 1em;
}

.fv_top .fv_text_2 {
	position: absolute;
	z-index: 2;
	bottom: 10%;
	left: 5%;
	transform: translate(0, 0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	width: max-content;
	max-width: 100%;
	height: max-content;
	max-height: 100%;
	margin: 0;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.01em;
	color: #003f8e;
	text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
	text-shadow:
		1px 1px 1px #fff,
		-1px 1px 1px #fff,
		1px -1px 1px #fff,
		-1px -1px 1px #fff,
		1px 0 1px #fff,
		-1px 0 1px #fff,
		0 1px 1px #fff,
		0 -1px 1px #fff;
}

.fv_top .fv_text_2 > *:nth-of-type(1) {
	text-align: left;
	font-size: 1em;
}

.fv_top .fv_text_2 > *:nth-of-type(2) {
	text-align: left;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.5em;
}

.fv_top .fv_text .small {
	display: block;
	font-size: 0.5em;
	line-height: 3;
}

.fv_top .band {
	z-index: 1;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: 100%;
}

.fv_top .band::before {
    top: auto;
    bottom: 12.5%;
    left: auto;
    right: 0;
    transform: rotate(-45deg);
    height: 100px;
    transform-origin: top right;
	background-color: rgba(0, 62, 137, 0.875);
}

@media screen and (min-width: 768px) {
	.fv_top{}

	.fv_top .inner {}

	.fv_top .wrap {}

	.fv_top .fv_text_1 {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 11.5rem;
	}

	.fv_top .fv_text > * {}

	.fv_top .fv_text_1 > * {
		font-size: 1em;
	}

	.fv_top .fv_text_2 {
		left: 5%;
		transform: translate(0, 0);
		gap: 12px;
		line-height: 1.5;
	}

	.fv_top .fv_text_2 > *:nth-of-type(1) {
		font-size: 1em;
	}

	.fv_top .fv_text_2 > *:nth-of-type(2) {
		font-size: 0.371428571em;
	}

	.fv_top .band::before {
        bottom: 20%;
        height: 22.5%;
	}
}

@media screen and (min-width: 1280px) {
	.fv_top .fv_text_1 {
		font-size: 19rem;
	}

	.fv_top .fv_text_2 {
		font-size: 3.5rem;
	}
}

@media screen and (min-width: 1440px) {
	.fv_top .fv_text_1 {
		font-size: 22rem;
	}

	.fv_top .fv_text_2 {
		font-size: 4rem;
	}
}

@media screen and (min-width: 1920px) {
	.fv_top .fv_text_1 {
		font-size: 29rem;
	}

	.fv_top .fv_text_2 {
		font-size: 5rem;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.fv_other {
	position: relative;
	height: 240px;
	background-image: url(../img/fv_other.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 0;
}

.fv_other .inner {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.fv_other .wrap {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.fv_other .text_wrap {
	position: absolute;
	z-index: 2;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: max-content;
	max-width: 100%;
}

.fv_other .text_wrap .text {
	width: max-content;
	max-width: 100%;
	padding: 8px 12px;
	background-color: rgba(0, 62, 137, 0.875);
	line-height: 1;
	letter-spacing: 0.1em;
	color: #ffffff;
}

.fv_other .text_wrap .text_1 {
	font-size: 1.5rem;
	font-weight: 700;
}

.fv_other .text_wrap .text_2 {
	font-size: 3rem;
}

.fv_other .band {
	z-index: 1;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: 100%;
	overflow: hidden;
}

.fv_other .band::before {
    top: auto;
    bottom: 31.25%;
    left: auto;
    right: 0;
    transform: rotate(-57.25deg);
    height: 62.5px;
    transform-origin: top right;
	background-color: #003e89;
	opacity: 0.875;
}

@media screen and (min-width: 768px) {
	.fv_other {
		height: 300px;
	}

	.fv_other .inner {}

	.fv_other .wrap {}

	.fv_other .text_wrap {
		top: 60%;
	}

	.fv_other .text_wrap .text {}

	.fv_other .text_wrap .text_1 {}

	.fv_other .text_wrap .text_2 {}

	.fv_other .band {}

	.fv_other .band::before {}
}

@media screen and (min-width: 1280px) {
	.fv_other {
		height: auto;
		background-image: none;
	}

	.fv_other .text_wrap {
		left: 7.5%;
		transform: translate(0, 50%);
		gap: 0;
		align-items: flex-start;
	}

	.fv_other .text_wrap .text_2 {
		margin-left: 12px;
	}

	.fv_other .band::before {
		bottom: 22.5%;
        transform: rotate(-45deg);
        height: 30%;
	}
}

@media screen and (min-width: 1440px) {
	.fv_other .text_wrap {
		top: 50%;
	}

	.fv_other .text_wrap .text_1 {
		font-size: 1.875rem;
	}

	.fv_other .text_wrap .text_2 {
		font-size: 6.25rem;
	}
}

@media screen and (min-width: 1920px) {
	.fv_other .text_wrap {
		top: 60%;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.heading_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	width: 100%;
}

.heading {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 0;
	font-size: 2.25rem;
}

.heading > * {
	margin: 0;
	padding: 0;
	line-height: 1;
	letter-spacing: 0.04em;
}

.heading .main {
	position: relative;
	font-size: 0.6em;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.heading .sub {
	position: relative;
	font-size: 1em;
	font-weight: 900;
}

.heading .sub::before {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	height: 2px;
	background-color: transparent;
}

@media screen and (min-width: 768px) {
	
}

@media screen and (min-width: 1280px) {
	.heading {
		
	}
}

@media screen and (min-width: 1440px) {
	.heading {
		font-size: 4.375rem;
	}

	.heading .main {
		font-size: 0.428571429em;
	}

	.heading .sub::before {
		height: 4px;
	}
}

@media screen and (min-width: 1920px) {}

/* ---------------------------------------------------------------------------------------------------- */

.btn {
	width: 180px;
}

@media screen and (min-width: 1440px) {
	.btn {
		width: 200px;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.read-more-state {
	display: none;
}

.read-more-target {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

/* ---------------------------------------------------------------------------------------------------- */

.band_wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
	/* pointer-events: none; */
}

.band {
    position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	pointer-events: none;
}

.band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12000px;
    height: 60px;
    background-color: #3264a3;
    transform: rotate(55deg);
    transform-origin: top left;
	pointer-events: none;
}

.band_top_1::before {
	top: 600px;
	height: 120px;
}

.band_top_2::before {
	top: 880px;
	height: 60px;
}

.band_wrap .section {
	position: relative;
	z-index: 2;
}

@media screen and (min-width: 768px) {
	.band_top_1,
	.band_top_2 {
		top: 730px;
	}

	.band_top_1::before,
	.band_top_2::before {
		transform: translate(0, -100%) rotate(55deg);
		transform-origin: bottom left;
	}

	.band_top_1::before {
		top: 0;
		left: 120px;
	}

	.band_top_2::before {
		top: 0;
		left: 0;
	}
}

@media screen and (min-width: 1280px) {
	
}

@media screen and (min-width: 1440px) {
	.band_top_1,
	.band_top_2 {
		top: 23%;
	}

	.band_top_1::before,
	.band_top_2::before {
		transform: translate(0, -100%) rotate(60deg);
	}

	.band_top_1::before {
		left: 180px;
		height: 200px;
	}

	.band_top_2::before {
		height: 90px;
	}
}

@media screen and (min-width: 1920px) {
	.band_top_1,
	.band_top_2 {
		top: 21%;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.section {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background-image: url(../img/);
	background-size: contain;
	background-position: 50% 0;
	background-repeat: repeat;
	overflow: hidden;
}

.section .inner {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}

.section .wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.section .content_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	max-width: 100%;
}

.section .content_wrap .content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	max-width: 100%;
}

.section .content_wrap .content .item_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	max-width: 100%;
}

.section .content_wrap .content .item_wrap .item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	max-width: 100%;
}

.section .content_wrap .content .item_wrap .item .text_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	max-width: 100%;
}

.section .content_wrap .content .item_wrap .item .text {
	width: max-content;
	max-width: 100%;
}

@media screen and (min-width: 768px) {
	
}

@media screen and (min-width: 1280px) {
	
}

@media screen and (min-width: 1440px) {
	
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.section_floating {
	position: fixed;
	bottom: 0;
	z-index: 5;
}

.section_floating .inner {
	padding: 0;
}

.section_floating .wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto 0;
}

.section_floating .flex {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	width: 100%;
	margin: 0 auto 0;
}

.section_floating .flex .link {
	width: auto;
	height: auto;
}

.section_floating .flex .link img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
}

@media screen and (min-width: 768px) {
	
}

@media screen and (min-width: 1280px) {
	
}

@media screen and (min-width: 1440px) {
	
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.footer {}

.footer .inner {
	padding: 0;
}

.footer　.wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: 100%;
	margin: 0 auto 0;
}

.footer .text {
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}

.footer .text .highlight {
	font-size: 1.5rem;
}

.footer .logo {
	display: block;
}

.footer .logo picture,
.footer .logo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.footer .content_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
}

.footer .content_wrap .content_wrap_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
}

.footer .content_wrap .content_wrap_inner .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
}

.footer .content_wrap_1 {}

.footer .content_wrap_1 .content_wrap_inner {
	max-width: 1336px;
}

.footer .content_wrap_1 .content_wrap_inner .content_1 {
	gap: 36px;
	padding: 20% 0;
	background-image: url(../img/footer_bg_sp.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
}

.footer .content_wrap_1 .content_wrap_inner .content_1 .heading_wrap {
	width: max-content;
	max-width: 100%;
}

.footer .content_wrap_1 .content_wrap_inner .content_1 .heading_wrap .heading {
	align-items: center;
	margin: 0;
}

.footer .content_wrap_1 .content_wrap_inner .content_1 .btn_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 80%;
}

.footer .content_wrap_2 {
	padding: 20% 0;
}

.footer .content_wrap_2 .content_wrap_inner {
	gap: 48px;
}

.footer .content_wrap_2 .content_wrap_inner .content_1 {
	gap: 24px;
}

.footer .content_wrap_2 .content_wrap_inner .content_1 .logo {
	width: 90%;
}

.footer .content_wrap_2 .content_wrap_inner .content_1 .btn {
	width: 80%;
}

.footer .content_wrap_2 .content_2 {}

.footer .map {
    width: 100%;
}

.footer .map iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}

.footer .list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	width: 80%;
}

.footer .list li {
	position: relative;
	width: max-content;
}

.footer .list li a {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
	width: max-content;
	max-width: 100%;
	margin-right: auto;
	padding-left: 1rem;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	letter-spacing: 0.1em;
}

.footer .list li a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 0.75rem;
	height: 1px;
	background-color: #c20000;
}

.copyright {
	width: 100%;
	padding: 24px 5%;
	background-color: #003f8e;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.footer {
		background-image: none;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.footer .inner {}

	.footer .wrap {}

	.footer .text {}

	.footer .logo {}

	.footer .logo picture,
	.footer .logo img {}

	.footer .content_wrap {}

	.footer .content_wrap .content_wrap_inner {}

	.footer .content_wrap .content_wrap_inner .content {}

	.footer .content_wrap_1 {
		background-image: url(../img/footer_bg_pc.webp);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.footer .content_wrap_1 .content_wrap_inner {
		flex-direction: row;
		align-items: stretch;
		gap: 24px;
		width: 90%;
		padding: 2.5% 0;
	}

	.footer .content_wrap_1 .content_wrap_inner .content_1 {
		width: max-content;
		padding: 0;
		background-image: none;
	}

	.footer .content_wrap_1 .content_wrap_inner .content_1 .heading_wrap {}

	.footer .content_wrap_1 .content_wrap_inner .content_1 .heading_wrap .heading {}

	.footer .content_wrap_1 .content_wrap_inner .content_1 .btn_wrap {
		width: 240px;
	}

	.footer .content_wrap_1 .content_wrap_inner .content_2 {
		flex: 1;
	}

	.footer .content_wrap_2 {
		padding: 5% 0;
	}

	.footer .content_wrap_2 .content_wrap_inner {
		flex-direction: row;
		gap: 24px;
		width: 90%;
	}

	.footer .content_wrap_2 .content_wrap_inner .content_1 {
		width: max-content;
	}

	.footer .content_wrap_2 .content_wrap_inner .content_1 .logo {
		width: 300px;
	}

	.footer .content_wrap_2 .content_wrap_inner .content_1 .btn {
		width: 240px;
	}

	.footer .content_wrap_2 .content_wrap_inner .content_2 {
		flex: 1;
	}

	.footer .map {}

	.footer .map iframe {}

	.footer .list {}

	.footer .list li {}

	.footer .list li a {}
}

@media screen and (min-width: 1280px) {
	.footer .content_wrap_1 .content_wrap_inner {
		gap: 120px;
	}

	.footer .map iframe {
		aspect-ratio: 5 / 3;
	}

	.footer .list {
		flex-direction: row;
		gap: 36px;
		width: 100%;
	}
}

@media screen and (min-width: 1440px) {
	.footer .text {
		font-size: 1.125rem;
	}

	.footer .text .highlight {
		font-size: 1.5625rem;
	}

	.footer .content_wrap_1 .content_wrap_inner .content_1 {
		gap: 60px;
	}

	.footer .content_wrap_1 .content_wrap_inner .content_1 .btn_wrap {
		width: 420px;
	}

	.footer .content_wrap_2 .content_wrap_inner {
		gap: 48px;
	}

	.footer .content_wrap_2 .content_wrap_inner .content_1 .logo {
		width: 480px;
	}

	.footer .content_wrap_2 .content_wrap_inner .content_1 .btn {
		width: 360px;
	}

	.footer .list li {
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 1920px) {
	.footer .content_wrap_1 .content_wrap_inner {
		gap: 120px;
	}

	.footer .content_wrap_2 .content_wrap_inner {
		gap: 120px;
	}

	.footer .list {
		gap: 72px;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.pc_only {
	display: none;
}

.pc_only_2 {
	display: none;
}

.pc_only_3 {
	display: none;
}

.sp_only {
	display: inherit;
}

.sp_only_2 {
	display: inherit;
}

.sp_only_3 {
	display: inherit;
}

@media screen and (min-width: 768px) {
    .pc_only{
		display: inherit;
	}

	.sp_only{
		display: none;
	}
}

@media screen and (min-width: 1280px) {
	.pc_only_2 {
		display: inherit;
	}

	.sp_only_2{
		display: none;
	}
}

@media screen and (min-width: 1440px) {
	.pc_only_3 {
		display: inherit;
	}

	.sp_only_3 {
		display: none;
	}
}