@charset "utf-8";

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

html {
	width: auto !important;
	height: auto !important;
	/* scroll-padding-top: 120px; */
	scroll-behavior: smooth;
}

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

main {
	overflow: hidden;
}

table {
	border-collapse: collapse;
}

th,
td {
	border: 1px solid #000;
	padding: 16px 8px;
}

th {
	vertical-align: baseline;
}

img {
	width: 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: 50px;
	padding: 4px 0;
	background-color: #000000;
	/* background-color: rgba(245, 245, 245, 0.5); */
	/* background-image: url(../img/hd_bg.webp); */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* 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, 0.8); */
}

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

.header_container {
	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: flex-start;
	align-items: center;
	gap: 0px;
	width: auto;
	height: 100%;
}

.header_logo picture,
.header_logo img {
	display: block;
	width: auto;
	height: 100%;
    max-width: 100%;
    max-height: 100%;
	aspect-ratio: 596 / 180;
}

.header_logo .text {
	font-size: 0.875rem;
	font-weight: 600;
}

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

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

	.header_inner {
		flex-direction: column-reverse;
		gap: 12px;
		width: 97.5%;
		/* max-width: 1680px; */
		margin: 0 auto;
	}

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

	.header_logo {}

	.header_logo picture,
	.header_logo img {}

	.header_logo .text {}

	.header_content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		width: max-content;
		max-width: 100%;
		height: 100%;
	}

	.header_content_inner {
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		align-items: center;
		gap: 24px;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
	}

	.header_btn {
		width: max-content;
		max-width: 100%;
		height: 100%;
	}

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

	.header_btn_inner .btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0px;
		width: auto;
		max-width: 100%;
		height: calc((100% - (8px * 1)) / 2);
		max-height: 100%;
	}

	.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: center;
		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: 4px;
		font-size: 0.75rem;
		font-weight: 500;
		line-height: 1;
	}

	.header_list_inner li a::after {
		/* content: "";
		position: absolute;
		bottom: -4px;
		left: 50%;
		transform: translate(-50%, 0);
		width: 16px;
		height: 2px;
		background-color: #041E3E; */
	}

	.header_list_inner li a .text {}

	.header_list_inner li a .text.top {
		font-size: 0.875em;
	}

	.header_list_inner li a .text.bottom.js-scrolled {}

	.header_list_inner li a .text.bottom {
		font-weight: 700;
	}

	.header_list_inner li a .text.bottom.js-scrolled {}
}

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

	.header_inner {}

	.header_logo {}

	.header_logo .text {
		font-size: 1.25rem;
	}

	.header_content_inner {
		gap: 36px;
	}

	.header_btn_inner {}

	.header_btn_inner .btn {}

	.header_list_inner {
		gap: 36px;
	}

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

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

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

	.header_content_inner {
		gap: 48px;
	}

	.header_btn_inner .btn {}

	.header_list_inner {
		gap: 48px;
	}
}

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

	.header_btn_inner .btn {}

	.header_list_inner {}
}

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

.header_list_inner li a.now {
	position: relative;
}

.header_list_inner li a.now::before {
    content: none;
    position: absolute;
    /* bottom: 0; */
    left: 50%;
    transform: translate(-50%, 0);
    width: 4px;
    height: auto;
    aspect-ratio: 4 / 12;
    /* border-radius: 100vmax; */
    background-color: #0079E9;
}

.js_header_now::before {
	bottom: var(--now-before-bottom, 0px); /* ★JSでここを書き換える */
}

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

.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%;
	margin: 0 auto;
}

.fv_top .slider_wrap {
	width: 100%;
}

.fv_top .text_posi {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	max-width: 100%;
}

.fv_top .text_posi .text_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: max-content;
	max-width: 100%;
	/* padding: 4px 0; */
	/* border-radius: 0 12px 0 12px; */
	/* background-color: #FFEDD7; */
	font-size: 2.125rem;
}

.fv_top .text_posi .text_wrap .text {
	color: #ffffff;
	text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);
	/* text-shadow: 4px 3px 0px rgba(171, 144, 60, 0.5); */
}

.fv_top .text_posi .text_wrap .text_1 {
	font-size: 1em;
	font-weight: 700;
}

