@charset "utf-8";



/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*, *::before, *::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe, img, video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
	visibility: hidden;
}
html.active {
	visibility: visible;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	font-feature-settings: "palt";
	line-height: 2.25rem;
	color: #000000;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #8cb808;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #8cb808;
}



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

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=button],
input[type=submit],
button,
textarea,
select {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	outline: none;
	border: none;
	margin: 0px;
	border-radius: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
textarea,
select {
	color: #000000;
	background-color: #ffffff;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
select {
	height: 60px;
	line-height: 60px;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel] {
	padding: 0px 15px;
}
input[type=button],
input[type=submit],
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 80px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
	background-color: #8cb808;
	transition: 0.25s background-color ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	background-color: #005726;
}
input[type=radio],
input[type=checkbox] {
	position: relative;
	width: 25px;
	margin-right: 5px;
	transform: translate(-9999px, -4px);
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after {
	position: absolute;
	left: 9999px;
	top: 0px;
	cursor: pointer;
	content: "";
}
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	width: 25px;
	height: 25px;
	border: 1px solid #e3ebe9;
	background-color: #ffffff;
}
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after,
label.alternate input[type=radio]:checked + span::before,
label.alternate input[type=checkbox]:checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 13px;
	height: 13px;
	background-color: #000000;
}
input[type=radio]::after {
	transform: translate(6px, 6px);
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	border-right: 3px solid #000000;
	border-bottom: 3px solid #000000;
}
input[type=checkbox]::after {
	transform: translate(7px, 2px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
label {
	display: inline-block;
	vertical-align: middle;
}
label.alternate {
	cursor: pointer;
	margin-right: 5px;
}
label.alternate input[type=radio],
label.alternate input[type=checkbox] {
	display: none;
}
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	display: block;
	position: relative;
	cursor: pointer;
	transform: translateY(-1px);
}
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	display: block;
	position: absolute;
	content: "";
}
label.alternate input[type=radio] + span::before {
	transform: translate(5px, 5px);
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(6px, 1px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding: 0px 40px 0px 15px;
	background: #ffffff url(../images/arrow-select.svg) no-repeat right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #e3ebe9;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
font
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "Metropolis";
	font-weight: 500;
	src: url("../fonts/Metropolis-Medium.woff2") format("woff2"), url("../fonts/Metropolis-Medium.woff") format("woff");
}
@font-face {
	font-family: "Metropolis";
	font-weight: 600;
	src: url("../fonts/Metropolis-SemiBold.woff2") format("woff2"), url("../fonts/Metropolis-SemiBold.woff") format("woff");
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.ttf") format("truetype"), url("../fonts/icon.woff") format("woff"), url("../fonts/icon.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow:before {
	content: "\e900";
}
i.icon-tel:before {
	content: "\e901";
}
i.icon-instagram:before {
	content: "\e902";
}
i.icon-line:before {
	content: "\e903";
}
i.icon-youtube:before {
	content: "\e904";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #e3ebe9;
	margin: 20px 0px;
}
mark {
	padding: 0px 5px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
div.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
}
div.video-wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
iframe.wp-embedded-content {
	display: block;
	width: 100%;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 130px;
}
body.single-news div#page,
body.single-event div#page,
body.single-works div#page,
body.privacy-policy div#page {
	padding-top: 230px;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50vh;
	pointer-events: none;
}
div.corner,
div.corner::before,
div.corner::after {
	position: absolute;
}
div.corner {
	z-index: 10;
}
div.corner::before,
div.corner::after {
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	content: "";
}
nav.navi ul li {
	font-size: 1.125rem;
	font-weight: 700;
}
p#button-contact {
	position: fixed;
	right: 0px;
	bottom: 30px;
	z-index: 100;
}
p#button-contact a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 100px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #005726;
	border-radius: 20px 0px 0px 20px;
	transition: 0.25s background-color ease;
}
p#button-contact a:hover {
	background-color: #8cb808;
}
p.button-default,
p.button-default a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.375rem;
}
p.button-default a {
	align-items: center;
	position: relative;
	width: 340px;
	height: 60px;
	border: 3px solid #000000;
	border-radius: 30px;
	transition: 0.25s color ease, 0.25s border-color ease;
}
p.button-default a:hover {
	color: #8cb808;
	border-color: #8cb808;
}
p.button-default a::before {
	position: absolute;
	right: 9px;
	top: calc(50% - 18px);
	font-family: "icon";
	font-size: 2.25rem;
	font-weight: normal;
	line-height: 1em;
	content: "\e900";
}
p.button-wide a {
	width: 480px;
}
p.button-white a {
	color: #ffffff;
	border-color: #ffffff;
}
p.button-white a:hover {
	color: #005726;
	border-color: #005726;
}
p.image {
	overflow: hidden;
	border-radius: 20px;
}
p.image img {
	width: 100%;
	height: auto;
}
p.image-zoom img {
	transition: 0.25s transform ease;
}
p.image-zoom a:hover img {
	transform: scale(1.075);
}
*.scroll.fade {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
*.scroll.fade.active {
	opacity: 1;
}
*.scroll.fade-slide {
	opacity: 0;
	transition-duration: 1s;
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide.active {
	opacity: 1;
	transform: translate(0px, 0px);
}
*.fade-each > * {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
*.fade-each.active > * {
	opacity: 1;
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}

/* home
-------------------------------------------------------------------------------- */

body.home div#page {
	padding-top: 0px;
}



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

header#header {
	position: fixed;
	width: 100%;
	height: 100px;
	left: 0px;
	top: 0px;
	z-index: 100;
	background-color: #ffffff;
}
header#header::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #ccd9d2;
	content: "";
}
body.admin-bar header#header {
	top: 32px;
}
header#header *#logo,
header#header nav.navi,
header#header div.sns {
	position: absolute;
}
header#header *#logo {
	left: 30px;
	top: 24px;
}
header#header *#logo a {
	display: block;
	width: 201px;
	height: 54px;
}
header#header *#logo img {
	width: auto;
	height: 100%;
}
header#header nav.navi,
header#header div.sns {
	top: 30px;
	line-height: 2.5rem;
}
header#header nav.navi {
	right: 220px;
}
header#header nav.navi ul,
header#header div.sns ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav.navi ul li:not(:last-child) {
	margin-right: 25px;
}
header#header nav.navi ul li a,
header#header div.sns ul li a {
	transition: 0.25s color ease;
}
header#header nav.navi ul li a {
	display: block;
	position: relative;
}
header#header nav.navi ul li a:hover,
body.news header#header nav.navi ul li.news a,
body.event header#header nav.navi ul li.event a,
body.message header#header nav.navi ul li.message a,
body.works header#header nav.navi ul li.works a,
body.introduction header#header nav.navi ul li.introduction a,
body.contact header#header nav.navi ul li.contact a,
header#header div.sns ul li a:hover {
	color: #8cb808;
}
header#header nav.navi ul li a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 2px solid #000000;
	content: "";
	transition: 0.25s border-color ease;
}
header#header nav.navi ul li a:hover::before,
body.news header#header nav.navi ul li.news a::before,
body.event header#header nav.navi ul li.event a::before,
body.message header#header nav.navi ul li.message a::before,
body.works header#header nav.navi ul li.works a::before,
body.introduction header#header nav.navi ul li.introduction a::before,
body.contact header#header nav.navi ul li.contact a::before {
	border-color: #8cb808;
}
header#header div.sns {
	right: 30px;
	top: 30px;
}
header#header div.sns ul li {
	font-size: 2.25rem;
	color: #005726;
}
header#header div.sns ul li:not(:last-child) {
	margin-right: 15px;
}

