@charset 'utf-8';

/*---------------------------------------------------------------------- */
/* Global Styles
------------------------------------------------------------------------ */

/* Initialize
---------------------------------------------------------- */

:root {
	--main-color: #383838;
	--hilight-color: #00a95c;
	--bg-color01: #e6e6e3;
	--bg-color02: #f7f7f7;
	--bg-color03: #707070;
	--border-color01: #c1c1c1;
	--border-color02: #b2b2b2;
}

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

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, dialog,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, picture {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 100%;
}

html, body {
	height: 100%;
}

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	line-height: 1.8;
	background: #fff;
	color: #000;
	word-break: normal;
	word-wrap: break-word;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%;
}

main {
	display: block;
}

ul, ol {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
}

a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

ins {
	background-color: #ff9;
	color: #fff;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #fff;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	font-size: 1em;
	border-collapse: collapse;
	border-spacing: 0;
}

input, select, textarea {
	padding: 2px;
}

input, select, button {
	vertical-align: middle;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	background: none;
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

area {
	outline: 0;
}


/* Override
---------------------------------------------------------- */

html {
	/* The elastic fonts based on 320px window width. */
	font-size: calc(100dvw / 32);
}

body {
	line-height: 1.6;
	color: var(--main-color);
	font-family: 'Noto Sans', sans-serif;
	font-weight: 500;
	font-size: 1.2rem;
	letter-spacing: .05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
}

a {
	color: var(--main-color);
	text-decoration: underline;
}

a:is(:hover, :focus) {
	text-decoration: none;
}

a[tabindex='-1'] {
	opacity: .3;
	pointer-events: none;
}

img {
	width: 100%;
}

table {
	font-family: inherit;
	font-weight: inherit;
}

input, select, textarea, button {
	box-sizing: border-box;
	box-shadow: none;
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
}

input, select, textarea {
	border: 0;
	border-radius: 0;
	outline: 0;
	color: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input:focus, select:focus, textarea:focus {
	outline: .1rem solid #c5c4c4;
}

input::placeholder,
textarea::placeholder {
	color: #979797;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #979797;
}

select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* Utillities
---------------------------------------------------------- */

.break-sp {
	display: block;
}

.nobreak-sp {
	display: none;
}

.grecaptcha-badge {
	display: none;
}

/* Button --------------------------------- */

.btn {
	display: flex;
	align-items: center;
	position: relative;
	margin: 2rem auto 0 auto;
	padding: 0 1.8rem;
	width: 12.7rem;
	height: 3.3rem;
	background: var(--main-color);
	border-radius: 9999px;
	color: #fff;
	font-weight: 700;
	font-size: .8rem;
	text-decoration: none;
	letter-spacing: .05em;
	transition: background-color .3s;
}

.btn[lang='en'] {
	font-weight: 600;
	text-transform: uppercase;
}

.btn:is(:hover, :focus) {
	background: var(--hilight-color);
	text-decoration: none;
}

.btn::after {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	width: .6rem;
	height: .6rem;
	border: 0 solid #fff;
	border-width: .1rem .1rem 0 0;
	content: '';
	transform: translateY(-50%) rotateZ(45deg);
}

/* .btn-fade */

.btn-fade {
	text-decoration: none;
	transition: opacity .3s linear;
}

.btn-fade:is(:hover, :focus) {
	text-decoration: none;
	opacity: .7;
}

/* .btn-zoom */

.btn-zoom {
	display: block;
	overflow: hidden;
}

.btn-zoom img {
	transition: all .3s ease-out;
}

.btn-zoom:hover img {
	transform: scale(1.1);
}

/* .btn-more */

.btn-more {
	font-size: .9rem;
}

/* .btn-entry */

.btn-entry {
	justify-content: center;
	margin-top: 4rem;
	width: 16.1rem;
	height: 4.5rem;
	font-size: 1.4rem;
}

.btn-entry::after {
	right: 2rem;
	width: 1.1rem;
	height: 1.1rem;
	border-width: .15rem .15rem 0 0;
}

/* .btn-submit */

.btn-submit, .btn-back {
	justify-content: center;
	margin-top: 3rem;
	width: 15.3rem;
	height: 3.8rem;
}

.btn-submit::after {
	right: 2rem;
}

.btn-submit:disabled {
	cursor: auto;
	pointer-events: none;
	opacity: .7;
}

/* .btn-back */

.btn-back {
	padding: 0 1.5rem 0 3rem;
	background: #fff;
	border: .1rem solid var(--main-color);
	color: var(--main-color);
}

.btn-back:is(:hover, :focus) {
	border-color: var(--hilight-color);
}

.btn-back::after {
	right: auto;
	left: 2rem;
	border-width: 0 0 .1rem .1rem;
	border-color: var(--main-color);
}

/* .btn-group */

.btn-group {
	justify-content: center;
	width: 21.7rem;
	height: 4.7rem;
	font-size: 1.2rem;
}

.btn-group::after {
	right: 2.5rem;
	width: .8rem;
	height: .8rem;
	border-width: .15rem .15rem 0 0;
}

/* BG --------------------------------- */

.bg01 {
	background: var(--bg-color01);
}

.bg02 {
	background: var(--bg-color02);
}

/* Section --------------------------------- */

.section {
	padding: 6.5rem 2rem 5.5rem;
}

.section-header > .title {
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 1rem 0;
}

.section-header > .title > .txt01 {
	line-height: 1.2;
	font-weight: 300;
	font-size: 2.8rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0;
}

.section-content {
	margin-top: 4rem;
}

.section-content > .title {
	line-height: 1.66;
	font-weight: 600;
	font-size: 1.8rem;
	text-align: center;
	letter-spacing: .05em;
}

.section-content .txt {
	text-align: justify;
}

.section-content > .txt {
	margin-top: 4rem;
	padding: 0 1rem;
}

/* Block --------------------------------- */

.block {
	padding: 6.5rem 2rem 5.5rem;
}

.block .txt {
	text-align: justify;
}

.block > .txt {
	padding: 0 1rem;
}

/* .block-tabulate */

.block-tabulate {
	border-top: 1px solid var(--border-color02);
}

.block-tabulate > dt {
	padding: 1.5rem 1rem 0 1rem;
	font-weight: 700;
}

.block-tabulate > dd {
	margin-top: .5rem;
	padding: 0 1rem 1.5rem 1rem;
	border-bottom: 1px solid var(--border-color02);
}

.block-tabulate > dd > dl > dt {
	font-weight: 700;
}

/* .block-form */

.block-form {
	margin-top: 3.5rem;
	padding: 1.5rem 1.5rem 4.5rem;
	background: #fff;
	border-radius: .5rem;
}

.block-form :is(.required, .optional) {
	margin-left: .8rem;
	padding: .3rem .6rem;
	background: var(--main-color);
	border-radius: 9999px;
	color: #fff;
	font-weight: 600;
	font-size: .8em;
	letter-spacing: .05em;
}

.block-form :is(.errors, span.validation-error) {
	color: #ff0000;
}

.block-form .errors {
	margin-top: 1.5rem;
	padding: 1rem 0;
	border: .1rem solid #ff0000;
	text-align: center;
}

.block-form :where(input[type='text'], input[type='email'], input[type='tel'], select, textarea) {
	margin-top: 1rem;
	padding: .4rem 1rem;
	width: 100%;
	background: var(--bg-color02);
	border: .1rem solid var(--border-color01);
	border-radius: .5rem;
}

.block-form :where(input[type='text'], input[type='email'], input[type='tel'], select) {
	height: 3.6rem;
}

.block-form select {
	color: var(--border-color01);
}

.block-form :is(select:focus, select.selected) {
	color: inherit;
}

.block-form .select {
	display: inline-block;
	position: relative;
	width: 100%;
}

.block-form .select::after {
	position: absolute;
	top: 50%;
	right: .6rem;
	width: .6rem;
	height: .6rem;
	border: 1px solid #606060;
	border-width: 0 .1rem .1rem 0;
	transform: translateY(-50%) rotateZ(45deg);
	content: '';
}

.block-form input[type='radio'] {
	position: absolute;
	top: 50%;
	left: 0;
	margin: 0;
	width: 1.4rem;
	height: 1.4rem;
	background: #fff;
	border: .1rem solid var(--bg-color03);
	border-radius: 50%;
	transform: translateY(-50%);
}

.block-form input[type='radio']:checked::after {
	position: absolute;
	top: 50%;
	left: .2rem;
	width: .8rem;
	height: .8rem;
	background: #383838;
	border-radius: 50%;
	content: '';
	transform: translateY(-50%);
}

.block-form input[type='radio'] + label {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	padding: .2rem 0 .2rem 2rem;
}

.block-form textarea {
	padding: 1rem;
	height: 16.6rem;
}

.block-form .fields {
	margin-top: -2.5rem;
}

.block-form .fields dt {
	position: relative;
	margin-top: 2.5rem;
	font-weight: 700;
}

.block-form .fields dt .option {
	font-size: .8rem;
}

.block-form .fields dd {
	position: relative;
	margin-top: .5rem;
}

.block-form .fields dd span.validation-error {
	display: block;
	font-weight: 700;
	font-size: .9rem;
}

.block-form .fields dd .notes {
	display: block;
	margin-top: 1rem;
	font-size: .9rem;
}

.block-form .fields dd ul li {
	position: relative;
}

.block-form .fields-file li {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	position: relative;
}

.block-form .fields-file li + li {
	margin-top: 1rem;
}

.block-form .fields-file li input[type='file'] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.block-form .fields-file li .btn-file {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 1rem;
	left: .8rem;
	width: 4.75rem;
	height: 1.6rem;
	background: #979797;
	border-radius: .5rem;
	color: #fff;
	font-weight: 600;
	font-size: .8rem;
	letter-spacing: .05em;
}

.block-form .fields-file li label {
	display: flex;
	align-items: center;
	padding-left: 6rem;
	width: 100%;
	height: 3.6rem;
	background: var(--bg-color02);
	border: .1rem solid var(--border-color01);
	border-radius: .5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.block-form .fields-file li .size {
	margin-left: 1rem;
	color: #b2b2b2;
}

.block-form .fields-file li .validation-error {
	margin-top: .5rem;
	width: 100%;
}

.block-form .fld-acceptance {
	position: relative;
	margin-top: 3.5rem;
	text-align: center;
}

.block-form .fld-acceptance input[type='checkbox'] {
	opacity: 0;
}

.block-form .fld-acceptance input[type='checkbox'] + label {
	position: relative;
	padding-left: 2rem;
}

.block-form .fld-acceptance input[type='checkbox'] + label::before,
.block-form .fld-acceptance input[type='checkbox'] + label::after {
	position: absolute;
	top: .2rem;
	left: 0;
	border: 1px solid #333;
	content: '';
}

.block-form .fld-acceptance input[type='checkbox'] + label::before {
	width: 1.4rem;
	height: 1.4rem;
}

.block-form .fld-acceptance input[type='checkbox']:checked + label::after {
	top: .5rem;
	left: .3rem;
	width: 1rem;
	height: .5rem;
	border-width: 0 0 1px 1px;
	transform: rotateZ(-45deg);
}

.block-form:is(.confirm, .error, .thanks) {
	margin-top: 0;
	padding-bottom: 1.5rem;
}

.block-form.confirm .fields {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #b2b2b2;
}

.block-form.confirm .fields dt {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
}

.block-form.confirm .fields dt:not(:first-of-type) {
	border-top: 1px solid #b2b2b2;
}

.block-form:is(.confirm, .error, .thanks) .message {
	text-align: center;
}

/* .block-recaptcha */

.block-recaptcha {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
	padding: 1rem 1.2rem;
	width: 100%;
	font-size: .9rem;
	letter-spacing: 0;
}

.block-recaptcha > dt {
	margin-right: 1.2rem;
	width: 3.5rem;
}

.block-recaptcha > dd > a[target='_blank']::after {
	display: none;
}

/* Other --------------------------------- */

/* .logo */

.logo > a {
	display: block;
	width: 100%;
	height: 100%;
}

.logo > a > svg {
	width: 100%;
	height: auto;
}

/* Animation width inview --------------------------------- */

[data-effect='fadeIn'] {
	visibility: hidden;
}

[data-effect='fadeIn'].inview {
	visibility: visible;
	animation: fadeIn 1.25s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* Layout
---------------------------------------------------------- */

/* Base --------------------------------- */

[lang='en'] {
	font-family: 'Barlow', sans-serif;
}

#container {
	position: relative;
	min-width: 320px;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

#header {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	height: 7.5rem;
	pointer-events: none;
}

#header::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10rem;
	background: linear-gradient(to bottom, rgba(61, 67, 71, 1), rgba(61, 67, 71, 0));
	opacity: .4;
	content: '';
}

/* #header --------------------------------- */

#header > svg {
	display: none;
}

#header > .logo {
	position: absolute;
	top: 1.8rem;
	left: 2rem;
	width: 21rem;
	height: 3.9rem;
	z-index: 10;
	pointer-events: auto;
}

