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

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
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,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



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

html {
	font-size: 16px;
}
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: 1.875rem;
	color: #333333;
	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: #ef9ca0;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p:empty:before {
	content: none;
}
span.required {
	color: #ef9ca0;
}



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

input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 5px;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #333333;
	border: none;
	background-color: #f5f5f5;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 60px;
	text-align: center;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #333333;
	transition: 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	background-color: #ef9ca0;
}
input:where([type=radio], [type=checkbox]),
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:where([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:where([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	background-color: #f5f5f5;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [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: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #333333;
}
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;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #333333;
	border-bottom: 2px solid #333333;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:where([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:where([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #dddddd;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



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

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-mail::before {
	content: "\e901";
}
i.icon-tel::before {
	content: "\e902";
}
i.icon-line::before {
	content: "\e903";
}
i.icon-availablity-01::before {
	content: "\e904";
}
i.icon-availablity-02::before {
	content: "\e905";
}
i.icon-availablity-03::before {
	content: "\e906";
}



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

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #dddddd;
	margin: 20px 0px;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
iframe.wp-embedded-content {
	width: 100%;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f5f5f5;
	border-radius: 5px;
}



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

div#page {
	position: relative;
	overflow: hidden;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50svh;
	pointer-events: none;
}
i.icon-arrow {
	font-size: 1.25rem;
	transition: 0.25s transform ease;
}
a:hover i.icon-arrow {
	transform: translateX(5px);
}
nav#navi-side {
	position: fixed;
	right: 0px;
	bottom: 20px;
	z-index: 10;
}
nav#navi-side ul li {
	writing-mode: vertical-rl;
	font-weight: 700;
}
nav#navi-side ul li:not(:last-child) {
	margin-bottom: 10px;
}
nav#navi-side ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 120px;
	color: #ffffff;
	background-color: #ef9ca0;
	border-radius: 5px 0px 0px 5px;
	transition: 0.25s background-color ease;
}
nav#navi-side ul li a:hover {
	background-color: #e77d82;
}
div.tel p.number {
	font-family: "Kumbh Sans", sans-serif;
	font-size: 1.75rem;
	font-weight: 600;
}
div.entry {
	text-align: center;
}
div.entry h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 20px;
}
div.entry p.button-entry a {
	width: 480px;
}
div.list-recruit {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
div.list-recruit div.row {
	margin-right: 20px;
}
div.list-recruit div.row a {
	display: block;
	border: 1px solid #f5f5f5;
	background-color: #f5f5f5;
	border-radius: 5px;
	transition: 0.25s border-color ease, 0.25s background-color ease;
}
div.list-recruit div.row a:hover {
	border-color: #cccccc;
	background-color: #ffffff;
}
div.list-recruit div.row p.label {
	font-family: "Kumbh Sans", sans-serif;
	font-weight: 600;
}
div.list-recruit div.row h3 {
	font-weight: 700;
}
p.button-default,
p.button-default a {
	display: flex;
	flex-wrap: wrap;
}
p.button-default {
	justify-content: center;
	text-align: center;
	font-weight: 700;
	line-height: 1.5rem;
}
p.button-default a {
	align-items: center;
	position: relative;
	width: 260px;
	height: 50px;
	border: 1px solid #333333;
	padding: 0px 25px;
	background-color: #ffffff;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
p.button-default a:hover {
	color: #ffffff;
	background-color: #333333;
}
p.button-default i.icon {
	font-weight: 400;
}
p.button-default i.icon:not(.icon-arrow) {
	font-size: 1.5rem;
	margin-right: 5px;
	transform: translateY(1px);
}
p.button-default i.icon-arrow {
	position: absolute;
	right: 17.5px;
	top: calc(50% - calc(1.25rem * 0.5));
	font-size: 1.25rem;
}
p.button-default i.icon-line {
	color: #06c755;
	transition: 0.25s color ease;
}
p.button-default a:hover i.icon-line {
	color: #ffffff;
}
p.button-entry {
	font-size: 1.375rem;
	font-family: "Kumbh Sans", sans-serif;
	font-weight: 600;
}
p.button-entry a {
	justify-content: center;
	width: 320px;
	height: 60px;
	color: #ffffff;
	border: none;
	background-color: #ef9ca0;
	border-radius: 30px;
}
p.button-entry a:hover {
	background-color: #e77d82;
}
div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
}
div.button-wrapper p.button-default:not(:last-child) {
	margin-right: 10px;
}
p.copyright {
	font-family: "Kumbh Sans", sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.25rem;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.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);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 20px !important;
}



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

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, p#button-menu, div#menu) {
	position: fixed;
}
header#header *#logo {
	left: 20px;
	top: 20px;
	z-index: 20;
}
body.admin-bar header#header *#logo {
	top: 52px;
}
header#header *#logo img {
	width: 252px;
}
header#header p#button-menu {
  width: 100px;
  height: 100px;
  right: 0px;
	top: 0px;
	z-index: 30;
  cursor: pointer;
	background-color: #ffffff;
	border-bottom-left-radius: 10px;
}
body.admin-bar header#header p#button-menu {
	top: 32px;
}
header#header p#button-menu::before {
	position: absolute;
	width: 100%;
	left: 0px;
	top: calc(50% + 10px);
	text-align: center;
	font-family: "Kumbh Sans", sans-serif;
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1rem;
	content: "MENU";
}
div.menu-header header#header p#button-menu::before {
	content: "CLOSE";
}
header#header p#button-menu i {
  display: block;
  position: absolute;
  width: 35px;
  height: 0px;
  left: calc(50% - 17.5px);
  top: calc(50% - 9px);
	border-bottom: 2px solid #333333;
  transition: 0.25s all ease;
}
header#header p#button-menu i:nth-child(1) {
	transform: translateY(-11px);
}
header#header p#button-menu i:nth-child(2) {
  width: 27.5px;
	transform: translateY(11px);
}
header#header p#button-menu i:nth-child(3) {
  width: 20px;
}
div.menu-header header#header p#button-menu i:nth-child(-n+3) {
  width: 0px;
  left: 50%;
  opacity: 0;
	transform: translateY(0px);
}
header#header p#button-menu i:where(:nth-child(4), :nth-child(5)) {
  width: 0px;
  left: 50%;
  opacity: 0;
}
div.menu-header header#header p#button-menu i:where(:nth-child(4), :nth-child(5)) {
  width: 40px;
  left: calc(50% - 20px);
  opacity: 1;
}
div.menu-header header#header p#button-menu i:nth-child(4) {
	transform: rotate(30deg);
}
div.menu-header header#header p#button-menu i:nth-child(5) {
	transform: rotate(-30deg);
}
header#header div#menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	right: 0px;
	top: 0px;
	overflow: auto;
	z-index: 10;
	background-color: #ffffff;
	transform: translateY(-100%);
	transition: 0.375s transform ease;
	-webkit-overflow-scrolling: touch;
}
div.menu-header header#header div#menu {
	transform: translateY(0%);
}
header#header div#menu::-webkit-scrollbar {
  display: none;
}
header#header div#menu div.inner-menu {
	width: 1100px;
	padding: 40px 0px;
}
header#header div#menu div.navi-misc {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
header#header div#menu div.navi-misc nav#navi {
	position: relative;
	width: calc(100% - 530px);
}
header#header div#menu div.navi-misc nav#navi div.list {
	margin-bottom: 40px;
	padding-left: 25px;
}
header#header div#menu div.navi-misc nav#navi div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
header#header div#menu div.navi-misc nav#navi div.list div.row p.headline {
	position: relative;
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 2.25rem;
}
header#header div#menu div.navi-misc nav#navi div.list div.row p.headline:not(:last-child) {
	margin-bottom: 10px;
}
header#header div#menu div.navi-misc nav#navi div.list div.row p.headline::before {
	position: absolute;
	width: 15px;
	height: 0px;
	left: -25px;
	top: 18px;
	border-bottom: 3px solid #ef9ca0;
	content: "";
}
header#header div#menu div.navi-misc nav#navi div.list div.row ul li:not(:last-child) {
	margin-bottom: 10px;
}
header#header div#menu div.navi-misc nav#navi p.button-entry {
	justify-content: flex-start;
}
header#header div#menu div.navi-misc div.misc {
	width: 530px;
}
header#header div#menu div.navi-misc div.misc div.contact div.text div.tel {
	margin-bottom: 40px;
}
header#header div#menu div.navi-misc div.misc div.contact div.text div.tel p.label {
	margin-bottom: 10px;
}
header#header div#menu div.navi-misc div.misc div.contact div.button-wrapper {
	margin-bottom: 20px;
}
header#header div#menu div.navi-misc div.misc div.contact div.text h3 {
	margin-bottom: 10px;
}
header#header div#menu div.navi-misc div.misc div.contact div.text h3 span {
	display: block;
}
header#header div#menu div.navi-misc div.misc div.contact div.text h3 span.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
header#header div#menu div.navi-misc div.misc div.contact div.text h3 span.main {
	font-size: 1.25rem;
	font-weight: 700;
}
header#header div#menu div.navi-misc div.misc p.copyright {
	position: absolute;
	width: 1100px;
	left: calc(50% - 550px);
	bottom: 40px;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div:where(#cover, #space-cover) {
	height: 100svh;
}
body.admin-bar div:where(#cover, #space-cover) {
	height: calc(100svh - 32px);
}
div#cover {
	position: fixed;
	width: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	background-color: #ffffff;
}
body.admin-bar div#cover {
	top: 32px;
}
div#cover.hidden {
	visibility: hidden;
}
div#cover div.image,
div#cover div.image p.row,
div#cover div.image p.row span {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.image p.row span {
	display: block;
	animation-duration: 6.75s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
