@charset "utf-8";

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

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

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

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

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

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

a:hover {
	cursor: pointer;
}

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

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

.header.scrolled {
	background-color: #85BF9C;
}

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

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

.header_logo_wrap {
	display: none;
}

.header_logo_wrap .header_logo {
	display: block;
	width: auto;
	height: 100%;
	aspect-ratio: 323 / 84;
}

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

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

	.header.scrolled {}

	.header_inner {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: stretch;
		gap: 12px;
		padding: 0;
	}

	.header_logo_wrap {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 0;
		width: 25%;
		height: auto;
		aspect-ratio: 240 / 110;
	}

	.header_logo_wrap .header_logo {
		width: 100%;
		height: auto;
		aspect-ratio: 240 / 110;
		margin: 0;
		padding: 0;
		background-color: transparent;
	}

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

	.header_content_wrap {
		display: block;
		width: 100%;
	}

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

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

	.header_btn_wrap .header_btn {
		display: block;
		width: calc((100% - (12px * 2)) / 3);
	}

	.header_btn_wrap .header_btn_4 {
		width: max-content;
	}

	.header_btn_wrap .header_btn a {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0;
		width: max-content;
	}

	.header_btn_wrap .header_btn a img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
	}

	.header_btn_wrap .header_btn_4 a img {
		width: auto;
		height: 100%;
	}

	.header_list_wrap {
		width: max-content;
	}

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

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

	.header_list_wrap .header_list li a {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		font-family: "Noto Serif JP", serif;
		font-size: 0.75rem;
		font-weight: 500;
		line-height: 1;
		color: #fff;
	}
}

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

	.header_logo_wrap {
		width: 15%;
	}

	.header_content_wrap .header_content {
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		gap: 36px;
	}

	.header_btn_wrap {
		gap: 12px;
	}

	.header_list_wrap .header_list {
		gap: 36px;
	}

	.header_list_wrap .header_list li.list {
		position: relative;
	}

	.header_list_wrap .header_list li.list::after {
		content: "";
		position: absolute;
		top: 50%;
		right: -12px;
		transform: translate(0, -50%);
		display: inline-block;
		width: 8px;
		height: 4px;
		background: #fff;
		clip-path: polygon(0 0, 100% 0%, 50% 100%);
	}

	/* ----- プルダウン ----- */

	.header_list_wrap .header_list .dropdown_open {
		position: relative;
	}

	.header_list_wrap .header_list .dropdown_open .dropdown__lists {
		display: none;
	}

	.header_list_wrap .header_list .dropdown_open:hover .dropdown__lists {
		/* Gナビメニューにホバーしたら表示 */
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translate(-50%, 0);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0;
		width: max-content;
		max-width: 160px;
		padding-top: 12px;
	}

	.header_list_wrap .header_list .dropdown_open .dropdown__lists .dropdown__list {
		position: relative;
		width: 100%;
		padding: 8px 8px;
		border-bottom: 1px #EDEDED solid;
		background-color: #fff;
		/* border-radius: 4px; */
		transition: all .3s;
		text-align: center;
	}

	.header_list_wrap .header_list .dropdown_open .dropdown__lists .dropdown__list:last-child {
		border: 0;
	}

	.header_list_wrap .header_list .dropdown_open .dropdown__lists .dropdown__list a {
		display: block;
		width: 100%;
		font-size: 0.75rem;
		color: #395241;
		line-height: 1;
	}
}

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

	.header_logo_wrap {
		width: 12.5%;
	}

	.header_content_wrap .header_content {
		gap: 48px;
	}

	.header_list_wrap .header_list {
		gap: 48px;
	}

	.header_list_wrap .header_list li a {
		font-size: 0.875rem;
	}
}

@media screen and (min-width: 1920px) {
	.header {
		padding: 12px 192px 12px 84px;
	}

	.header_logo_wrap {
		width: 10%;
	}
}

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

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

.fv_1 .inner {}

.fv_1 .text_1 {
	position: absolute;
	z-index: 1;
	top: 10%;
	right: 2.5%;
	font-family: "Noto Serif JP", serif;
	font-size: 4rem;
	color: #F0F0F0;
	writing-mode: vertical-rl;
}

.fv_1 .text_1 span {
	display: block;
	width: max-content;
	max-width: 100%;
}

.fv_1 .text_wrap {
	position: absolute;
	z-index: 1;
	bottom: 14%;
	left: 12%;
	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;
	padding: 0;
}

.fv_1 .text_wrap .text_2 {
	width: max-content;
	max-width: 100%;
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	color: #fff;
}

.fv_1 .text_wrap .text_2 span {
	display: block;
	width: max-content;
	max-width: 100%;
}