/* home
-------------------------------------------------------------------------------- */

body.home header#header {
	transform: translateY(-100px);
	transition: 0.25s transform ease;
}
body.home div.scroll header#header {
	transform: translateY(0px);
}



/* --------------------------------------------------------------------------------
cover, title
-------------------------------------------------------------------------------- */

div#cover {
	position: relative;
	height: 100vh;
	margin-bottom: 150px;
}
div#cover div.slide,
div#cover div.slide div.image,
div#cover div.slide div.image p.row,
div#cover div.slide div.navi {
	position: absolute;
}
div#cover div.slide {
	width: calc(100% - 60px);
	height: calc(100% - 130px);
	top: 30px;
	left: 30px;
}
div#cover div.slide div.corner {
	background-color: #ffffff;
}
div#cover div.slide div.corner-01 {
	left: 0px;
	top: 0px;
	width: 300px; 
	height: 170px;
	border-bottom-right-radius: 20px;
}
div#cover div.slide div.corner-02 {
	right: 0px;
	top: 0px;
	width: 100px; 
	height: 190px;
	border-bottom-left-radius: 20px;
}
div#cover div.slide div.corner-03 {
	left: 0px;
	bottom: 0px;
	width: 80px; 
	height: 80px;
	border-top-right-radius: 20px;
}
div#cover div.slide div.corner-04 {
	right: 0px;
	bottom: 0px;
	width: 300px; 
	height: 60px;
	border-top-left-radius: 20px;
}
div#cover div.slide div.corner::before,
div#cover div.slide div.corner::after {
	background-image: url(../images/round-01.svg);
}
div#cover div.slide div.corner-01::before,
div#cover div.slide div.corner-03::before {
	left: 0px;
}
div#cover div.slide div.corner-01::before,
div#cover div.slide div.corner-02::after {
	bottom: -20px;
}
div#cover div.slide div.corner-01::after,
div#cover div.slide div.corner-03::after {
	right: -20px;
}
div#cover div.slide div.corner-01::after,
div#cover div.slide div.corner-02::before {
	top: 0px;
}
div#cover div.slide div.corner-02::before,
div#cover div.slide div.corner-02::after {
	transform: rotate(90deg);
}
div#cover div.slide div.corner-02::before,
div#cover div.slide div.corner-04::before {
	left: -20px;
}
div#cover div.slide div.corner-02::after,
div#cover div.slide div.corner-04::after {
	right: 0px;
}
div#cover div.slide div.corner-03::before,
div#cover div.slide div.corner-03::after {
	transform: rotate(270deg);
}
div#cover div.slide div.corner-03::before,
div#cover div.slide div.corner-04::after {
	top: -20px;
}
div#cover div.slide div.corner-03::after,
div#cover div.slide div.corner-04::before {
	bottom: 0px;
}
div#cover div.slide div.corner-04::before,
div#cover div.slide div.corner-04::after {
	transform: rotate(180deg);
}
div#cover div.slide div.image,
div#cover div.slide div.image p.row,
div#cover div.slide div.navi {
	width: 100%;
	left: 0px;
}
div#cover div.slide div.image,
div#cover div.slide div.image p.row {
	height: 100%;
	top: 0px;
}
div#cover div.slide div.image {
	overflow: hidden;
	background-color: #e3ebe9;
	opacity: 0;
	transition: 1s opacity 0.25s ease-in-out;
}
html.active div#cover div.slide div.image {
	opacity: 1;
}
div#cover div.slide div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.slide div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	bottom: 30px;
	z-index: 10;
}
div#cover div.slide div.navi p.button {
	width: 10px;
	height: 10px;
	cursor: pointer;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
