/* --------------------------------------------------------------------------------
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: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875rem;
	color: #555555;
	background-color: #eaf1f5;
	-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: #224c93;
}
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: #cb4949;
}



/* --------------------------------------------------------------------------------
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 #d9d9d9;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #ffffff;
	border-radius: 2.5px;
}
*.margin-bottom {
	margin-bottom: 40px;
}
*.margin-bottom-alternate {
	margin-bottom: 60px;
}
*.margin-bottom-wide {
	margin-bottom: 80px;
}
*.margin-bottom-narrow {
	margin-bottom: 20px;
}



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

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}
div#trigger {
	position: absolute;
	top: 50svh;
	pointer-events: none;
}
i:where(.arrow, .arrow-alternate) {
	position: absolute;
	width: 20px;
	height: 0px;
}
i.arrow {
	transition: 0.25s transform ease;
}
a:hover i.arrow {
	transform: translateX(5px);
}
i.arrow::before,
i.arrow::after,
i.arrow-alternate::before,
i.arrow-alternate::after {
	position: absolute;
	border-bottom: 1px solid #555555;
	content: "";
	transition: 0.25s border-color ease;
}
i.arrow::before,
i.arrow::after {
	right: 0px;
	bottom: 0px;
}
i.arrow::before {
	width: 100%;
}
i.arrow::after,
i.arrow-alternate::after {
	width: 6px;
}
i.arrow::after {
	transform-origin: right bottom;
	transform: rotate(45deg);
}
i.arrow-alternate {
	height: 20px;
	border: 1px solid #555555;
	border-radius: 50%;
}
i.arrow-alternate::before {
	width: 10px;
	left: calc(50% - 5px);
	top: calc(50% - 0.5px);
}
i.arrow-alternate::after {
	height: 6px;
	left: calc(50% - 2px);
	top: calc(50% - 5px);
	border-right: 1px solid #555555;
	transform-origin: right center;
	transform: rotate(-45deg);
}
p.button-default,
p.button-default a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	line-height: 1.5rem;
}
p.button-default a {
	position: relative;
	align-items: center;
	width: 260px;
	height: 50px;
	color: #555555;
	border: 1px solid #555555;
	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: #555555;
}
p.button-default span {
	display: block;
	transform: translateY(-1px);
}
p.button-default i.arrow {
	right: 25px;
	top: calc(50% - 0.5px);
}
p.button-default a:hover i.arrow::before,
p.button-default a:hover i.arrow::after {
	border-color: #ffffff;
}
p.button-left {
	justify-content: flex-start;
}
p.button-right {
	justify-content: flex-end;
}
p.button-small a {
	width: 200px;
	height: 40px;
	border-radius: 20px;
}
p.button-small i.arrow {
	right: 20px;
}
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);
}
p.image-background,
p.image-background img {
	position: relative;
}
p.image-background {
	overflow: visible;
}
p.image-background::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	transition: 0.75s transform 0.25s ease;
}
p.image-background.active::before {
	transform: translate(20px, 20px);
}
*.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);
}

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

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



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

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, nav#navi, p.contact, p.iticket) {
	position: fixed;
}
header#header :where(*#logo, p.contact) {
	top: 0px;
}
body.admin-bar header#header :where(*#logo, p.contact) {
	top: 32px;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	height: 100px;
	left: 0px;
	z-index: 10;
	padding-left: 20px;
	background-color: rgba(255, 255, 255, 0.875);
}
header#header *#logo img {
	width: 291px;
}
header#header :where(nav#navi, p.contact, p.iticket) {
	z-index: 20;
}
header#header nav#navi {
	right: 290px;
	top: 20px;
}
body.admin-bar header#header nav#navi {
	top: 52px;
}
header#header nav#navi ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi ul li:where(.standard, .document) {
	display: none;
}
header#header nav#navi ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 60px;
	color: #224c93;
	padding: 0px 10px;
}
header#header nav#navi ul li a::before {
	position: absolute;
	width: calc(100% - 20px);
	left: 10px;
	bottom: 15px;
	border-bottom: 1px solid #224c93;
	content: "";
	transition: 0.25s transform ease;
	transform: scaleX(0);
}
header#header nav#navi ul li a:hover::before {
	transform: scaleX(1);
}
header#header p:where(.contact, .iticket) {
	right: 20px;
	text-align: center;
}
header#header p:where(.contact, .iticket) a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 65px;
	color: #ffffff;
	transition: 0.25s color ease, 0.25s background-color ease;
}
header#header p.contact a {
	border: 1px solid #224c93;
	border-top: none;
	background-color: #224c93;
	border-radius: 0px 0px 10px 10px;
}
header#header p.contact a:hover {
	color: #224c93;
	background-color: #ffffff;
}
header#header p.contact span,
header#header p:where(.contact, .iticket) i {
	display: block;
}
header#header p:where(.contact, .iticket) i.label {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
header#header p.contact i.number {
	font-family: "Roboto", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}
header#header p.iticket {
	top: 75px;
}
body.admin-bar header#header p.iticket {
	top: 107px;
}
header#header p.iticket a {
	border: 1px solid #50b3af;
	padding-bottom: 5px;
	background-color: #50b3af;
	border-radius: 10px;
}
header#header p.iticket a:hover {
	color: #50b3af;
	background-color: #ffffff;
}
header#header p.iticket svg {
	width: calc(426px * 0.5);
	height: auto;
	margin: 0px auto;
}
header#header p.iticket svg path {
	transition: 0.25s fill ease;
}
header#header p.iticket a:hover svg path {
	fill: #50b3af !important;
}



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

div#cover {
	position: relative;
	height: 100svh;
}
body.admin-bar div#cover {
	height: calc(100svh - 32px);
}
div#cover div.image,
div#cover div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.text {
	position: absolute;
	z-index: 10;
	left: 0px;
	bottom: 80px;
}
div#cover div.text h2 {
	text-indent: 0.05em;
	font-family: "Shippori Mincho", serif;
	font-size: 1.75rem;
	color: #224c93;
	letter-spacing: 0.05em;
}
div#cover div.text h2 span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 380px;
	height: 65px;
	background-color: rgba(255, 255, 255, 0.875);
	border-radius: 0px 10px 10px 0px;
}
div#cover div.text h2 span:not(:last-child) {
	margin-bottom: 10px;
}



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

div#title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 200px;
}
div#title p.image,
div#title p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#title p.image::before {
	background-color: #224c93;
	content: "";
	opacity: 0.75;
}
div#title p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#title h1 {
	position: relative;
	z-index: 1;
	text-align: center;
	text-indent: 0.05em;
	font-size: 1.75rem;
	color: #ffffff;
	letter-spacing: 0.05em;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: 1200px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section#access div.inner-section {
	padding-top: 0px;
}
main section#access div.map {
	margin: 0px calc(50% - 50vw) 40px 0px;
}
main section#access div.map iframe {
	width: 100%;
	height: 480px;
}
main section#access div.list-wrapper,
main section#access div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
main section#access div.list-wrapper {
	justify-content: space-between;
}
main section#access div.list-wrapper div.list {
	width: calc(50% - 20px);
}
main section#access div.list div.row {
	line-height: 1.625rem;
}
main section#access div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
main section#access div.list div.row p.label {
	width: 80px;
}
main section#access div.list div.row:not(:has(p.label)),
main section#access div.list div.row:has(p.label) p.body {
	width: calc(100% - 80px);
}
main section#access div.list div.row:not(:has(p.label)) {
	border-top: 1px solid #d9d9d9;
	margin: 10px 0px 0px auto;
	padding-top: 10px;
}
main section#reception::before {
	position: absolute;
	width: calc(50vw + 640px);
	height: 100%;
	left: calc(50% - 640px);
	top: 0px;
	background-color: #ffffff;
	content: "";
	border-top-left-radius: 40px;
}
main section#reception div.inner-section {
	padding: 40px 0px;
}
main section#reception div.list {
	margin-bottom: 40px;
}
main section#reception div.list div.row {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.625rem;
}
main section#reception div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
main section#reception div.list div.row p.label {
	width: 80px;
}
main section#reception div.list div.row p.body {
	width: calc(100% - 80px);
}
main section#reception table {
	width: 50%;
}
main section#reception table :where(th, td) {
	text-align: center;
	line-height: 1.625rem;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	padding: 10px 0px;
}
main section#reception table :where(th, td):first-child {
	width: 26.5%;
	border-right: 1px solid #d9d9d9;
}
main section#reception table :where(th, td):not(:first-child) {
	width: 10.5%;
}
main section#reception table thead th {
	background-color: #eaf1f5;
}
main section#partnership p.description {
	margin-bottom: 40px;
}
main section#partnership div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px -10px 0px;
}
main section#partnership  div.button-wrapper p.button-default {
	width: calc(33.33% - 10px);
	margin: 0px 10px 10px 0px;
}
main section#partnership  div.button-wrapper p.button-default a {
	width: 100%;
	color: #ffffff;
	border-color: #224c93;
	background-color: #224c93;
}
main section#partnership  div.button-wrapper p.button-default a:hover {
	color: #224c93;
	background-color: #ffffff;
}
main section#partnership  div.button-wrapper p.button-default i.arrow::before,
main section#partnership  div.button-wrapper p.button-default i.arrow::after {
	border-color: #ffffff;
}
main section#partnership  div.button-wrapper p.button-default a:hover i.arrow::before,
main section#partnership  div.button-wrapper p.button-default a:hover i.arrow::after {
	border-color: #224c93;
}
main div.headline {
	width: 180px;
	text-align: center;
}
main div.headline-wide {
	width: 320px;
}
main div.headline-narrow {
	width: 120px;
}
main div.headline h2 {
	text-indent: 0.05em;
	font-family: "Miriam Libre", sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 5px;
	padding-bottom: 5px;
}
main div.headline p.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main ul.bullet li,
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before,
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #555555;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
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: #ffffff;
	border-radius: 10px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #d9d9d9;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #ffffff;
}
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: #555555;
	border-radius: 25px;
	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: #224c93;
}
main article.common-alternate {
	position: relative;
	width: 920px;
	margin: 0px auto;
	background-color: #ffffff;
	border-radius: 20px;
}
main article.common-alternate header {
	margin-bottom: -60px;
	transform: translateY(-60px);
}
main article.common-alternate header p.icon {
	width: 84px;
	margin: 0px auto 10px auto;
}
main article.common-alternate header p.icon img {
	width: 100%;
}
main article.common-alternate header div.headline {
	width: 320px;
	text-align: center;
	margin: 0px auto;
}
main article.common-alternate header div.headline h1 {
	font-size: 1.375rem;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
main article.common-alternate header div.headline p.sub {
	text-indent: 0.05em;
	font-family: "Miriam Libre", sans-serif;
	letter-spacing: 0.05em;
}
main article.common-alternate div.content {
	padding: 80px;
}
main article.common-alternate div.content h2.headline,
main article.common-alternate div.content h2.headline span {
	display: flex;
	flex-wrap: wrap;
}
main article.common-alternate div.content h2.headline {
	font-size: 1.125rem;
	line-height: 1.5rem;
	margin-bottom: 20px;
}
main article.common-alternate div.content h2.headline.margin-bottom {
	margin-bottom: 40px;
}
main article.common-alternate div.content h2.headline span {
	justify-content: center;
	align-items: center;
	padding: 8px 20px;
	border-radius: 20px;
}
main article.common-alternate div.content h2.headline-wide span {
	width: 100%;
}
main article.common-alternate div.content h2.headline-01 span {
	border: 1px solid #555555;
	padding-top: 7px;
	padding-bottom: 7px;
	background-color: #ffffff;
}
main article.common-alternate div.content h2.headline-02 span {
	background-color: #d3dbe9;
}
main article.common-alternate div.content h2.headline-03 span {
	background-color: #f5dbdb;
}
main article.common-alternate div.content h2.headline-04 span {
	background-color: #e2de78;
}
main article.common-alternate div.content h2:where(.headline-05, .headline-06) span {
	color: #ffffff;
}
main article.common-alternate div.content h2.headline-05 span {
	background-color: #224c93;
}
main article.common-alternate div.content h2.headline-06 span {
	background-color: #cb4949;
}
main article.common-alternate div.content h3.headline {
	font-size: 1rem;
	font-weight: 700;
	color: #224c93;
}
main article.common-alternate div.content ul:where(.emphasis, .attention) li {
	font-weight: 700;
}
main article.common-alternate div.content ul:where(.emphasis, .attention) li:not(:last-child) {
	margin-bottom: 10px;
}
main article.common-alternate div.content ul:where(.emphasis, .attention) li span {
	display: block;
	font-weight: 500;
	color: #555555;
}
main article.common-alternate div.content ul.emphasis li {
	color: #224c93;
}
main article.common-alternate div.content ul.attention li {
	color: #cb4949;
}
main article.common-alternate div.content ul.emphasis li::before {
	background-color: #224c93;
}
main article.common-alternate div.content ul.attention li::before {
	background-color: #cb4949;
}
main article.common-alternate div.content hr {
	margin: 80px 0px;
}
main article.common-alternate div.content mark {
	background-color: #e2de78;
}
main article.common-alternate div.content p.illust img {
	width: 100%;
}
main article.common-alternate div.content div:where(.image-text, .illust-text) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main article.common-alternate div.content div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
main article.common-alternate div.content div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main article.common-alternate div.content div.list div.row::before {
	position: absolute;
	width: 0px;
	height: 100%;
	left: 40px;
	top: 0px;
	border-right: 1px solid #d9d9d9;
	content: "";
}
main article.common-alternate div.content div.list div.row p.number {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 40px;
	height: 40px;
	font-family: "Roboto", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #224c93;
}
main article.common-alternate div.content div.list div.row div.body {
	width: calc(100% - 60px);
}
main article.common-alternate div.content div.frame {
	padding: 40px;
	border-radius: 10px;
}
main article.common-alternate div.content div.frame-01 {
	background-color: #e8edf4;
}
main article.common-alternate div.content div.frame-02 {
	background-color: #faecec;
}
main article.common-alternate div.content div.frame-03 {
	background-color: #f9f8e4;
}
main article.common-alternate div.content div.frame:has(h2.headline:first-child) {
	padding-top: 0px;
}
main article.common-alternate div.content div.frame h2.headline:first-child {
	margin-bottom: 0px;
	transform: translate(-40px, -20px);
}
main article.common-alternate p.button-list {
	position: absolute;
	right: 40px;
	bottom: -20px;
}
main :where(div#pager, nav#navi-article) {
	margin-top: 120px;
}
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;
	position: relative;
	transition: 0.25s color ease;
}
main div#pager :where(span.current, a:hover),
main nav#navi-article ul li a:hover {
	color: #224c93;
}
main div#pager :where(span.current, a) {
	margin: 0px 20px 20px 10px;
}
main :where(div#pager, nav#navi-article) i.arrow-alternate {
	top: 7px;
	transition: 0.25s background-color ease;
}
main :where(div#pager, nav#navi-article) a:hover i.arrow-alternate {
	background-color: #555555;
}
main :where(div#pager, nav#navi-article) a:hover i.arrow-alternate::before,
main :where(div#pager, nav#navi-article) a:hover i.arrow-alternate::after {
	border-color: #ffffff;
}
main div#pager a.prev,
main nav#navi-article ul li.prev a {
	padding-left: 25px;
}
main div#pager a.prev i.arrow-alternate,
main nav#navi-article ul li.prev i.arrow-alternate {
	left: 0px;
	transform: scaleX(-1);
}
main div#pager a.next,
main nav#navi-article ul li.next a {
	padding-right: 25px;
}
main div#pager a.next i.arrow-alternate,
main nav#navi-article ul li.next i.arrow-alternate {
	right: 0px;
}
main nav#navi-article {
	border-top: 1px solid #d9d9d9;
	padding-top: 20px;
}
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.column div.inner-section {
	display: flex;
	flex-wrap: wrap;
}
main section.column header {
	width: 220px;
}
main section.column div.content {
	width: calc(100% - 220px);
}
main section#home-news div.inner-section {
	padding-top: 80px;
}
main section#home-news div.image {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	position: relative;
	z-index: 5;
	margin: 0px calc(50% - 50vw) 80px calc(50% - 50vw);
}
main section#home-news div.image p.row {
	overflow: hidden;
}
main section#home-news div.image p.row:nth-child(1) img {
	border-top-left-radius: 40px;
}
main section#home-news div.image p.row:nth-child(2) img {
	border-top-right-radius: 40px;
}
main section#home-news div.image p.row img {
	width: 100%;
}
main section#home-news div.image p.row-01 {
	width: 50%;
	margin-top: -160px;
}
main section#home-news div.image p.row-02 {
	width: calc(50% - 80px);
}
main section#home-news div.list-news-wrapper {
	position: relative;
	margin-bottom: 40px;
	padding: 40px;
}
main section#home-news div.list-news-wrapper::before {
	position: absolute;
	width: calc(50vw + 400px);
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	border-top-left-radius: 40px;
}
main section#home-news div.list-news {
	position: relative;
}
main div#iticket {
	position: relative;
	color: #ffffff;
}
main div#iticket::before {
	position: absolute;
	width: 100%;
	height: calc(100% - 80px);
	left: 0px;
	top: 40px;
	background-color: #50b3af;
	content: "";
	border-radius: 40px 40px 0px 0px;
}
main div#iticket div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 760px;
	margin: 0px auto;
}
main div#iticket div.image-text p.image {
	width: 220px;
}
main div#iticket div.image-text div.text {
	width: calc(100% - 260px);
}
main div#iticket div.image-text div.text :where(h2, p.description) {
	margin-bottom: 20px;
}
main div#iticket div.image-text div.text p.button-default a {
	background-color: #e2de78;
}
main div#iticket div.image-text div.text p.button-default a:hover {
	background-color: #555555;
}
main div#iticket div.image-text div.text h2 svg {
	width: 426px;
}
main div#iticket div.image-text div.text p.note {
	margin-bottom: 40px;
}
main section#home-menu div.content {
	margin-bottom: 120px;
}
main section#home-menu div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#home-menu div.block h3,
main section#home-menu div.block h3 span {
	position: relative;
}
main section#home-menu div.block h3 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 40px;
	padding-bottom: 2.5px;
}
main section#home-menu div.block h3::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 10px solid #d3dbe9;
	content: "";
	border-radius: 5px;
}
main section#home-menu div.block div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px -20px 0px;
}
main section#home-menu div.block div.list div.row {
	width: calc(33.33% - 20px);
	margin: 0px 20px 20px 0px;
}
main section#home-menu div.block div.list div.row a {
	position: relative;
	transition: 0.25s background-color ease;
}
main section#home-menu div.block div.list div.row h4 {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-weight: 700;
	color: #224c93;
}
main section#home-menu div:where(.block-01, .block-03) div.list div.row a {
	display: block;
}
main section#home-menu div.block-01 div.list div.row a {
	color: #ffffff;
	padding: 20px 40px 40px 40px;
	background-color: #224c93;
	border-radius: 10px;
}
main section#home-menu div.block-01 div.list div.row a:hover {
	background-color: #5979ae;
}
main section#home-menu div.block-01 div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 80px;
	margin: 0px -20px 20px -20px;
	background-color: #ffffff;
	border-radius: 40px;
}
main section#home-menu div.block-01 div.list div.row h4 span {
	display: block;
}
main section#home-menu div.block-01 div.list div.row p.description {
	min-height: calc(1.875rem * 5);
}
main section#home-menu div:where(.block-01, .block-02) div.list div.row i.arrow {
	width: 40px;
	right: 20px;
	bottom: 20px;
}
main section#home-menu div.block-01 div.list div.row i.arrow::before,
main section#home-menu div.block-01 div.list div.row i.arrow::after {
	border-color: #ffffff;
}
main section#home-menu div:where(.block-01, .block-02) div.list div.row i.arrow::after {
	width: 12px;
}
main section#home-menu div:where(.block-02, .block-03) div.list div.row a {
	background-color: #ffffff;
}
main section#home-menu div:where(.block-02, .block-03) div.list div.row a:hover {
	background-color: #d3dbe9;
}
main section#home-menu div.block-02 div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 15px 20px;
	border-radius: 10px;
}
main section#home-menu div:where(.block-02, .block-03) div.list div.row p.icon {
	width: 84px;
}
main section#home-menu div:where(.block-02, .block-03) div.list div.row p.icon img {
	width: 100%;
}
main section#home-menu div.block-02 div.list div.row h4 {
	width: calc(100% - 94px);
}
main section#home-menu div.block-03 div.list {
	margin: 0px 0px -20px 20px;
}
main section#home-menu div.block-03 div.list div.row a {
	aspect-ratio: 1;
	padding: 30px 40px 0px 40px;
	border-radius: 50%;
}
main section#home-menu div.block-03 div.list div.row p.icon {
	margin: 0px auto 5px auto;
}
main section#home-menu div.block-03 div.list div.row div.text h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: calc(3.25rem + 10px);
	margin-bottom: 10px;
}
main section#home-menu div.block-03 div.list div.row div.text p.sub {
	text-align: center;
	font-family: "Miriam Libre", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5rem;
	border-top: 1px solid #d9d9d9;
	padding-top: 10px;
}
main section#home-menu div.image-wrapper {
	width: 100%;
}
main section#home-menu div.image-wrapper p.image {
	margin-left: calc(50% - 50vw);
}
main section#home-menu div.image-wrapper p.image img {
	border-top-right-radius: 40px;
}

/* news
-------------------------------------------------------------------------------- */