div#cover div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.image p.row span.zoom {
	animation-name: cover-image;
}
@keyframes cover-image {
	0% { transform: scale(1); }
	100% { transform: scale(1.0625); }
}
div#cover p.button-scroll {
	position: absolute;
	width: 20px;
	left: 15px;
	bottom: 20px;
	z-index: 10;
	font-family: "Kumbh Sans", sans-serif;
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 20px;
}
div#cover p.button-scroll a {
	display: block;
	position: relative;
	padding-bottom: 65px;
}
div#cover p.button-scroll a:hover {
	color: #ffffff;
}
div#cover p.button-scroll a::before {
	position: absolute;
	width: 0px;
	height: 60px;
	left: calc(50% - 0.5px);
	bottom: 0px;
	border-right: 1px solid #333333;
	content: "";
	transition: 0.25s border-color ease;
}
div#cover p.button-scroll a:hover::before {
	border-color: #ffffff;
}
div#cover p.button-scroll span {
	writing-mode: vertical-rl;
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

div#title {
	padding: 200px 0px 80px 0px;
}
body:where(.point, .guideline) div#title {
	background-color: #f5f5f5;
}
div#title div.text {
	width: 1100px;
	margin: 0px auto;
}
div#title p.sub {
	position: relative;
	font-family: "Kumbh Sans", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 15px;
	padding-left: 55px;
}
div#title p.sub::before {
	position: absolute;
	width: 45px;
	height: 0px;
	left: 0px;
	top: 13px;
	border-bottom: 3px solid #ef9ca0;
	content: "";
}
div#title h1 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3rem;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	z-index: 5;
	background-color: #ffffff;
}
main div.background-sakura {
	position: absolute;
	aspect-ratio: 1366 / 1100;
	width: 100%;
	left: 0px;
	top: 120px;
	background: url(../images/background-sakura.jpg) no-repeat center;
	background-size: auto 100%;
	content: "";
}
main section div.inner-section {
	width: 1100px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section header.common {
	margin-bottom: 80px;
}
main section header.common p.sub {
	position: relative;
	font-family: "Kumbh Sans", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	padding-left: 55px;
}
main section header.common p.sub:not(:last-child) {
	margin-bottom: 15px;
}
main section header.common p.sub::before {
	position: absolute;
	width: 45px;
	height: 0px;
	left: 0px;
	top: 13px;
	border-bottom: 3px solid #ef9ca0;
	content: "";
}
main section header.common h2 {
	font-size: 2rem;
	font-weight: 700;
}
main div.list-category ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px -10px 0px;
}
main div.list-category ul li {
	font-weight: 700;
	margin: 0px 10px 10px 0px;
}
main div.list-category ul li:not(:last-child) {
	margin-right: 10px;
}
main div.list-category ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	color: #888888;
	border: 1px solid #888888;
	padding: 0px 25px;
	background-color: #ffffff;
	border-radius: 25px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div.list-category ul li a:hover,