div#cover div.slide div.navi p.button:not(:last-child) {
	margin-right: 10px;
}
div#cover div.slide div.navi p.button:hover,
div#cover div.slide div.navi p.button.active {
	background-color: #8cb808;
}
div#cover h1,
div#cover h2,
div#cover nav.navi,
div#cover div.sns {
	position: absolute;
	z-index: 10;
}
div#cover h1 {
	left: 30px;
	top: 30px;
}
div#cover h1 img {
	width: auto;
	height: 152px;
}
div#cover h2 {
	left: 210px;
	top: calc(50% - 100px);
	writing-mode: vertical-rl;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 4rem;
	color: #ffffff;
	letter-spacing: 0.1em;
}
div#cover h2 i.kern {
	display: inline-block;
	text-indent: -0.5em;
}
div#cover nav.navi {
	left: 30px;
	bottom: 30px;
	line-height: 2.5rem;
	opacity: 0;
	transition: 1s opacity 1s ease-in-out;
}
html.active div#cover nav.navi {
	opacity: 1;
}
div#cover nav.navi ul {
	display: flex;
	flex-wrap: wrap;
}
div#cover nav.navi ul li {
	font-size: 1.125rem;
	font-weight: 700;
}
div#cover nav.navi ul li:not(:last-child) {
	margin-right: 25px;
}
div#cover nav.navi ul li a,
div#cover div.sns ul li a {
	transition: 0.25s color ease;
}
div#cover nav.navi ul li a {
	display: block;
	position: relative;
}
div#cover nav.navi ul li a:hover,
div#cover div.sns ul li a:hover {
	color: #8cb808;
}
div#cover nav.navi ul li a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 2px solid #000000;
	content: "";
	transition: 0.25s border-color ease;
}
div#cover nav.navi ul li a:hover::before {
	border-color: #8cb808;
}
div#cover div.sns {
	right: 60px;
	top: 60px;
}
div#cover div.sns ul li {
	font-size: 2.25rem;
	color: #005726;
}
div#cover div.sns ul li:not(:last-child) {
	margin-bottom: 15px;
}
div#title,
div#title div.text {
	position: relative;
}
div#title.image {
	padding-top: 300px;
}
div#title div.corner {
	width: 360px;
	height: 100px;
	background-color: #ffffff;
}
div#title div.corner-01 {
	left: 30px;
	top: 0px;
	border-bottom-right-radius: 20px;
}
div#title div.corner-02 {
	right: 30px;
	bottom: 30px;
	border-top-left-radius: 20px;
}
div#title div.corner::before,
div#title div.corner::after {
	background-image: url(../images/round-01.svg);
}
div#title div.corner-01::before {
	left: 0px;
	bottom: -20px;
}
div#title div.corner-01::after {
	right: -20px;
	top: 0px;
}
div#title div.corner-02::before,
div#title div.corner-02::after {
	transform: rotate(180deg);
}
div#title div.corner-02::before {
	left: -20px;
	bottom: 0px;
}
div#title div.corner-02::after {
	right: 0px;
	top: -20px;
}
div#title p.image {
	position: absolute;
	width: calc(100% - 60px);
	height: calc(100% - 30px);
	left: 30px;
	top: 0px;
	opacity: 0;
	transition: 1s opacity 0.25s ease-in-out;
}
html.active div#title p.image {
	opacity: 1;
}
div#title p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#title div.text {
	z-index: 10;
}
div#title div.text h1,
div#title div.text p.sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: auto;
	background-color: #e3ebe9;
}
div#title div.text h1 {
	width: 540px;
	height: 280px;
	font-size: 2.25rem;
	font-weight: 700;
	border-radius: 20px;
}
div#title div.text h1::before,
div#title div.text h1::after,
div#title div.text p.sub::before,
div#title div.text p.sub::after {
	position: absolute;
	width: 20px;
	height: 20px;
	background: url(../images/round-02.svg) no-repeat center;
	background-size: cover;
	content: "";
}
div#title.left div.text h1::before,
div#title.right div.text h1::before {
	bottom: 80px;
}
div#title.left div.text h1::before,
div#title div.text p.sub::before {
	left: -20px;
	transform: rotate(180deg);
}
div#title.right div.text h1::before,
div#title div.text p.sub::after {
	right: -20px;
	transform: rotate(270deg);
}
div#title.left div.text h1::after,
div#title.right div.text h1::after {
	bottom: -20px;
}
div#title.left div.text h1::after {
	left: 120px;
}
div#title.right div.text h1::after {
	right: 120px;
	transform: rotate(90deg);
}
div#title div.text h1 span,
div#title div.text p.sub span {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
html.active div#title div.text h1 span,
html.active div#title div.text p.sub span {
	opacity: 1;
}
div#title div.text h1 span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 80px;
	border-top: 3px solid #000000;
	border-bottom: 3px solid #000000;
}
div#title div.text p.sub {
	width: 300px;
	height: 160px;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: -80px;
	border-radius: 20px 20px 0px 0px;
}
div#title.left div.text p.sub {
	transform: translateX(-300px);
}
div#title.right div.text p.sub {
	transform: translateX(300px);
}
div#title div.text p.sub::before,
div#title div.text p.sub::after {
	bottom: 0px;
}
div#title div.text p.sub span {
	transition-delay: 0.25s;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	padding-bottom: 150px;
}
main section {
	background-color: #e3ebe9;
}
main section.white {
	background-color: #ffffff;
}
main section.green {
	color: #ffffff;
	background-color: #8cb808;
}
main section.green a.color:hover {
	color: #005726;
}
main section div.inner-section {
	width: 1120px;
	margin: auto;
	padding: 150px 0px;
}
main section.header-common div.inner-section {
	padding-top: 0px;
}
main section header.common,
main section header.common h1,
main section header.common h2,
main section header.common p.sub {
	position: relative;
}
main section header.common {
	margin-bottom: 50px;
}
main section header.common div.corner,
main section header.common h1,
main section header.common h2,
main section header.common p.sub {
	width: 680px;
}
main section header.common div.corner {
	position: absolute;
	height: 100px;
	left: calc(50% - 340px);
	top: -100px;
	background-color: #e3ebe9;
	content: "";
	border-radius: 20px 20px 0px 0px;
}
main section.white header.common div.corner {
	background-color: #ffffff;
}
main section.green header.common div.corner {
	background-color: #8cb808;
}
main section header.common div.corner::before,
main section header.common div.corner::after {
	background-image: url(../images/round-02.svg);
	bottom: 0px;
}
main section.white header.common div.corner::before,
main section.white header.common div.corner::after {
	background-image: url(../images/round-01.svg);
}
main section.green header.common div.corner::before,
main section.green header.common div.corner::after {
	background-image: url(../images/round-03.svg);
}
main section header.common div.corner::before {
	left: -20px;
	transform: rotate(180deg);
}
main section header.common div.corner::after {
	right: -20px;
	transform: rotate(270deg);
}
main section header.common h1,
main section header.common h2,
main section header.common p.sub {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main section header.common.active h1,
main section header.common.active h2,
main section header.common.active p.sub {
	opacity: 1;
}
main section header.common h1,
main section header.common h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 10px;
}
main section header.common h1 span,
main section header.common h2 span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 80px;
	border-top: 3px solid #000000;
	border-bottom: 3px solid #000000;
}
main section.green header.common h1 span,
main section.green header.common h2 span {
	border-color: #ffffff;
}
main section header.common p.sub {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	transition-delay: 0.25s;
}
main div.category {
	width: 820px;
	margin: 0px auto 100px auto;
}
main div.category ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0px -10px -10px 0px;
}
main div.category-single ul {
	justify-content: center;
}
main div.category ul li {
	width: calc(33.33% - 10px);
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0px 10px 10px 0px;
}
main div.category-single ul li a,
main div.category-list ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	border-radius: 5px;
}
main div.category-single ul li a {
	color: #ffffff;
	background-color: #005726;
	transition: 0.25s background-color ease;
}
main div.category-single ul li a:hover {
	background-color: #8cb808;
}
main div.category-list ul li a {
	background-color: #ffffff;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div.category-list ul li a:hover,
main div.category-list ul li.active a {
	color: #ffffff;
	background-color: #005726;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body h1,
main article.common div.body h2,
main article.common div.body h3,
main article.common div.body h4,
main article.common div.body h5,
main article.common div.body h6,
main article.common div.body strong {
	font-weight: 700;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 30px;
	background-color: #f5f5f5;
	border-radius: 20px;
}
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 17px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol {
	padding-left: 20px;
}
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table th,
main article.common div.body table td {
	border: 1px solid #e3ebe9;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f5f5f5;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main article.common div.body a.wp-block-button__link,
main article.common div.body a.wp-block-file__button {
	display: inline-block;
	height: 40px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 38px;
	border: 1px solid #666666;
	padding: 0px 20px;
	background-color: #666666;
	border-radius: 20px;
	transition: 0.25s background-color ease;
}
main article.common div.body a.wp-block-button__link:hover,
main article.common div.body a.wp-block-file__button:hover {
	background-color: #000000;
}
main article.common div.body p.button-default a {
	text-decoration: none;
}
main div#pager {
	line-height: 1rem;
	margin-top: 100px;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-family: "Metropolis", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
}
main div#pager span,
main div#pager a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	color: #000000;
	transition: 0.25s color ease, 0.25s border-color ease, 0.25s background-color ease;
}
main div#pager span,
main div#pager a:not(.prev):not(.next) {
	width: 50px;
	border: 3px solid #000000;
	border-radius: 50%;
}
main div#pager span:not(:last-child),
main div#pager a:not(:last-child) {
	margin-right: 20px;
}
main div#pager span.current,
main div#pager a:hover:not(.prev):not(.next) {
	color: #ffffff;
	border-color: #8cb808;
	background-color: #8cb808;
}
main div#pager a.prev,
main div#pager a.next {
	font-family: "icon";
	font-size: 2.25rem;
	line-height: 1em;
	transition: 0.25s color ease;
}
main div#pager a:hover.prev,
main div#pager a:hover.next {
	color: #8cb808;
}
main div#pager a.prev::before,
main div#pager a.next::before {
	content: "\e900";
}
main div#pager a.prev::before {
	transform: rotate(180deg);
}

