<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* -----------------------------------------------------------
	common
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&amp;display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

body {
	color: var(--color-black-01);
	font-family: var(--font-family-01);
	letter-spacing: 1px;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
	min-height: 100vh;
	overflow-x: hidden;
}

a {
	color: var(--color-link-text);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	text-decoration: none;
	transition: opacity 0.3s ease; /* アニメーションを加える */
}

hr {
	border-width: 1px 0px 0px 0px;
	border-style: dotted;
	border-color: var(--color-gray-02);
	height: 1px;
	margin: 30px 0px;
	border-bottom: 1px dotted var(--color-gray-07);
}

.markerLine {
	background: linear-gradient(transparent 60%, #fefa7f 60%);
}

.mt5 {margin-top: 5px!important;}
.mt10 {margin-top: 10px!important;}
.mt15 {margin-top: 15px!important;}
.mt20 {margin-top: 20px!important;}
.mt30 {margin-top: 30px!important;}
.mt50 {margin-top: 50px!important;}
.mb5 {margin-bottom: 5px!important;}
.mb10 {margin-bottom: 10px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb30 {margin-bottom: 30px!important;}
.mb50 {margin-bottom: 50px!important;}
.ml10 {margin-left: 10px!important;}
.ml20 {margin-left: 20px!important;}
.mr10 {margin-right: 10px!important;}
.mr20 {margin-right: 20px!important;}
.mtb10 {margin: 10px 0!important;}
.mtb50 {margin: 50px 0!important;}
.text_center {text-align: center!important;}
.box_center {margin: 10px auto!important;}

:root {
	--color-white: #fff;
	--color-blue-01: #1b5c91;
	--color-blue-02: #012551;
	--color-blue-03: #bcd9e9;
	--color-blue-04: #f0f1ff;
	--color-blue-05: #f2f5f6;
	--color-blue-06: #f5fffb;
	--color-blue-07: #0098e6;
	--color-orange-01: #fff6e7;
	--color-yellow-01: #fffbba;
	--color-yellow-02: #fbf035;
	--color-yellow-03: #fff4b0;
	--color-black-01: #3c3c3c;
	--color-black-02: #333;
	--color-black-03: #515556;
	--color-gray-01: #ccc;
	--color-gray-02: #bfbfbf;
	--color-gray-03: #f8f8f8;
	--color-gray-04: #ececec;
	--color-gray-05: #f4f4f4;
	--color-gray-06: #dbdbdb;
	--color-gray-07: #9d9d9d;
	--color-link-text: #317dee;
	--color-link-hover: #1a5cbd;
	--color-btn-01: #317dee;
	--color-btn-02: #1a5cbd;
	--color-red-01: #ff0000;
	--color-red-02: #ffbdc2;
	--color-red-03: #ffe8ea;
	--color-red-04: #ff5964;
	--color-red-05: #fff4f5;
	--font-family-01: 'Noto Sans JP', sans-serif;
	--font-weight-01: 600;
	--title-01: 2.0rem;
	--title-02: 1.5rem;
	--title-03: 1.2rem;
	--title-04: 1.0rem;
	--title-04: 0.9rem;
}

.pc_br {
	display: block;
}
.sp_br {
	display: none;
}
@media screen and (max-width:767px) {
	.pc_br {
		display: none;
	}
	.sp_br {
		display: block;
	}
}

/* -----------------------------------------------------------
	notice
----------------------------------------------------------- */

.notice {
	color: var(--color-red-01);
}

.notice02 {
	font-size: 1.5em;
}
.notice03 {
	font-size: 0.7em;
}

.notice_box {
	margin: 15px 0;
	padding: 10px 15px;
	border: 1px solid var(--color-red-01);
}

.textIndent {
	margin: 10px 0;
}

.textIndent li {
	margin-top: 5px;
	padding-left: 1em;
	text-indent: -1em;
}

/* -----------------------------------------------------------
	wrap
----------------------------------------------------------- */

.wrap {
	max-width: clamp(320px, 90%, 1400px);
	margin: 0 auto;
}

@media (max-width: 767px) {
	.wrap {
		width: 100%;
		padding: 0 0px;
	}
}

.wrap_page {
	max-width: clamp(320px, 90%, 1200px);
	margin: 0 auto;
}

.wide_container {
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 100px 0px 100px;
	background: var(--color-blue-05);
}

.wide_container_box {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.wide_container {
		padding: 70px 30px 70px;
	}
	.wide_container_box {
		width: 100%;
	}
}


/* -----------------------------------------------------------
	main_visual
----------------------------------------------------------- */

.swiper-pagination-bullet {
	width: 20px!important;
	height: 20px!important;
	background: var(--color-white)!important;
	opacity: 0.5!important;
}
.swiper-pagination-bullet-active {
	width: 20px!important;
	height: 20px!important;
	background: var(--color-white)!important;
	opacity: 1!important;
}

.swiper-button-prev:before {
	font-family: "Font Awesome 5 Free";
	content: "\f104";
	color: var(--color-white);
	font-size: 40px;
	font-weight: 900;
}
.swiper-button-next:before {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	color: var(--color-white);
	font-size: 40px;
	font-weight: 900;
}
.swiper-button-next::after, .swiper-button-prev::after {
	content: none !important;
}

#main_visual {
	position: relative;
	width: 90%;
	min-height: 700px;
	margin: 50px auto;
	border-radius: 20px;
	overflow: hidden;
}

.swiper-wrapper .swiper-slide {
	width: 100%;
	min-height: 700px;
	overflow: hidden;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper_txt{
	position: absolute;
	color: var(--color-white);
	width: 100%;
	text-align: center;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}
.swiper_txt h1{
	font-size: 3.5rem;
}

.swiper_txt p {
	font-size: 1.8rem;
	margin: 20px 0 0;
}

@media screen and (max-width:767px){
	#main_visual {
		min-height: 400px;
	}
	.swiper-wrapper .swiper-slide {
		min-height: 400px;
	}
	.swiper_txt h1 {
		font-size: var(--title-02);
	}
	.swiper_txt p {
		font-size: var(--title-04);
	}
}


.btn_main_visual a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: var(--color-white);
	max-width: 250px;
	margin: 30px auto 0;
	padding: 10px 25px;
	transition: 0.3s ease-in-out;
	background: var(--color-btn-01);
	border-radius: 9999px;
}
.btn_main_visual a:after {
	position: absolute;
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6px;
	height: 6px;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transition: right 0.4s;
	transform: translateY(-50%) rotate(45deg);
}
.btn_main_visual a:hover {
	background: var(--color-btn-02);
}
.btn_main_visual a:hover:after {
	right: 1.5rem;
}