#header > .logo > a > svg {
	fill: #fff;
}

/* #gnav-sp */

#gnav-sp {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	padding: 8rem 3em 5rem 5rem;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	background: rgba(10, 36, 56, .75);
	color: #fff;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s linear;
}

#gnav-sp > .gnav-inner {
	display: flex;
	flex-flow: column;
	width: 100%;
}

#gnav-sp > .gnav-inner a {
	color: #fff;
}

#gnav-sp > .gnav-inner > li {
	margin-top: .5rem;
	line-height: 2.2;
}

#gnav-sp > .gnav-inner > li:last-of-type {
	margin-top: 2rem;
}

#gnav-sp > .gnav-inner > li > .title {
	font-weight: 700;
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: .05em;
}

#gnav-sp > .gnav-inner > li:last-of-type > .title > a {
	display: grid;
	place-content: center;
	margin: 0 auto;
	width: 16.9rem;
	height: 4rem;
	border: .2rem solid #fff;
	border-radius: 9999px;
}

#gnav-sp > .gnav-inner > li > .sub {
	margin: 0 0 1rem 2rem;
}

#gnav-sp > .gnav-inner > li > .sub > li {
	font-size: 1.4rem;
	letter-spacing: .05em;
}

/* #gnav-pc */

#gnav-pc {
	display: none;
}

