@charset "utf-8";

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

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

body {
	background-color: #ffffff;
	background-image: url(../img/);
	background-position: 50% 0;
	background-repeat: repeat;
	background-size: contain;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.14em;
	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/);
		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 12px;
	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.js-scrolled {
	background-color: rgba(255, 255, 255, 1);
}

.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: auto;
	height: 100%;
}

.header_logo picture,
.header_logo img {
	display: block;
	width: auto;
	height: 100%;
    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.js-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: 60px;
		height: auto;
		background-color: transparent;
	}

	.header_logo picture,
	.header_logo img {
		width: 100%;
		max-width: 100%;
		height: auto;
		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: row-reverse;
		justify-content: center;
		align-items: center;
		gap: 24px;
		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: 120px;
		height: auto;
	}

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

	.header_list {
		width: max-content;
	}

	.header_list_inner {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-end;
		gap: 24px;
		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-family: "Noto Sans JP", sans-serif;
		font-size: 0.75rem;
		line-height: 1;
		color: #ffffff;
	}

	.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.js-scrolled {
		color: #CF0066;
	}
}

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

	.header_logo {}

	.header_btn_inner .btn {}

	.header_list_inner {
		gap: 24px;
	}

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

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

	.header_logo {
		width: 84px;
	}

	.header_btn_inner .btn {
		width: 168px;
	}

	.header_content_inner {
		gap: 48px;
	}

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

.fv_top .text_posi .text_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: max-content;
	height: max-content;
	font-size: 2.625rem;
}

.fv_top .text_posi .text_wrap .text {
	font-family: "Noto Serif JP", serif;
	text-align: center;
	color: #ffffff;
}

.fv_top .text_posi .text_wrap .text_1 {
	font-size: 0.6em;
	font-weight: 600;
}

.fv_top .text_posi .text_wrap .text_2 {
	font-size: 0.375em;
}

.fv_top .text_posi .text_wrap .text_3 {
	margin-top: 20px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.375em;
}

.fv_top .deco_posi {
	position: absolute;
	z-index: 1;
	top: 8%;
	right: 6.5%;
	transform: translate(0, 0);
	width: max-content;
	height: max-content;
}

.fv_top .deco_posi .deco_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: max-content;
	height: max-content;
	font-size: 3rem;
}

.fv_top .deco_posi .deco_wrap .deco {
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.fv_top .deco_posi .deco_wrap .deco_1 {
	font-size: 1em;
	writing-mode: vertical-lr;
	background: linear-gradient(180deg, rgba(254, 202, 220, 1), rgba(255, 250, 211, 1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fv_top .deco_posi .deco_wrap .deco_2 {
	font-size: 1em;
	color: #ffffff;
}

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

	.fv_top .inner {}

	.fv_top .wrap {}

	.fv_top .slider_wrap {}

	.fv_top .text_posi {
		top: 57%;
		left: 5%;
		transform: translate(0, 0);
	}

	.fv_top .text_posi .text_wrap {
		gap: 0.4em;
		font-size: 1.35rem;
	}

	.fv_top .text_posi .text_wrap .text {}

	.fv_top .text_posi .text_wrap .text_1 {}

	.fv_top .text_posi .text_wrap .text_2 {
		font-size: 0.4em;
	}

	.fv_top .text_posi .text_wrap .text_3 {
		margin-top: 8px;
		font-size: 0.4em;
	}

	.fv_top .deco_posi {
		top: 19%;
		right: 33%;
	}

	.fv_top .deco_posi .deco_wrap {
		gap: 20px;
		font-size: 3.3rem;
	}

	.fv_top .deco_posi .deco_wrap .deco {}

	.fv_top .deco_posi .deco_wrap .deco_1 {}

	.fv_top .deco_posi .deco_wrap .deco_2 {
		font-size: 1.28em;
	}
}

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

	.fv_top .deco_posi .deco_wrap {
		font-size: 5.4rem;
	}
}

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

	.fv_top .deco_posi .deco_wrap {
		font-size: 6.2rem;
	}
}

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

	.fv_top .deco_posi .deco_wrap {
		font-size: 8.2rem;
	}
}

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

.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_posi {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.fv_other .text_posi .text_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
}