main div.list-category ul li.active a {
	color: #ffffff;
	background-color: #888888;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 700;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
main article.common div.body ul li,
main ul.bullet li {
	position: relative;
	padding-left: 20px;
}
main article.common div.body ul li::before,
main ul.bullet li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #333333;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol,
main ol.decimal {
	padding-left: 20px;
}
main article.common div.body ol li,
main ol.decimal li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #dddddd;
	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 :where(a.wp-block-button__link, a.wp-block-file__button) {
	display: inline-block;
	height: 50px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 50px;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #333333;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #ef9ca0;
}
main div#pager,
main nav#navi-article {
	margin-top: 80px;
}
main div#pager,
main nav#navi-article ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div#pager {
	margin-bottom: -10px;
}
main div#pager :where(span.current, a),
main nav#navi-article ul li a {
	display: block;
	color: #333333;
	transition: 0.25s color ease;
}
main div#pager :where(span.current, a:hover),
main nav#navi-article ul li a:hover {
	color: #ef9ca0;
}
main div#pager :where(span.current, a) {
	margin: 0px 10px 10px 10px;
}
main nav#navi-article ul {
	position: relative;
}
main nav#navi-article ul li:where(.prev, .next) {
	position: absolute;
	top: 0px;
}
main nav#navi-article ul li.prev {
	left: 0px;
}
main nav#navi-article ul li.next {
	right: 0px;
}

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