main div.list-news div.row {
	display: flex;
	flex-wrap: wrap;
	padding: 0px 20px;
}
main div.list-news div.row:not(:last-child) {
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main div.list-news div.row p.created {
	width: 140px;
	font-family: "Roboto", sans-serif;
	color: #224c93;
}
main div.list-news div.row h3 {
	width: calc(100% - 140px);
	font-size: 1rem;
}
main div.list-news div.row h3 a {
	display: block;
	position: relative;
	padding-right: 40px;
}
main div.list-news div.row h3 span {
	display: block;
	transform: translateY(-1px);
}
main div.list-news div.row h3 i.arrow {
	right: 0px;
	top: calc(50% - 0.5px);
}
main article.news header {
	margin-bottom: 40px;
}
main article.news header p.created {
	font-family: "Roboto", sans-serif;
	color: #224c93;
}
main article.news header h1 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem;
}
main section#news div.inner-section {
	width: 760px;
}

/* greeting
-------------------------------------------------------------------------------- */

main section#greeting div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#greeting div.block div.headline {
	margin-bottom: 40px;
}
main section#greeting div.block-01 div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-right: calc(50% - 50vw);
}
main section#greeting div.block-01 div.column div.left {
	width: 520px;
}
main section#greeting div.block-01 div.column div.right {
	width: calc(100% - 600px);
}
main section#greeting div.block-01 div.column div.right p.image {
	margin-bottom: 60px;
}
main section#greeting div.block-01 div.column div.right p.image img {
	border-top-left-radius: 40px;
}
main section#greeting div.block-01 div.column div.right div.outline {
	width: 320px;
	margin-left: 140px;
}
main section#greeting div.block-01 div.column div.right div.outline h3 {
	font-size: 1rem;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