.fv_1 .text_wrap .text_3 {
	width: max-content;
	max-width: 100%;
	font-family: "Forum", serif;
	font-size: 1rem;
	color: #fff;
}

.fv_1 .text_wrap .text_3 span {
	display: block;
	width: max-content;
	max-width: 100%;
}

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

	.fv_1 .inner {}

	.fv_1 .text_1 {
		top: 26%;
		right: 34%;
		font-size: 2.7rem;
	}

	.fv_1 .text_1 span {}

	.fv_1 .text_wrap {
		bottom: 15.5%;
		left: 8.5%;
	}

	.fv_1 .text_wrap .text_2 {
		font-size: 0.8rem;
	}

	.fv_1 .text_wrap .text_2 span {}

	.fv_1 .text_wrap .text_3 {
		font-size: 0.8rem;
	}

	.fv_1 .text_wrap .text_3 span {}
}

@media screen and (min-width: 1280px) {
	.fv_1 .text_1 {
        top: 19.5%;
        right: 34.5%;
        font-size: 4.5rem;
	}

	.fv_1 .text_wrap {
		bottom: 16%;
		left: 8.5%;
	}

	.fv_1 .text_wrap .text_2 {
		font-size: 1.3rem;
	}

	.fv_1 .text_wrap .text_3 {
		font-size: 1.3rem;
	}
}

@media screen and (min-width: 1440px) {
	.fv_1 .text_1 {
        top: 19.5%;
        right: 34.5%;
        font-size: 5.1rem;
	}

	.fv_1 .text_wrap {
		bottom: 16%;
		left: 8.5%;
	}

	.fv_1 .text_wrap .text_2 {
		font-size: 1.5rem;
	}

	.fv_1 .text_wrap .text_3 {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 1920px) {
	.fv_1 .text_1 {
        top: 19.5%;
        right: 34.5%;
        font-size: 6.8rem;
	}

	.fv_1 .text_wrap {
		bottom: 16.5%;
		left: 8.5%;
	}

	.fv_1 .text_wrap .text_2 {
		font-size: 2.1rem;
	}

	.fv_1 .text_wrap .text_3 {
		font-size: 2rem;
	}
}

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

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

.fv_2 .section_inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
}

.fv_2 .inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.fv_2 .text_wrap {
	position: absolute;
	z-index: 0;
	top: 60%;
	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: 2.4rem;
	font-weight: 700;
}

.fv_2 .text_wrap .text {
	width: max-content;
	max-width: 100%;
	line-height: 1;
}

.fv_2 .text_wrap .text_1 {
	font-family: "Noto Serif JP", serif;
	font-size: 1em;
	font-weight: 700;
}

.fv_2 .text_wrap .text_2 {
	font-family: "Noto Serif JP", serif;
	font-size: 0.33em;
}

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

	.fv_2 .section_inner {}

	.fv_2 .inner {}

	.fv_2 .img {
		padding: 0 0 0 20%;
	}

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

	.fv_2 .text_wrap .text {}

	.fv_2 .text_wrap .text_1 {}

	.fv_2 .text_wrap .text_2 {}
}

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

	.fv_2 .section_inner {}

	.fv_2 .section_container {}

	.fv_2 .text_wrap {
		font-size: 3.65rem;
	}

	.fv_2 .text_wrap .text {}

	.fv_2 .text_wrap .text_1 {}

	.fv_2 .text_wrap .text_2 {}
}

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

	.fv_2 .section_inner {}

	.fv_2 .section_container {}

	.fv_2 .text_wrap {
		gap: 24px;
		font-size: 4.9rem;
	}

	.fv_2 .text_wrap .text {}

	.fv_2 .text_wrap .text_1 {}

	.fv_2 .text_wrap .text_2 {}
}

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

	.fv_2 .section_inner {}

	.fv_2 .section_container {}

	.fv_2 .text_wrap {
		font-size: 6rem;
	}

	.fv_2 .text_wrap .text {}

	.fv_2 .text_wrap .text_1 {}

	.fv_2 .text_wrap .text_2 {}
}

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

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

.section_inner {
	width: 100%;
	margin: 0;
	padding: 0;
}

@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;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 5;
}

.section_floating .section_inner {
	padding: 0;
}

.section_floating .section_container_inner {
	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-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px 12px;
	width: 80%;
	margin: 0 auto 0;
	padding: 12px 0;
}

.section_floating .flex .link {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: calc((100% - (12px * 1)) / 2);
	height: auto;
}

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

.section_floating .flex .link_4 img {
    width: auto;
    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) {
	
}

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