main section#home-philosophy div.text {
	padding: 0px 80px;
}
main section#home-philosophy div.text h2 {
	font-family: "Kumbh Sans", sans-serif;
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 3.75rem;
	margin-bottom: 10px;
}
main section#home-philosophy div.text h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 80px;
}
main section#home-philosophy div.text p.description {
	width: 480px;
	font-size: 1.125rem;
	line-height: 2.75rem;
	margin-left: auto;
}
main section#home-service header.common + p.description {
	font-size: 1.125rem;
	line-height: 2.25rem;
	margin-bottom: 40px;
}
main section#home-service div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 80px 0px;
}
main section#home-service div.list div.row {
	width: calc(33.33% - 40px);
	margin-right: 40px;
}
main section#home-service div.list div.row p.image,
main section#home-service div.day p.image {
	border-radius: 5px;
}
main section#home-service div.list div.row p.image {
	margin-bottom: 20px;
}
main section#home-service div.list div.row h3,
main section#home-service div.day div.text h3 {
	font-size: 1.375rem;
	font-weight: 700;
	color: #ef9ca0;
	margin-bottom: 10px;
}
main section#home-service div.day {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	padding: 40px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
main section#home-service div.day p.image {
	width: 500px;
}
main section#home-service div.day div.text {
	width: calc(100% - 540px);
}
main section#home-service div.day div.text p.description {
	margin-bottom: 40px;
}
main section#home-service div.day div.text p.button-default {
	justify-content: flex-start;
}
main section#home-availablity {
	background-color: #f5f5f5;
}
main section#home-availablity div.list {
	width: 530px;
	margin: 0px auto 80px auto;
}
main section#home-availablity div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100px;
	padding: 0px 40px;
	background-color: #ffffff;
	border-radius: 5px;
}
main section#home-availablity div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
main section#home-availablity div.list div.row p.label {
	width: calc(100% - 2.5rem);
	font-size: 1.375rem;
	font-weight: 700;
}
main section#home-availablity div.list div.row p.body {
	width: 2.5rem;
}
main section#home-availablity div.list div.row p.body i.icon {
	display: block;
	font-size: 2.5rem;
}
main section#home-availablity div.list div.row p.body i.icon-availablity-01 {
	color: #ef9ca0;
}
main section#home-availablity div.list div.row p.body i.icon-availablity-02 {
	color: #cccccc;
}
main section#home-availablity div.list div.row p.body i.icon-availablity-03 {
	color: #888888;
}
main section#home-availablity div.contact p.description {
	text-align: center;
	margin-bottom: 20px;
}
main section#home-availablity div.contact div.button-wrapper {
	justify-content: center;
}
main section#home-recruit div.inner-section {
	padding-top: 0px;
}
main section#home-recruit header {
	margin-bottom: 40px;
}
main section#home-recruit header p.image {
	height: 700px;
	margin: 0px calc(50% - 50vw);
}
main section#home-recruit header p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-recruit header div.text {
	position: relative;
	font-family: "Kumbh Sans", sans-serif;
	color: #ffffff;
	margin-top: -270px;
}
main section#home-recruit header div.text h2 {
	font-size: 4.5rem;
	font-weight: 600;
	line-height: 5rem;
	margin-bottom: 10px;
}
main section#home-recruit header div.text p.description {
	font-size: 1.125rem;
}
main section#home-recruit div.list-recruit {
	margin-bottom: 40px;
}
main section#home-recruit div.list-recruit + p.description {
	font-size: 1.125rem;
	margin-bottom: 20px;
}
main section#home-recruit p.button-default {
	justify-content: flex-end;
}
main section#home-recruit p.button-default a {
	width: 160px;
}