/* -----------------------------------------------------------
	container_concept
----------------------------------------------------------- */

.container_concept {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	width: 90%;
	gap: 50px;
	margin: 100px auto;
}

.concept_ttl {
	flex-basis: 35%;
}

.concept_text {
	flex-basis: 60%;
}

.line_text {
	font-size: var(--title-01);
	letter-spacing: 0.2rem;
}

.line_text span {
	display: inline-block;
	margin-bottom: 10px;
	padding-bottom: 2px;
	background: linear-gradient(transparent calc(100% - 2px), var(--color-blue-02) 2px);
}

@media screen and (max-width: 767px) {
	.container_concept {
		flex-flow: column;
		width: 100%;
		gap: 30px;
		margin: 50px auto;
	}
	.line_text {
		font-size: var(--title-02);
	}
}

.title02 {
	font-size: 1.5rem;
	margin: 0 0 40px;
}

.title03 {
	position: relative;
	font-size: 1.5em;
	color: var(--color-blue-01);
	letter-spacing: 0.15rem;
	margin: 10px 0 50px;
}

.title03:before {
	content: '';
	position: absolute;
	bottom: -25px;
	display: inline-block;
	width: 50px;
	height: 1px;
	background-color: var(--color-blue-01);
}

.title04 {
	position: relative;
	font-size: 1.3rem;
	margin: 50px 0 30px;
	padding: 7px 0 7px 20px;
}
.title04::after {
	position: absolute;
	top: 0.7rem;
	left: 0.2rem;
	content: '';
	width: 3px;
	height: calc(100% - 1em);
	background-color: var(--color-blue-01);
}

