@charset "utf-8";

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

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

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

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: 8px;
	background-color: transparent;
	background-color: rgba(0, 0, 0, 0.25);
	/* 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 {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	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_wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: max-content;
	max-width: 100%;
	height: max-content;
	max-height: 100%;
}

.header_logo {
	display: block;
	width: 95px;
	max-width: 100%;
	height: auto;
	/* max-height: 100%; */
}

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

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

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

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

	.header_inner {
		flex-direction: row;
		justify-content: flex-end;
		gap: 12px;
		width: 100%;
		max-width: 100%;
		margin: 0;
	}

	.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_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
		width: 180px;
		height: auto;
		max-height: none;
	}

	.header_logo {
		width: 90%;
	}

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

	.header_logo_flex_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
	}

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

	.header_logo_flex_wrap .flex .link {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		gap: 0;
	}

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

	.header_logo_flex_wrap .flex_3 .link {
		width: 42px;
	}

	.header_content {
		width: max-content;
		max-width: 100%;
	}

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

	.header_content_2 .header_content_inner {
		flex-direction: row;
	}

	.header_list {
		width: max-content;
		max-width: 100%;
	}

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

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

	.header_list_inner li .text {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		padding-top: 12px;
		font-size: 0.875rem;
		line-height: 1;
		color: #ffffff;
		writing-mode: vertical-rl;
	}

	.header_list_inner li .text.now::after {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0);
		width: 100%;
		height: 8px;
		background-color: #ee2204;
	}

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

	.header_btn img {
		width: 100%;
		height: auto;
	}

	.header_other {
		height: 60px;
		padding-bottom: 24px;
		background-color: rgba(0, 0, 0, 0.25);
	}

	.header_other .header_logo_wrap {
		width: 160px;
	}

	.header_other .header_content_wrap {
		align-items: stretch;
		gap: 8px;
	}

	.header_other .header_content_1 .header_content_inner {
		gap: 0;
	}

	.header_other .header_content_2 {
		width: auto;
	}

	.header_other .header_content_2 .header_content_inner {
		align-items: stretch;
		gap: 8px;
		width: auto;
	}

	.header_other .header_list_inner {
		gap: 24px;
	}

	.header_other .header_list_inner li .text {
		padding: 0;
		writing-mode: unset;
	}

	.header_other .header_list_inner li .text.now::after {
		top: auto;
		bottom: -18px;
		left: 50%;
		right: auto;
		width: 24px;
		height: 8px;
	}

	.header_other .header_list_1 .header_list_inner {
		align-items: center;
		gap: 12px;
	}

	.header_other .header_list_1 .header_list_inner a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0px;
	}

	.header_other .header_list_1 .header_list_inner img {
		width: auto;
		height: 1.25rem;
	}

	.header_other .header_list_1 .header_list_inner .text {
		font-size: 1.25rem;
		font-weight: 700;
		line-height: 1;
	}

	.header_other .header_list_1 .header_list_inner .text .highlight {
		font-size: 0.8em;
	}

	.header_other .header_btn {
		display: block;
		width: auto;
	}

	.header_other .header_btn img {
		width: auto;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
	}

	.header_other .header_btn_1 img {
		aspect-ratio: 185 / 59;
	}

	.header_other .header_btn_2 img {
		aspect-ratio: 119 / 59;
	}

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

	.dropdown_open {
		position: relative;
	}

	.dropdown_open::before {
		content: "";
		position: absolute;
		top: 50%;
		right: -12px;
		transform: translate(0, -62.5%) rotate(45deg);
		display: inline-block;
		width: 0.5em;
		height: 0.5em;
		border-bottom: 2px #ffffff solid;
		border-right: 2px #ffffff solid;
		/* background-color: #ffffff;
		clip-path: polygon(0 0, 100% 0%, 50% 100%); */
	}

	.dropdown_open .dropdown__lists {
		display: none;
	}

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

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

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

	.dropdown_open .dropdown__lists .dropdown__list a {
		display: block;
		width: 100%;
		font-size: 0.875rem;
		color: #ffffff;
		line-height: 1;
	}
}

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

	.header_inner {
		gap: 24px;
	}

	.header_logo_wrap {
		width: 240px;
	}

	.header_logo {}

	.header_content_wrap {
		gap: 24px;
	}

	.header_list_inner {
		gap: 16px;
	}

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

	.header_btn {
		width: 180px;
	}

	.header_other {
		height: auto;
		padding: 12px 12px 12px 24px;
		padding-bottom: 18px;
	}

	.header_other .header_content_wrap {
		gap: 12px;
	}

	.header_other .header_content_1 .header_content_inner {
		gap: 12px;
	}

	.header_other .header_list_1 .header_list_inner {
		gap: 24px;
	}

	.header_other .header_list_1 .header_list_inner .text {
		font-size: 1.5rem;
	}

	.dropdown_open .dropdown__lists .dropdown__list a {
		font-size: 1rem;
	}
}

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

	.header_logo_wrap {
		width: 300px;
	}

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

	.header_other {
		padding: 24px 24px 24px 48px;
		padding-bottom: 18px;
	}

	.header_other .header_content_wrap {
		gap: 24px;
	}

	.header_other .header_list_inner {
		gap: 48px;
	}

	.header_other .header_content_1 .header_content_inner {
		/* gap: 24px; */
	}

	.header_other .header_list_1 .header_list_inner .text {
		font-size: 1.875rem;
	}

	.header_other .header_list_1 .header_list_inner img {
		height: 1.875rem;
	}

	.dropdown_open::before {
		right: -18px;
	}

	.dropdown_open .dropdown__lists .dropdown__list a {
		font-size: 1.125rem;
	}
}

