@charset "utf-8";

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

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

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

body {
	background-color: transparent;
	font-family: "Noto Sans JP", sans-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.25);
}

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

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

.header_logo {
	display: block;
	width: 165px;
}

.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%;
}

.js_hover {
    position: relative;
    display: inline-block;
}

.js_hover::after {
    content: none;
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 16px;
    height: 4px;
    background-color: #25c600;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.js_hover:hover::after {
	content: "";
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

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

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

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

	.header_logo {
		width: 35%;
		max-width: 640px;
		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: auto;
	}

	.header_btn_inner {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
		width: auto;
		height: 24px;
		margin: 0;
		padding: 0;
	}

	.header_btn_inner .btn {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0;
		width: auto;
		height: 100%;
	}

	.header_btn_inner .btn img {
		width: auto;
		max-width: 100%;
		height: 100%;
		/* max-height: 100%; */
	}

	.header_btn_inner .btn_1 {
		height: 75%;
	}

	.header_btn_inner .btn_2 {}

	.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 .text {
		letter-spacing: 0.06em;
	}

	.header_list_inner li a .text_1 {
		font-weight: 700;
		color: #0090ff;
	}
}

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

	.header_logo {
		/* width: 380px; */
	}

	.header_btn_inner {
		gap: 24px;
		height: 32px;
	}

	.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: 48px;
		height: 40px;
	}

	.header_list_inner {
		gap: 48px;
	}
}

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

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

.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_wrap {
	position: absolute;
	z-index: 1;
	top: 52.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	max-width: 95%;
	height: max-content;
	max-height: 100%;
}

.fv_top .fv_text_wrap_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0px;
	width: 100%;
	font-size: 1.75rem;
}

.fv_top .fv_text {
	width: max-content;
	max-width: 100%;
	height: max-content;
	max-height: 100%;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.06em;
}

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

.fv_top .fv_text_2 {
	font-size: 2em;
}

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

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

	.fv_top .inner {}

	.fv_top .wrap {}

	.fv_top .slider_wrap {}

	.fv_top .fv_text_wrap {
		top: 55%;
		width: 90%;
		max-width: 1280px;
	}

	.fv_top .fv_text_wrap_inner {}

	.fv_top .fv_text {}

	.fv_top .fv_text_1 {}

	.fv_top .fv_text_2 {}
}

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

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

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

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

.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 .wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	aspect-ratio: 2 / 3;
	clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
	background-color: #0049c2;
	opacity: 0.75;
}

.fv_other .fv_text_wrap {
	position: absolute;
	z-index: 1;
	top: 62.5%;
	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%;
	font-size: 2rem;
}

.fv_other .fv_text_wrap_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: max-content;
	max-width: 100%;
}

.fv_other .fv_text {
	width: max-content;
	max-width: 100%;
	line-height: 1;
	letter-spacing: 0.01em;
	color: #ffffff;
}

.fv_other .fv_text_1 {
	font-size: 0.5em;
	font-weight: 700;
}

.fv_other .fv_text_2 {
	font-family: "arial_2";
	font-size: 1em;
}

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

	.fv_other .inner {}

	.fv_other .wrap {}

	.fv_other .wrap::before {
		aspect-ratio: 1 / 1;
	}

	.fv_other .fv_text_wrap {
		top: auto;
		bottom: -4px;
		transform: translate(-50%, 0);
		align-items: flex-start;
		width: 90%;
		max-width: 1280px;
	}

	.fv_other .fv_text_wrap_inner {
		align-items: flex-start;
		gap: 0;
	}

	.fv_other .fv_text {}

	.fv_other .fv_text_1 {
		font-size: 0.38em;
	}

	.fv_other .fv_text_2 {}
}

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

	.fv_other .fv_text_wrap {
		bottom: -7px;
		font-size: 3.8125rem;
	}
}

@media screen and (min-width: 1440px) {
	.fv_other .fv_text_wrap {
		bottom: -10px;
		font-size: 5.625rem;
	}
}

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

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

.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: 12px;
	margin: 0;
	padding: 0;
}

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

.heading .main {
	position: relative;
	font-size: 1.5rem;
	font-weight: 700;
}

.heading .sub {
	position: relative;
	font-family: "arial";
	font-size: 2.5rem;
	font-weight: 700;
}

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

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

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

	.heading .sub {
		font-size: 3.75rem;
	}
}

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

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

.maxwidth {
	width: 90%;
	max-width: 1280px;
}

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