/* #btn-menu */

#btn-menu,
#btn-menu .icons {
	position: absolute;
	top: 0;
	left: 0;
	width: 5rem;
	height: 5rem;
}

#btn-menu {
	top: 1.2rem;
	left: auto;
	right: .9rem;
	z-index: 200;
	overflow: hidden;
	cursor: pointer;
	pointer-events: auto;
	transition: all .3s ease-out;
}

#btn-menu .icons {
	transition: all .3s ease-out;
}

#btn-menu .icon {
	display: block;
	position: absolute;
	top: 2.5rem;
	left: 1.5rem;
	width: 2rem;
	height: .15rem;
	background: #fff;
	transform: rotate(0);
	transition: all .3s ease-out;
}

#btn-menu .icon-top {
	transform: translateY(-.9rem);
}

#btn-menu .icon-mid {
	transform: translateY(0);
}

#btn-menu .icon-bot {
	transform: translateY(.9rem);
}

/* Nav Active */

.nav-active {
	position: fixed;
	width: 100%;
}

.nav-active #gnav-sp {
	opacity: 1;
	pointer-events: auto;
}

.nav-active #btn-menu {
	background: none;
}

.nav-active #btn-menu .icons {
	transform: rotate(90deg);
}

.nav-active #btn-menu .icon-top,
.nav-active #btn-menu .icon-bot {
	top: 2.3rem;
	left: 1.6rem;
}