.title05 {
	color: var(--color-blue-01);
	border-bottom: 2px solid var(--color-blue-01);
}

@media screen and (max-width: 767px) {
	.title01 {
		font-size: 2rem;
	}
	.title01 span {
		font-size: 1.0rem;
	}
	.title02 {
		font-size: 1.3rem;
	}
	.title03 {
		font-size: 1.3rem;
	}
}

/* -----------------------------------------------------------
	section
----------------------------------------------------------- */

section {
	margin: 0 0 100px;
}

.wrap_color {
	position: relative;
	margin-top: 0px;
	padding-top: 5rem;
}

@media screen and (max-width: 767px) {
	section {
		margin: 0 0 50px;
	}
	.wrap_color {
		padding-top: 4rem;
	}
}

.left_color::before {
	position: absolute;
	display: block;
	content: '';
	width: 40%;
	margin: 0 calc(50% - 50vw);
	top: 0;
	left: 0;
	height: 25rem;
	background: var(--color-red-04);
	border-radius: 0 5rem 5rem 0;
	z-index: -1;
}

.right_color::before {
	position: absolute;
	display: block;
	content: '';
	width: 40%;
	margin: 0 calc(50% - 50vw);
	top: 0;
	right: 0;
	height: 25rem;
	background: var(--color-red-04);
	border-radius: 5rem 0 0 5rem;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.left_color::before, .right_color::before {
		width: 75%;
		height: 15rem;
	}
}

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

.box_color {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.container_color {
		width: 100%;
	}
	.box_color {
		flex-flow: column;
		gap: 50px;
	}
}

.img_color {
	flex-basis: 45%;
}

.img_color_re {
	flex-basis: 45%;
	order: 2;
}

.box_color img {
	border-radius: 3rem;
}

.text_color {
	flex-basis: 50%;
	margin-left: 5rem;
}

.text_color_re {
	flex-basis: 50%;
	margin-right: 5rem;
}

.section_ttl {
	font-size: var(--title-01);
	margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
	.img_color_re {
		order: 0;
	}
	.text_color {
		margin-left: 0rem;
	}
	.text_color_re {
		margin-right: 0rem;
	}
	.section_ttl {
		font-size: var(--title-02);
	}
}

.grid_3col {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 50px;
	margin: 3rem 0;
}

.grid_3col .item_ttl {
	margin-top: 2rem;
}

.container_3col {
	display: flex;
	justify-content: space-around;
}

.container_3col .item {
	width: calc((100% - 10rem) / 3);
	margin: 0 6rem 0 0;
}

.container_3col .item_ttl {
	margin-top: 2rem;
}

@media screen and (max-width: 767px) {
	.container_3col {
		flex-flow: column;
	}
	.container_3col .item {
		width: 100%;
		margin: 0 0 0rem 0;
	}
}


/* --------------------------------------------------------
	Parallax
-------------------------------------------------------- */

.parallax_container {
	position: relative;
	aspect-ratio: 512 / 125;/*アスペクト比*/
	width: 80vw;
	margin: 100px 0;
	left: -100px;
	border-radius: 0 20px 20px 0;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.parallax_container {
		width: 90vw;
		height: 250px;
		left: -50px;
	}
}

/* -----------------------------------------------------------
	ttl
----------------------------------------------------------- */

.ttl_container {
	text-align: center;
}

.main_ttl {
	color: var(--color-01);
	font-size: 2rem;
	font-weight: 700;
}

.main_ttl::before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 auto 10px;
	background-size: contain;
}

.icon_globe::before {background-image: url("img/index/icon_globe.svg");}
.icon_handshake::before {background-image: url("img/index/icon_handshake.svg");}
.icon_contact::before {background-image: url("img/index/icon_contact.svg");}

.icon_tw:before {
	font-family: 'Font Awesome 5 Brands';
	content: "\f099";
	color: var(--color-blue-01);
	font-weight: 900;
	padding: 0 10px 0 0;
}

.main_ttl_sub {
	color: var(--color-03);
    font-size: 1.2rem;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
	.main_ttl {
		font-size: 1.7rem;
	}
	.main_ttl_sub {
		font-size: 1.0rem;
	}
}

