@charset 'utf-8';

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

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

*,
*::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(100vw / 32);
}

body {
	line-height: 1.6;
	color: #595656;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
	letter-spacing: .05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: #595656;
	text-decoration: none;
}

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

a[target='_blank']::after {
	display: inline-block;
	margin: 0 .8rem -.2rem .8rem;
	width: 1.1rem;
	height: 1.1rem;
	background: url(../images/icon-blank.svg) no-repeat left top;
	background-size: 100%;
	content: '';
}

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: 1px solid #c5c4c4;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='url'],
textarea,
select {
	padding: 4px 10px;
}

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

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

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: 3rem auto 0 auto;
	padding: 0 2.5rem;
	width: 22rem;
	height: 5.7rem;
	border-radius: 9999px;
	font-family: 'Figtree', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	text-decoration: none;
	text-transform: uppercase;
}

.btn.disabled,
.btn:disabled {
	opacity: .5;
	pointer-events: none;
}

.btn::after {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100%;
	content: '';
	transform: translateY(-50%);
}

.btn-white {
	background: #fff;
	color: #595656;
}

.btn-white::after {
	background-image: url(../images/icon-link-green.svg);
}

.btn-green {
	background: #019944;
	color: #fff;
}

.btn-green::after {
	background-image: url(../images/icon-link-white.svg);
}

.btn-gray {
	background: #585656;
	color: #fff;
}

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

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

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

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

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

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

.section-header > .title {
	display: flex;
	flex-flow: column;
	align-items: center;
	line-height: 1.1;
}

.section-header > .title > .txt01 {
	color: #019944;
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 3rem;
	text-align: center;
	letter-spacing: 0;
}

.section-header > .title > .txt02 {
	margin-top: 1rem;
	color: #595656;
	font-weight: 700;
	font-size: 1.2rem;
}

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

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

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

/* .block-tabulate */

.block-tabulate {
	border-top: 1px solid #b2b2b2;
}

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

.block-tabulate > dd {
	margin-top: .5rem;
	padding: 0 1rem 1.5rem 1rem;
	border-bottom: 1px solid #b2b2b2;
}

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

.block-tabulate > dd .map {
	position: relative;
	margin-top: 1rem;
	padding-top: 76.92%;
}

.block-tabulate > dd .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* .block-form */

.block-form .required,
.block-form .optional {
	margin-left: .8rem;
	padding: .3rem .6rem;
	color: #fff;
	font-size: .9em;
	border-radius: 9999px;
}

.block-form .required {
	background: #1ca357;
}

.block-form .optional {
	background: #595656;
}

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

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

.block-form input[type='text'],
.block-form input[type='email'],
.block-form input[type='tel'],
.block-form input[type='radio'] + label,
.block-form select,
.block-form textarea {
	width: 100%;
	background: #f7f7f7;
	border: 1px solid #c1c1c1;
	border-radius: 5px;
}

.block-form input[type='text'],
.block-form input[type='email'],
.block-form input[type='tel'],
.block-form input[type='radio'] + label,
.block-form select {
	height: 3.6rem;
}

.block-form select {
	color: #c1c1c1;
}

.block-form select:focus,
.block-form 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 1px 1px 0;
	transform: translateY(-50%) rotateZ(45deg);
	content: '';
}

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

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

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

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

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

.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 {
	font-size: .9rem;
}

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

.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 .btn-submit > button:disabled {
	cursor: auto;
	opacity: .7;
}

.block-form .btn-back .btn {
	justify-content: flex-end;
	margin-top: 1.5rem;
}

.block-form .btn-back .btn::after {
	right: auto;
	left: 1.5rem;
	background-image: url(../images/icon-link-gray.svg);
}

.block-form.confirm,
.block-form.thanks {
	margin-top: 0;
}

.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;
	border-top: 1px solid #b2b2b2;
}

.block-form.confirm .message {
	padding-top: 4rem;
}