main section#greeting div.block-01 div.column div.right div.outline div.list {
	margin-bottom: 40px;
}
main section#greeting div.block-01 div.column div.right div.outline div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
main section#greeting div.block-01 div.column div.right div.outline div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
main section#greeting div.block-01 div.column div.right div.outline div.list div.row p.label {
	width: 80px;
}
main section#greeting div.block-01 div.column div.right div.outline div.list div.row p.body {
	width: calc(100% - 80px);
}
main section#greeting div:where(.block-02, .block-03, .block-04) div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#greeting div:where(.block-02, .block-04) div.image-text {
	flex-direction: row-reverse;
	margin-left: calc(50% - 50vw);
}
main section#greeting div:where(.block-02, .block-03, .block-04) div.image-text div.text {
	width: 460px;
	padding-top: 40px;
}
main section#greeting div:where(.block-02, .block-03, .block-04) div.image-text p.image {
	width: calc(100% - 540px);
}
main section#greeting div:where(.block-02, .block-04) div.image-text p.image::before,
main section#greeting div:where(.block-02, .block-04) div.image-text p.image img {
	border-top-right-radius: 40px;
}
main section#greeting div.block-03 div.image-text {
	margin-right: calc(50% - 50vw);
}
main section#greeting div.block-03 div.image-text p.image::before,
main section#greeting div.block-03 div.image-text p.image img {
	border-top-left-radius: 40px;
}