.fv_other .text_posi .text_wrap .text {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 600;
	color: #CF0066;
}

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

	.fv_other .inner {}

	.fv_other .wrap {}

	.fv_other .text_posi {}

	.fv_other .text_posi .text_wrap {}

	.fv_other .text_posi .text_wrap .text {}
}

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

	.fv_other .text_posi .text_wrap .text {
		font-size: 2.25rem;
	}
}

@media screen and (min-width: 1440px) {
	.fv_other .text_posi .text_wrap .text {
		font-size: 2.5rem;
	}
}

@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: 16px;
	margin: 0;
	padding: 0;
	font-size: 1.875rem;
}

.heading::before {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translate(-50%, 100%);
	width: 84px;
	height: 8px;
	background-color: #CF0066;
}

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

.heading .main {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 0.53em;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.heading .sub {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 1em;
	font-weight: 600;
}

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

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

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

	.heading::before {
		bottom: -24px;
		width: 60px;
	}

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

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

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

.heading_other::before {
	width: 60px;
	height: auto;
	aspect-ratio: 266 / 40;
	background-color: transparent;
	background-image: url(../img/heading_deco.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.heading_other .main {
	font-family: "Noto Serif JP", serif;
}

.heading_other .sub .highlight {
	font-size: 1.2em;
	color: #CF0066;
}

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

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

@media screen and (min-width: 1440px) {
	.heading_other::before {
		bottom: -16px;
		width: 132px;
	}
}

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

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

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

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

.all.other {
	background-image: url(../img/other_bg.webp);
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (min-width: 768px) {
	.all.other {
		background-size: 135%;
	}
}

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

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

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

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

@keyframes loop-text {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}

.flow_text {
	position: absolute;
	width: 100%;
	overflow: hidden;
}

.flow_text span {
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	font-size: 4.25rem;
	color: #FFECF9;
	line-height: 1.5;
	white-space: nowrap;
	animation: loop-text 10s linear infinite;
}

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

@media screen and (min-width: 1280px) {
	.flow_text span {
		font-size: 7rem;
	}
}

@media screen and (min-width: 1440px) {
	.flow_text span {
		font-size: 6rem;
	}
}

@media screen and (min-width: 1920px) {
	.flow_text span {
		font-size: 8rem;
	}
}

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

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

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

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

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

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

.section .content_wrap .content .item_wrap .item .item_inner .img_wrap .img_wrap_inner img,
.section .content_wrap .content .item_wrap .item .item_inner .img_wrap .img_wrap_inner picture {
	width: 100%;
}

.section .content_wrap .content .item_wrap .item .item_inner .img_wrap .img_wrap_inner .img {
	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 {
	position: relative;
}

.footer .inner {
	position: relative;
	padding: 0;
}

.footer .wrap {
	position: relative;
	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 .img_wrap {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.footer .img_wrap .img {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: 28px;
}

.footer .logo {
	display: block;
	width: 30%;
}

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

.footer .map {
    width: 100%;
}

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

.footer .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 36px;
}

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

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

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

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

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

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

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

.footer .content_wrap .content_wrap_inner .content_top {
	background-image: url(../img/footer_bg_top_sp.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.footer .content_wrap .content_wrap_inner .content_top .content_inner {
	gap: 120px;
	padding: 20% 0 60%;
}

.footer .content_wrap .content_wrap_inner .content_top .content_inner .heading_wrap .heading .main {
	font-size: 0.8em;
	color: #ffffff;
}

.footer .content_wrap .content_wrap_inner .content_top .content_inner .heading_wrap .heading .sub {
	color: #ffffff;
}

.footer .content_wrap .content_wrap_inner .content_top .content_inner .btn {
	width: 90%;
}

.footer .content_wrap .content_wrap_inner .content_middle {
	background-image: url(../img/footer_bg_middle_sp.webp);
	background-position: 50% 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.footer .content_wrap .content_wrap_inner .content_middle .content_inner {
	gap: 48px;
	padding: 20% 0;
}

.footer .content_wrap .content_wrap_inner .content_middle .content_inner .heading_wrap .heading .main {
	color: #000000;
}

.footer .content_wrap .content_wrap_inner .content_middle .content_inner .heading_wrap .heading .sub {
	color: #000000;
}

.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table {
	width: 90%;
}

.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr th,
.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr td {
	display: block;
	border: 0;
	border-bottom: 1px #B5B5B5 solid;
	font-weight: 500;
	color: #000000;
}

.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr:last-child td {
	border: 0;
}

.footer .content_wrap .content_wrap_inner .content_bottom {
	background-color: rgba(254, 202, 220, 0.15);
}

.footer .content_wrap .content_wrap_inner .content_bottom .content_inner {
	gap: 48px;
	padding: 20% 0;
}

.copyright {
	width: 100%;
	padding: 24px 5%;
	background-image: linear-gradient(90deg, rgba(207, 0, 102, 1), rgba(231, 125, 157, 1) 36%, rgba(255, 250, 211, 1));
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	color: #fff;
}

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

	.footer .inner {}

	.footer .wrap {}

	.footer .text {}

	.footer .text .highlight {}

	.footer .img_wrap {}

	.footer .img_wrap .img {}

	.footer .logo {
		position: absolute;
		top: 50%;
		left: 15%;
		transform: translate(-50%, -50%);
		width: 120px;
	}

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

	.footer .map {}

	.footer .map iframe {}

	.footer .list {}

	.footer .list li {}

	.footer .list li a {}

	.footer .list li a::before {}

	.footer .content_wrap {}

	.footer .content_wrap .content_wrap_inner {}

	.footer .content_wrap .content_wrap_inner .content {}

	.footer .content_wrap .content_wrap_inner .content .content_inner {}

	.footer .content_wrap .content_wrap_inner .content .content_inner {}

	.footer .content_wrap .content_wrap_inner .content_top {
		background-image: url(../img/footer_bg_top_pc.webp);
	}

	.footer .content_wrap .content_wrap_inner .content_top .content_inner {
		gap: 60px;
		padding: 10% 0;
	}

	.footer .content_wrap .content_wrap_inner .content_top .content_inner .heading_wrap .heading .main {}

	.footer .content_wrap .content_wrap_inner .content_top .content_inner .heading_wrap .heading .sub {}

	.footer .content_wrap .content_wrap_inner .content_top .content_inner .btn {
		width: 300px;
	}

	.footer .content_wrap .content_wrap_inner .content_middle {
		background-image: url(../img/footer_bg_middle_pc.webp);
	}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner {
		padding: 5% 0;
	}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .heading_wrap .heading .main {}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .heading_wrap .heading .sub {}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table {
		width: 50%;
		max-width: 440px;
	}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr th,
	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr td {
		display: table-cell;
		width: 50%;
	}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr:last-child td {}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr th div,
	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr td div {
		width: 80%;
		margin: 0 auto;
	}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .btn {
		width: 45%;
		max-width: 400px;
	}

	.footer .content_wrap .content_wrap_inner .content_bottom {}

	.footer .content_wrap .content_wrap_inner .content_bottom .content_inner {
		padding: 5% 0;
	}

	.copyright {}
}

@media screen and (min-width: 1280px) {
	.footer .list {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

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

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr th div,
	.footer .content_wrap .content_wrap_inner .content_middle .content_inner .table tr td div {
		width: 70%;
	}
}

@media screen and (min-width: 1440px) {
	.footer .logo {
		left: 12.5%;
	}

	.footer .img_wrap {
		gap: 48px;
	}

	.footer .content_wrap .content_wrap_inner .content_top .content_inner {
		gap: 120px;
	}

	.footer .content_wrap .content_wrap_inner .content_top .content_inner .heading_wrap .heading .main {
		font-size: 0.6em;
	}

	.footer .content_wrap .content_wrap_inner .content_middle .content_inner {
		gap: 60px;
	}
}

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

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

.pc_only {
	display: none !important;
}

.pc_only_2 {
	display: none !important;
}

.pc_only_3 {
	display: none !important;
}

.sp_only {
	display: inherit !important;
}

.sp_only_2 {
	display: inherit !important;
}

.sp_only_3 {
	display: inherit !important;
}

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

	.sp_only{
		display: none !important;
	}
}

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

	.sp_only_2{
		display: none !important;
	}
}

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

	.sp_only_3 {
		display: none !important;
	}
}