.nav-active #btn-menu .icon-top {
	transform: rotate(45deg);
}

.nav-active #btn-menu .icon-mid {
	opacity: 0;
}

.nav-active #btn-menu .icon-bot {
	transform: rotate(-45deg);
}

/* #main --------------------------------- */

/* #main-header */

#main-header {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 24.9rem;
	color: #fff;
}

#main-header > .title {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	line-height: 1.18;
}

#main-header > .title > .txt01 {
	margin-top: 2.5rem;
	font-weight: 300;
	font-size: 3.2rem;
	text-transform: uppercase;
	letter-spacing: 0;
}

#main-header > .title > .txt02 {
	margin-top: 1rem;
	font-weight: 500;
}

#main-header > .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 24.9rem;
}

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

/* #block-contact */

#block-contact {
	padding: 6rem 0;
}

#block-contact > .title {
	display: flex;
	flex-flow: column;
	align-items: center;
	line-height: 1.2;
	font-weight: 300;
	font-size: 3rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0;
}

#block-contact > .txt {
	margin-top: 2rem;
	text-align: center;
}

#block-contact > .more > .btn {
	margin-top: 3rem;
}

/* #footer-content */

#footer-content {
	padding: 6rem 0 4.5rem;
	background: #fff;
}

#footer-content > .logo {
	margin: 0 auto;
	width: 19.2rem;
	height: 3.7rem;
}