/* recruit
-------------------------------------------------------------------------------- */

main div.list-recruit div.row {
	width: calc(33.33% - 20px);
}
main div.list-recruit div.row a {
	padding: 20px 20px 40px 20px;
}
main div.list-recruit div.row p:where(.label, .illust) {
	margin-bottom: 10px;
}
main div.list-recruit div.row p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div.list-recruit div.row p.illust img {
	width: 250px;
}
main div.list-recruit div.row h3 {
	text-align: center;
}
main div.list-recruit div.row h3 br {
	display: none;
}
main section#recruit div.inner-section {
	padding-top: 0px;
}
main section#recruit p.description {
	text-align: right;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 2.25rem;
	margin-bottom: 80px;
}

/* interview
-------------------------------------------------------------------------------- */

main section#interview div.block {
	position: relative;
	padding: 87.5svh 0px 200px 0px;
}
main section#interview div.block > p.image {
	position: absolute;
	width: 100vw;
	height: 100svh;
	left: calc(50% - 50vw);
	top: 0px;
}
main section#interview div.block.start > p.image {
	position: fixed;
	left: 0px;
}
main section#interview div.block.end > p.image {
	position: absolute;
	left: calc(50% - 50vw);
	top: auto;
	bottom: 0px;
}
main section#interview div.block > p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#interview div.block div.content {
	position: relative;
	z-index: 1;
	width: 500px;
	overflow: hidden;
	border-radius: 5px;
}
main section#interview div.block:nth-child(2n+1) div.content {
	margin-left: auto;
}
main section#interview div.block div.content div.profile {
	color: #ffffff;
	padding: 40px;
	background-color: #ef9ca0;
}
main section#interview div.block div.content div.profile p.label {
	font-family: "Kumbh Sans", sans-serif;
	margin-bottom: 40px;
}
main section#interview div.block div.content div.profile p.label span {
	display: block;
}
main section#interview div.block div.content div.profile p.label span.sub {
	font-size: 1.75rem;
}
main section#interview div.block div.content div.profile p.label span.main {
	font-size: 2.5rem;
	line-height: 3rem;
}
main section#interview div.block div.content div.profile p.image {
	position: absolute;
	aspect-ratio: 230 / 270;
	width: 230px;
	right: 30px;
	top: 20px;
	border-radius: 115px;
}
main section#interview div.block div.content div.profile p.image::before {
	position: absolute;
	aspect-ratio: 1;
	width: 100%;
	left: 0px;
	bottom: 0px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
}
main section#interview div.block div.content div.profile p.image img {
	position: relative;
}
main section#interview div.block div.content div.profile div.text {
	font-size: 1.25rem;
	line-height: 2.25rem;
}
main section#interview div.block div.content div.profile div.text p.name {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
}
main section#interview div.block div.content div.body {
	padding: 40px;
	background-color: #ffffff;
}
main section#interview div.block div.content div.body div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#interview div.block div.content div.body div.list div.row h3 {
	font-size: 1.625rem;
	font-weight: 700;
	margin-bottom: 15px;
}