/* feature
-------------------------------------------------------------------------------- */

main section#feature div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#feature div.block div.headline {
	margin-bottom: 40px;
}
main section#feature div.block-01 div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-right: calc(50% - 50vw);
}
main section#feature div.block-01 div.column div.left {
	width: 520px;
}
main section#feature div.block-01 div.column div.right {
	width: calc(100% - 600px);
}
main section#feature div.block-01 div.column div.right p.image {
	margin-right: -30px;
}
main section#feature div.block-01 div.column div.right p.image img {
	border-top-left-radius: 40px;
}
main section#feature div:where(.block-02, .block-03, .block-04) div.text {
	width: 760px;
	margin: 0px auto 80px auto;
}
main section#feature div:where(.block-02, .block-03, .block-04) div.text div.header {
	margin-bottom: 40px;
}
main section#feature div:where(.block-02, .block-03, .block-04) div.text div.header p.icon {
	width: 84px;
	margin: 0px auto 10px auto;
}
main section#feature div:where(.block-02, .block-03, .block-04) div.text div.header p.icon img {
	width: 100%;
}
main section#feature div:where(.block-02, .block-03, .block-04) div.text div.header h2 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.25rem;
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 20px;
}
main section#feature div:where(.block-02, .block-03, .block-04) p.image::before,
main section#feature div:where(.block-02, .block-03, .block-04) p.image img {
	border-radius: 40px 0px 40px 0px;
}