.block-form.thanks .message {
	padding-top: 4rem;
	text-align: center;
}

/* .block-policy */

.block-policy {
	margin-top: 3rem;
}

.block-policy-content {
	margin-top: 1.5rem;
	padding: 2rem;
	height: 25.8rem;
	box-sizing: border-box;
	border: 1px solid #c1c1c1;
	border-radius: 5px;
	overflow-y: scroll;
}

.block-policy-content > .title {
	text-align: center;
}

.block-policy-content > .sign {
	margin-top: 2rem;
	text-align: right;
}

.block-policy-content > .txt {
	margin-top: 2rem;
}

/* .block-recaptcha */

.block-recaptcha {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem auto 0 auto;
	padding: 1rem;
	width: 19.4rem;
	font-size: .9rem;
}

.block-recaptcha > dt {
	margin-right: 1rem;
	width: 3rem;
}

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

/* 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 --------------------------------- */

#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: 5rem;
	background: #fff;
}

#main {
	padding-top: 5rem;
}

#footer {
	padding-bottom: 5rem;
}

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

#header > .logo {
	position: absolute;
	top: 1.2rem;
	left: 2rem;
	z-index: 10;
	width: 19.9rem;
	height: 2.8rem;
}

/* #gnav */

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

#gnav-inner {
	display: flex;
	flex-flow: column;
	width: 100%;
	border-top: 1px solid #b2b2b2;
}

#gnav-inner a.disabled {
	opacity: .3;
}

#gnav-inner > li {
	margin-top: .5rem;
	line-height: 2.2;
	border-bottom: 1px solid #b2b2b2;
}

#gnav-inner > li > a {
	display: block;
	padding: .5rem 2rem;
	font-weight: 700;
	font-size: 1.2rem;
}

#gnav-inner > li:first-child > a {
	color: #019944;
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	letter-spacing: 0;
}

#gnav-inner > li:last-child {
	border-bottom: 0;
}

#gnav-inner > li > .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
	padding: 0;
	width: 17.6rem;
	height: 4.7rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.2rem;
}

#gnav-inner > li > .btn::after {
	display: none;
}

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

#gnav-inner > li > .sub > ol > li {
	font-size: 1.1rem;
}

#gnav-inner > li > .sub > ol > li > a > .num {
	display: inline-block;
	margin-right: 1rem;
	vertical-align: middle;
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	letter-spacing: 0;
}

/* #btn-menu */

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

#btn-menu {
	top: 0;
	left: auto;
	right: 0;
	z-index: 200;
	background: #019944;
	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.6rem;
	left: 1.5rem;
	width: 2rem;
	height: .2rem;
	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 {
	opacity: 1;
	pointer-events: auto;
}

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

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

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

.nav-active #btn-menu .icon-top,
.nav-active #btn-menu .icon-bot {
	top: 2.4rem;
	left: 1.4rem;
	width: 2.5rem;
}

.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: 13.9rem;
}

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

#main-header > .title > .txt01 {
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: 0;
}

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

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

#main-header > .img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* #main-content */

#main-content {
	margin: 0 2rem;
	padding: 3rem 0 5rem 0;
}

#main-content > .lead {
	font-weight: 700;
	font-size: 1.2rem;
}

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

/* #block-contact */

#block-contact {
	padding-top: 5rem;
	padding-bottom: 6rem;
	background: #e7e7e7;
}

#block-contact > .block-header > .title {
	display: flex;
	flex-flow: column;
	align-items: center;
	line-height: 1.1;
}

#block-contact > .block-header > .title > .txt01 {
	color: #595656;
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 3rem;
	text-align: center;
	letter-spacing: 0;
}

#block-contact > .block-header > .title > .txt02 {
	margin-top: 1rem;
	color: #595656;
	font-weight: 700;
	font-size: 1.2rem;
}

#block-contact .block-content {
	margin-top: 2rem;
}