.fv_top .text_posi .text_wrap .text_1 .highlight {
	font-size: 1.33333333em;
}

.fv_top .text_posi .text_wrap .text_2 {}

.fv_top .text_posi .text_wrap img {
	width: 240px;
}

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

	.fv_top .inner {}

	.fv_top .inner::before {
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		width: 95%;
		height: 100%;
		background-image: url(../img/fv_bg.webp);
		background-position: bottom right;
		background-repeat: no-repeat;
		background-size: cover;
		}

	.fv_top .wrap {
		width: 100%;
		/* max-width: 1680px; */
	}

	.fv_top .slider_wrap {}

	.fv_top .text_posi {
		top: auto;
		bottom: 15%;
		transform: translate(-50%, 0);
		width: 90%;
		max-width: 1280px;
	}

	.fv_top .text_posi .text_wrap {}

	.fv_top .text_posi .text_wrap .text {}

	.fv_top .text_posi .text_wrap .text_1 {}

	.fv_top .text_posi .text_wrap .text_1 .highlight {}

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

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

	.fv_top .inner::before {
		width: 85%;
	}

	.fv_top .wrap {}

	.fv_top .text_posi .text_wrap {
		font-size: 3rem;
	}
}

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

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

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

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

.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 .img {
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
	width: 100%;
}

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

.fv_other .text_posi .text_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	font-size: 1.5rem;
}

.fv_other .text_posi .text_wrap .text {
	position: relative;
	width: max-content;
	max-width: 100%;
	text-align: center;
	line-height: 1;
	white-space: nowrap;
}

.fv_other .text_posi .text_wrap .text::before {
	/* content: "";
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(100%, -50%);
	width: auto;
	height: 100%;
	aspect-ratio: 82 / 110;
	background-image: url(../img/fv_other_deco.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover; */
}

.fv_other .text_posi .text_wrap .text_1 {
	font-size: 1.25em;
	font-weight: 700;
}

.fv_other .text_posi .text_wrap .text_2 {
	font-size: 1em;
}

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

	.fv_other .inner {
		padding-bottom: 1.25%;
	}

	.fv_other .inner::before {
		/* content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		width: 95%;
		height: 100%;
		background-image: url(../img/fv_bg.webp);
		background-position: bottom right;
		background-repeat: no-repeat;
		background-size: cover; */
	}

	.fv_other .wrap {}

	.fv_other .img {}

	.fv_other .text_posi {}

	.fv_other .text_posi .text_wrap {}

	.fv_other .text_posi .text_wrap .text {}

	.fv_other .text_posi .text_wrap .text_1 {}

	.fv_other .text_posi .text_wrap .text_2 {}
}

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

	.fv_other .inner {}

	.fv_other .wrap {}

	.fv_other .text_posi .text_wrap {}
}

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

	.fv_other .text_posi .text_wrap .text_1 {
		font-size: 2.08333333em;
	}
}

@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%;
	max-width: 100%;
}

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

.heading_wrap .heading .main,
.heading_wrap .heading .sub {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	line-height: 1;
}

.heading_wrap .heading .main {
	font-size: 0.666666667em;
	font-weight: 700;
}

.heading_wrap .heading .main::before,
.heading_wrap .heading .main::after {}

.heading_wrap .heading .main::before {}

.heading_wrap .heading .main::after {}

.heading_wrap .heading .sub {
	font-size: 1em;
	font-weight: 600;
}

.heading_wrap .heading .sub::first-letter {
	font-size: 1.33333333em;
    color: #0079E9;
}

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

	.heading_wrap .heading .main {}

	.heading_wrap .heading .sub {}
}

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

	.heading_wrap .heading .main {}

	.heading_wrap .heading .sub {}
}

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

	.heading_wrap .heading .main {
		font-size: 0.6em;
	}

	.heading_wrap .heading .sub {}

	.heading_wrap .heading .sub::first-letter {
		font-size: 1.25em;
	}
}

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

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

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

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