/* treatment
-------------------------------------------------------------------------------- */

main section#treatment-01 div.illust-text-01 div.text {
	width: calc(100% - 250px);
}
main section#treatment-01 div.illust-text-01 p.illust {
	width: 210px;
}
main section#treatment-01 div.illust-text-02 div.text {
	width: calc(100% - 230px);
}
main section#treatment-01 div.illust-text-02 p.illust {
	width: 190px;
}
main section#treatment-02 div.illust-text div.text {
	width: calc(100% - 270px);
}
main section#treatment-02 div.illust-text p.illust {
	width: 230px;
}
main section#treatment-03 div.illust-text div.text {
	width: calc(100% - 280px);
}
main section#treatment-03 div.illust-text p.illust {
	width: 240px;
}
main section#treatment-05 div.illust-text div.text {
	width: calc(100% - 220px);
}
main section#treatment-05 div.illust-text p.illust {
	width: 180px;
}
main section#treatment-06 div.illust-text-01 div.text {
	width: calc(100% - 250px);
}
main section#treatment-06 div.illust-text-01 p.illust {
	width: 210px;
}
main section#treatment-06 div.illust-text-02 div.text {
	width: calc(100% - 310px);
}
main section#treatment-06 div.illust-text-02 p.illust {
	width: 270px;
}
main section#treatment-07 div.illust-text div.text {
	width: calc(100% - 320px);
}
main section#treatment-07 div.illust-text p.illust {
	width: 280px;
}
main section#treatment-08 div.image-text div.text {
	width: calc(100% - 280px);
}
main section#treatment-08 div.image-text p.image {
	width: 240px;
	border-radius: 10px;
}
main section#treatment-09 div.illust-text div.text {
	width: calc(100% - 260px);
}
main section#treatment-09 div.illust-text p.illust {
	width: 220px;
}
main section#treatment-10 div.illust-text div.text {
	width: calc(100% - 340px);
}
main section#treatment-10 div.illust-text p.illust {
	width: 300px;
}
main section#treatment-11 div.illust-text div.text {
	width: calc(100% - 180px);
}
main section#treatment-11 div.illust-text p.illust {
	width: 140px;
}
main section#treatment-13 p.illust {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}
main section#treatment-14 div.illust-text div.text {
	width: calc(100% - 170px);
}
main section#treatment-14 div.illust-text p.illust {
	width: 130px;
}
main section#treatment-15 div.illust-text div.text {
	width: calc(100% - 420px);
}
main section#treatment-15 div.illust-text p.illust {
	width: 380px;
}
main section#treatment-17 div.illust-text div.text {
	width: calc(100% - 400px);
}
main section#treatment-17 div.illust-text p.illust {
	width: 360px;
}