.page_ttl {
	position: relative;
	color: var(--color-01);
	font-size: 2rem;
	font-weight: 700;
	padding: 30px 0 0;
}

.page_ttl::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: block;
	width: 60px;
	height: 4px;
	margin: auto;
	background-color: var(--color-blue-01);
}

@media screen and (max-width: 767px) {
	.page_ttl {
		font-size: 1.7rem;
	}
}

.ttl01 {
	color: var(--color-01);
	font-size: 1.7rem;
	font-weight: 700;
}

.ttl01::after {
	content: '';
	display: inline-block;
	width: 35px;
	height: 50px;
	margin-left: 5px;
	background-size: contain;
	background: url("img/index/icon_flower.png") no-repeat left center;
}

.ttl02 {
	font-size: 1.7rem;
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	.ttl01 {
		font-size: 1.3em;
	}
	.ttl02 {
		font-size: 1.3em;
	}
}

.ttl03 {
	position: relative;
	font-size: var(--title-01);
	line-height: 1.5;
	color: var(--color-red-04);
	margin: 3rem 0;
	padding: 0 0 1rem 2.5rem;
	border-bottom: 2px solid var(--color-red-04);
}

.ttl03::before {
	position: absolute;
	display: block;
	content: '';
	top: 1.5rem;
	left: 0;
	width: 1.5rem;
	height: 0.5rem;
	background: var(--color-red-04);
	border-radius: 1.0rem;
}

@media screen and (max-width: 767px) {
	.ttl03 {
		font-size: var(--title-02);
		margin: 3rem 0;
		padding: 0 0 0.5rem 2.0rem;
	}
	.ttl03::before {
		top: 1.0rem;
		left: 0;
		width: 1.2rem;
	}
}

.lineText {
	font-size: var(--title-03);
	margin: 30px 0 20px;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}

/* -----------------------------------------------------------
	container
----------------------------------------------------------- */

.container {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	gap: 80px;
	margin: 80px 0 0;
}

.container02 {
	max-width: clamp(320px, 90%, 1200px);
	margin: 100px auto;
}

.container_2c {
	flex: 1;
}
.container_2c_re {
	flex: 1;
	order: 2;
}

.img_r01 {
	border-radius: 20px;
	box-shadow: 10px 10px 0px 0px var(--color-red-03);
}

.img_r02 {
	border-radius: 20px;
	box-shadow: -10px 10px 0px 0px var(--color-red-03);
}

.conts_text {
	line-height: 2.2;
	margin: 30px 0 0;
}

.conts_text_ttl {
	display: inline-block;
	color: var(--color-01);
	font-size: 1.4rem;
}
.conts_text_ttl:nth-child(n + 2) {
	margin: 20px 0 0px;
}

@media (max-width: 767px) {
	.container {
		flex-flow: column;
		gap: 30px;
		margin: 50px 0 0;
	}
	.container_2c_re {
		order: 0;
	}
}

.rule_container {
	counter-reset: rule_number 0;
}
	
.rule_container p {
	margin: 0 0 20px 0;
}

.rule_container h3::before {
	counter-increment: rule_number 1;
	content: counter(rule_number) ".";
	padding-right: 5px;
}

.textIndent_icon {
	margin: 20px 0 30px;
}

.textIndent_icon li {
	margin-top: 5px;
	padding-left: 1.2rem;
	text-indent: -1.2rem;
}

.textIndent_icon li::before {
	font-family: 'Font Awesome 5 Free';
	content: "\f111";
	font-size: 0.5rem;
	font-weight: 900;
	vertical-align: middle;
	padding: 0 7px 0px 0;
}

/* -----------------------------------------------------------
	page_visual
----------------------------------------------------------- */

#page_visual {
	position: relative;
	max-width: clamp(320px, 90%, 1400px);
	min-height: 300px;
	margin: 50px auto 0;
	border-radius: 20px;
	background-size: cover;
	overflow: hidden;
}