/* home
-------------------------------------------------------------------------------- */

main section#home-news p.button-default,
main section#home-event p.button-default,
main section#home-works p.button-default,
main section#home-blog p.button-default {
	margin-top: 100px;
}
main section#home-message,
main section#home-blog,
main section#home-introduction {
	width: calc(100% - 60px);
	margin: auto;
}
main section#home-message div.inner-section,
main section#home-works div.inner-section,
main section#home-blog div.inner-section,
main section#home-introduction div.inner-section {
	width: auto;
}
main div.wrapper-section.home-event,
main div.wrapper-section.home-message {
	background-color: #e3ebe9;
}
main div.wrapper-section.home-event {
	padding: 100px 0px 150px 0px;
}
main div.wrapper-section.home-message {
	padding: 100px 0px 250px 0px;
}
main section#home-message,
main section#home-blog {
	border-radius: 0px 20px 20px 20px;
}
main section#home-message header.common div.corner,
main section#home-blog header.common div.corner {
	left: 0px;
}
main section#home-message header.common div.corner::before,
main section#home-blog header.common div.corner::before {
	display: none;
}
main section#home-message header.common h2,
main section#home-message header.common p.sub,
main section#home-blog header.common h2,
main section#home-blog header.common p.sub {
	margin-left: 0px;
}
main section#home-message div.content {
	margin-left: -30px;
	padding-right: 100px;
}
main section#home-message div.image-text,
main section#home-introduction div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#home-message div.image-text p.image,
main section#home-introduction div.image-text p.image {
	width: calc(100% - 390px);
}
main section#home-message div.image-text p.image {
	border-radius: 0px 20px 20px 0px;
}
main section#home-message div.image-text div.text,
main section#home-introduction div.image-text div.text {
	position: relative;
	width: 340px;
}
main section#home-message div.image-text div.text p.description,
main section#home-introduction div.image-text div.text p.description {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 3rem;
	margin-top: -15px;
}
main section#home-message div.image-text div.text p.button-default,
main section#home-introduction div.image-text div.text p.button-default {
	position: absolute;
	left: 0px;
	bottom: 0px;
}
main section#home-works div.slide div.inner-slide {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
main section#home-works div.slide div.row {
	position: relative;
	width: 340px;
	margin-right: 50px;
}
main section#home-works div.slide div.row p.category {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 260px;
	height: 60px;
	z-index: 1;
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	margin: auto;
	background-color: #005726;
	border-radius: 20px;
}
main section#home-works div.slide div.row p.image {
	margin: -30px 0px 10px 0px;
}
main section#home-works div.slide div.row p.client,
main section#home-works div.slide div.row h3 {
	font-weight: 700;
	line-height: 1.75rem;
}
main section#home-works div.slide div.row p.client {
	margin-bottom: 5px;
}
main section#home-works div.slide div.row h3 {
	font-size: 1.25rem;
}
main div.wrapper-section.home-introduction {
	padding-top: 250px;
	background-color: #ffffff;
}
main div.wrapper-section.home-blog {
	padding: 100px 0px 150px 0px;
	background-color: #8cb808;
}
main section#home-blog div.content {
	padding: 0px 50px;
}
main section#home-introduction {
	border-radius: 20px 0px 20px 20px;
}
main section#home-introduction header.common div.corner {
	left: auto;
	right: 0px;
}
main section#home-introduction header.common div.corner::after {
	display: none;
}
main section#home-introduction header.common h2,
main section#home-introduction header.common p.sub {
	margin-right: 0px;
}
main section#home-introduction div.content {
	margin-right: -30px;
	padding-left: 100px;
}
main section#home-introduction div.image-text {
	flex-direction: row-reverse;
}
main section#home-introduction div.image-text p.image {
	border-radius: 20px 0px 0px 20px;
}