.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_common {
	position: relative;
	/* display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0px; */
	width: 220px;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.btn_common::before {
	/* content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	height: auto;
	aspect-ratio: 220 / 22;
	background-image: url(../img/);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain; */
}

.btn_common.btn_bk {
	/* color: #000000; */
}

.btn_common.btn_bk::before {
	/* background-image: url(../img/btn_deco_bk.webp); */
}

.btn_common.btn_wh {
	/* color: #ffffff; */
}

.btn_common.btn_wh::before {
	/* background-image: url(../img/btn_deco_wh.webp); */
}

.btn_common .text {
	/* display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0px; */
}

.btn_common .img {}

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

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

.line_left,
.line_right {
	position: relative;
}

.line_left::before,
.line_right::before {
    content: "";
    position: absolute;
    width: 90vw;
	height: 2px;
	background-color: #0079E9;
}

.line_left {}

.line_left::before {
	bottom: -12px;
    left: 0;
}

.line_right {}

.line_right::before {
	bottom: 0;
    right: 0;
}

@media (min-width: 768px) {
	.line_left::before,
	.line_right::before {
        width: 57.5vw;
    }

	.line_left::before {}

    .line_right::before {}
}

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

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

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

.table {
	
}

.table tr {}

.table tr th,
.table tr td {
	
}

.table tr th {
	
}

.table tr:first-child th {
	
}

.table tr td {
	
}

.table tr:first-child td {
	/* padding-top: 0; */
}

@media screen and (min-width: 768px) {
	.table tr th,
	.table tr td {
		
	}

	.table tr th {
		
	}

	.table tr:first-child th {
		
	}

	.table tr td {
		
	}

	.table tr:first-child td {
		
	}
}

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

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

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

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

.img_filter {
	filter: grayscale(100%) brightness(62.5%);
}

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

.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-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: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	overflow: hidden;
}

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

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

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

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

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

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

.section .text_wrap .text_wrap_inner .text {
	width: max-content;
	max-width: 100%;
}

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

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

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

.section .img_wrap .img_wrap_inner .img img,
.section .img_wrap .img_wrap_inner .img picture {
	width: 100%;
}

.section img,
.section picture {
	width: 100%;
}

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

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

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

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

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

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

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

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