/* point
-------------------------------------------------------------------------------- */

main section#point {
	background-color: #f5f5f5;
}
main section#point h2,
main section#point h2 span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#point h2 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3rem;
	margin-bottom: 80px;
}
main section#point h2 span {
	margin-bottom: -10px;
}
main section#point h2 span i {
	display: block;
	border-bottom: 3px solid #ef9ca0;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
main section#point div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px -20px 0px;
}
main section#point div.list div.row {
	width: calc(33.33% - 20px);
	text-align: center;
	margin: 0px 20px 20px 0px;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 5px;
}
main section#point div.list div.row p.label,
main section#point div.list div.row div.body,
main section#point div.list div.row div.body p.number {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#point div.list div.row p.label,
main section#point div.list div.row div.body {
	align-items: center;
}
main section#point div.list div.row p.label {
	height: 3.75rem;
	font-size: 1.375rem;
	font-weight: 700;
	color: #ef9ca0;
	margin-bottom: 10px;
}
main section#point div.list div.row div.body {
	height: 160px;
}
main section#point div.list div.row div.body p.number {
	align-items: flex-end;
}
main section#point div.list div.row div.body p.number span {
	display: block;
}
main section#point div.list div.row div.body p.number span:not(:last-child) {
	margin-right: 2.5px;
}
main section#point div.list div.row div.body p.number span.main {
	font-family: "Kumbh Sans", sans-serif;
	font-size: 5.5rem;
	font-weight: 600;
	line-height: 4rem;
}
main section#point div.list div.row div.body p.number span.sub {
	font-size: 2rem;
	font-weight: 700;
}
main section#point div.list div.row div.body p.description {
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 2.25rem;
}
main section#group div.headline {
	text-align: center;
	margin-bottom: 80px;
}
main section#group div.headline p.logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 10px;
}
main section#group div.headline p.logo img {
	width: 448px;
}
main section#group div.headline p.sub {
	font-size: 1.625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}
main section#group div.diagram {
	position: relative;
	margin-bottom: 80px;
	padding: 90px 0px;
}
main section#group div.diagram h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 300px;
	text-align: center;
	margin: 0px auto;
	background: url(../images/symbol-full-of-life.svg) no-repeat center;
	background-size: 100% auto;
}
main section#group div.diagram h2 span,
main section#group div.diagram h2 span i {
	display: block;
}
main section#group div.diagram h2 span i.main {
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.5rem;
}
main section#group div.diagram h2 span i.sub {
	font-family: "Kumbh Sans", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
}
main section#group div.diagram div.list,
main section#group div.diagram div.list div.row {
	position: absolute;
}
main section#group div.diagram div.list {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
main section#group div.diagram div.list div.row {
	width: 160px;
	text-align: center;
}
main section#group div.diagram div.list div.row h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 10px;
}
main section#group div.diagram div.list div.row ul li {
	font-size: 1.125rem;
}
main section#group div.diagram div.list div:where(.row-01, .row-04) {
	left: calc(50% - 80px);
}
main section#group div.diagram div.list div.row-01 {
	bottom: calc(50% + 170px);
}
main section#group div.diagram div.list div:where(.row-02, .row-03) {
	top: calc(50% - 75px);
}
main section#group div.diagram div.list div.row-02 {
	right: calc(50% + 170px);
}
main section#group div.diagram div.list div.row-03 {
	left: calc(50% + 170px);
}
main section#group div.diagram div.list div.row-04 {
	top: calc(50% + 170px);
}
main section#group div.diagram div.list div.row-01 h3 {
	color: #61c3f1;
}
main section#group div.diagram div.list div.row-02 h3 {
	color: #ef9ca0;
}
main section#group div.diagram div.list div.row-03 h3 {
	color: #93c582;
}
main section#group div.diagram div.list div.row-04 h3 {
	color: #f28325;
}
main section#group div.text :where(h2, h3) {
	text-align: center;
	font-weight: 700;
}
main section#group div.text h2 {
	font-size: 1.75rem;
	line-height: 3.25rem;
	margin-bottom: 40px;
}
main section#group div.text :where(p.description, h3) {
	line-height: 2.25rem;
}
main section#group div.text p.description {
	width: 480px;
	margin: 0px auto 40px auto;
}
main section#group div.text h3 {
	font-size: 1.125rem;
}