#block-contact .block-content > .txt {
	text-align: center;
}

/* .logo */

#footer-content > .logo {
	margin: 5rem auto 0 auto;
	width: 20rem;
}

/* .address */

#footer-content > .address {
	display: grid;
	grid-template-columns: 5rem auto;
	justify-content: center;
	margin-top: 5.2rem;
	line-height: 2;
	font-size: 1rem;
	letter-spacing: .08em;
}

/* .fnav */

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

/* #copyright */

#copyright {
	margin-top: 4.2rem;
	font-family: 'Figtree', sans-serif;
	font-weight: 500;
	font-size: .9rem;
	text-align: center;
	text-transform: uppercase;
}





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

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

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

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

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

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

a[target='_blank']::after {
	width: 1.6rem;
	height: 1.6rem;
}

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

.break-sp {
	display: none;
}

.nobreak-sp {
	display: block;
}

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

.btn {
	padding: 0 5rem;
	width: 31rem;
	height: 8rem;
	font-size: 2rem;
}

.btn::after {
	right: 2rem;
	width: 4.6rem;
	height: 4.6rem;
}

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

.section-header > .title > .txt01 {
	font-size: 7.8rem;
}

.section-header > .title > .txt02 {
	margin-top: 2.5rem;
	font-size: 2rem;
}

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

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

/* .block-tabulate */

.block-tabulate {
	display: flex;
	flex-flow: row wrap;
	grid-template-columns: 24rem 1fr;
}

.block-tabulate > dt {
	padding: 2.7rem 4rem;
	width: 24rem;
	border-bottom: 1px solid #b2b2b2;
}

.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% - 24rem);
}

.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 .required,
.block-form .optional {
	position: absolute;
	top: 2.1rem;
	right: 1.8rem;
	margin-left: 0;
	padding: .3rem 1.1rem;
	font-size: 1.2rem;
}

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

.block-form span.validation-error {
	font-size: 1.2rem;
}

.block-form input[type='text'],
.block-form input[type='email'],
.block-form input[type='tel'],
.block-form input[type='radio'] + label,
.block-form select,
.block-form textarea {
	padding: .4rem 2rem;
	height: 7rem;
	border-radius: 10px;
}

.block-form textarea {
	padding: 2rem;
	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: 3rem;
	margin: 0;
	width: 2rem;
	height: 2rem;
}

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

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

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

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

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

.block-form.confirm .fields dt {
	height: auto;
}

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

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

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

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

.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 .btn-submit > .btn,
.block-form .btn-back > .btn {
	margin-top: 4rem;
}

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

.block-form.confirm .fields dt {
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;;
	margin-top: 2rem;
	padding-top: 2rem;
}

.block-form.confirm .fields dd {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #b2b2b2;
}

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

.block-form.confirm .btns .btn-submit,
.block-form.confirm .btns .btn-back {
	margin: 0 1rem;
}


/* .block-policy */

.block-policy > .txt {
	text-align: center;
}

.block-policy-content {
	padding: 4.5rem 5rem;
	height: 36.2rem;
	border-radius: 15px;
}

.block-policy-content > .sign {
	margin-top: 3rem;
}

.block-policy-content > .txt {
	margin-top: 3rem;
}

/* .block-recaptcha */

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

.block-recaptcha {
	width: 30rem;
	font-size: 1.2rem;
}

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

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

#header {
	top: 4rem;
	width: calc(100% - 4rem);
	height: 10rem;
	border-radius: 9999px 0 0 9999px;
}

#main {
	padding-top: 0;
}

#footer {
	padding-bottom: 0;
}

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

#header > .logo {
	top: 2.2rem;
	left: 3rem;
	width: 62.9rem;
	height: 5.8rem;
}

/* #gnav */

#gnav {
	padding: 0 3.5rem 0 0;
	height: 10rem;
	background: none;
	overflow: visible;
	opacity: 1;
}