@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;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	gap: 0px;
	width: 100%;
	height: 100%;
}

.fv_top .slider_wrap {
	width: 100%;
}

.fv_top .fv_logo {}

.fv_top .fv_text_wrap {
	position: absolute;
	z-index: 1;
	top: 40%;
	left: 5%;
	transform: translate(0, 0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: max-content;
	max-width: 100%;
}

.fv_top .fv_text_flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.fv_top .fv_text {
	width: max-content;
	max-width: 100%;
	font-size: 2.8125rem;
	font-weight: 700;
	line-height: 1.5;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.fv_top .fv_text_1 {
	color: #fff;
}

.fv_top .fv_text_2 {
	color: #fff;
}

.fv_top .fv_text .highlight {
	font-size: 1.5em;
}

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

	.fv_top .inner {}

	.fv_top .wrap {}

	.fv_top .slider_wrap {}

	.fv_top .fv_logo {
		position: absolute;
        z-index: 2;
        top: 5%;
        left: 2.5%;
        width: 15%;
	}

	.fv_top .fv_deco_wrap {
		background-size: auto 45%;
	}

	.fv_top .fv_text_wrap {
		top: auto;
		top: 50%;
		bottom: auto;
		left: auto;
		right: 12px;
		transform: translate(0, -50%);
	}

	.fv_top .fv_text_flex {
		width: max-content;
		max-width: 100%;
	}

	.fv_top .fv_text {
		font-size: 1.5rem;
		letter-spacing: 0.1em;
	}

	.fv_top .fv_text_1 {}

	.fv_top .fv_text_2 {}
}

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

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

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

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

.fv_other {
	position: relative;
	height: 240px;
	background-image: url(../img/fv_other_1.png);
	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_wrap {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: max-content;
    height: auto;
}

.fv_other .fv_text_flex {
    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;
}

.fv_other .fv_text {
    width: max-content;
    max-width: 100%;
    height: max-content;
    max-height: 100%;
	font-size: 2rem;
    color: #ffffff;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

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

	.fv_other .inner {}

	.fv_other .wrap {}

	.fv_other .fv_text_wrap {}

	.fv_other .fv_text_flex {}

	.fv_other .fv_text {}
}

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

	.fv_other .fv_text {
		font-size: 2.875rem;
	}
}

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

@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: 18px;
	margin: 0;
	padding: 0;
}

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