/* guideline
-------------------------------------------------------------------------------- */

main section#guideline {
	background-color: #f5f5f5;
}
main section#guideline div.inner-section {
	padding-top: 0px;
}
main section#guideline header {
	margin-bottom: 80px;
}
main section#guideline header p.description {
	font-size: 1.125rem;
	margin-bottom: 20px;
}
main section#guideline div.tab {
	border-bottom: 3px solid #ef9ca0;
}
main section#guideline div.tab ul,
main section#guideline div.tab ul li {
	display: flex;
	flex-wrap: wrap;
}
main section#guideline div.tab ul {
	margin-right: -10px;
}
main section#guideline div.tab ul li {
	justify-content: center;
	align-items: center;
	width: calc(16.66% - 10px);
	height: 60px;
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 700;
	cursor: pointer;
	margin-right: 10px;
	padding: 0px 10px;
	background-color: #dddddd;
	border-radius: 5px 5px 0px 0px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main section#guideline div.tab ul li:hover,
main section#guideline div.tab ul li.active {
	color: #ffffff;
	background-color: #ef9ca0;
}
main section#guideline div.content {
	height: 0px;
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 0px 0px 5px 5px;
}
main section#guideline div.content.active {
	height: auto;
}
main section#guideline div.content div.list {
	margin-bottom: 80px;
	padding: 40px 80px 0px 80px;
}
main section#guideline div.content div.list div.row {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	font-size: 1.125rem;
	border-bottom: 1px solid #dddddd;
	padding: 40px 0px;
}
main section#guideline div.content div.list div.row::before {
	position: absolute;
	width: 160px;
	height: 0px;
	left: 0px;
	bottom: -1px;
	border-bottom: 1px solid #ef9ca0;
	content: "";
}
main section#guideline div.content div.list div.row p.label {
	width: 180px;
	font-weight: 700;
}
main section#guideline div.content div.list div.row p.body {
	width: calc(100% - 180px);
}
main section#guideline div.content div.entry {
	padding-bottom: 80px;
}
main section#guideline div.content div.entry :where(h3, p.button-default) {
	opacity: 1;
}

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

main section.form div.inner-section {
	width: 860px;
}
main section.form div.header {
	margin-bottom: 120px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.header p.description {
	font-size: 1.125rem;
	line-height: 2.25rem;
	margin-bottom: 40px;
}
main section.form div.header p.require,
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section.form div.header p.require span,
main section.form div.form div.component p.label span.require {
	display: inline-block;
	width: 10px;
	height: 10px;
	vertical-align: middle;
	margin-right: 10px;
	background-color: #ef9ca0;
	border-radius: 50%;
	transform: translateY(1px);
}
main section.form div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
main section.form div.form div.component-group:not(:last-child) {
	border-bottom: 1px solid #dddddd;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
main section.form div.form div.component:not(:last-child) {
	margin-bottom: 20px;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 300px;
	height: 50px;
}
main section.form div.form div.component p.label:not(:has(.require)) {
	padding-left: 20px;
}
main section.form div.mw_wp_form_preview div.form div.component p.label:not(:has(.require)) {
	padding-left: 0px;
}
main section.form div.form div.component-radio-checkbox p.label {
	height: auto;
}
main section.form div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section.form div.form div.component div.body {
	width: calc(100% - 300px);
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -5px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body :is(input:is([type=text], [type=email]), select, 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-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.component-postal-code div.body input[name=postal_code_01] {
	width: 90px;
}
main section.form div.form div.component-postal-code div.body input[name=postal_code_02] {
	width: 120px;
}
main section.form div.form div.component-postal-code div.body p.separate {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 50px;
}
main section.form div.mw_wp_form_preview div.form div.component-postal-code div.body p.separate {
	display: block;
	width: auto;
	height: auto;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	padding-top: 5px;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action :is(input:is([type=button], [type=submit]), button) {
	margin: 0px 10px;
}



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

div#main-bottom div.inner-main-bottom {
	width: 1100px;
	margin: 0px auto;
	padding: 120px 0px;
}
div#main-bottom div#banner-group a {
	display: block;
	position: relative;
	height: 240px;
	border: 1px solid #cccccc;
	padding: 40px;
	border-radius: 5px;
	transition: 0.25s border-color ease, 0.25s background-color ease;
}
div#main-bottom div#banner-group a:hover {
	border-color: #f5f5f5;
	background-color: #f5f5f5;
}
div#main-bottom div#banner-group p.logo {
	margin-bottom: 10px;
}
div#main-bottom div#banner-group p.logo img {
	width: 448px;
}
div#main-bottom div#banner-group p.sub {
	font-size: 1.625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}