.heading_wrap {
	position: relative;
	width: 100%;
}

.heading {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: max-content;
	max-width: 100%;
	margin: 0;
	padding: 0;
	font-size: 2rem;
}

.heading > * {
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0;
	padding: 0;
	/* letter-spacing: 0.1em; */
}

.heading .main {
	position: relative;
	font-family: "Baskervville", serif;
	font-size: 1em;
	/* font-weight: 700; */
}

.heading .sub {
	position: relative;
	font-size: 1rem;
}

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

@media screen and (min-width: 768px) {
	.heading {
		flex-direction: row;
	}
}

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

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

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

}

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

.band {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
    bottom: -5vw;
    right: 0;
	z-index: 0;
}

.band::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 150%;
    height: 60px;
    background-color: #fe6628;
    transform: rotate(45deg);
    transform-origin: top left;
}

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

.btn {
	/* display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: fit-content;
	margin: 0 auto;
	padding: 12px 36px;
	background-color: #fff;
	border-radius: 60px;
	font-weight: 700;
	color: #ccc; */
	width: 240px;
}

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

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

.mouse_drag_scroll {
	cursor: grab;
}

.mouse_drag_scroll:active {
	cursor: grabbing;
}

@media screen and (min-width: 768px) {
	.mouse_drag_scroll {
		cursor: auto;
	}

	.mouse_drag_scroll:active {
		cursor: auto;
	}
}

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

.map {
    /* width: 100%; */
}

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

@media screen and (min-width: 768px) {
	.map iframe {
		/* aspect-ratio: 2 / 1; */
	}
}

@media screen and (min-width: 1280px) {
	.map iframe {
		/* aspect-ratio: 3 / 1; */
	}
}

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

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

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

.section_store {
	position: relative;
	background-color: #eeeeee;
	background-image: url(../img/);
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.section_store::before,
.section_store::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fe6628;
}

.section_store::before {
	width: 100%;
	height: 12px;
}

.section_store::after {
	width: 12px;
	height: 100%;
}

.section_store .section_inner {
	padding: 20% 0;
}

.section_store .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 48px;
}

.section_store .heading_wrap {
	align-items: flex-start;
	width: 90%;
	margin: 0 auto 0;
}

.section_store .heading_wrap .heading {
	align-items: flex-end;
}

.section_store .heading_wrap .heading .main {
	
}

.section_store .heading_wrap .heading .sub {
	
}

.section_store .content_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 36px;
	width: 90%;
	margin: 0 auto 0;
}

.section_store .content_wrap .content {
	width: 100%;
}

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

.section_store .content_wrap .content .content_inner .text {
	width: max-content;
	max-width: 100%;
	margin-right: auto;
	padding: 0.5em;
	background-color: #fe6628;
	font-size: 1.5rem;
	line-height: 1;
	color: #fff;
}

.section_store .content_wrap .content .content_inner table {
	width: 100%;
}

.section_store .content_wrap .content .content_inner table tr {
	width: 100%;
}

.section_store .content_wrap .content .content_inner table tr th,
.section_store .content_wrap .content .content_inner table tr td {
	display: block;
	border: 0;
	border-bottom: 1px #b2b2b2 solid;
}

.section_store .content_wrap .content .content_inner table tr th {
	width: 100%;
}

.section_store .content_wrap .content .content_inner table tr td {
	width: 100%;
}

.section_store .content_wrap .content .content_inner .btn {
	position: relative;
	width: 75%;
	padding: 1em 2em 1em 1em;
	border: 2px #00255b solid;
	text-align: center;
	line-height: 1;
	color: #00255b;
}

.section_store .content_wrap .content .content_inner .btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 60px;
	height: 2px;
	border-radius: 0 2px 2px 0;
	background-color: #00255b;
	transform: translate(37.5%, -50%);
}

.section_store .content_wrap .content .content_inner .btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 2px;
	border-radius: 0 2px 2px 0;
	background-color: #00255b;
	transform: translate(187.5%, -60%) rotate(60deg);
	transform-origin: calc(100% - 1px) 50%;
}

.section_store .content_wrap .content .content_inner .map {
	width: 100%;
}

