@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/bg_sp.png);
	background-position: 50% 0;
	background-repeat: repeat;
	background-size: contain;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: #000000;
}

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

.en {
	/* font-family: ; */
}

.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.png);
		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-left: 8px;
	background-color: transparent;
	background-color: rgba(255, 255, 255, 1);
	/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
    transition: background-color 1s ease; /* ←ここでフワッと */
	z-index: 100;
}

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

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

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

.header_logo {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.header_logo .header_logo_content_1 {
	width: auto;
	height: max-content;
}

.header_logo .header_logo_content_1 img {
	width: auto;
	height: 2.5rem;
	aspect-ratio: 720 / 484;
}

.header_logo .header_logo_content_2 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}

.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: #ffffff; */
	}

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

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

	.header_logo {}

	.header_logo .header_logo_content_1 {}

	.header_logo .header_logo_content_1 img {
		height: 2.5rem;
	}

	.header_logo .header_logo_content_2 {
		font-size: 1.5rem;
	}

	.header_content {
		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_list {
		width: max-content;
		max-width: 100%;
	}

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

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

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

	.header_list_inner li a.now::after {
		content: "";
		position: absolute;
		bottom: -8px;
		left: 50%;
		transform: translate(-50%, 0);
		width: 16px;
		height: 1px;
		background-color: #B94091;
	}

	.header_btn {
		display: block;
		width: 120px;
	}
}

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

	.header_logo {}

	.header_logo .header_logo_content_1 {}

	.header_logo .header_logo_content_1 img {
		height: 3rem;
	}

	.header_logo .header_logo_content_2 {
		font-size: 2rem;
	}

	.header_content_wrap {
		gap: 24px;
	}

	.header_list_inner {
		gap: 16px;
	}

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

	.header_btn {
		width: 240px;
	}
}

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

	.header_logo {}

	.header_logo .header_logo_content_1 {}

	.header_logo .header_logo_content_1 img {
		height: 3.5rem;
	}

	.header_logo .header_logo_content_2 {
		font-size: 2.5rem;
	}

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

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

	.header_content_wrap {
		gap: 48px;
	}

	.header_list_inner {
		gap: 36px;
	}
}

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

.fv_top{
	position: relative;
}

.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_area {
	position: absolute;
	z-index: 1;
	bottom: -100px;
	left: 50%;
	transform: translate(-50%, 0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: 95%;
	height: auto;
	padding: 24px 0;
	background-color: rgba(185, 64, 145, 0.9);
}

.fv_top .fv_text_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: max-content;
	max-width: 100%;
	height: max-content;
	max-height: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 1.5rem;
}

.fv_top .fv_text {
	width: max-content;
	max-width: 100%;
	height: max-content;
	max-height: 100%;
	letter-spacing: 0.06em;
}

.fv_top .fv_text_1 {
	width: 90%;
	padding: 4px;
	background-color: #ffffff;
	text-align: center;
	font-family: "EB Garamond", serif;
	font-size: 0.67em;
	color: #B94091;
}

.fv_top .fv_text_2 {
	text-align: center;
	font-size: 1em;
	font-weight: 700;
	color: #fff;
}

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

	.fv_top .inner {}

	.fv_top .wrap {}

	.fv_top .slider_wrap {
		width: 60%;
		margin-left: auto;
	}

	.fv_top .fv_text_area {
		top: 50%;
		bottom: auto;
		left: 0;
		transform: translate(0, -50%);
		width: 60%;
		height: 75%;
	}

	.fv_top .fv_text_wrap {
		gap: 12px;
		width: max-content;
		max-width: 100%;
		font-size: 1.75rem;
	}

	.fv_top .fv_text_1 {
		width: 100%;
		font-size: 0.67em;
	}

	.fv_top .fv_text_2 {
		text-align: left;
	}
}

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

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

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

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

.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 .fv_text_area {
    position: absolute;
    z-index: 1;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 95%;
    height: auto;
    padding: 24px 0;
    background-color: rgba(185, 64, 145, 0.9);
}

.fv_other .fv_text_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: 100%;
    height: max-content;
    max-height: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 1.5rem;
}

.fv_other .fv_text {
    width: max-content;
    max-width: 100%;
    height: max-content;
    max-height: 100%;
    letter-spacing: 0.06em;
}

.fv_other .fv_text_1 {
    width: max-content;
	max-width: 100%;
    padding: 4px 12px;
    background-color: #ffffff;
    text-align: center;
    font-family: "EB Garamond", serif;
    font-size: 0.67em;
	white-space: nowrap;
    color: #B94091;
}

.fv_other .fv_text_2 {
    text-align: center;
    font-size: 1em;
    font-weight: 700;
    color: #fff;
}

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

	.fv_other .inner {}

	.fv_other .wrap {}

	.fv_other .fv_img {
		width: 57.5%;
		margin-left: auto;
	}

	.fv_other .fv_text_area {
		bottom: 0;
		left: 0;
		transform: translate(0, 0);
		width: 57.5%;
		height: 75%;
	}

	.fv_other .fv_text_wrap {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-75%, -50%);
	}

	.fv_other .fv_text {}

	.fv_other .fv_text_1 {
		width: 240px;
	}

	.fv_other .fv_text_2 {}
}