.parallax {
	background-image:url('../img/');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.parallax_1 {
	aspect-ratio: 1 / 1;
	background-image:url('../img/parallax_1.webp');
}

.parallax_2 {
	background-image:url('../img/parallax_2.webp');
}

@media screen and (min-width: 768px) {
	.parallax_1 {
		aspect-ratio: 3 / 1;
	}
}

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

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

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

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

.btn_common {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 240px;
	padding: 12px;
	border: 2px #0049c2 solid;
	border-radius: 100vmax;
	background-color: #ffffff;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
}

.btn_common .text {
	position: relative;
	width: 100%;
	text-align: center;
}

.btn_common .text::before,
.btn_common .text::after {
	content: "";
	position: absolute;
	top: 60%;
	right: 0;
	transform: translate(0, -50%);
}

.btn_common .text::before {
	width: 24px;
	height: 2px;
	background-color: #1b1e1d;
}

.btn_common .text::after {
	top: calc(60% + 1px);
	transform: translate(0, -50%) rotate(45deg);
	width: 12px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-top: 2px solid #1b1e1d;
	border-right: 2px solid transparent;
}

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

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

.band_wrap {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.band {
    position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
	z-index: 0;
}

.band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12000px;
    height: 60px;
    background-color: #1590ef;
    transform: rotate(60deg);
    transform-origin: top left;
}

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

.band_top_2::before {
	top: calc(0px + (120px * 2) + 40px); /* .band_top_1::beforeのtop + .band_top_1::beforeの高さの2倍 + 隙間 */
	height: 60px; /* .band_top_1::beforeの高さの半分 */
}

.band_other_1::before {
	top: 120px;
	height: 120px;
}

.band_other_2::before {
	top: calc((120px * 2) * 1.75);
	height: 60px; /* .band_other_1::beforeの高さの半分 */
}

@media screen and (min-width: 768px) {
	.band_top_1::before {
		top: 120px;
	}

	.band_top_2::before {
		top: calc(120px + (180px * 2) + 40px);
	}

	.band_other_1::before,
	.band_other_2::before {
		transform: rotate(55deg);
	}

	.band_other_1::before {
		top: 240px;
	}

	.band_other_2::before {
		top: calc((240px * 2) * 1.0625);
	}
}

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

@media screen and (min-width: 1440px) {
	.band_other_1::before,
	.band_other_2::before {}

	.band_other_1::before {
		top: 360px;
		height: 240px;
	}

	.band_other_2::before {
		top: calc((360px * 2) * 1.25);
		height: 120px;
	}
}

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

.section {}

.section .inner {}

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

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

.section .content_wrap .content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	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%;
}

.section .content_wrap .content .item_wrap .item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	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%;
}

@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_common {}

.section_common .inner {
	padding: 20% 0;
}

.section_common .wrap {}

.section_common .heading_wrap {}

.section_common .heading_wrap .heading {}

.section_common .heading_wrap .heading .main {}

.section_common .heading_wrap .heading .sub {}

.section_common .content_wrap {}

.section_common .content_wrap .content {
	width: 90%;
	max-width: 1280px;
}

.section_common .content_wrap .content .item_wrap {
	gap: 12px;
}

.section_common .content_wrap .content .item_wrap .item {}

.section_common .content_wrap .content .item_wrap .item .text_wrap {}

.section_common .content_wrap .content .item_wrap .item .text_wrap .text {}

.section_common .content_wrap .content .item_wrap .item_1 {
	padding: 12px;
	background-color: #0049c2;
}

.section_common .content_wrap .content .item_wrap .item_1 .text_wrap .text {
	width: 100%;
	padding-left: calc(1.5rem * 1.5);
	font-size: 1.5rem;
	color: #ffffff;
}

.section_common .content_wrap .content .item_wrap .item_1 .text_wrap .text::before {
	content: "";
	position: absolute;
	top: calc(1.5rem * 1.5 / 5);
	left: 0;
	transform: translate(0, 0);
	width: auto;
	height: 1.5rem;
	aspect-ratio: 1 / 1;
	border-radius: 100vmax;
	background-color: #ffffff;
}

.section_common .content_wrap .content .item_wrap .item_2 {
	gap: 12px;
}

.section_common .content_wrap .content .item_wrap .item_2 .text_wrap .text_big {
	font-size: 1.25rem;
	font-weight: 700;
}

.section_common .content_wrap .content .item_wrap .item_2 .text_wrap .text {
	font-weight: 700;
	line-height: 2;
}

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

	.section_common .inner {
		padding: 10% 0;
	}

	.section_common .wrap {}

	.section_common .heading_wrap {}

	.section_common .heading_wrap .heading {}

	.section_common .heading_wrap .heading .main {}

	.section_common .heading_wrap .heading .sub {}

	.section_common .content_wrap {}

	.section_common .content_wrap .content {}

	.section_common .content_wrap .content .item_wrap {}

	.section_common .content_wrap .content .item_wrap .item {}

	.section_common .content_wrap .content .item_wrap .item .text_wrap {}

	.section_common .content_wrap .content .item_wrap .item .text_wrap .text {}

	.section_common .content_wrap .content .item_wrap .item_1 {
		padding: calc(1.5rem * 0.5) 1.5rem;
	}

	.section_common .content_wrap .content .item_wrap .item_1 .text_wrap .text {}

	.section_common .content_wrap .content .item_wrap .item_1 .text_wrap .text::before {}

	.section_common .content_wrap .content .item_wrap .item_2 {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
	}

	.section_common .content_wrap .content .item_wrap .item_2.reverse {
		flex-direction: row-reverse;
	}

	.section_common .content_wrap .content .item_wrap .item_2 > * {
		width: calc((100% - (12px * 1)) / 2);
	}

	.section_common .content_wrap .content .item_wrap .item_2 .text_wrap {
		gap: 12px;
		padding-top: 12px;
	}

	.section_common .content_wrap .content .item_wrap .item_2 .text_wrap .text_big {}

	.section_common .content_wrap .content .item_wrap .item_2 .text_wrap .text {}
}

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