.section_floating {
	position: fixed;
	bottom: 0;
	width: 100vw;
	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-evenly;
	align-items: center;
	gap: 0px;
	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_contact {}

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

.section_contact .wrap {}

.section_contact .heading_wrap {
	width: 100%;
}

.section_contact .heading_wrap .heading {}

.section_contact .heading_wrap .heading .main,
.section_contact .heading_wrap .heading .sub {}

.section_contact .heading_wrap .heading .main {}

.section_contact .heading_wrap .heading .sub {}

.section_contact .content_wrap {}

.section_contact .content_wrap .content {
	gap: 48px;
}

.section_contact .item_wrap {}

.section_contact .item_wrap .item {}

.section_contact .item_wrap .item .item_inner {}

.section_contact .table_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 48px;
	padding: 48px 0;
	background-image: url(../img/top_contat_bg_sp.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.section_contact .table_wrap .table {
	width: 90%;
}

.section_contact .table_wrap .table {}

.section_contact .table_wrap .table tr {}

.section_contact .table_wrap .table tr th,
.section_contact .table_wrap .table tr td {
	display: block;
	border: 0;
	padding: 16px 0;
	font-weight: 500;
}

.section_contact .table_wrap .table tr th .flex .small,
.section_contact .table_wrap .table tr td .flex .small {
	font-size: 0.875rem;
}

.section_contact .table_wrap .table tr th {
	padding-bottom: 0;
}

.section_contact .table_wrap .table tr:first-child th {
	padding-top: 0;
}

.section_contact .table_wrap .table tr th .flex {}

.section_contact .table_wrap .table tr th .flex .text {}

.section_contact .table_wrap .table tr td {
	padding-top: 0;
	border-bottom: 1px #ffffff dotted;
}

.section_contact .table_wrap .table tr td .flex {}

.section_contact .table_wrap .table tr td .flex .text {}

.section_contact .btn_wrap {
	width: max-content;
	max-width: 100%;
}

.section_contact .btn_wrap .btn_wrap_inner {
    gap: 24px;
    width: max-content;
    max-width: 100%;
}

.section_contact .map {
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 4;
}

.section_contact .map iframe {
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 768px) {
	.section_contact .inner {
		padding: 5% 0 0;
	}

	.section_contact .item_wrap .item .item_inner {
		flex-direction: row-reverse;
		align-items: stretch;
		gap: 0;
	}

	.section_contact .table_wrap {
		width: 50%;
		background-image: url(../img/top_contat_bg_pc.webp);
	}

	.section_contact .map {
		width: 50%;
		height: auto;
		aspect-ratio: unset;
	}
}

@media screen and (min-width: 1280px) {
	.section_contact .table_wrap {
		aspect-ratio: 720 / 528;
	}

	.section_contact .table_wrap .table {
		width: 75%;
	}

	.section_contact .table_wrap .table tr th,
	.section_contact .table_wrap .table tr td {
		display: table-cell;
		padding: 16px 8px;
		border-bottom: 1px #ffffff dotted;
	}

	.section_contact .table_wrap .table tr:first-child th,
	.section_contact .table_wrap .table tr:first-child td {
		padding-top: 0;
	}

	.section_contact .table_wrap .table tr th {
		width: 25%;
	}

	.section_contact .table_wrap .table tr td {
		width: 75%;
	}

	.section_contact .btn_wrap .btn_wrap_inner {
		flex-direction: row;
	}

	.section_contact .map {
		aspect-ratio: 720 / 528;
	}
}

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

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

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

.section_intro {}

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

.section_intro .wrap {}

.section_intro .heading_wrap {
	width: 100%;
}

.section_intro .heading_wrap .heading {}

.section_intro .heading_wrap .heading .main,
.section_intro .heading_wrap .heading .sub {}

.section_intro .heading_wrap .heading .main {}

.section_intro .heading_wrap .heading .sub {}

.section_intro .content_wrap {}

.section_intro .content_wrap .content {
	gap: 48px;
}

.section_intro .item_wrap {
	width: 90%;
	max-width: 1024px;
}

.section_intro .item_wrap .item {}

.section_intro .item_wrap .item .item_inner {}

.section_intro .text_wrap {}

.section_intro .text_wrap .text_wrap_inner {}

.section_intro .text_wrap .text_wrap_inner .text {
	text-align: center;
	line-height: 2;
}

.section_intro .text_wrap .text_wrap_inner .text .highlight {
	font-size: 1.25em;
}

@media screen and (min-width: 768px) {
	.section_intro .inner {
		padding: 5% 0;
	}
}

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

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

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

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

.section_form {}

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

.section_form .wrap {}

.section_form .heading_wrap {
	width: 100%;
}

.section_form .heading_wrap .heading {}

.section_form .heading_wrap .heading .main,
.section_form .heading_wrap .heading .sub {}

.section_form .heading_wrap .heading .main {}

.section_form .heading_wrap .heading .sub {}

.section_form .content_wrap {}

.section_form .content_wrap .content {
	gap: 48px;
}

.section_form .item_wrap {
	width: 90%;
}

.section_form .item_wrap .item {}

.section_form .item_wrap .item .item_inner {}

.section_form .text_wrap {}

.section_form .text_wrap .text_wrap_inner {}

.section_form .text_wrap .text_wrap_inner .text {
	text-align: center;
}

.section_form .text_wrap .text_wrap_inner .text .highlight {
	font-size: 1.25em;
}

@media screen and (min-width: 768px) {
	.section_form .inner {
		padding: 5% 0;
	}
}

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

@media screen and (min-width: 1440px) {
	.section_form .content_wrap .content {
		gap: 72px;
	}
}

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

/* フォーム start */

.form_area {
    width: 100%;
	max-width: 1024px;
    margin: 0 auto 0;
}

.tbl-form {
    width: 100%;
    table-layout: fixed;
    /* border-collapse: separate; */
    border-spacing: 0 12px;
}

th,
td {
    display: block;
    padding: 12px 0;
    border: 0;
	font-weight: 500;
}

th {}

td {
	/* border-bottom: 1px #D9D9D9 solid; */
}

.first_line th {}

tr:not(.first_line) th {}

.last_line td {}

tr:not(.last_line) td {}

.must {
	color: #FF0000;
}

th .flex,
td .flex {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
}

th .flex {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

td .flex {
	flex-direction: column;
	align-items: flex-start;
}

/* ↓ ラジオボタン ↓ */

.radio td {}

.radio label {
    position: relative;
	display: block;
    cursor: pointer;
    padding-left: 1.5rem;
}

.radio label::before,
.radio label::after {
    content: "";
    display: block;
    border-radius: 999px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.radio label::before {
    background-color: #ffffff;
    border: 1px #D9D9D9 solid;
    width: 1.25em;
    height: auto;
	aspect-ratio: 1 / 1;
    left: 0;
}

.radio label::after {
    background-color: #D9D9D9;
    opacity: 0;
    width: 0.75em;
    height: auto;
	aspect-ratio: 1 / 1;
    left: 0.25em;
}

.radio label:has(input[type="radio"]:checked):after {
    opacity: 1;
}

.radio.radio_2 label::before,
.radio.radio_2 label::after {
    border-radius: 3px;
}

.radio_telmail label::before,
.radio_telmail label::after {
    border-radius: 50%;
}

.visually-hidden {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

/* ↑ ラジオボタン ↑ */

/* プルダウン start */

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

.select_wrap::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #222;
    line-height: 1;
}

/* プルダウン end */

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

.address_num {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	gap: 4px;
	width: 100%;
	margin: 0 auto 0;
}

.address_num > * {
	display: flex;
	align-items: center;
}

.address_num .address_num_1 {
	width: 20%;
}

.address_num .address_num_2 {
	width: 30%;
}

.address_search {
	padding: 0.5em;
	background-color: #FEB55B;
	color: #ffffff;
	white-space: nowrap;
}

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

.address_text > * {
	width: 100%;
}

.input-text {
    width: 100%;
    min-height: 2em;
    padding: 0.5em;
    border: 1px #D9D9D9 solid;
	border-radius: 8px;
    background-color: #ffffff;
	color: #000000;
}

.textarea {
    width: 100%;
    min-height: 10em;
    padding: 0.5em;
    border: 1px #D9D9D9 solid;
	border-radius: 8px;
    background-color: #ffffff;
	color: #000000;
}

.textarea_2 {
    min-height: 0;
}

.info_area {}

.info_area .info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 10% auto 0;
	padding: 5%;
	border: 1px #333333 solid;
}

.info_area .info .text {}

.info_area .info .text .title {
	font-weight: 900;
}

.info_area .radio {
    margin-top: 2.5%;
}

.info_area .radio label::before,
.info_area .radio label::after {
    border-radius: 0;
}

.form_submit_btn {
	position: relative;
    display: block;
	width: 220px;
    margin: 24px auto 0;
}

.form_submit_btn::after {
    /* content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 25%;
    height: 1px;
    background-color: #ffffff; */
}

.input-button {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto 0;
	height: auto;
	padding: 12px;
	/* aspect-ratio: 4 / 1; */
	/* border-radius: 100vmax; */
	background-color: #ffffff;
	background-image: url(../img/);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
    text-align: center;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
    color: #000000;
    cursor: pointer;
}

.input-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form_text_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	margin-top: 48px;
}

.form_text_wrap .form_text_wrap_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.form_text_wrap .form_text_wrap_inner .text {
	font-weight: 500;
}

.form_text_wrap .form_text_wrap_inner .text_top {
	position: relative;
	width: 100%;
	margin-bottom: 12px;
	padding-bottom: 12px;
	text-align: center;
	font-size: 1.25rem;
}

.form_text_wrap .form_text_wrap_inner .text_top::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 60px;
	height: 1px;
	background-color: #ffffff;
}

.form_text_wrap .form_text_wrap_inner .text_2 {
	font-size: 1.25rem;
}

.form_text_wrap .form_text_wrap_inner .list {}

.form_text_wrap .form_text_wrap_inner .list li {
	position: relative;
	padding-left: 16px;
}

.form_text_wrap .form_text_wrap_inner .list li::before {
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0;
	transform: translate(0, 0);
	width: 0.5em;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 100vmax;
	background-color: #ffffff;
}

.form_text_wrap .form_text_wrap_inner .list li .text {}

.js_title_retain_paste {
    display: none;
}

.js_title_retain_paste th,
.js_title_retain_paste td {
    vertical-align: top;
}

.js_title_retain_paste .textarea {
    width: 100%;
    height: auto;
    min-height: 0;
    /* line-height: 1.5; */
    padding: 0;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;
    background-color: transparent;
    color: #ffffff;
    resize: none;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
}

.wpcf7 {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
}

.wpcf7 .wpcf7-form table {
	width: 90%;
	max-width: 768px;
	margin: 0 auto;
}

.wpcf7 .wpcf7-form-control-wrap {
	width: 100%;
}

.wpcf7 .wpcf7-form-control.wpcf7-radio {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0px;
}

.wpcf7 .wpcf7-list-item {
	margin: 0;
}

.wpcf7 [type="radio"] {
	position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

@media screen and (min-width: 768px) {
	.form_area > table {
		width: 90%;
		max-width: 768px;
		margin: 0 auto;
	}

	th,
	td {
		display: table-cell;
		padding: 24px 0;
		border-bottom: 1px #D9D9D9 solid;
		border: 0;
		vertical-align: middle;
	}

	th {
		width: 35%;
		padding-right: 12px;
		vertical-align: middle;
	}

	td {
		width: 65%;
		padding-left: 12px;
	}

	tr:not(.last_line) td {}

	th .flex {}

	td .flex {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		gap: 24px;
	}

	.vertical-align-top.tb {
		vertical-align: top;
	}

	.first_line th,
	.first_line td {
		padding-top: 0;
	}

	.last_line th,
	.last_line td {
		padding-bottom: 0;
		border: 0;
	}

	.form_submit_btn {
		margin-top: 48px;
	}

	.wpcf7 .wpcf7-form-control.wpcf7-radio {
		flex-direction: row;
		align-items: center;
		gap: 12px;
	}
}

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

}

@media screen and (min-width: 1440px) {
	th,
	td {
		/* font-size: 1.5rem; */
	}

	th .flex {
		gap: 32px;
	}

	.radio label {
		/* padding-left: 2.5rem; */
	}

	.form_submit_btn {
		margin-top: 72px;
	}

	.input-button {
		font-size: 1.25rem;
	}

	.form_text_wrap {
		width: max-content;
		margin: 0 auto;
		margin-top: 60px;
	}

	.form_text_wrap .form_text_wrap_inner .text {
		line-height: 2;
	}

	.form_text_wrap .form_text_wrap_inner .text_top {
		margin-bottom: 36px;
		padding-bottom: 24px;
		font-size: 1.5rem;
	}

	.form_text_wrap .form_text_wrap_inner .text_2 {
		font-size: 1.25rem;
	}

	.form_text_wrap .form_text_wrap_inner .list li::before {
		top: 0.75em;
	}
}

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

/* フォーム end */

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

/* プライバシーポリシー start */

.pp_privacy *,
.pp_privacy *::before,
.pp_privacy *::after {
	box-sizing: border-box;
}

.pp_privacy {
	width: 100%;
	margin-top: 12px;
}

.pp_privacy a {
	color: inherit;
	text-decoration: none;
}

.pp_privacy_bg {
	padding: 24px 0;
	background-color: #0079E9;
}

.pp_privacy_inner {
	width: 90%;
	margin: 0 auto;
}

.pp_privacy_card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto;
	padding: 12px 12px;
	background: #ffffff;
	color: #000000;
}

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