/* facility
-------------------------------------------------------------------------------- */

main section#facility div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#facility div.block h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #224c93;
	margin-bottom: 40px;
	border-radius: 20px;
}
main section#facility div.block div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-right: -40px;
}
main section#facility div.block div.list:last-child {
	margin-bottom: -80px;
}
main section#facility div.block div.list div.row {
	margin: 0px 40px 80px 0px;
}
main section#facility div.block div.list div.row p.image {
	margin-bottom: 20px;
}
main section#facility div.block div.list div.row p.image img {
	border-radius: 40px 0px 40px 0px;
}
main section#facility div.block div.list div.row p.caption {
	position: relative;
	text-align: center;
	font-size: 1.125rem;
}
main section#facility div.block div.list div.row p.caption::before {
	position: absolute;
	width: 100%;
	height: 10px;
	left: 0px;
	bottom: 0px;
	border-bottom: 10px solid #ffffff;
	content: "";
	border-radius: 5px;
}
main section#facility div.block div.list div.row p.caption span {
	position: relative;
}
main section#facility div.block-01 div.list div.row,
main section#facility div.block-02 div.list-02 div.row {
	width: calc(50% - 40px);
}
main section#facility div.block-02 div.list-01 div.row {
	width: calc(33.33% - 40px);
}