@media screen and (min-width: 1280px) {
	.fv_other .fv_text_wrap {
		font-size: 2.5rem;
	}

	.fv_other .fv_text_1 {
		min-width: 320px;
	}
}

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

	.fv_other .fv_text_1 {
		min-width: 400px;
	}
}

@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;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	font-size: 1.25rem;
}

.heading > * {
	margin: 0;
	padding: 0;
}

.heading .main {
	position: relative;
	font-size: 1em;
}

.heading .sub {
	position: relative;
	text-align: center;
	font-size: 1.2em;
	font-weight: 500;
}

.heading_top {}

.heading_top .main {
	padding: 0 12px;
	background-color: #B94091;
	font-family: "EB Garamond", serif;
	color: #ffffff;
}

.heading_other {
	position: relative;
	width: 100%;
	padding-bottom: 12px;
	border-bottom: 1px #D9D9D9 solid;
}

.heading_other::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 24px;
	height: 1px;
	background-color: #B94091;
}

.heading_other .main {
	font-size: 1.2em;
	font-weight: 700;
}

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

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

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

	.heading .main {}

	.heading .sub {
		font-size: 1.6em;
	}

	.heading_other {
		padding-bottom: 24px;
	}

	.heading_other::after {
		width: 48px;
	}

	.heading_other .main {
		font-size: 2em;
	}
}

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

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

.btn {
	/* width: 180px; */
}

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

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

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

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

.all {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

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

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

.section .img {
	display: block;
	width: 100%;
}

.section img {
	display: block;
	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 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 50%;
	height: auto;
	padding: 24px 0;
	color: #ffffff;
}

.section_floating .flex .link_1 {
	background-color: #0093EE;
}

.section_floating .flex .link_2 {
	background-color: #EEA300;
}

.section_floating .flex .link img {
    width: auto;
    max-width: 100%;
    height: 1rem;
    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) {
	
}

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

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

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

@media screen and (min-width: 768px) {
	.map {
		padding-top: calc(100% * (1 / 3));
	}

	.map iframe {}
}

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

.maxwidth {
	width: 95%;
	margin: 0 auto;
	/* padding: 120px 0;
	border: 12px dashed #484848;
	background-color: #a0a0a0; */
}

@media screen and (min-width: 768px) {
	.maxwidth {
		max-width: 1280px;
	}
}

@media screen and (min-width: 1920px) {
	.maxwidth {
		/* max-width: 1680px; */
	}
}

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

.footer {}

.footer .inner {
	padding-top: 20%;
	padding-bottom: 20%;
}

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

.footer .logo {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	width: max-content;
	max-width: 100%;
}

.footer .logo .logo_content_1 {
	width: auto;
    height: max-content;
}

.footer .logo .logo_content_1 img {
    width: auto;
    height: 2.5rem;
    aspect-ratio: 720 / 484;
}

.footer .logo .logo_content_2 {
	font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.footer .btn {
	display: block;
	width: 240px;
}

.footer .img picture,
.footer .img 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: 48px;
	width: 100%;
}

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

.footer .content_wrap .content_top {
	gap: 24px;
}

.footer .content_wrap .content_bottom {
	gap: 48px;
}

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

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

.footer .list li a {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
	width: max-content;
	max-width: 100%;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
	color: #000000;
}

.copyright {
	width: 100%;
	padding: 12px 5%;
	text-align: center;
	background-color: #000000;
	font-size: 0.875rem;
	color: #ffffff;
}

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

	.footer .inner {
		padding-top: 5%;
		padding-bottom: 3.75%;
	}

	.wrap {}

	.footer .text {}

	.footer .logo {}

	.footer .logo .logo_content_1 {}

	.footer .logo .logo_content_1 img {
		height: 2.5rem;
	}

	.footer .logo .logo_content_2 {
		font-size: 1.5rem;
	}

	.footer .btn {}

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

	.footer .content_wrap {}

	.footer .content_wrap .content {}

	.footer .content_wrap .content_top {}

	.footer .content_wrap .content_bottom {}

	.footer .list {}

	.footer .list li {}

	.footer .list li a {}

	.copyright {}
}

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

	.footer .logo .logo_content_1 {}

	.footer .logo .logo_content_1 img {
		height: 3rem;
	}

	.footer .logo .logo_content_2 {
		font-size: 2rem;
	}
}

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

	.footer .inner {
		padding-top: 3.75%;
		padding-bottom: 2.5%;
	}

	.wrap {}

	.footer .text {}

	.footer .logo {}

	.footer .logo .logo_content_1 {}

	.footer .logo .logo_content_1 img {
		height: 3.5rem;
	}

	.footer .logo .logo_content_2 {
		font-size: 2.5rem;
	}

	.footer .btn {}

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

	.footer .content_wrap {}

	.footer .content_wrap .content {}

	.footer .content_wrap .content_top {}

	.footer .content_wrap .content_bottom {}

	.footer .list {}

	.footer .list li {}

	.footer .list li a {}

	.copyright {}
}

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

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