/* news, blog
-------------------------------------------------------------------------------- */

main div.list-news-blog {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -50px -50px 0px;
}
main div.list-news-blog div.row {
	width: calc(33.33% - 50px);
	margin: 0px 50px 50px 0px;
}
main div.list-news-blog div.row p.image {
	margin-bottom: 10px;
}
main div.list-news-blog div.row p.created,
main div.list-news-blog div.row h3,
main article.news-blog div.text p.created,
main article.news-blog div.text h1 {
	font-weight: 700;
}
main div.list-news-blog div.row p.created,
main div.list-news-blog div.row h3 {
	line-height: 1.75rem;
}
main div.list-news-blog div.row p.created,
main article.news-blog div.text header p.created {
	margin-bottom: 5px;
}
main div.list-news-blog div.row h3 {
	font-size: 1.25rem;
}
main article.news-blog {
	margin-bottom: 100px;
}
main article.news-blog p.image {
	margin-bottom: 30px;
}
main article.news-blog div.text {
	padding: 50px 100px;
	background-color: #ffffff;
	border-radius: 20px;
}
main article.news-blog div.text header h1 {
	font-size: 2rem;
	line-height: 3rem;
	margin-bottom: 50px;
}
/* event
-------------------------------------------------------------------------------- */

main div.list-event {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -50px -50px 0px;
}
main div.list-event div.row {
	width: calc(33.33% - 50px);
	margin: 0px 50px 50px 0px;
}
main div.list-event div.row div.category-status,
main div.list-event div.row div.category-status p.category,
main div.list-event div.row div.category-status p.status,
main article.event div.category-status,
main article.event div.category-status p.category,
main article.event div.category-status p.status {
	display: flex;
	flex-wrap: wrap;
}
main div.list-event div.row div.category-status {
	margin-bottom: 10px;
}
main div.list-event div.row div.category-status p.category,
main div.list-event div.row div.category-status p.status,
main article.event div.category-status p.category,
main article.event div.category-status p.status {
	justify-content: center;
	align-items: center;
	height: 50px;
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	border-radius: 5px;
}
main div.list-event div.row div.category-status p.category,
main article.event div.category-status p.category {
	margin-right: 10px;
	background-color: #8cb808;
}
main div.list-event div.row div.category-status p.category {
	width: calc(100% - 150px);
}
main div.list-event div.row div.category-status p.status,
main article.event div.category-status p.status {
	width: 140px;
	background-color: #005726;
}
main div.list-event div.row p.image {
	margin-bottom: 10px;
}
main div.list-event div.row p.created,
main div.list-event div.row h3,
main article.event div.text p.created,
main article.event div.text h1 {
	font-weight: 700;
}
main div.list-event div.row p.created,
main div.list-event div.row h3 {
	line-height: 1.75rem;
}
main div.list-event div.row p.created,
main article.event div.text header p.created {
	margin-bottom: 5px;
}
main div.list-event div.row h3 {
	font-size: 1.25rem;
}
main article.event {
	margin-bottom: 0px;
}
main article.event p.image {
	margin-bottom: 30px;
}
main article.event div.category-status {
	margin-bottom: 30px;
}
main article.event div.category-status p.category {
	width: 180px;
}
main article.event div.text {
	padding: 50px 100px;
	background-color: #ffffff;
	border-radius: 20px;
}
main article.event div.text header h1 {
	font-size: 2rem;
	line-height: 3rem;
	margin-bottom: 50px;
}
main section#event div.category {
	margin-bottom: 80px;
}
main section#event div.category ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	color: #8cb808;
	background-color: #ffffff;
	border-radius: 5px;
	transition: 0.25s color ease, background-color ease;
}
main section#event div.category ul li a:hover,
main section#event div.category ul li.active a {
	color: #ffffff;
	background-color: #8cb808;
}