/* access
-------------------------------------------------------------------------------- */

main section#access-alternate div.inner-section {
	width: 760px;
}
main section#access-alternate div:where(.list, .map):not(:last-child) {
	margin-bottom: 40px;
}
main section#access-alternate div.list div.row,
main section#access-alternate div.list div.row :where(p.label, div.body) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#access-alternate div.list div.row {
	justify-content: space-between;
}
main section#access-alternate div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#access-alternate div.list div.row p.label {
	justify-content: center;
	width: 160px;
	height: 40px;
	text-align: center;
	border: 1px solid #555555;
	background-color: #ffffff;
	border-radius: 20px;
}
main section#access-alternate div.list div.row div.body {
	width: calc(100% - 180px);
}
main section#access-alternate div.list div.row div.body p.button-default,
main section#access-alternate div.list div.row:has(p.way) div.body p.icon {
	margin-left: 20px;
}
main section#access-alternate div.list div.row div.body p.button-default a {
	color: #ffffff;
	border-color: #224c93;
	background-color: #224c93;
}
main section#access-alternate div.list div.row div.body p.button-default a:hover {
	color: #224c93;
	background-color: #ffffff;
}
main section#access-alternate div.list div.row div.body p.button-default i.arrow::before,
main section#access-alternate div.list div.row div.body p.button-default i.arrow::after {
	border-color: #ffffff;
}
main section#access-alternate div.list div.row div.body p.button-default a:hover i.arrow::before,
main section#access-alternate div.list div.row div.body p.button-default a:hover i.arrow::after {
	border-color: #224c93;
}
main section#access-alternate div.list div.row div.body p.tel {
	font-family: "Roboto", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}
main section#access-alternate div.list div.row div.body p.tel a.color {
	color: #224c93;
}
main section#access-alternate div.list div.row div.body p.tel a.color:hover {
	color: #555555;
}
main section#access-alternate div.list div.row:not(:has(p.label)) div.body {
	margin-left: auto;
}
main section#access-alternate div.list div.row:has(p.way) {
	align-items: flex-start;
}
main section#access-alternate div.list div.row:has(p.way) div.body p.way {
	position: relative;
	width: 340px;
	padding-top: 5px;
}
main section#access-alternate div.list div.row:has(p.way) div.body p.way::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: 35px;
	border-bottom: 1px solid #d9d9d9;
	content: "";
}
main section#access-alternate div.list div.row:has(p.way) div.body p.icon {
	width: 69px;
}
main section#access-alternate div.list div.row:has(p.way) div.body p.icon img {
	width: 100%;
}
main section#access-alternate div.map {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
main section#access-alternate div.map iframe {
	width: 100%;
	height: 580px;
}

/* supplement
-------------------------------------------------------------------------------- */