.scroll_area {}

.scroll_area_inner {
	width: 100%;
	height: 240px;
	padding: 0 8px 0 0;
	overflow: auto;
	/*IE(Internet Explorer)・Microsoft Edgeへの対応*/
	-ms-overflow-style: none;
	/*Firefoxへの対応*/
	scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.scroll_area_inner::-webkit-scrollbar {
	display: none;
}

/* SimpleBarのカスタムスタイル */
.scroll_area_inner .simplebar-scrollbar {
	top: 0;
	bottom: auto;
	left: auto;
	right: 0;
	width: 4px;
    background-color: #0079E9;
}

.scroll_area_inner .simplebar-track {
    background-color: transparent;
}

.pp_privacy_heading {
	text-align: center;
}

.pp_privacy_title {
	font-size: 1.25rem;
	font-weight: 600;
}

.pp_privacy_intro {
	margin-top: 24px;
}

.pp_privacy_text {
	margin: 0;
}

.pp_privacy_content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	margin-top: 24px;
}

.pp_privacy_section + .pp_privacy_section {}

.pp_privacy_hd {
	font-weight: 700;
}

.pp_privacy_list {
	/* padding-left: 12px; */
}

.pp_privacy_item {
	margin: 2px 0;
}

.pp_privacy_actions {
	width: 100%;
	max-width: 220px;
	margin-top: 24px;
}