@media screen and (min-width: 1440px) {
	.section_common .content_wrap .content .item_wrap {
		gap: 20px;
	}

	.section_common .content_wrap .content .item_wrap .item_1 {
		padding: calc(1.875rem * 0.5) 1.875rem;
	}

	.section_common .content_wrap .content .item_wrap .item_1 .text_wrap .text {
		padding-left: calc(1.875rem * 2);
		font-size: 1.875rem;
	}

	.section_common .content_wrap .content .item_wrap .item_1 .text_wrap .text::before {
		top: calc(1.875rem * 1.5 / 5);
		height: 1.875rem;
	}

	.section_common .content_wrap .content .item_wrap .item_2 {
		gap: 20px;
	}

	.section_common .content_wrap .content .item_wrap .item_2 .text_wrap {
		padding-top: 20px;
	}

	.section_common .content_wrap .content .item_wrap .item_2 .text_wrap .text_big {
		font-size: 1.625rem;
	}

	.section_common .content_wrap .content .item_wrap .item_2 .text_wrap .text {
		font-size: 1.125rem;
	}
}

@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 {
	background-color: #333333;
}

.footer .inner {
	padding: 0;
}

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

.footer .heading .main {
	color: #ffffff;
}

.footer .heading .sub {
	color: #ffffff;
}

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

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

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

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

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

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

.footer .content_top .content_wrap .content {
	width: 90%;
	max-width: 1280px;
}

.footer .logo {
	display: block;
	width: 180px;
}

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

.footer .map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: calc(100% * (2 / 3));
    overflow-y: hidden;
}

.footer .map iframe {
	position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: calc(100% + (150px * 2));
}

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

.footer .text_wrap .text {
	color: #ffffff;
}

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

.footer .btn_wrap .btn {
	display: block;
	width: 100%;
}

.footer .list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 36px 8px;
	width: max-content;
	max-width: 100%;
}

.footer .list li {
	position: relative;
	width: calc((100% - (8px * 2)) / 3);
}

.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;
	line-height: 1;
	letter-spacing: 0.1em;
}

.footer .list li a .text {
	color: #ffffff;
}

.copyright {
	width: 100%;
	padding: 2.5% 5%;
	background-color: #0090ff;
	text-align: center;
	color: #fff;
}

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

	.footer .inner {}

	.footer .wrap {}

	.footer .heading .main {}

	.footer .heading .sub {}

	.footer .content_top {
		padding: 10% 0;
	}

	.footer .content_bottom {}

	.footer .content_wrap {}

	.footer .content_wrap .content {}

	.footer .content_wrap .content .item_wrap {}

	.footer .content_wrap .content .item_wrap .item {}

	.footer .content_top .content_wrap .content_2 .item_wrap {
		flex-direction: row;
		justify-content: space-between;
		gap: 48px;
	}

	.footer .content_top .content_wrap .content_2 .item_wrap .item {
		/* width: calc((100% - (48px * 1)) / 2); */
	}

	.footer .content_top .content_wrap .content_2 .item_wrap .item_1 {
		width: max-content;
		max-width: 100%;
	}

	.footer .content_top .content_wrap .content_2 .item_wrap .item_2 {
		flex: 1;
	}

	.footer .logo {}

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

	.footer .map {
		padding-top: calc(100% * (1 / 4));
	}

	.footer .map iframe {}

	.footer .text_wrap {}

	.footer .text_wrap .text {}

	.footer .btn_wrap {
		flex-direction: row;
		gap: 12px;
		width: 100%;
	}

	.footer .btn_wrap .btn {
		width: calc((100% - (12px * 1)) / 2);
	}

	.footer .list {
		justify-content: center;
		align-items: center;
		gap: 24px;
	}

	.footer .list li {
		width: max-content;
		max-width: 100%;
	}

	.footer .list li a {}

	.footer .list li a .text {}

	.copyright {}
}

@media screen and (min-width: 1280px) {
	.footer .content_top .content_wrap .content_2 .item_wrap {
		gap: 84px;
	}

	.footer .content_top .content_wrap .content_2 .item_wrap .item_1 {
		padding-left: 5%;
	}

	.footer .btn_wrap {
		gap: 36px;
	}
}

@media screen and (min-width: 1440px) {
	.footer .content_wrap {
		gap: 108px;
	}

	.footer .content_top .content_wrap .content_2 .item_wrap {
		gap: 120px;
	}

	.footer .content_top .content_wrap .content_2 .item_wrap .item_1 {
		gap: 24px;
	}

	.footer .logo {
		width: 320px;
	}

	.footer .text_wrap .text {
		font-size: 1.125rem;
	}

	.footer .btn_wrap {
		gap: 60px;
	}

	.footer .list {
		gap: 48px;
	}

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

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

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

.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;
	}
}