.section_store .content_wrap .content .content_inner .map iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
}

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

	.section_store::before,
	.section_store::after {}

	.section_store::before {
		background: linear-gradient(90deg, #fff 0%, #fff 5%, #fe6628 5%, #fe6628 100%);
	}

	.section_store::after {
		width: 24px;
	}

	.section_store .section_inner {
		padding: 10% 0;
	}

	.section_store .inner {}

	.section_store .heading_wrap {
		align-items: center;
	}

	.section_store .heading_wrap .heading {}

	.section_store .heading_wrap .heading .main {}

	.section_store .heading_wrap .heading .sub {}

	.section_store .content_wrap {
		flex-direction: row;
	}

	.section_store .content_wrap .content {}

	.section_store .content_wrap .content .content_inner {}

	.section_store .content_wrap .content .content_inner .text {}

	.section_store .content_wrap .content .content_inner table {}

	.section_store .content_wrap .content .content_inner table tr {}

	.section_store .content_wrap .content .content_inner table tr th,
	.section_store .content_wrap .content .content_inner table tr td {
		display: table-cell;
	}

	.section_store .content_wrap .content .content_inner table tr th {
		width: 30%;
	}

	.section_store .content_wrap .content .content_inner table tr td {
		width: 70%;
	}

	.section_store .content_wrap .content .content_inner .btn {
		width: 60%;
	}

	.section_store .content_wrap .content .content_inner .btn::before {}

	.section_store .content_wrap .content .content_inner .btn::after {}

	.section_store .content_wrap .content .content_inner .map {}

	.section_store .content_wrap .content .content_inner .map iframe {}
}

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

	.section_store::before,
	.section_store::after {}

	.section_store::before {
		height: 24px;
	}

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

	.section_store .section_inner {}

	.section_store .inner {}

	.section_store .heading_wrap {
		width: 80%;
	}

	.section_store .heading_wrap .heading {}

	.section_store .heading_wrap .heading .main {}

	.section_store .heading_wrap .heading .sub {}

	.section_store .content_wrap {
		width: 80%;
	}

	.section_store .content_wrap .content {}

	.section_store .content_wrap .content .content_inner {}

	.section_store .content_wrap .content .content_inner .text {}

	.section_store .content_wrap .content .content_inner table {}

	.section_store .content_wrap .content .content_inner table tr {}

	.section_store .content_wrap .content .content_inner table tr th,
	.section_store .content_wrap .content .content_inner table tr td {}

	.section_store .content_wrap .content .content_inner table tr th {}

	.section_store .content_wrap .content .content_inner table tr td {}

	.section_store .content_wrap .content .content_inner .btn {
		width: 40%;
	}

	.section_store .content_wrap .content .content_inner .btn::before {}

	.section_store .content_wrap .content .content_inner .btn::after {}

	.section_store .content_wrap .content .content_inner .map {}

	.section_store .content_wrap .content .content_inner .map iframe {}
}

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

	.section_store::before,
	.section_store::after {}

	.section_store::before {
		height: 36px;
	}

	.section_store::after {
		width: 72px;
	}

	.section_store .section_inner {}

	.section_store .inner {
		gap: 136px;
	}

	.section_store .heading_wrap {}

	.section_store .heading_wrap .heading {}

	.section_store .heading_wrap .heading .main {}

	.section_store .heading_wrap .heading .sub {}

	.section_store .content_wrap {
		gap: 72px;
		width: 70%;
	}

	.section_store .content_wrap .content {}

	.section_store .content_wrap .content .content_inner {
		gap: 48px;
	}

	.section_store .content_wrap .content .content_inner .text {}

	.section_store .content_wrap .content .content_inner table {}

	.section_store .content_wrap .content .content_inner table tr {}

	.section_store .content_wrap .content .content_inner table tr th,
	.section_store .content_wrap .content .content_inner table tr td {
		font-size: 1.125rem;
	}

	.section_store .content_wrap .content .content_inner table tr th {}

	.section_store .content_wrap .content .content_inner table tr td {}

	.section_store .content_wrap .content .content_inner .btn {
		width: 50%;
		font-size: 1.125rem;
	}

	.section_store .content_wrap .content .content_inner .btn::before {}

	.section_store .content_wrap .content .content_inner .btn::after {}

	.section_store .content_wrap .content .content_inner .map {}

	.section_store .content_wrap .content .content_inner .map iframe {}
}

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

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

.footer {}

.footer_inner {
	padding: 0;
}

.footer .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	margin: 0 auto 0;
	padding: 20% 0 0;
}

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

.footer .content_1 {
	gap: 24px;
}

.footer .content_1 .logo {
	display: block;
	width: 50%
}

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

.footer .content_1 .text_wrap {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.footer .content_1 .text_wrap .text_1 {
	text-align: center;
}

.footer .content_1 .text_wrap .text_3 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.footer .content_1 .text_wrap .text_3 .highlight {
	margin: 0 8px 0 0;
	padding: 2px 8px;
	background-color: #F0F0F0;
}

.footer .text {
	font-size: 0.75rem;
}

.footer .content_2 {
	gap: 24px;
}

.footer .content_2 .btn_wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	gap: 12px;
	width: max-content;
	max-width: 100%;
}