.pp_privacy_btn {}

.pp_privacy_btn_text {
	display: inline-block;
	transform: translateY(0.5px);
}

.pp_consent {
	width: 100%;
	margin: 0 auto;
}

.pp_consent_inner {}

.pp_consent_title {}

.pp_consent_text {}

.pp_consent_rule {}

.pp_consent_rule_title {}

.pp_consent_rule_text {}

.pp_consent_cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
    text-align: center;
}

.pp_consent_check {
    display: flex;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.pp_consent_check .wpcf7-form-control-wrap {
    display: block;
}

.pp_consent_check .wpcf7-form-control.wpcf7-acceptance {
    display: block;
}

.pp_consent_check .wpcf7-list-item {
    margin: 0;
    display: block;
}

.pp_consent_check .wpcf7-list-item > label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

/* 本物のcheckboxは非表示 */
.pp_consent_check input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

/* CF7が出力するラベル部分を横並びに */
.pp_consent_check .wpcf7-list-item-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 左の白い四角 */
.pp_consent_box {
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    flex: 0 0 auto;
    position: relative;
}

/* 文言 */
.pp_consent_label {
    font-size: 1.25rem;
    line-height: 1.4;
    color: #fff;
}

/* checked時に自作チェックを表示 */
.pp_consent_check input[type="checkbox"]:checked + .wpcf7-list-item-label .pp_consent_box::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0.3125rem;
    aspect-ratio: 4 / 7;
    border-right: 2px solid #0c5cff;
    border-bottom: 2px solid #0c5cff;
}