.page_bg {background: url("img/conts/page_main.jpg") no-repeat center;}
.company_bg {background: url("img/conts/company_main.jpg") no-repeat center;}
.rule_bg {background: url("img/conts/rule_main.jpg") no-repeat center;}
.access_bg {background: url("img/conts/access_main.jpg") no-repeat center top;}
.contact_bg {background: url("img/conts/contact_main.jpg") no-repeat top;}

.page_visual_mask {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15,52,71,0.4);
	min-height: 300px;
}

#page_visual h1 {
	position: absolute;
	color: var(--color-white);
	font-size: 2.0rem;
	font-weight: 700;
	letter-spacing: 0.3rem;
}

@media (max-width: 767px) {
	#page_visual {
		min-height: 200px;
		margin: 50px auto 20px;
	}
	#page_visual h1 {
		font-size: 1.6rem;
		font-weight: 500;
	}
	.page_visual_mask {
		min-height: 200px;
	}
}

/* --------------------------------------------------------
	btn
-------------------------------------------------------- */

a.btn01 {
	display: block;
	width: 350px;
	margin: 50px auto 0;
	padding: 0.5rem;
	font-weight: 500;
	text-align: center;
	color: var(--color-white);
	background: var(--color-btn-01);
	border: 2px solid var(--color-btn-01);
	border-radius: 50px;
	transition: .4s;
}
a.btn01:hover {
	background: var(--color-btn-02);
}

a.btn01:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f138";
	font-weight: 900;
	padding-left: 10px;
}

@media screen and (max-width: 767px) {
	a.btn01 {
		width: 80%;
	}
}


.btn02 a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: var(--color-white);
	max-width: 300px;
	margin: 30px auto 0;
	padding: 10px 25px;
	transition: 0.3s ease-in-out;
	background: var(--color-btn-01);
	border-radius: 9999px;
}
.btn02 a:after {
	position: absolute;
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6px;
	height: 6px;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transition: right 0.4s;
	transform: translateY(-50%) rotate(45deg);
}
.btn02 a:hover {
	background: var(--color-btn-02);
}
.btn02 a:hover:after {
	right: 1.5rem;
}

a.text_link01 {
	display: inline-block;
	color: var(--color-link-text);
	font-size: 1.1rem;
	margin: 20px 0 0;
	transition: all 0.4s;
	padding-left: 1.2rem;
	text-indent: -1.2rem;
}

a.text_link01:hover {
	color: var(--color-link-hover);
}

a.text_link01::before {
	font-family: 'Font Awesome 5 Free';
	content: "\f138";
	font-weight: 900;
	padding-right: 5px;
}

/* -----------------------------------------------------------
	about_list
----------------------------------------------------------- */

.about_list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #ccc;
	padding: 20px 10px;
}
.about_list li .head {
	min-width: 15%;
	max-width: 15%;
}

@media only screen and (max-width:559px) {
	.about_list li {
		flex-flow: column;
	}
	.about_list li .head {
		max-width: 100%;
	}
}

/*----------------------------------------------------
	table
----------------------------------------------------*/