#footer-content > .logo > a > svg {
	fill: var(--main-color);
}

/* .fnav */

#footer-content > .fnav {
	display: none;
}

/* #copyright */

#copyright {
	margin-top: 5rem;
	font-weight: 500;
	font-size: .8rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0;
}





/*---------------------------------------------------------------------- */
/* 768px Tablet & PC Styles
------------------------------------------------------------------------ */

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

/* Overlay
---------------------------------------------------------- */

html {
	/* The elastic fonts based on 1600px window width include 17px scrollbar */
	font-size: calc(100vw / 161.7);
}

body {
	line-height: 2;
	font-size: 1.8rem;
}

a[href^='tel:'] {
	pointer-events: none;
}

/* Utillities
---------------------------------------------------------- */

.break-sp {
	display: none;
}

.nobreak-sp {
	display: block;
}

/* Button --------------------------------- */

.btn {
	padding: 0 3rem;
	width: 23rem;
	height: 6rem;
	font-size: 1.8rem;
}

.btn::after {
	right: 3rem;
	width: 1.1rem;
	height: 1.1rem;
	border-width: .3rem .3rem 0 0;
}

/* .btn-more */

.btn-more {
	font-size: 1.8rem;
}

/* .btn-entry */

.btn-entry {
	margin-top: 6.5rem;
	width: 31.8rem;
	height: 8rem;
	font-size: 3rem;
}

.btn-entry::after {
	right: 3.5rem;
	width: 1.1rem;
	height: 1.1rem;
	border-width: .3rem .3rem 0 0;
}

/* .btn-submit */

.btn-submit, .btn-back {
	margin-top: 4rem;
	width: 31.8rem;
	height: 8rem;
	font-size: 1.8rem;
}

/* .btn-back */

.btn-back {
	padding: 0 3rem 0 5rem;
}

.btn-back::after {
	right: auto;
	left: 3rem;
	border-width: 0 0 .3rem .3rem;
}

/* .btn-group */

.btn-group {
	width: 40rem;
	height: 8rem;
	font-size: 1.8rem;
}

.btn-group::after {
	right: 3.5rem;
	width: 1.2rem;
	height: 1.2rem;
	border-width: .3rem .3rem 0 0;
}


/* Section --------------------------------- */

.section {
	padding: 16rem 35rem;
}

.section-header > .title > .txt01 {
	line-height: 1.2;
	font-size: 6.6rem;
}

.section-content {
	margin-top: 5rem;
}

.section-content > .title {
	line-height: 1.83;
	font-size: 3rem;
}

.section-content > .txt {
	margin-top: 6rem;
	padding: 0;
}

/* Block --------------------------------- */

.block {
	padding: 16rem 35rem;
}

.block > .txt {
	padding: 0;
}

/* .block-tabulate */

.block-tabulate {
	display: flex;
	flex-flow: row wrap;
}

.block-tabulate > dt {
	padding: 2.7rem 2.5rem;
	width: 26rem;
	border-bottom: 1px solid var(--border-color02);
}

.block-tabulate > dt.wide {
	width: 100%;
	border-bottom: 0;
}

.block-tabulate > dd {
	margin-top: 0;
	padding: 2.7rem 4rem 2.7rem 0;
	width: calc(100% - 26rem);
}

.block-tabulate > dd.wide {
	padding: 0 4rem 2.7rem 4rem;
	width: 100%;
}

.block-tabulate > dd .maps li + li {
	margin-top: 4rem;
}

.block-tabulate > dd .map {
	margin-top: 2rem;
	padding-top: 40.14%;
}

.block-tabulate > dd .links {
	display: grid;
	grid-template-rows: repeat(4, 1fr);
	grid-auto-flow: column;
	gap: 0 6rem;
}