/* message
-------------------------------------------------------------------------------- */

main section#promiss div.inner-section {
	padding-bottom: 250px;
}
main section#promiss header {
	margin-bottom: 100px;
}
main section#promiss header h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 50px;
}
main section#promiss header h2 img {
	width: auto;
	height: 228px;
}
main section#promiss header p.description,
main section#type header p.description {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 2.5rem;
}
main section#promiss div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -30px;
}
main section#promiss div.list div.row {
	width: calc(25% - 30px);
	margin-right: 30px;
	padding: 30px;
	background-color: #ffffff;
	border-radius: 20px;
}
main section#promiss div.list div.row p.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
main section#promiss div.list div.row p.icon img {
	width: auto;
	height: 144px;
}
main section#promiss div.list div.row h3 {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	line-height: 3.5rem;
	color: #005726;
	margin-bottom: 20px;
}
main section#promiss div.list div.row p.description {
	font-size: 1.125rem;
	line-height: 2rem;
}
main section#type header h2 {
	margin-bottom: 50px;
}
main section#type div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -50px;
}
main section#type div.list div.row {
	width: calc(50% - 50px);
	margin-right: 50px;
}
main section#type div.list div.row div.headline {
	position: relative;
	width: calc(100% - 100px);
	z-index: 1;
	text-align: center;
	color: #ffffff;
	padding: 20px 30px;
	background-color: #005726;
	margin: auto;
	border-radius: 20px;
}
main section#type div.list div.row div.headline p.sub,
main section#type div.list div.row div.headline h3 {
	font-weight: 700;
}
main section#type div.list div.row div.headline p.sub {
	border-bottom: 2px solid #ffffff;
	margin-bottom: 5px;
	padding-bottom: 5px;
}
main section#type div.list div.row div.headline h3 {
	font-size: 1.5rem;
}
main section#type div.list div.row p.image {
	margin: -50px 0px 20px 0px;
}
main section#type div.list div.row p.description {
	margin-bottom: 50px;
}

/* works
-------------------------------------------------------------------------------- */