.table01 {
	width: 100%;
	margin: 30px 30px;
}
.table01 tr {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.table01 th {
	width: 40%;
	padding: 20px;
}
.table01 td {
	padding: 20px;
	border: 0px solid #ddd;
}

@media only screen and (max-width:767px) {
	.table01 {
		margin: 30px 0px;
	}
	.table01 th,td {
		width: auto;
		display: block;
		border-top: none;
	}
	.table01 td {
		padding: 0 20px 20px;
	}
	.table01 tr:first-child th { border-top: 0px solid #ddd; }
}



.table_style {
	width: 100%;
	white-space: nowrap;
	margin: 0px 0 0px;
}

.table_style th,td {
	width: 15%;
	padding: 10px;
	border: 1px solid var(--color-red-02);
}

.table_style th {
	background: var(--color-red-05);
}

@media only screen and (max-width:767px) {
	.table_style th,td {
		width: 100%;
	}
}

/* --------------------------------------------------------
	form
-------------------------------------------------------- */

textarea {
	line-height: 1.8;
	field-sizing: content;
	min-height: 3lh;
}

.form_container {
	accent-color: #080; /* 好きなカラーに変更してください */
}

.form_iconH {
	color: var(--color-white);
	font-size: 12px;
	margin: 0 10px;
	padding: 5px 8px;
	border-radius: 5px;
	background: var(--color-red-04);
	float: right;
}
.form_iconA {
	color: var(--color-white);
	font-size: 12px;
	margin: 0 10px;
	padding: 5px 8px;
	border-radius: 5px;
	background: var(--color-gray-07);
	float: right;
}

input::-webkit-input-placeholder { color: var(--color-black-03); }
input::-moz-placeholder { color: var(--color-black-03); }

input:focus, select:focus, textarea:focus {
	outline: none;
	background: var(--color-blue-06);
}

.textarea_form {
	margin: 0 55px 0 10px!important;
}

.form-text {
	border: 1px solid var(--color-gray-07);
	border-radius: 5px;
	padding: 10px;
	margin: 0 5px 0 10px;
	background: var(--color-gray-03);
}

.form-submit {
	font-size: 1.1em;
	letter-spacing: 0.2em;
	margin: 0 0 50px;
	padding: 10px 50px;
	border:1px solid var(--color-btn-01);
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	color:var(--color-white);
	background: var(--color-btn-01);
	cursor: pointer;
	transition: .2s linear;
}

.form-submit:hover {
	background: var(--color-btn-02);
	transition: .2s linear;
}

.submit_center {
	display: flex;
	justify-content: center;
}

input[type='checkbox'] {
	position: relative;
	width: 1.5em;
	height: 1.5em;
	margin: 0 7px 0 10px;
	border: 1px solid var(--color-black-03);
	border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	cursor: pointer;
	vertical-align: middle;
}
input[type=checkbox]::before {
	position: absolute;
	content: "";
	display: block;
	top: 1px;
	left: 5px;
	width: 8px;
	height: 14px;
	border-style: solid;
	border-color: var(--color-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
}
input[type=checkbox]:checked {
	color: #fff;
	border-color: var(--color-black-03);
	background: var(--color-black-03);
}
input[type=checkbox]:checked::before {
	opacity: 1;
}

@media only screen and (max-width:767px) {
	.form-text {
		width: 90%!important;
		margin: 5px 5px 5px 0!important;
	}
}

/* -----------------------------------------------------------
	breadcrumb
----------------------------------------------------------- */

#breadcrumb {
	max-width: clamp(320px, 90%, 1400px);
	font-size: 0.9em;
	margin: 0 auto;
	padding: 10px 10px;
}

#breadcrumb li {
	display: inline;
}

#breadcrumb li:after {
	content: '\03e';
	padding: 0 5px;
}

#breadcrumb li:last-child:after {
	content: '';
}

#breadcrumb li a {
	color: var(--color-black-01);
}
#breadcrumb li a:hover {
	text-decoration: none;
}

#breadcrumb li:first-child a:before {
	font-family: 'Font Awesome 5 Free';
	content: '\f015';
	font-size: 0.9em;
	padding-right: 5px;
	font-weight: 900;
}

@media (max-width: 767px) {
	#breadcrumb {
		width: 90%;
		padding: 0;
	}
}

/* -----------------------------------------------------------
	reserve_wrap
----------------------------------------------------------- */

.reserve_wrap {
	max-width: clamp(320px, 90%, 1200px);
	margin: 100px auto;
	padding: 40px;
	text-align: center;
	border: 1px solid var(--color-blue-03);
	border-radius: 20px;
	background: var(--color-blue-05);
}

.reserve_ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--title-01);
	font-weight: 500;
	margin: 0 0 20px;
}

.reserve_ttl img {
	width: 30px;
	margin: 0 10px 0 0;
}

@media (max-width: 767px) {
	.reserve_wrap {
		margin: 0 auto 100px;
	}
	.reserve_wrap p {
		text-align: left;
	}
	.reserve_ttl {
		font-size: var(--title-02);
	}
	.reserve_ttl img {
		width: 25px;
		margin: 0 10px 0 0;
	}
}

/* -----------------------------------------------------------
	cta_wrap
----------------------------------------------------------- */

.cta_wrap {
	position: relative;
	max-width: clamp(320px, 90%, 1400px);
	margin: 100px auto;
	border-radius: 50px;
	overflow: hidden;
}