main div.list-supplement div.row:not(:last-child) {
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 80px;
	padding-bottom: 80px;
}
main div.list-supplement div.row h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
}
main div.list-supplement div.row h3 span {
	display: block;
}
main div.list-supplement div.row h3 span.main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 1.125rem;
	padding: 5px 20px;
	background-color: #d3dbe9;
	border-radius: 20px;
}
main div.list-supplement div.row h3 span.main:not(:last-child) {
	margin-right: 10px;
}
main div.list-supplement div.row h3 span.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main div.list-supplement div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-right: -20px;
}
main div.list-supplement div.row div.image-text p.image {
	width: 240px;
}
main div.list-supplement div.row div.image-text div.text {
	width: calc(100% - 260px);
}
main div.list-supplement div.row div.image-text div.text :where(p.body, h4):not(:last-child) {
	margin-bottom: 20px;
}
main div.list-supplement div.row div.image-text div.text h4 {
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	color: #224c93;
	padding-left: 20px;
}
main div.list-supplement div.row div.image-text div.text h4::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #224c93;
	content: "";
	border-radius: 50%;
}

/* standard
-------------------------------------------------------------------------------- */

main div.list-standard-01 {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #d9d9d9;
	margin: 0px -20px 80px 0px;
	padding-bottom: 70px;
}
main div.list-standard-01 div.row {
	width: calc(50% - 20px);
	margin-bottom: 10px;
}
main div.list-standard-02 div.row:not(:last-child) {
	margin-bottom: 40px;
}
main div.list-standard div.row p:where(.headline, .body) {
	padding-left: 20px;
}
main div.list-standard div.row p.headline {
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	color: #224c93;
}
main div.list-standard div.row p.headline::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #224c93;
	content: "";
	border-radius: 50%;
}
main div.list-standard div.row p.headline:not(:last-child) {
	margin-bottom: 5px;
}

/* document
-------------------------------------------------------------------------------- */

main div.list-document,
main div.list-document div.row {
	display: flex;
	flex-wrap: wrap;
}
main div.list-document {
	margin: 0px -40px -20px 0px;
}
main div.list-document div.row {
	width: calc(50% - 40px);
	border-bottom: 1px solid #d9d9d9;
	margin: 0px 40px 20px 0px;
	padding-bottom: 20px;
}
main div.list-document div.row h3 {
	position: relative;
	width: calc(100% - 160px);
	font-size: 1rem;
	font-weight: 700;
	color: #224c93;
	padding-left: 20px;
}
main div.list-document div.row h3::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #224c93;
	content: "";
	border-radius: 50%;
}
main div.list-document div.row p:where(.per, .price) {
	width: 80px;
	text-align: right;
}
main div.list-document div.row p.price {
	font-weight: 700;
}



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

footer#footer,
footer#footer div.inner-footer {
	position: relative;
}
footer#footer::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	border-radius: 40px 40px 0px 0px;
}
footer#footer div.inner-footer {
	padding: 40px 40px 20px 40px;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 30px;
	bottom: 10px;
	z-index: 10;
	font-family: "Roboto", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5rem;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	opacity: 1;
}
div.footer footer#footer p#button-page-top {
	position: absolute;
	top: -50px;
	bottom: auto;
}
footer#footer p#button-page-top a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 40px;
	padding-right: 25px;
}
footer#footer p#button-page-top i.arrow-alternate {
	right: 0px;
	top: calc(50% - 10px);
	border: none;
	transform: rotate(-90deg);
}
footer#footer p#button-page-top i.arrow-alternate::before {
	width: 15px;
	left: calc(50% - 7.5px);
}
footer#footer p#button-page-top a:hover i.arrow-alternate::before,
footer#footer p#button-page-top a:hover i.arrow-alternate::after {
	border-color: #224c93;
}
footer#footer p#button-page-top i.arrow-alternate::after {
	left: calc(50% + 0.5px);
}
footer#footer div.information-navi-footer {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information {
	width: 460px;
}
footer#footer div.information h3 {
	margin-bottom: 10px;
}
footer#footer div.information h3 img {
	width: 291px;
}
footer#footer div.information p.address-tel {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information p.address-tel span {
	display: block;
}
footer#footer div.information p.address-tel span:not(:last-child) {
	margin-right: 20px;
}
footer#footer nav#navi-footer {
	width: calc(100% - 460px);
}
footer#footer nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
footer#footer nav#navi-footer ul li {
	position: relative;
}
footer#footer nav#navi-footer ul li:not(:last-child) {
	margin-right: 30px;
}
footer#footer nav#navi-footer ul li:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 15px;
	right: -15px;
	top: 9px;
	border-right: 1px solid #d9d9d9;
	content: "";
}
footer#footer p.copyright {
	width: 100%;
	text-align: right;
	font-size: 0.75rem;
	line-height: 1.25rem;
}