.footer .content_2 .btn_wrap .btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: calc((100% - (12px * 1)) / 2);
}

.footer .content_2 .btn_wrap .btn a {
	width: 100%;
	height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.footer .content_2 .btn_wrap .btn_4 a {
	width: auto;
	height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.footer .content_2 .btn_wrap .btn a img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.footer .content_2 .btn_wrap .btn_4 a img {
    width: auto;
    height: 100%;
}

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

.footer .content_2 .list li {
	position: relative;
	width: max-content;
	/* max-width: calc((100% - (8px * 7)) / 8); */
}

.footer .content_2 .list li a {
	width: max-content;
	max-width: 100%;
	font-family: "Noto Serif JP", serif;
	font-size: 0.6875rem;
	line-height: 1;
}

.footer .map {
	width: 90%;
	margin: 24px auto 0;
}

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

.copyright {
	display: block;
	width: 90%;
	margin: 0 auto 0;
	padding: 5% 0;
	background-color: transparent;
	text-align: center;
	font-size: 0.75rem;
}

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

	.footer_inner {}

	.footer .inner {
		flex-direction: row;
		justify-content: space-between;
		padding: 10% 0 0;
	}

	.footer .content {
		width: calc((100% - (24px * 1)) / 2);
	}

	.footer .content_1 {}

	.footer .content_1 .logo {}

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

	.footer .content_1 .text_wrap {}

	.footer .content_1 .text_wrap .text_1 {}

	.footer .content_1 .text_wrap .text_3 {}

	.footer .content_1 .text_wrap .text_3 .highlight {}

	.footer .text {}

	.footer .content_2 {
		flex-direction: column-reverse;
	}

	.footer .content_2 .btn_wrap {}

	.footer .content_2 .btn_wrap .btn {}

	.footer .content_2 .btn_wrap .btn a {}

	.footer .content_2 .btn_wrap .btn a img {}

	.footer .content_2 .btn_wrap .btn_4 a img {}

	.footer .content_2 .list {}

	.footer .content_2 .list li {}

	.footer .content_2 .list li a {}

	.footer .map {}

	.footer .map iframe {}

	.copyright {}
}

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

	.footer_inner {}

	.footer .inner {}

	.footer .content {}

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

	.footer .content_1 .logo {
		width: 25%;
	}

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

	.footer .content_1 .text_wrap {
		align-items: flex-start;
		flex: 1;
		gap: 12px;
	}

	.footer .content_1 .text_wrap .text_1 {
		text-align: left;
	}

	.footer .content_1 .text_wrap .text_3 {}

	.footer .content_1 .text_wrap .text_3 .highlight {}

	.footer .text {}

	.footer .content_2 {
		align-items: flex-end;
		gap: 12px;
	}

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

	.footer .content_2 .btn_wrap .btn {
		width: calc((100% - (12px * 3)) / 4);
	}

	.footer .content_2 .btn_wrap .btn_4 {
		width: max-content;
	}

	.footer .content_2 .btn_wrap .btn a {}

	.footer .content_2 .btn_wrap .btn a img {}

	.footer .content_2 .btn_wrap .btn_4 a img {}

	.footer .content_2 .list {
		justify-content: flex-end;
		width: 100%;
	}

	.footer .content_2 .list li {}

	.footer .content_2 .list li a {}

	.footer .map {
		margin: 60px auto 0;
	}

	.footer .map iframe {}

	.copyright {}
}

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

	.footer_inner {}

	.footer .inner {
		width: 70%;
	}

	.footer .content {}

	.footer .content_1 {}

	.footer .content_1 .logo {}

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

	.footer .content_1 .text_wrap {}

	.footer .content_1 .text_wrap .text_1 {}

	.footer .content_1 .text_wrap .text_3 {}

	.footer .content_1 .text_wrap .text_3 .highlight {}

	.footer .text {}

	.footer .content_2 {}

	.footer .content_2 .btn_wrap {
		gap: 24px;
	}

	.footer .content_2 .btn_wrap .btn {}

	.footer .content_2 .btn_wrap .btn_4 {}

	.footer .content_2 .btn_wrap .btn a {}

	.footer .content_2 .btn_wrap .btn a img {}

	.footer .content_2 .btn_wrap .btn_4 a img {}

	.footer .content_2 .list {
		gap: 24px;
	}

	.footer .content_2 .list li {}

	.footer .content_2 .list li a {}

	.footer .map {
		width: 70%;
	}

	.footer .map iframe {}

	.copyright {
		width: 70%;
		padding: 2.5% 0;
	}
}

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