.cta_bg {
	min-height: 350px;
	transition: transform .6s ease;
	background: url("img/index/index_img01.jpg") no-repeat center / cover;
}

.cta_wrap:hover .cta_bg {
	transform: scale(1.1);
}

/* マスク */
.cta_wrap::before {
	position: absolute;
	content: '';
	width: 100%;
	height: auto;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0.6; /* 最初は透明（非表示） */
	transition: opacity .6s ease; /* opacityへ変化 */
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.cta_wrap:hover::before {
	opacity: 1;
}

.cta_container {
	position: absolute;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	color: var(--color-white);
	width: 100%;
	height: 100%;
	margin: 0px auto;
	padding: 0px 100px;
	z-index: 2;
}

.cta_container h3 {
	font-size: var(--title-01);
	margin: 0 0 20px;
}

@media (max-width: 767px) {
	.cta_wrap {
		width: 100%;
		border-radius: 20px;
	}
	.cta_container {
		padding: 0px 30px;
	}
	.cta_container h3 {
		font-size: var(--title-02);
	}
}

.cta_btn div {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	bottom: 120px;
	right: 10rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	overflow: hidden;
}
.cta_btn .circle {
	position: absolute;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	transform: rotate(-90deg);
}
.cta_btn .circle circle {
	transition: 0.3s all ease;
	fill: transparent;
	stroke: var(--color-white);
	stroke-width: 2.0;
	stroke-dasharray: 0 366;
}
.cta_btn .allow-right {
	width: 30px;
	height: 10px;
	margin-left: 7px;
}
.cta_wrap &gt; a:hover div &gt; .circle &gt; circle {
	stroke-dasharray: 366,366;
}

@media (max-width: 767px) {
	.cta_btn div {
		bottom: 20px;
		left: 30px;
	}
}


/* -----------------------------------------------------------
	pageTop
----------------------------------------------------------- */

#scrollUp {
	bottom: 30px;
	right: 30px;
	background-image: url("img/common/pagetop.png");
	width: 50px;
	height: 50px;
}
#scrollUp:hover {
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
	opacity: 0.7;
}

/* -----------------------------------------------------------
	footer
----------------------------------------------------------- */

#footer {
	position: relative;
	color: var(--color-white);
	width: 100%;
}

#footer a {
	color: var(--color-white);
}

#footer a:hover {
	color: var(--color-yellow-02);
}

.footer_inner {
	position: relative;
	z-index: 1;
}

.footer_inner::before {
	position: absolute;
	content: "";
	width: 100vw;
	height: 100%;
	right: 100px;
	border-radius: 0 100px 0 0;
	background: var(--color-blue-07);
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.footer_inner::before {
		right: 20px;
	}
}

.footer_container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	max-width: clamp(320px, 90%, 1200px);
	margin: 0px auto;
	padding: 60px 0 20px;
}

.footer_logo {
	font-size: 1.3em;
	margin-bottom: 5px;
}
.footer_info {
	flex: 1;
}
.footer_info li {
	line-height: 1.9;
}

.footer_link {
	flex: 1;
	margin-left: 40px;
}

.footer_link_list li {
	width: 200px;
}

.footer_link li a {
	position: relative;
	line-height: 1.9;
	margin-right: 0px;
	padding-left: 20px;
}

.footer_link li a:before {
	font-family: 'Font Awesome 5 Free';
	content: "\f054";
	position: absolute;
	font-size: 0.9em;
	left: 0;
	top: -3px;
	font-weight: 900;
}
.footer_sns {
	margin-top: 10px;
}
.footer_sns li a {
	line-height: 1.9;
}
.copyright {
	color: var(--color-white);
	font-size: 0.8em;
	text-align: center;
	margin: 0px;
	padding: 15px 0px;
}

@media screen and (max-width: 767px) {
	.footer_container {
		flex-flow: column;
		width: 100%;
		padding: 60px 40px 0px 20px;
	}
	.footer_info, .footer_link {
		margin: 0 0 30px 0;
	}
	.footer_sns {
		margin: 30px 0 0px 0;
	}
}
</pre></body></html>