.heading .main {
	position: relative;
	text-align: center;
	font-size: 2rem;
}

.heading .main::before {
	content: none;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: auto;
	height: 36px;
	aspect-ratio: 1 / 1;
	background-image: url(../img/heading_icon.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.heading .sub {
	position: relative;
	text-align: center;
	font-size: 1.5rem;
}

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

	.heading .main {}

	.heading .sub {}
}

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

	.heading .main {}

	.heading .sub {}
}

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

	.heading .main {
		font-size: 3.125rem;
	}

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

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

	.heading .main {}

	.heading .sub {}
}

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

.btn {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 260px;
	padding: 18px 0;
	border: 1px #ee2204 solid;
	line-height: 1;
	color: #ee2204;
}

.btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translate(0, -50%) rotate(45deg);
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-top: 2px #ee2204 solid;
	border-right: 2px #ee2204 solid;
}

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

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

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

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

/* この要素の子要素のwidthをpxで指定するとはみ出てスクロールできる */
/* jsの読み込みも必要 */

.js_scroll_wrap {
	width: 100%
}

.js_scroll_parent {
	overflow-x: scroll;
	cursor: grab;
	-webkit-overflow-scrolling: touch; /* スマホで滑らかに */
}

.js_scroll_parent:active {
	cursor: grabbing;
}

.js_scroll_child {
	width: 768px;
}

.js_scroll_note {
	margin-top: 0.875rem;
	font-size: 0.875rem;
	line-height: 1;
}

@media screen and (min-width: 768px) {
	.js_scroll_parent {
		overflow: auto;
		cursor:auto;
		-webkit-overflow-scrolling: unset;
	}

	.js_scroll_parent:active {
		cursor: auto;
	}

	.js_scroll_child {
		width: 100%;
	}

	.js_scroll_note {
		display: none;
	}
}

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

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

.all .section:first-child .inner {
	/* padding-top: 20%; */
}

.all .section:last-child .inner {
	/* padding-bottom: 20%; */
}

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

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

.section_common {
	background-image: url(../img/common_bg_sp.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

.section_common .wrap {}

.section_common .heading_wrap {}

.section_common .heading_wrap .heading {
	position: relative;
	width: 100%;
	padding-bottom: 12px;
}

.section_common .heading_wrap .heading::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	height: 1px;
	background-color: #ab903c;
}

.section_common .heading_wrap .heading .main {
	font-size: 2.5rem;
	font-weight: 700;
}

.section_common .heading_wrap .heading .sub {}

.section_common .content_wrap {
	gap: 48px;
	max-width: 1280px;
}

.section_common .content_wrap .content {
	width: 90%;
	gap: 48px;
}

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

.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 {
	font-weight: 700;
	line-height: 2;
}

.section_common .content_wrap .content .item_wrap .item .flex_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_common .content_wrap .content .item_wrap .item .flex_wrap .flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_common .content_wrap .content .item_wrap .item .flex_wrap .flex .img {
	width: 42px;
}

.section_common .content_wrap .content .item_wrap .item .flex_wrap .flex .text {
	font-weight: 700;
	line-height: 2;
}

.section_common .content_wrap .content_1 .item_wrap .item .text_wrap .text {
	text-align: center;
}

.section_common .content_wrap .content_1 .item_wrap .item_2 {
	width: 90%;
}

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

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

	.section_common .wrap {}

	.section_common .heading_wrap {}

	.section_common .heading_wrap .heading {}

	.section_common .heading_wrap .heading::before {}

	.section_common .heading_wrap .heading .main {}

	.section_common .heading_wrap .heading .sub {}

	.section_common .content_wrap {
		flex-direction: row;
		align-items: flex-start;
		gap: 24px;
		width: 90%;
	}

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

	.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 .flex_wrap {}

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

	.section_common .content_wrap .content .item_wrap .item .flex_wrap .flex .img {}

	.section_common .content_wrap .content .item_wrap .item .flex_wrap .flex .text {}

	.section_common .content_wrap .content_1 .item_wrap .item_2 {
		width: 75%;
	}

	.section_common .content_wrap .content_2 .item_wrap .item .flex_wrap .flex {
		flex-direction: row;
		justify-content: flex-start;
	}

	.section_common .content_wrap .content_2 .item_wrap .item .flex_wrap .flex_2 {
		align-items: flex-start;
	}

	.section_common .content_wrap .content_2 .item_wrap .item_1 {
		justify-content: center;
	}

	.section_common .content_wrap .content_2 .item_wrap .item_2 {
		width: 90%;
	}
}

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

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

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

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

	.section_common .content_wrap .content .item_wrap .item .flex_wrap {
		gap: 46px;
	}

	.section_common .content_wrap .content .item_wrap .item .flex_wrap .flex .text {
		font-size: 1.125rem;
	}

	.section_common .content_wrap .content_2 .item_wrap .item .flex_wrap .flex {
		gap: 72px;
	}
}

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

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