/* フォーカス時 */
.pp_consent_check input[type="checkbox"]:focus-visible + .wpcf7-list-item-label .pp_consent_box {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

@media screen and (min-width: 768px) {
	.pp_privacy {
		margin-top: 48px;
	}

	.pp_privacy_bg {
		padding: 24px;
	}

	.pp_privacy_inner {
		width: 100%;
	}

	.pp_consent_cta {
		margin-top: 24px;
	}
}

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

@media screen and (min-width: 1440px) {
	.pp_privacy {
		margin-top: 72px;
	}
}

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

/* プライバシーポリシー end */

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

/* 特定商取引法表示 start */

.tokutei {
	margin-top: 24px;
    padding: 12px 0;
	background-color: #0079e9;
}

.tokutei_accordion {}

/* summaryのデフォルト三角を消す */
.tokutei_accordion > summary {
    list-style: none;
}
.tokutei_accordion > summary::-webkit-details-marker {
    display: none;
}

.tokutei_head {
    cursor: pointer;
    user-select: none;
    padding: 24px 16px;
	border-top: 1px dotted rgba(255, 255, 255, 0.7);
	border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
}

.tokutei_head_inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.tokutei_title {
    font-size: 1.25rem;
    color: #ffffff;
}

.tokutei_state {
    color: #ffffff;
}

.tokutei_state .is_close {
    display: none;
}

/* open時 表示切り替え */
.tokutei_accordion[open] .tokutei_state .is_open {
    display: none;
}
.tokutei_accordion[open] .tokutei_state .is_close {
    display: inline;
}

/* body */
.tokutei_body {
    padding: 12px 0 0;
}

.tokutei_body_inner {
    width: 90%;
	max-width: 830px;
    margin: 0 auto;
	padding: 16px 12px;
    background: #ffffff;
    border: 1px solid #cfcfcf;
}

.tokutei .table_wrap {
    width: 100%;
}

.tokutei .table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.tokutei .table tr {
    border-bottom: 1px solid #d9d9d9;
}

.tokutei .table th,
.tokutei .table td {
	display: block;
    vertical-align: top;
	width: 100%;
    padding: 16px 0;
}

.tokutei .table th {
	padding-bottom: 0;
}

.tokutei .table tr:first-child th {
	padding-top: 0;
}

.tokutei .table td {}

.tokutei .table .flex {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
    gap: 0px;
}

.tokutei .table .text {
    word-break: break-word;
	color: #000000;
}

@media screen and (min-width: 768px) {
	.tokutei {
		margin-top: 48px;
	}

	.tokutei_body_inner {}

	.tokutei .table th,
	.tokutei .table td {
		display: table-cell;
		padding: 16px 0;
	}

	.tokutei .table th {
		width: 30%;
		padding-right: 8px;
	}

	.tokutei .table tr:first-child th {
		padding: 16px 0;
		/* padding-top: 0; */
		padding-right: 8px;
	}

	.tokutei .table td {
		width: 70%;
		padding-left: 8px;
		border-left: 1px solid #d9d9d9;
	}

	.tokutei .table tr:first-child td {
		padding: 16px 0;
		/* padding-top: 0; */
		padding-left: 8px;
	}
}

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

@media screen and (min-width: 1440px) {
	.tokutei {
		margin-top: 72px;
	}
}

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

/* 特定商取引法表示 end */

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

.footer {
	position: relative;
	/* border: 1px #66A8D0 solid;
	border-top: 0; */
}

.footer::before {
	/* content: "";
	position: absolute;
	top: 1px;
	left: 0;
	transform: translate(0, -100%);
	width: 100%;
	height: auto;
	aspect-ratio: 375 / 66;
	background-image: url(../img/border_wave_sp.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto; */
}

.footer .inner {
	position: relative;
	background-color: transparent;
}

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

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

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

.footer .heading_wrap {}

.footer .heading {}

.footer .heading::before {}

.footer .heading::after {}

.footer .heading .main,
.footer .heading .sub {}

.footer .heading .main::before,
.footer .heading .sub::before {}

.footer .heading .main {}

.footer .heading .main::before {}

.footer .heading .sub {}

.footer .heading .sub::after {}

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

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

.footer .text_wrap .text_wrap_inner .text {
	width: max-content;
	max-width: 100%;
	font-size: 1rem;
	font-weight: 500;
}

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

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

.footer .btn_wrap .btn_wrap_inner .btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 40px;
}