#gnav-inner {
	flex-flow: row nowrap;
	justify-content: flex-end;
	position: relative;
	height: 100%;
	border: 0;
}

#gnav-inner > li {
	display: flex;
	align-items: center;
	position: relative;
	margin: 0 0 0 1.8rem;
	line-height: 1;
	border: 0;
	pointer-events: auto;
}

#gnav-inner > li > a {
	padding-left: 0;
	font-size: 1.6rem;
	letter-spacing: .08em;
}

#gnav-inner > li:first-child {
	display: none;
}

#gnav-inner > li > .btn {
	margin-top: 0;
	width: 20.1rem;
	height: 6.4rem;
	font-size: 1.6rem;
}

#gnav-inner > li > .sub {
	display: none;
}

/* #btn-menu */

#btn-menu {
	display: none;
}

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

/* #main-header */

#main-header {
	padding-top: 10rem;
	height: 54.8rem;
}

#main-header > .title > .txt01 {
	font-size: 7.8rem;
}

#main-header > .title > .txt02 {
	margin-top: 3rem;
	font-size: 2rem;
}

#main-content {
	margin: 0 auto;
	padding: 10rem 0;
	width: 120rem;
}

#main-content > .lead {
	font-size: 2rem;
	text-align: center;
}

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

/* #block-contact */

#block-contact {
	padding: 7.5rem 0 8rem 0;
}

#block-contact > .block-header > .title > .txt01 {
	font-size: 7.8rem;
}

#block-contact > .block-header > .title > .txt02 {
	margin-top: 2.5rem;
	font-size: 2rem;
}

#block-contact .block-content {
	margin-top: 3.5rem;
}

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

/* #footer-content */

#footer-content {
	display: grid;
	grid-template-areas:
		'logo      . fnav'
		'  .       . fnav'
		'address   . fnav'
		'copyright . fnav';
		grid-template-columns: auto 1fr auto;
		grid-template-rows: auto 1fr auto auto;
	padding: 10rem 13.7rem 10rem 10.4rem;
}

/* .logo */

#footer-content > .logo {
	grid-area: logo;
	margin: 0;
	width: 41.1rem;
}

/* .address */

#footer-content > .address {
	grid-area: address;
	grid-template-columns: 7.1rem auto;
	justify-content: flex-start;
	margin-top: 0;
	font-size: 1.4rem;
}

/* .fnav */

#footer-content > .fnav {
	grid-area: fnav;
	display: flex;
	flex-flow: column wrap;
	gap: 0 8rem;
	margin-top: -1.7rem;
	width: 44.5rem;
	height: 31.5rem;
}

#footer-content > .fnav > li {
	margin-top: 1.7rem;
}

#footer-content > .fnav > li > a {
	position: relative;
	padding-left: 2rem;
}

#footer-content > .fnav > li > a::before {
	position: absolute;
	top: .5em;
	left: 0;
	width: .8rem;
	height: .8rem;
	background: #56c67a;
	border-radius: 50%;
	content: '';
}

#footer-content > .fnav > li > ul {
	margin-top: 1.5rem;
}

#footer-content > .fnav > li > ul > li {
	margin-top: .7rem;
}

#footer-content > .fnav > li > ul > li > a {
	position: relative;
	padding-left: 3rem;
	font-size: 1.4rem;
	letter-spacing: .08em;
}

#footer-content > .fnav > li > ul > li > a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 2.1rem;
	border-top: 1px solid #56c67a;
	content: '';
	transform: translateY(-50%);
}

/* #copyright */

#copyright {
	grid-area: copyright;
	margin-top: 2.5rem;
	font-size: 1.2rem;
	text-align: left;
}

}





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

@media print {

	#container {
		width: 1600px;
	}

	#header {
		position: static;
	}

	#main {
		padding-top: 0;
	}

}


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

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

#container {
	opacity: .3;
}

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

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

	#container {
		opacity: .3;
	}

} */