div#main-bottom div#banner-group p.more {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: absolute;
	right: 40px;
	bottom: 40px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.125rem;
}
div#main-bottom div#banner-group p.more i.icon-arrow {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 400;
	margin-left: 10px;
}
div#main-bottom div.list-recruit:not(:last-child) {
	margin-bottom: 120px;
}
div#main-bottom div.list-recruit div.row {
	width: calc(50% - 20px);
}
body.interview div#main-bottom div.list-recruit div.row-interview,
body.point div#main-bottom div.list-recruit div.row-point,
body.guideline div#main-bottom div.list-recruit div.row-guideline {
	display: none;
}
div#main-bottom div.list-recruit div.row a {
	position: relative;
	height: 230px;
	padding: 40px;
}
div#main-bottom div.list-recruit div.row p.label {
	margin-bottom: 20px;
}
div#main-bottom div.list-recruit div.row p.illust {
	position: absolute;
	width: 250px;
	right: 40px;
	top: 20px;
}
div#main-bottom div.list-recruit div.row p.illust img {
	width: 100%;
}
div#main-bottom div.list-recruit div.row h3 {
	font-size: 1.625rem;
	line-height: 2.25rem;
}



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

footer#footer {
	position: relative;
	z-index: 5;
	padding-bottom: 40px;
	background-color: #ffffff;
}
footer#footer div.inner-footer {
	width: 1100px;
	margin: 0px auto;
}
footer#footer h2.headline {
	position: relative;
	font-family: "Kumbh Sans", sans-serif;
	font-size: 1.375rem;
	font-weight: 600;
	margin-bottom: 40px;
	padding-left: 55px;
}
footer#footer h2.headline::before {
	position: absolute;
	width: 45px;
	height: 0px;
	left: 0px;
	top: 13px;
	border-bottom: 3px solid #ef9ca0;
	content: "";
}
footer#footer div.contact {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.contact div.text {
	width: 570px;
}
footer#footer div.contact div.text div.tel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}
footer#footer div.contact div.text div.tel p.label {
	margin-right: 20px;
}
footer#footer div.contact div.text div.button-wrapper {
	margin-bottom: 20px;
}
footer#footer div.contact div.text h3 {
	margin-bottom: 10px;
}
footer#footer div.contact div.text h3 span {
	display: block;
}
footer#footer div.contact div.text h3 span.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
footer#footer div.contact div.text h3 span.main {
	font-size: 1.25rem;
	font-weight: 700;
}
footer#footer div.contact div.text p.address {
	margin-bottom: 40px;
}
footer#footer div.contact div.text div.data div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
footer#footer div.contact div.text div.data div.list div.row p.label {
	font-weight: 700;
	margin-bottom: 5px;
}
footer#footer div.contact div.text div.data div.list div.row ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px -10px 0px;
}
footer#footer div.contact div.text div.data div.list div.row ul li {
	margin: 0px 20px 10px 0px;
}
footer#footer div.contact div.text div.data div.list div.row ul li a {
	display: block;
	border-bottom: 1px solid #333333;
	transition: 0.25s color ease, 0.25s border-color ease;
}
footer#footer div.contact div.text div.data div.list div.row ul li a:hover {
	border-color: #ef9ca0;
}
footer#footer div.contact div.map {
	width: calc(100% - 570px);
}
footer#footer div.contact div.map iframe {
	width: 100%;
	height: 480px;
}
footer#footer p.copyright {
	margin-top: -20px;
}