.block-tabulate > dd .links li:nth-child(n+4):nth-child(-n+6) {
	grid-column: 2;
}

.block-tabulate > dd .links li:nth-child(n+7):nth-child(-n+10) {
	grid-column: 3;
}

/* .block-form */

.block-form {
	margin-top: 10rem;
	padding: 10rem;
	border-radius: 1rem;
}

.block-form :is(.required, .optional) {
	margin-left: 0;
	padding: 0;
	width: 8rem;
	font-size: 1.2rem;
	text-align: center;
}

.block-form .errors {
	margin-top: 2.5rem;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	letter-spacing: .05em;
}

.block-form span.validation-error {
	font-size: 1.4rem;
	letter-spacing: .05em;
}

.block-form :where(input[type='text'], input[type='email'], input[type='tel'], select, textarea) {
	margin-top: 0;
	padding: .4rem 3rem;
	height: 7rem;
	border-radius: 1rem;
}

.block-form textarea {
	padding: 2rem 3rem;
	height: 32.2rem;
}

.block-form .select::after {
	right: 2rem;
	width: 1.2rem;
	height: 1.2rem;
	border-width: 0 2px 2px 0;
}

.block-form input[type='radio'] {
	left: 1rem;
	margin: 0;
	width: 2.5rem;
	height: 2.5rem;
}

.block-form input[type='radio']:checked::after {
	left: .3rem;
	width: 1.6rem;
	height: 1.6rem;
}

.block-form input[type='radio'] + label {
	padding-left: 4.7rem;
}

.block-form .fields {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	margin-top: -4rem;
}

.block-form .fields :is(dt, dd) {
	margin-top: 4rem;
}

.block-form .fields dt {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	width: 23.5rem;
	height: 7rem;
}

.block-form .fields .fields-category {
	display: flex;
	gap: 0 4rem;
}

.block-form .fields dt .option {
	font-size: 1.2rem;
}

.block-form .fields dd {
	padding-bottom: 0;
	width: calc(100% - 23.5rem);
}

.block-form .fields dd span.validation-error {
	display: inline;
	font-size: 1.2rem;
}

.block-form .fields dd .notes {
	margin-top: 2rem;
	font-size: 1.2rem;
}

.block-form .fields-file li + li {
	margin-top: 2rem;
}

.block-form .fields-file li .btn-file {
	top: 2.1rem;
	left: 2.2rem;
	width: 7.3rem;
	height: 2.8rem;
	font-size: 1.2rem;
}

.block-form .fields-file li label {
	padding-left: 11rem;
	height: 7rem;
	border-radius: 1rem;
}

.block-form .txt-acceptance {
	margin-top: 4rem;
	text-align: center;
}

.block-form .fld-acceptance {
	margin-top: 5rem;
}

.block-form .fld-acceptance input[type='checkbox'] + label {
	padding-left: 2.8rem;
}

.block-form .fld-acceptance input[type='checkbox'] + label::before {
	width: 1.9rem;
	height: 1.9rem;
}

.block-form .fld-acceptance input[type='checkbox']:checked + label::after {
	top: .6rem;
	left: .4rem;
	width: 1.2rem;
	height: .7rem;
}

.block-form :is(.btn-submit, .btn-back) {
	margin-top: 4rem;
}

.block-form:is(.confirm, .error, .thanks) {
	padding-bottom: 10rem;
}

.block-form.confirm .fields {
	margin-top: -2rem;
	padding-bottom: 2rem;
}

.block-form.confirm .fields :is(dt, dd) {
	margin-top: 2rem;
	padding-top: 2rem;
}

.block-form.confirm .fields dt {
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	height: auto;
}

.block-form.confirm .fields dd {
	border-top: 1px solid var(--border-color02);
}

.block-form.confirm .btns {
	display: flex;
	flex-flow: row-reverse;
	align-items: center;
	justify-content: center;
	gap: 0 2rem;
}

/* .block-recaptcha */

.block-recaptcha {
	margin: 3.5rem auto 0;
	padding: 0;
	width: 43rem;
	font-size: 1.6rem;
}

.block-recaptcha > dt {
	margin-right: 2rem;
	width: 4.8rem;
}


/* Layout
---------------------------------------------------------- */

/* Base --------------------------------- */