.section_menu {}

.section_menu .inner {}

.section_menu .wrap {
	background-image: url(../img/other_bg.png);
	background-position: 100% 0%;
	background-repeat: no-repeat;
	background-size: 50%;
}

.section_menu .heading_wrap {}

.section_menu .heading_wrap .heading {
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding-left: 48px;
}

.section_menu .heading_wrap .heading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	aspect-ratio: 68 / 110;
	background-image: url(../img/heading_deco.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.section_menu .heading_wrap .heading .main {
	text-align: left;
	font-size: 1.5rem;
}

.section_menu .heading_wrap .heading .sub {}

.section_menu .content_wrap {
	gap: 48px;
}

.section_menu .content_wrap .content {
	gap: 24px;
	width: 90%;
	max-width: 1280px;
}

.section_menu .content_wrap .content .item_wrap {
	gap: 24px;
}

.section_menu .content_wrap .content .item_wrap .item {
	gap: 24px;
}

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

.section_menu .content_wrap .content .item_wrap .item .text_wrap .text {
	font-weight: 700;
}

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

.section_menu .content_wrap .content .item_wrap .item .img_wrap img {
	width: 100%;
}

.section_menu .content_wrap .content_top .text_posi {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: #444444;
	opacity: 0.75;
}

.section_menu .content_wrap .content_top .item_wrap .item .text_wrap .text {
	width: 100%;
	line-height: 2;
}

.section_menu .content_wrap .content_other .item_wrap .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_menu .content_wrap .content_other .item_wrap .box .item {
	width: 100%;
}

.section_menu .content_wrap .content_other .item_wrap .item .text_wrap {
	height: 84px;
	padding: 12px;
	background-color: #765c0a;
}

.section_menu .content_wrap .content_other .item_wrap .item .text_wrap::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -8px;
	right: -8px;
	width: 100%;
	height: 100%;
	border: 1px #ffffff solid;
}

.section_menu .content_wrap .content_other .item_wrap .item .text_wrap .text {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 1.25rem;
	text-align: center;
}

.section_menu .content_wrap .content_other .item_wrap .item .text_wrap .text .highlight {
	font-size: 0.75em;
}

.section_menu .content_wrap .content_other .item_wrap .item .list_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_menu .content_wrap .content_other .item_wrap .item .list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.section_menu .content_wrap .content_other .item_wrap .item .list .list_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	padding-bottom: 8px;
	border-bottom: 1px #ffffff dotted;
}

.section_menu .content_wrap .content_other .item_wrap .item .list .list_content .list_flex {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.section_menu .content_wrap .content_other .item_wrap .item .list .list_content .list_flex .text_1 {
	width: 70%;
}

.section_menu .content_wrap .content_other .item_wrap .item .list .list_content .list_flex .text_2 {
	width: 25%;
	text-align: right;
	white-space: nowrap;
}

.section_menu .content_wrap .content_other .item_wrap .item .list .list_content .list_flex .text_2.fit {
	width: auto;
	white-space: nowrap;
}

.section_menu .content_wrap .content_other .item_wrap .item .list .list_content .list_flex .text .highlight {
	margin-left: 4px;
	color: #ee2204;
}

.section_menu .content_wrap .content_other .item_wrap .item .img_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
}