main div.list-works {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -50px -50px 0px;
}
main div.list-works div.row {
	position: relative;
	width: calc(33.33% - 50px);
	margin: 0px 50px 50px 0px;
}
main div.list-works div.row p.category {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 260px;
	height: 60px;
	z-index: 1;
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	margin: auto;
	background-color: #005726;
	border-radius: 20px;
}
main div.list-works div.row p.image {
	margin: -30px 0px 10px 0px;
}
main div.list-works div.row p.client,
main div.list-works div.row h3,
main article.works div.image-text div.text p.client,
main article.works div.image-text div.text h1 {
	font-weight: 700;
}
main div.list-works div.row p.client,
main div.list-works div.row h3 {
	line-height: 1.75rem;
}
main div.list-works div.row p.client,
main article.works div.image-text div.text p.client {
	margin-bottom: 5px;
}
main div.list-works div.row h3 {
	font-size: 1.25rem;
}
main article.works {
	margin-bottom: 100px;
}
main article.works div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0px calc(calc(50% - 50vw) + 30px) 50px 0px;
}
main article.works div.image-text p.image {
	width: calc(100% - 570px);
}
main article.works div.image-text div.text {
	width: 520px;
}
main article.works div.image-text div.text h1,
main article.works div.image-text div.text p.body {
	margin-bottom: 50px;
}
main article.works div.image-text div.text h1 {
	font-size: 2rem;
	line-height: 3rem;
}
main article.works div.image-text div.text table {
	width: 100%;
}
main article.works div.image-text div.text table th {
	width: 100px;
}
main article.works div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main article.works div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main article.works div.list div.row p.image {
	position: relative;
	width: calc(50% - 10px);
}
main article.works div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main article.works div.list div.row p.image span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 120px;
	height: 40px;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	font-family: "Metropolis", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5rem;
	color: #ffffff;
	border-radius: 10px;
}
main article.works div.list div.row p.image-after span {
	background-color: #8cb808;
}
main article.works div.list div.row p.image-before span {
	background-color: #000000;
}

/* introduction
-------------------------------------------------------------------------------- */

main section#flow div.inner-section {
	padding-bottom: 250px;
}
main section#flow header {
	margin-bottom: 100px;
}
main section#flow header h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 50px;
}
main section#flow header h2 img {
	width: auto;
	height: 331px;
}
main section#flow header p.description {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 2.5rem;
}
main section#flow div.list div.row {
	position: relative;
	padding: 30px 50px;
	background-color: #ffffff;
	border-radius: 20px;
}
main section#flow div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#flow div.list div.row p.number {
	position: absolute;
	width: 100px;
	left: calc(50% - 50px);
	top: -60px;
	text-align: center;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 6rem;
	font-weight: 600;
	line-height: 7rem;
	color: #005726;
}
main section#flow div.list div.row div.icon-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section#flow div.list div.row div.icon-text p.icon {
	width: 161px;
}
main section#flow div.list div.row div.icon-text p.icon img {
	width: auto;
	height: 152px;
}
main section#flow div.list div.row div.icon-text div.text {
	width: calc(100% - 210px);
}
main section#flow div.list div.row div.icon-text div.text h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #005726;
	margin-bottom: 20px;
}
main section#company header {
	margin-bottom: 100px;
}
main section#company table {
	width: 520px;
	margin: auto;
}
main section#company table th,
main section#company table td {
	vertical-align: top;
	font-size: 1.125rem;
}
main section#company table tr:not(:last-child) th,
main section#company table tr:not(:last-child) td {
	padding-bottom: 20px;
}
main section#company table th {
	width: 140px;
}

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

main section.form div.inner-section {
	width: 820px;
}
main section.form div.header {
	margin-bottom: 100px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 30px;
}
main section.form div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #ffffff;
	margin-bottom: 0px;
	padding: 40px 0px;
}
main section.form div.mw_wp_form_preview div.form div.component-first {
	border-top: 1px solid #ffffff;
}
main section.form div.form div.component-wrapper,
main section.form div.form div.component-last {
	margin-bottom: 50px;
}
main section.form div.form div.component-wrapper div.component:last-child {
	margin-bottom: 0px;
}
main section.form div.mw_wp_form_preview div.form div.component-wrapper,
main section.form div.mw_wp_form_preview div.form div.component-last {
	margin-bottom: 100px;
}
main section.form div.form div.component-event {
	display: none;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 200px;
	height: 60px;
	font-size: 1.125rem;
}
main section.form div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.form div.component div.body {
	width: calc(100% - 200px);
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body input[type=text],
main section.form div.form div.component div.body input[type=email],
main section.form div.form div.component div.body select,
main section.form div.form div.component div.body textarea {
	width: 100%;
}
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field),
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component div.body:has(input[name="interest[data][]"]) :is(span.mwform-radio-field, span.mwform-checkbox-field) {
	min-width: 50%;
	margin-right: 0px;
}
main section.form div.form div.component-radio-checkbox div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body :is(span.mwform-radio-field, span.mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div:is(.component-name-furigana, .component-number) div.body {
	justify-content: space-between;
}
main section.form div.form div:is(.component-name-furigana, .component-number) div.body div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(50% - 10px);
}
main section.form div.form div:is(.component-name-furigana, .component-number) div.body div.row p.prefix {
	width: 50px;
}
main section.form div.form div.component-name-furigana div.body div.row input[type=text],
main section.form div.form div.component-number div.body div.row select {
	width: calc(100% - 50px);
}
main section.form div.mw_wp_form_preview div.form div.component div.body input.flatpickr-input {
	display: none;
}
main section.form div.form div.component div.body span.error,
main section.form div.form div.agreement span.error {
	line-height: 25px;
	color: #8cb808;
}
main section.form div.form div.component div.body span.error {
	padding-top: 5px;
}
main section.form div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 100px;
}
main section.form div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section.form div.form div.agreement span.horizontal-item {
	margin-right: 5px;
}
main section.form div.form div.agreement span.horizontal-item > label {
	display: block;
}
main section.form div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.agreement span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -25px;
	text-align: center;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action input[name=submitBack],