#header {
	height: 14rem;
}

#header::before {
	height: 19.1rem;
}

/* #header --------------------------------- */

#header > .logo {
	top: 4.1rem;
	left: 4.3rem;
	width: 31.4rem;
	height: 5.8rem;
}

/* #gnav-sp */

#gnav-sp {
	display: none;
}

/* #gnav-pc */

#gnav-pc {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	padding: 0 4rem;
	width: 100%;
	height: 100dvh;
	pointer-events: none;
	transition: background-color .5s ease-out;
}

#gnav-pc > .gnav-inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0 3.5rem;
	margin-top: 5.5rem;
	width: 100%;
}

#gnav-pc > .gnav-inner > li > .title {
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	pointer-events: auto;
}

#gnav-pc > .gnav-inner > li:not(:last-of-type) > .title {
	transition: opacity .3s;
}

#gnav-pc > .gnav-inner > li:not(:last-of-type) > .title:is(:hover, :focus) {
	opacity: .7;
}

#gnav-pc > .gnav-inner > li:not(:last-of-type) > .title {
	position: relative;
	padding-left: 2.5rem;
	cursor: pointer;
}

#gnav-pc > .gnav-inner > li:not(:last-of-type) > .title::before {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -.2rem;
	width: 1rem;
	height: 1rem;
	border: 0 solid #fff;
	border-width: 0 .3rem .3rem 0;
	content: '';
	transform: translateY(-50%) rotateZ(45deg);
}

#gnav-pc > .gnav-inner > li:last-of-type > .title > a {
	display: grid;
	place-content: center;
	margin: 0 auto;
	width: 16.9rem;
	height: 4rem;
	border: .2rem solid #fff;
	border-radius: 9999px;
	color: #fff;
}

#gnav-pc > .gnav-inner > li > .sub {
	display: flex;
	align-items: center;
	position: absolute;
	top: 12.7rem;
	left: 4.6rem;
	width: calc(100% - 9.2rem);
	background: #fff;
	border-radius: 1rem;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-3rem);
	transition: all .5s ease-out;
}

#gnav-pc > .gnav-inner > li.active > .sub {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

#gnav-pc > .gnav-inner > li > .sub::before {
	position: absolute;
	top: -2.6rem;
	width: 2.6rem;
	height: 2.6rem;
	border: 1.3rem solid transparent;
	border-bottom-color: #fff;
	content: '';
}

#gnav-pc > .gnav-inner > li:nth-of-type(1) > .sub {
	height: 30.7rem;
}

#gnav-pc > .gnav-inner > li:nth-of-type(1) > .sub::before {
	right: 35rem;
}

#gnav-pc > .gnav-inner > li:nth-of-type(2) > .sub {
	height: 55rem;
}

#gnav-pc > .gnav-inner > li:nth-of-type(2) > .sub::before {
	right: 22rem;
}

#gnav-pc > .gnav-inner > li > .sub > .title {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: center;
	padding-left: 6.8rem;
	width: 43.3rem;
	height: 100%;
	line-height: 1.5;
	border-radius: 1rem 0 0 1rem;
	color: #fff;
}

#gnav-pc > .gnav-inner > li:nth-of-type(1) > .sub > .title {
	background: linear-gradient(133deg, #00a95c 31%, #c8dc0c 100%);
}

#gnav-pc > .gnav-inner > li:nth-of-type(2) > .sub > .title {
	background: linear-gradient(150deg, #1f82b7 23%, #0ac2e9 100%);
}

#gnav-pc > .gnav-inner > li > .sub > .title > .txt01 {
	font-weight: 300;
	font-size: 5.9rem;
	text-transform: uppercase;
	letter-spacing: 0;
}

#gnav-pc > .gnav-inner > li > .sub > .title > .txt02 {
	font-size: 2rem;
	letter-spacing: .05em;
}

#gnav-pc > .gnav-inner > li > .sub > ol {
	display: flex;
	flex-flow: row wrap;
	gap: 1rem 2.4rem;
	padding: 5rem 4rem;
	width: calc(100% - 43.3rem);
	height: 100%;
}

#gnav-pc > .gnav-inner > li > .sub > ol > li {
	width: 22.7rem;
}