.footer .list_wrap {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
    gap: 0px;
	width: 90%;
}

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

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

.footer .list_wrap .list li a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: 100%;
	/* font-weight: 500; */
	/* line-height: 1; */
}

.footer .list_wrap .list li a::before {
	/* content: "";
	position: absolute;
	top: calc(0.5rem * 1.25);
	left: 0;
	transform: translate(0, 0);
	width: 0.5rem;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 100vmax;
	background-color: #C4EBF0; */
}

.footer .list_wrap .list li a .text {}

.footer .list_wrap .list li a .top {
	font-size: 0.875rem;
}

.footer .list_wrap .list li a .bottom {
	font-weight: 700;
}

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

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

.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: 48px;
	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%;
	background-image: url(../img/);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

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

.footer .content_wrap .content_wrap_inner .content_middle {}

.footer .content_wrap .content_wrap_inner .content_middle .content_inner {}

.footer .content_wrap .content_wrap_inner .content_bottom {}

.footer .content_wrap .content_wrap_inner .content_bottom .content_inner {}

.footer .content_wrap .content_wrap_inner .content_bottom .content_inner .content_inner_box {}

.footer .content_wrap .content_wrap_inner .content_bottom .content_inner .content_inner_box_1 {}

.footer .content_wrap .content_wrap_inner .content_bottom .content_inner .content_inner_box_2 {}

.copyright {
	width: 100%;
	padding: 24px 5%;
	border-top: 2px #0079E9 solid;
	/* background-image: linear-gradient(90deg, rgba(0, 153, 68, 1), rgba(11, 52, 225, 1)); */
	background-color: #000000;
	text-align: center;
	/* font-size: 0.875rem; */
	font-weight: 500;
	line-height: 1;
	color: #ffffff;
}

@media screen and (min-width: 768px) {
	.footer .wrap {
		padding: 5% 0;
	}

	.footer .list_wrap .list {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 12px;
	}

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

	.footer .content_wrap .content_wrap_inner .content_top .content_inner {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 12px;
	}
}

@media screen and (min-width: 1280px) {
	.footer .list_wrap .list {
		gap: 36px;
	}

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

@media screen and (min-width: 1440px) {
	.footer .list_wrap .list {
		gap: 60px;
	}

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

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