.section_menu .content_wrap .content_other .item_wrap .item .img_wrap img {
	width: 100%;
}

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

	.section_menu .inner {}

	.section_menu .wrap {
		background-position: 100% 0;
		background-size: 40%;
	}

	.section_menu .heading_wrap {}

	.section_menu .heading_wrap .heading {
		margin-top: 2.5%;
	}

	.section_menu .heading_wrap .heading::before {}

	.section_menu .heading_wrap .heading .main {}

	.section_menu .heading_wrap .heading .sub {}

	.section_menu .content_wrap {}

	.section_menu .content_wrap .content {}

	.section_menu .content_wrap .content .item_wrap {}

	.section_menu .content_wrap .content .item_wrap .item {}

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

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

	.section_menu .content_wrap .content .item_wrap .item .img_wrap {}

	.section_menu .content_wrap .content .item_wrap .item .img_wrap img {}

	.section_menu .content_wrap .content_top .text_posi {
		font-size: 3rem;
	}

	.section_menu .content_wrap .content_other .item_wrap {
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 24px;
	}

	.section_menu .content_wrap .content_other .item_wrap .box {
		width: calc((100% - (24px * 1)) / 2);
	}

	.section_menu .content_wrap .content_other .item_wrap .item {
		width: calc((100% - (24px * 1)) / 2);
	}

	.section_menu .content_wrap .content_other .item_wrap .item .text_wrap {}

	.section_menu .content_wrap .content_other .item_wrap .item .text_wrap::before {}

	.section_menu .content_wrap .content_other .item_wrap .item .text_wrap .text {}

	.section_menu .content_wrap .content_other .item_wrap .item .list_wrap {
		flex-direction: row;
		gap: 24px;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .list_wrap .list {
		width: calc((100% - (24px * 1)) / 2);
	}

	.section_menu .content_wrap .content_other .item_wrap .item .img_wrap {
		flex-direction: row;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .img_wrap img {
		width: 50%;
	}

	.section_menu .content_wrap .content_other .item_wrap {}

	.section_menu .content_wrap .content_other .item_wrap .item.full {
		width: 100%;
	}
}

@media screen and (min-width: 1280px) {
	.section_menu .content_wrap .content_other {
		gap: 48px;
	}

	.section_menu .content_wrap .content_other .item_wrap {
		gap: 48px;
	}

	.section_menu .content_wrap .content_other .item_wrap .box {
		gap: 48px;
		width: calc((100% - (48px * 1)) / 2);
	}

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

	.section_menu .content_wrap .content_other .item_wrap .item .list_wrap {
		gap: 48px;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .list_wrap .list {
		width: calc((100% - (48px * 1)) / 2);
	}
}

@media screen and (min-width: 1440px) {
	.section_menu .heading_wrap .heading {
		padding-left: 84px;
	}

	.section_menu .heading_wrap .heading::after {
		font-size: 1.5rem;
	}

	.section_menu .heading_wrap .heading .main {
		font-size: 2.5rem;
	}

	.section_menu .content_wrap {
		gap: 84px;
	}

	.section_menu .content_wrap .content .item_wrap .item .text_wrap .text {
		font-size: 1.125rem;
	}

	.section_menu .content_wrap .content_top .text_posi {
		font-size: 4.5rem;
	}

	.section_menu .content_wrap .content_top .item_wrap {
		gap: 60px;
	}

	.section_menu .content_wrap .content_other {
		gap: 144px;
	}

	.section_menu .content_wrap .content_other .item_wrap {
		gap: 84px;
	}

	.section_menu .content_wrap .content_other .item_wrap .box {
		gap: 144px;
	}

	.section_menu .content_wrap .content_other .item_wrap .item {
		gap: 48px;
		width: calc((100% - (84px * 1)) / 2);
	}

	.section_menu .content_wrap .content_other .item_wrap .item .text_wrap {
		height: 108px;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .text_wrap .text {
		font-size: 2rem;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .list_wrap {
		gap: 84px;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .list_wrap .list {
		width: calc((100% - (84px * 1)) / 2);
	}

	.section_menu .content_wrap .content_other .item_wrap .item .list .text_top {
		font-size: 1.125rem;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .list .list_content {
		padding-bottom: 12px;
	}

	.section_menu .content_wrap .content_other .item_wrap .item .list .list_content .list_flex .text {
		font-size: 1.125rem;
	}
}

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

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

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

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

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

	.map iframe {}
}

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

	.map iframe {}
}

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

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

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

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

.footer .content_wrap .content .item_wrap .item {
	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: 24px;
	padding: 48px 0;
}

.footer .content_wrap .content_bottom .item_wrap {
	gap: 36px;
}

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

.footer .content_wrap .content_bottom .item_wrap .item_2 {
	gap: 36px;
	width: 95%;
	max-width: 1280px;
}

.footer .logo {
	display: block;
	width: 168px;
	height: auto;
	background-color: transparent;
}

.footer .sns {
	display: block;
	width: 42px;
	height: auto;
	background-color: transparent;
}

.footer .list_wrap {
	display: flex;
	display: none;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px 24px;
	width: max-content;
	max-width: 90%;
}

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

.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: 1rem;
	font-weight: 900;
	line-height: 1;
	color: #ffffff;
}

.footer .btn_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 55%;
	max-width: 100%;
	margin-top: 12px;
}

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

.copyright {
	width: 100%;
	padding: 24px 5%;
	text-align: center;
	background-color: #ee2204;
	font-size: 1.125rem;
	line-height: 1;
	color: #ffffff;
}

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

	.footer .inner {}

	.wrap {}

	.footer .text {}

	.footer .logo {}

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

	.footer .content_wrap {}

	.footer .content_wrap .content {}

	.footer .content_wrap .content .item_wrap {}

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

	.footer .content_wrap .content_top {}

	.footer .content_wrap .content_bottom {}

	.footer .content_wrap .content_bottom .item_wrap {}

	.footer .content_wrap .content_bottom .item_wrap .item_1 {}

	.footer .content_wrap .content_bottom .item_wrap .item_2 {}

	.footer .list_wrap {
		display: flex;
	}

	.footer .list {}

	.footer .list li {}

	.footer .list li a {}

	.footer .btn_wrap {
		flex-direction: row;
		gap: 24px;
		width: calc((100% - (24px * 1)) * 0.5);
		max-width: 100%;
		margin: 0;
	}

	.footer .btn_wrap .btn {
		width: calc((100% - (24px * 1)) * 0.5);
	}

	.copyright {}
}

@media screen and (min-width: 1280px) {
	.footer .logo {
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 100%;
		aspect-ratio: 482 / 580;
	}

	.footer .content_wrap .content_bottom {
		padding: 84px 0;
	}

	.footer .content_wrap .content_bottom .item_wrap {
		position: relative;
		width: 75%;
		max-width: 1280px;
	}

	.footer .content_wrap .content_bottom .item_wrap .item_1 {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(-50%, -50%);
		width: auto;
		max-width: 100%;
		height: 150%;
	}

	.footer .content_wrap .content_bottom .item_wrap .item_2 {
		justify-content: space-between;
	}

	.footer .btn_wrap {
		width: auto;
	}
}

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

	.footer .content_wrap .content_bottom .item_wrap .item_2 {
		gap: 60px;
	}

	.footer .list_wrap {
		gap: 36px;
	}

	.footer .list {
		gap: 48px;
	}

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

	.copyright {
		font-size: 1.125rem;
	}
}

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

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

.pc_sp_none {
	display: none;
}

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

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