#gnav-pc > .gnav-inner > li > .sub > ol > li > a {
	display: flex;
	flex-flow: column;
}

#gnav-pc > .gnav-inner > li > .sub > ol > li > a > :is(.title, .txt) {
	padding-left: 1.8rem;
}

#gnav-pc > .gnav-inner > li > .sub > ol > li > a > .title {
	position: relative;
	margin-top: .5rem;
	font-weight: 500;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0;
}

#gnav-pc > .gnav-inner > li > .sub > ol > li > a > .title::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: .9rem;
	height: .9rem;
	border: 0 solid var(--main-color);
	border-width: .3rem .3rem 0 0;
	content: '';
	transform: translateY(-50%) rotateZ(45deg);
}

#gnav-pc > .gnav-inner > li > .sub > ol > li > a > .txt {
	line-height: 1.28;
	font-size: 1.4rem;
	letter-spacing: 0;
}

#gnav-pc > .gnav-inner > li > .sub > ol > li > a > .img {
	order: -1;
	clip-path: inset(0 0 round 1rem);
}

/* #btn-menu */

#btn-menu {
	display: none;
}

/* Nav Active */

.nav-active {
	position: static;
}

.nav-active #gnav-pc {
	background: rgba(0, 0, 0, .3);
	pointer-events: auto;
}

/* #main --------------------------------- */

/* #main-header */

#main-header {
	display: flex;
	flex-flow: column;
	height: 60rem;
	color: #fff;
}

#main-header > .title > .txt01 {
	line-height: 1.2;
	font-size: 10rem;
}

#main-header > .title > .txt02 {
	line-height: 2;
}

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

/* #block-contact */

#block-contact {
	padding: 13rem 0;
}

#block-contact > .title {
	font-size: 10rem;
}

#block-contact > .txt {
	margin-top: 3rem;
}

#block-contact > .more > .btn {
	margin-top: 4rem;
}

/* #footer-content */

#footer-content {
	display: flex;
	flex-flow: row wrap;
	gap: 9.5rem 0;
	margin: 0 2.5rem;
	padding: 8rem 7.5rem 9rem 5.5rem;
	border-radius: 1rem 1rem 0 0;
}

/* .logo */

#footer-content > .logo {
	margin: 0;
	width: 31.4rem;
	height: 5.8rem;
}

/* .fnav */

#footer-content > .fnav {
	order: -1;
	display: flex;
	position: relative;
	padding: 0 15.5rem 0 9.5rem;
	width: 100%;
}

#footer-content > .fnav > li {
	display: flex;
	gap: 1rem 3rem;
}

#footer-content > .fnav > li:first-of-type {
	width: 18.5rem;
}

#footer-content > .fnav > li:nth-of-type(2) {
	width: 37.5rem;
}

#footer-content > .fnav > li:nth-of-type(3) {
	width: 48rem;
}

#footer-content > .fnav > li:nth-last-of-type(-n+2) {
	width: 14rem;
}

#footer-content > .fnav > li:last-of-type {
	position: absolute;
	right: 15.4rem;
	top: 10rem;
}

#footer-content > .fnav > li:last-of-type > .title {
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: .05em;
}

#footer-content > .fnav > li > .title {
	font-weight: 700;
	text-transform: uppercase;
}

#footer-content > .fnav > li > .sub > li {
	line-height: 2.2;
}

#footer-content > .fnav > li > .sub > li > a {
	font-size: 1.4rem;
	letter-spacing: .05em;
}

/* #copyright */

#copyright {
	margin: 1.5rem 0 0 auto;
	font-size: 1.4rem;
}

}





/*---------------------------------------------------------------------- */
/* Print Styles
------------------------------------------------------------------------ */

@media print {

	#container {
		width: 1600px;
	}

	#header {
		position: static;
	}

	#main {
		padding-top: 0;
	}

}


/*---------------------------------------------------------------------- */
/* Guide
------------------------------------------------------------------------ */

/* body {
	background: url(../images/guide/top-pc.jpg) no-repeat center top;
	background-size: 1600px;
}

#container {
	opacity: .3;
}

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

	body {
		background: url(../images/guide/top-sp.jpg) no-repeat center top;
		background-size: 320px;
	}

	#container {
		opacity: .3;
	}

} */