main section.form div.form div.action button[name=submitBack] {
	margin-right: 30px;
}
main section.complete h3,
main section.complete p.description {
	text-align: center;
}
main section.complete h3 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 3rem;
	margin-bottom: 30px;
}
main section.complete p.description {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
}
main section#visit div.inner-section {
	padding-top: 0px;
}
main section#event article.event + p.button-default,
main section#visit p.button-default {
	margin-top: 100px;
}
main section#visit header p.sub {
	margin-bottom: 100px;
}
main section#visit header h4 {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 40px;
}
main section#visit h3 {
	text-align: center;
	font-size: 1.125rem;
	border-bottom: 1px solid #000000;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

main section#privacy-policy div.inner-section {
	width: 820px;
}
main section#privacy-policy div.segment:not(:last-child) {
	margin-bottom: 30px;
}
main section#privacy-policy div.segment h2 {
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	padding-left: 30px;
}
main section#privacy-policy div.segment h2 span {
	position: absolute;
	left: 0px;
	top: 0px;
}



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

footer#footer {
	position: relative;
	width: calc(100% - 60px);
	color: #ffffff;
	margin: 0px auto 30px auto;
	padding: 0px 0px 50px 80px;
}
footer#footer::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #005726;
	content: "";
	border-radius: 20px;
}
footer#footer p a,
footer#footer ul li a {
	transition: 0.25s color ease;
}
footer#footer p a:hover,
footer#footer ul li a:hover {
	color: #8cb808;
}
footer#footer div.corner {
	background-color: #ffffff;
}
footer#footer div.corner-01 {
	width: 440px;
	height: 220px;
	left: 0px;
	top: 0px;
	border-bottom-right-radius: 20px;
}
footer#footer div.corner-02 {
	width: 300px;
	height: 130px;
	right: 0px;
	bottom: 0px;
	border-top-left-radius: 20px;
}
footer#footer div.corner::before,
footer#footer div.corner::after {
	background-image: url(../images/round-01.svg);
}
footer#footer div.corner-01::before {
	left: 0px;
	bottom: -20px;
}
footer#footer div.corner-01::after {
	right: -20px;
	top: 0px;
}
footer#footer div.corner-02::before,
footer#footer div.corner-02::after {
	transform: rotate(180deg);
}
footer#footer div.corner-02::before {
	left: -20px;
	bottom: 0px;
}
footer#footer div.corner-02::after {
	right: 0px;
	top: -20px;
}
footer#footer p#button-page-top,
footer#footer nav.navi,
footer#footer div.sns,
footer#footer p.copyright {
	position: absolute;
	z-index: 20;
}
footer#footer p#button-page-top {
	left: calc(50% - 50px);
	top: 50px;
	text-align: center;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
}
footer#footer p#button-page-top a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	width: 100px;
	height: 60px;
}
footer#footer p#button-page-top a::before,
footer#footer p#button-page-top a::after {
	position: absolute;
	width: 45px;
	height: 0px;
	top: 0px;
	border-bottom: 2px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
}
footer#footer p#button-page-top a:hover::before,
footer#footer p#button-page-top a:hover::after {
	border-color: #8cb808;
}
footer#footer p#button-page-top a::before {
	right: 50%;
	transform-origin: right top;
	transform: rotate(-30deg);
}
footer#footer p#button-page-top a::after {
	left: 50%;
	transform-origin: left top;
	transform: rotate(30deg);
}
footer#footer div.information {
	position: relative;
	z-index: 10;
}
footer#footer div.information h3 {
	margin-bottom: 180px;
}
footer#footer div.information h3 a {
	display: block;
	width: calc(270px * 1.125);
	height: calc(152px * 1.125);
}
footer#footer div.information h3 img {
	width: auto;
	height: 100%;
}
footer#footer div.information p.address {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 5px;
}
footer#footer div.information p.tel {
	margin-bottom: 10px;
}
footer#footer div.information p.tel i.icon {
	font-size: 2.25rem;
	margin-right: 10px;
}
footer#footer div.information p.tel span {
	font-family: "Metropolis", sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
}
footer#footer div.information p.button {
	font-weight: 700;
	line-height: 1.5rem;
}
footer#footer div.information p.button:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer div.information p.button a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 40px;
	border: 3px solid #ffffff;
	border-radius: 20px;
	transition: 0.25s color ease, 0.25s border-color ease;
}
footer#footer div.information p.button a:hover {
	border-color: #8cb808;
}
footer#footer nav.navi,
footer#footer div.sns {
	right: 80px;
}
footer#footer nav.navi {
	top: 50px;
}
footer#footer nav.navi ul li {
	text-align: right;
	font-size: 1.125rem;
	font-weight: 700;
}
footer#footer nav.navi ul li:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer div.sns {
	top: 380px;
}
footer#footer div.sns ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.sns ul li {
	font-size: 2.25rem;
}
footer#footer div.sns ul li:not(:last-child) {
	margin-right: 15px;
}
footer#footer p.copyright {
	left: calc(50% - 150px);
	bottom: 50px;
	width: 300px;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1rem;
}