@charset "UTF-8";
:root {
	/* ベースカラー */
	--color-base-h: 0deg;
	--color-base-s: 0%;
	--color-base-l: 100%;
	--color-base: hsl(var(--color-base-h), var(--color-base-s), var(--color-base-l));
	/* プライマリーカラー */
	--color-theme-h: 200deg;
	--color-theme-s: 80%;
	--color-theme-l: 47%;
	--color-theme: hsl(var(--color-theme-h), var(--color-theme-s), var(--color-theme-l));
	/* セカンダリーカラー */
	--color-pair-h: 27deg;
	--color-pair-s: 70%;
	--color-pair-l: 46%;
	--color-pair: hsl(var(--color-pair-h), var(--color-pair-s), var(--color-pair-l));
	/* アクセントカラー */
	--color-accent-h: 336deg;
	--color-accent-s: 78%;
	--color-accent-l: 55%;
	--color-accent: hsl(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l));
	/* ---------------------------------------------------------------------------------------------------------------------- */
	--color-text-h: 0deg;
	--color-text-s: 0%;
	--color-text-l: 20%;
	--color-text: hsl(var(--color-text-h), var(--color-text-s), var(--color-text-l));
	--color-text-invert-h: 0deg;
	--color-text-invert-s: 0%;
	--color-text-invert-l: 100%;
	--color-text-invert: hsl(var(--color-text-invert-h), var(--color-text-invert-s), var(--color-text-invert-l));
}

blockquote:not([class]) {
	position: relative;
	margin-left: 40px;
	margin-right: 40px;
}
blockquote:not([class])::before {
	content: "\e940";
	position: absolute;
	top: -6px;
	left: -40px;
	font-family: icomoon;
	font-size: 1.5rem;
	color: #666;
}
blockquote:not([class])::after {
	content: "\e940";
	position: absolute;
	bottom: -6px;
	right: -40px;
	font-family: icomoon;
	font-size: 1.5rem;
	color: #666;
}

hr:not([class]) {
	height: 0;
	margin: 2rem 0;
	padding: 0;
	border: 0;
	border-top: 1px dashed #666666;
}

.supplInfo, .notesList, ul:not([class]) {
	list-style-type: disc;
	padding-left: 2.5rem;
	margin-top: 1em;
}
.supplInfo li, .notesList li, ul:not([class]) li {
	margin-top: 0.6em;
	padding-left: 0.25em;
}

.closedDaysOther__list,
.closedDaysGround__list,
.closedDays__list,
.holiday__list, ol:not([class]) {
	list-style-type: decimal;
	padding-left: 2.5rem;
	margin-top: 1em;
}
.closedDaysOther__list li,
.closedDaysGround__list li,
.closedDays__list li,
.holiday__list li, ol:not([class]) li {
	margin-top: 0.6em;
	padding-left: 0.25em;
}

dl:not([class]) {
	margin-left: 1em;
}
dl:not([class]) dt {
	margin-top: 0.25em;
}
dl:not([class]) dd {
	margin-top: 0.75em;
	margin-left: 1em;
}

a:not([class]) {
	text-decoration: underline;
	text-underline-offset: 0.25em;
	color: #1a0dab;
	text-decoration-thickness: 1px;
}
a:hover:not([class]) {
	text-decoration-thickness: 2px;
}
a:visited:not([class]) {
	text-decoration-color: #681da8;
}

table:not([class]) {
	margin-top: 2em;
	margin-bottom: 1em;
	border-collapse: collapse;
}
table:not([class]) th, table:not([class]) td {
	border: 1px solid #999;
	padding: 0.75em;
	font-weight: normal;
}
table:not([class]) thead th {
	background-color: #eee;
}
table:not([class]) tbody th {
	text-align: left;
	vertical-align: top;
}
table:not([class]) tbody td {
	vertical-align: top;
}

._a-button, button:not([class]) {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	display: inline-block;
	border: none;
	background-color: hsl(200, 80%, 47%);
	color: hsl(0, 0%, 100%);
	height: 3em;
	line-height: 3;
	padding: 0 1em;
	border-radius: 2px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
._a-button:hover, button:hover:not([class]) {
	background-color: #8cccec;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.verification summary, details:not([class]) summary {
	position: relative;
	display: inline-block;
	outline: none;
	list-style: none;
	cursor: pointer;
	font-size: 1.5em;
	line-height: 1;
	padding-left: 2em;
	padding-bottom: 1rem;
}
.verification summary::before, details:not([class]) summary::before {
	content: "OPEN";
	font-size: 0.5em;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
.verification summary::after, details:not([class]) summary::after {
	position: absolute;
	top: 0.6em;
	left: 0.2em;
	content: "\e928";
	font-family: icomoon;
	font-size: 0.9em;
	display: inline-block;
	-webkit-transform: scale(1.5, -1);
	        transform: scale(1.5, -1);
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
}
html.Safari .verification summary::after, html.Safari details:not([class]) summary::after {
	-webkit-transition: none;
	transition: none;
}
html.iPhone .verification summary::after, html.iPhone details:not([class]) summary::after {
	-webkit-transition: none;
	transition: none;
}
.verification summary::-webkit-details-marker, details:not([class]) summary::-webkit-details-marker {
	display: none;
}
[open].verification summary::before, details[open]:not([class]) summary::before {
	content: "CLOSE";
}
[open].verification summary::after, details[open]:not([class]) summary::after {
	-webkit-transform: scale(1.5, 1);
	        transform: scale(1.5, 1);
}
html.no-details.IE .verification, html.no-details.IE details:not([class]), html.no-details.Edge--old .verification, html.no-details.Edge--old details:not([class]) {
	display: block;
}
html.no-details.IE .verification summary::before, html.no-details.IE details:not([class]) summary::before, html.no-details.Edge--old .verification summary::before, html.no-details.Edge--old details:not([class]) summary::before {
	content: "OPEN";
	width: 100%;
	font-size: 13px;
}
html.no-details.IE [open].verification summary::before, html.no-details.IE details[open]:not([class]) summary::before, html.no-details.Edge--old [open].verification summary::before, html.no-details.Edge--old details[open]:not([class]) summary::before {
	content: "CLOSE";
}

.contactsList__item--is__contactform a {
	display: inline-block;
	line-height: 1;
	padding: 1em 1.5em;
	background-color: hsl(200, 80%, 47%);
	color: hsl(0, 0%, 100%);
	text-decoration: none;
	-webkit-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
.contactsList__item--is__contactform a:hover {
	background-color: #1379ad;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

/* Update default style */
/* Not has class */
/* ==================================================================
 Update default style
 Not has class
================================================================== */
/* ------------------------------------------------------------------
 Box sizingの定義, デフォルトのmarginを削除
------------------------------------------------------------------ */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
figure,
figcaption,
blockquote,
dl, dd {
	font: inherit;
	margin: 0;
}

/* ------------------------------------------------------------------
 body
------------------------------------------------------------------ */
/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
	-webkit-text-size-adjust: none;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.8;
	font-family: "segoe ui", meiryo, "yu gothic", "hiragino kaku gothic pron", sans-serif;
	word-break: break-word;
	background-color: hsl(0, 0%, 100%);
	color: hsl(0, 0%, 20%);
	font-size: 16px;
}
.desktop body {
	font-size: 16px;
}
.Firefox body {
	overflow-wrap: anywhere;
}
.Edge body, .IE body {
	word-break: break-all;
}

/* ------------------------------------------------------------------
 Sectioning Element
------------------------------------------------------------------ */
p:not([class]) {
	margin-top: 0.6em;
}

/* ------------------------------------------------------------------
 Heading Element
------------------------------------------------------------------ */
:is(h1, h2, h3, h4, h5, h6):not([class]) {
	margin: 1em 0 0.5em 0;
	font-weight: bold;
}

h1:not([class]) {
	font-size: 2.5rem;
}

h2:not([class]) {
	font-size: 2rem;
}

h3:not([class]) {
	font-size: 1.75rem;
}

h4:not([class]) {
	font-size: 1.5rem;
}

h5:not([class]) {
	font-size: 1.25rem;
}

h6:not([class]) {
	font-size: 1.125rem;
}

/* ------------------------------------------------------------------
 List Element
------------------------------------------------------------------ */
ul, ol {
	-webkit-padding-start: 0;
	        padding-inline-start: 0;
	padding-left: 0;
	list-style: none;
}

dl dd {
	-webkit-margin-start: 0;
	        margin-inline-start: 0;
}

/* Update default style */
/* Not has class */
/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
	margin-top: 1em;
}

/* ------------------------------------------------------------------
 Form Element
------------------------------------------------------------------ */
/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
/* Update default style */
input,
button,
textarea,
select,
pre {
	font: inherit;
}

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=search],
input[type=number],
input[type=date] {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	height: 2.5em;
	padding-left: 0.5em;
	padding-right: 0.5em;
	border: 1px solid #7A7A7A;
}

input[type=submit],
input[type=reset],
input[type=button] {
	height: 2.5em;
	cursor: pointer;
	border: 1px solid #7A7A7A;
	border-radius: 2px;
}

input[type=image] {
	height: 3em;
	width: auto;
}

input[type=file] {
	cursor: pointer;
}

[type=text], [type=search], [type=tel], [type=url], [type=email],
[type=password], [type=datetime], [type=date], [type=month],
[type=week], [type=time], [type=datetime-local], [type=number] {
	max-width: 100%;
}

textarea {
	padding: 0.5em;
	max-width: 100%;
	border: 1px solid #7A7A7A;
}

select:not([multiple]) {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border: 1px solid #7a7a7a;
	border-radius: 0;
	height: 3em;
	padding-left: 0.5em;
	padding-right: 20px;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0ndXRmLTgnPz4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDEyOSAxMjkiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjkgMTI5Ij4KICA8Zz4KICAgIDxwYXRoIGQ9Im0xMjEuMywzNC42Yy0xLjYtMS42LTQuMi0xLjYtNS44LDBsLTUxLDUxLjEtNTEuMS01MS4xYy0xLjYtMS42LTQuMi0xLjYtNS44LDAtMS42LDEuNi0xLjYsNC4yIDAsNS44bDUzLjksNTMuOWMwLjgsMC44IDEuOCwxLjIgMi45LDEuMiAxLDAgMi4xLTAuNCAyLjktMS4ybDUzLjktNTMuOWMxLjctMS42IDEuNy00LjIgMC4xLTUuOHoiLz4KICA8L2c+Cjwvc3ZnPg==);
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 12px;
}

select[multiple] option {
	margin-top: 0.4em;
	margin-bottom: 0.4em;
	padding-left: 0.5em;
	padding-right: 0.5em;
}

label {
	cursor: pointer;
}

button {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
/* ------------------------------------------------------------------
 Text level Element
------------------------------------------------------------------ */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

small {
	font: inherit;
}

small:not([class]) {
	color: #737373;
}

em {
	font-style: normal;
}

em:not([class]) {
	font-weight: bold;
}

strong {
	font-weight: normal;
}

strong:not([class]) {
	color: #f00;
	font-weight: bold;
}

a {
	text-decoration: none;
	color: inherit;
	outline: none;
}

/* Not has class */
/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0.01ms !important;
		        animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		        animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		        transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
/* ------------------------------------------------------------------
 Other Element（改）
------------------------------------------------------------------ */
@font-face {
	font-family: "icomoon";
	src: url("../fonts/icomoon.eot?cww9rp");
	src: url("../fonts/icomoon.eot?cww9rp#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?cww9rp") format("truetype"), url("../fonts/icomoon.woff?cww9rp") format("woff"), url("../fonts/icomoon.svg?cww9rp#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^=icon-], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-sa:before {
	content: "\e991";
}

.icon-sa_black:before {
	content: "\e992";
}

.icon-free-dial:before {
	content: "\e98e";
}

.icon--79:before {
	content: "\e945";
}

.icon--80:before {
	content: "\e946";
}

.icon--10:before {
	content: "\e900";
}

.icon--11:before {
	content: "\e901";
}

.icon--21:before {
	content: "\e902";
}

.icon--22:before {
	content: "\e947";
}

.icon--23:before {
	content: "\e948";
}

.icon--59:before {
	content: "\e949";
}

.icon--81:before {
	content: "\e94a";
}

.icon--82:before {
	content: "\e94b";
}

.icon--83:before {
	content: "\e94c";
}

.icon--84:before {
	content: "\e94d";
}

.icon--85:before {
	content: "\e94e";
}

.icon--86:before {
	content: "\e94f";
}

.icon--1:before {
	content: "\e950";
}

.icon-hatenabookmark:before {
	content: "\e943";
}

.icon-line:before {
	content: "\e93e";
}

.icon--75:before {
	content: "\e93f";
}

.icon--76:before {
	content: "\e940";
}

.icon--77:before {
	content: "\e941";
}

.icon--12:before {
	content: "\e903";
}

.icon--13:before {
	content: "\e904";
}

.icon--14:before {
	content: "\e905";
}

.icon--15:before {
	content: "\e906";
}

.icon--16:before {
	content: "\e907";
}

.icon--17:before {
	content: "\e908";
}

.icon--18:before {
	content: "\e909";
}

.icon--19:before {
	content: "\e90a";
}

.icon--20:before {
	content: "\e90b";
}

.icon--24:before {
	content: "\e90f";
}

.icon--26:before {
	content: "\e910";
}

.icon--27:before {
	content: "\e911";
}

.icon--28:before {
	content: "\e912";
}

.icon--29:before {
	content: "\e913";
}

.icon--30:before {
	content: "\e914";
}

.icon--32:before {
	content: "\e915";
}

.icon--33:before {
	content: "\e916";
}

.icon--34:before {
	content: "\e917";
}

.icon--35:before {
	content: "\e918";
}

.icon--36:before {
	content: "\e919";
}

.icon--38:before {
	content: "\e91a";
}

.icon--39:before {
	content: "\e91b";
}

.icon--40:before {
	content: "\e91c";
}

.icon--41:before {
	content: "\e91d";
}

.icon--42:before {
	content: "\e91e";
}

.icon--44:before {
	content: "\e91f";
}

.icon--45:before {
	content: "\e920";
}

.icon--46:before {
	content: "\e921";
}

.icon--47:before {
	content: "\e922";
}

.icon--48:before {
	content: "\e923";
}

.icon--49:before {
	content: "\e924";
}

.icon--50:before {
	content: "\e925";
}

.icon--51:before {
	content: "\e926";
}

.icon--52:before {
	content: "\e927";
}

.icon--53:before {
	content: "\e928";
}

.icon--54:before {
	content: "\e929";
}

.icon--55:before {
	content: "\e92a";
}

.icon--56:before {
	content: "\e92b";
}

.icon--57:before {
	content: "\e92c";
}

.icon--58:before {
	content: "\e92d";
}

.icon--60:before {
	content: "\e92e";
}

.icon--61:before {
	content: "\e930";
}

.icon--62:before {
	content: "\e931";
}

.icon--63:before {
	content: "\e932";
}

.icon--64:before {
	content: "\e933";
}

.icon--65:before {
	content: "\e934";
}

.icon--66:before {
	content: "\e935";
}

.icon--67:before {
	content: "\e936";
}

.icon--68:before {
	content: "\e937";
}

.icon--69:before {
	content: "\e938";
}

.icon--70:before {
	content: "\e939";
}

.icon--71:before {
	content: "\e93a";
}

.icon--72:before {
	content: "\e93b";
}

.icon--73:before {
	content: "\e93c";
}

.icon--74:before {
	content: "\e93d";
}

.icon-beaker:before {
	content: "\e90c";
}

.icon-lab1:before {
	content: "\e90d";
}

.icon-lab2:before {
	content: "\e90e";
}

.icon-calendar:before {
	content: "\e92f";
}

.icon-pictures:before {
	content: "\e951";
}

.icon-document-file-zip:before {
	content: "\e952";
}

.icon-document-file-zip1:before {
	content: "\e953";
}

.icon-document-file-xlsx:before {
	content: "\e954";
}

.icon-document-file-xlsx1:before {
	content: "\e955";
}

.icon-document-file-ppt:before {
	content: "\e956";
}

.icon-document-file-ppt1:before {
	content: "\e957";
}

.icon-document-file-docx:before {
	content: "\e958";
}

.icon-document-file-docx1:before {
	content: "\e959";
}

.icon-document-file-pdf:before {
	content: "\e95a";
}

.icon-document-file-pdf1:before {
	content: "\e95b";
}

.icon-file-xlsx:before {
	content: "\e95c";
}

.icon-file-xlsx1:before {
	content: "\e95d";
}

.icon-file-ppt:before {
	content: "\e95e";
}

.icon-file-ppt1:before {
	content: "\e95f";
}

.icon-file-docx:before {
	content: "\e960";
}

.icon-file-docx1:before {
	content: "\e961";
}

.icon-file-pdf:before {
	content: "\e962";
}

.icon-file-pdf1:before {
	content: "\e963";
}

.icon-file-zip:before {
	content: "\e964";
}

.icon-file-zip1:before {
	content: "\e965";
}

.icon-tags:before {
	content: "\e966";
}

.icon-file_copy:before {
	content: "\e967";
}

.icon-map-pin:before {
	content: "\e968";
}

.icon-external-link:before {
	content: "\e969";
}

.icon-users:before {
	content: "\e96a";
}

.icon-paper-plane:before {
	content: "\e96b";
}

.icon-user-group:before {
	content: "\e96c";
}

.icon-location-current:before {
	content: "\e96d";
}

.icon-calendar1:before {
	content: "\e96e";
}

.icon-picture:before {
	content: "\e96f";
}

.icon-camera:before {
	content: "\e970";
}

.icon--78:before {
	content: "\e944";
}

.icon-facebook:before {
	content: "\ea90";
}

.icon-twitter:before {
	content: "\ea96";
}

.icon-image:before {
	content: "\e971";
}

.icon-images3:before {
	content: "\e972";
}

.icon-spades:before {
	content: "\e973";
}

.icon-clubs:before {
	content: "\e974";
}

.icon-diamonds:before {
	content: "\e975";
}

.icon-connection:before {
	content: "\e976";
}

.icon-file-empty:before {
	content: "\e977";
}

.icon-files-empty:before {
	content: "\e978";
}

.icon-file-text2:before {
	content: "\e979";
}

.icon-file-picture:before {
	content: "\e97a";
}

.icon-folder:before {
	content: "\e97b";
}

.icon-folder-open:before {
	content: "\e97c";
}

.icon-price-tags:before {
	content: "\e97d";
}

.icon-qrcode1:before {
	content: "\e97e";
}

.icon-location2:before {
	content: "\e97f";
}

.icon-compass:before {
	content: "\e980";
}

.icon-bubble:before {
	content: "\e981";
}

.icon-bubble2:before {
	content: "\e982";
}

.icon-user-tie:before {
	content: "\e983";
}

.icon-lock:before {
	content: "\e98f";
}

.icon-unlocked:before {
	content: "\e990";
}

.icon-lab:before {
	content: "\e9aa";
}

.icon-link:before {
	content: "\e9cb";
}

.icon-attachment:before {
	content: "\e9cd";
}

.icon-bookmark:before {
	content: "\e9d2";
}

.icon-bookmarks:before {
	content: "\e9d3";
}

.icon-star-empty:before {
	content: "\e9d7";
}

.icon-star-full:before {
	content: "\e9d9";
}

.icon-youtube:before {
	content: "\ea9d";
}

.icon-youtube2:before {
	content: "\ea9e";
}

.icon-fax:before {
	content: "\e984";
}

.icon-file:before {
	content: "\e985";
}

.icon-group:before {
	content: "\e986";
}

.icon-paper-plane-o:before {
	content: "\e987";
}

.icon-paper-plane1:before {
	content: "\e988";
}

.icon-calendar-o:before {
	content: "\e989";
}

.icon-calendar2:before {
	content: "\e98a";
}

.icon-qrcode:before {
	content: "\e98b";
}

.icon-heart-o:before {
	content: "\e98c";
}

.icon-heart:before {
	content: "\e98d";
}

.icon-get-pocket:before {
	content: "\e942";
}

/* --------------------------------------------------------------
 レイアウト
-------------------------------------------------------------- */
._layout_outer {
	padding: 1.25rem 0;
	margin-bottom: 1.875rem;
}

._layout_inner-is_maxWidth {
	width: clamp(320px, 100%, 1320px);
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

.mainNav, .helpNav, .globalNav, .LocalNav {
	margin: 0;
	padding: 0;
}

._chapter {
	margin-top: 3rem;
}
._chapter_title {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: hsl(0, 0%, 20%);
}
._chapter_title--main {
	font-size: inherit;
	color: inherit;
}
.desktop ._chapter_title--main {
	font-size: inherit;
}
._chapter_title--sub {
	font-size: 0.66em;
	color: inherit;
}
.desktop ._chapter_title--sub {
	font-size: inherit;
}

.mobile ._section {
	margin-bottom: 35px;
}
.desktop ._section {
	margin-bottom: 60px;
}
._section_title {
	color: inherit;
	font-size: 18px;
	margin-bottom: 18px;
	color: hsl(0, 0%, 20%);
}
.desktop ._section_title {
	color: inherit;
	margin-bottom: 28px;
	font-size: 18px;
}
._section_title--main {
	color: inherit;
	font-size: inherit;
}
.desktop ._section_title--main {
	font-size: inherit;
}
._section_title--sub {
	color: inherit;
	font-size: 14px;
}
.desktop ._section_title--sub {
	font-size: 18px;
}

._lead:not(._layout_outer) {
	margin: 2em 0 2em 0;
	font-size: 1.2em;
}
.desktop ._lead:not(._layout_outer) {
	margin: 2em;
}

.lead_layout_inner {
	font-size: 1.2em;
}
.desktop .lead_layout_inner {
	padding-left: calc(20px + 2em);
	padding-right: calc(20px + 2em);
}

/* --------------------------------------------------------------
 汎用 CLASS
-------------------------------------------------------------- */
/* clearfix */
._clearfix:before, ._clearfix:after {
	content: " ";
	display: table;
}

._clearfix:after {
	clear: both;
}

/* 指定位置で改行 */
._wbr {
	display: inline-block;
}

/* 非表示 */
._hideItem {
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

/* 「a」要素をボタンか */
._a-button {
	border-radius: 1.5em;
	padding: 0 1.5em;
}

._attention {
	position: relative;
	margin: 1em 0;
	padding-left: 1.25em;
}
._attention::before {
	content: "＊";
	position: absolute;
	left: 0;
	top: 0;
}
._attention:has(strong) {
	font-weight: bold;
}
._attention:has(strong)::before {
	color: #f00;
}

.codeViewer {
	margin-top: 3rem;
	white-space: pre-wrap;
	background-color: #F5F5F5;
	padding: 1.5rem 1em;
	border: 1px solid #ccc;
}

.icon__im:before {
	font-family: "icomoon";
}
.icon__sa:before {
	content: "\e991";
	font-size: 1.2em;
	margin: 0 0.1em;
	display: inline-block;
	-webkit-transform: translateY(2px);
	        transform: translateY(2px);
}

.pageHeader {
	text-align: center;
	margin-bottom: 0;
	background-color: hsl(200, 80%, 47%);
	color: hsl(0, 0%, 100%);
}
@media screen and (min-width: 600px) {
	.pageHeader {
		text-align: left;
	}
}
.pageHeader_layout_inner {
	position: relative;
}
.pageHeader__title {
	font-size: clamp(1.25rem, -0.083rem + 6.67vw, 2rem);
	line-height: 1.4;
	margin: 0.25em 0;
}
.pageHeader__link {
	display: inline-block;
}
.pageHeader__subTitle {
	font-size: 0.7em;
}
.pageHeader__phone {
	font-size: 1.5rem;
}
@media screen and (min-width: 600px) {
	.pageHeader__phone {
		position: absolute;
		top: 0;
		right: 20px;
	}
}

.mainNav {
	display: none;
}
@media screen and (min-width: 600px) {
	.mainNav {
		display: block;
	}
}
@media screen and (max-width: 599px) {
	.js__modal--open .mainNav {
		display: block;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-color: hsl(0, 0%, 100%);
		color: hsl(0, 0%, 100%);
		overflow: auto;
		z-index: 1000;
	}
	.js__modal--open .mainNav_layout_inner {
		padding: 1em 0 calc(1.5rem + 1.5rem + 1rem + 2rem) 0;
	}
	.js__modal--open .mainNav a {
		color: hsl(0, 0%, 100%);
	}
}

@media screen and (min-width: 600px) {
	.helpNav_layout_inner {
		position: relative;
	}
	.helpNav__title {
		width: 0;
		height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
	}
}
@media screen and (max-width: 599px) {
	.helpNav {
		margin-top: 1em;
		margin-bottom: 2em;
	}
	.helpNav__title {
		width: 0;
		height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
	}
}

.helpNavList .navList__item a {
	display: block;
	text-align: center;
	line-height: 1;
	border-bottom: none;
	color: hsl(0, 0%, 100%);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.helpNavList .navList__item a::before {
	font-family: icomoon;
}
@media screen and (min-width: 600px) {
	.helpNavList {
		position: absolute;
		right: 60px;
		top: -3rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: end;
	}
	.helpNavList .navList__item {
		margin: 0 0 0 0.2em;
		margin-bottom: 0.5em;
	}
	.helpNavList .navList__item a {
		padding: 0.5em 0.25em;
		color: hsl(200, 80%, 47%);
		text-decoration: none;
	}
	.helpNavList .navList__item a:hover {
		text-decoration: underline;
	}
}
@media screen and (max-width: 599px) {
	.helpNavList {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.helpNavList .navList__item {
		margin: 0 0.75em;
	}
	.helpNavList .navList__item--is_contact a::before {
		content: "\e938";
	}
	.helpNavList .navList__item--is_policy a::before {
		content: "\e902";
	}
	.helpNavList .navList__item--is_sitemap a::before {
		content: "\e906";
	}
	.helpNavList .navList__item--is_home a::before {
		content: "\e900";
	}
	.helpNavList .navList__item a {
		font-size: 10px;
		border-bottom-color: hsl(0, 0%, 100%);
		color: hsl(0, 0%, 100%);
	}
	.helpNavList .navList__item a:hover {
		color: #cccccc;
	}
	.helpNavList .navList__item a::before {
		display: block;
		font-size: 25px;
		margin-bottom: 3px;
	}
}

@media screen and (min-width: 600px) {
	.search {
		padding: 0;
		margin: 0;
	}
	.search_layout_inner {
		position: relative;
	}
	.searchForm {
		position: absolute;
		right: 20px;
	}
	.searchFormElement {
		position: absolute;
		top: -3.75rem;
		right: 0;
	}
	.searchFormElement__field[type=search] {
		-webkit-appearance: none;
		   -moz-appearance: none;
		        appearance: none;
		border: none;
		padding-right: 0;
		padding-left: 0;
		color: hsl(0, 0%, 20%);
		width: 0;
		border: none;
		position: relative;
		z-index: 1;
	}
	.searchFormElement__field[type=search]:focus {
		margin-top: 0.5em;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		width: 30em;
		outline: none;
		border: solid 2px hsl(200, 80%, 47%);
		border-radius: 3px;
	}
	.searchFormElement__field[type=search]:focus + .searchFormElement__label::before {
		color: #fff;
	}
	.searchFormElement__label {
		position: absolute;
		top: 0;
		right: 0em;
		display: inline-block;
		height: 3.125rem;
		line-height: 3.125rem;
	}
	.searchFormElement__label::before {
		content: "\e944";
		font-family: icomoon;
		font-size: 1.5rem;
		color: hsl(200, 80%, 47%);
	}
	.searchFormElement__button {
		display: none;
	}
}
@media screen and (max-width: 599px) {
	.search {
		padding: 0;
		margin: 0 0 2rem 0;
	}
	.searchForm {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.searchFormElement {
		position: relative;
	}
	.searchFormElement__label {
		display: inline-block;
		vertical-align: bottom;
	}
	.searchFormElement__label::before {
		content: "\e944";
		font-family: icomoon;
		font-size: 2em;
		color: hsl(0, 0%, 100%);
		position: absolute;
		right: 0.25em;
		top: -0.25em;
	}
	.searchFormElement__field[type=search] {
		height: 3.125rem;
		-webkit-appearance: none;
		   -moz-appearance: none;
		        appearance: none;
		border: none;
		padding-right: 3em;
		padding-left: 0.5em;
		background-color: transparent;
		color: hsl(0, 0%, 100%);
		width: 25em;
		max-width: calc(100vw - 40px);
		border-bottom: 1px dashed hsl(0, 0%, 100%);
	}
	.searchFormElement__button {
		display: none;
	}
}
@media screen and (min-width: 600px) {
	.globalNav {
		background-color: hsl(0, 0%, 100%);
	}
	.globalNav_layout_inner {
		position: relative;
	}
	.globalNav__title {
		width: 0;
		height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
	}
}
@media screen and (max-width: 599px) {
	.globalNav {
		margin-bottom: 2em;
		padding-top: 1.25rem;
	}
	.globalNav__title {
		font-size: 1.25em;
		margin-bottom: 1rem;
	}
}

@media screen and (min-width: 600px) {
	.globalNavList {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: start;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
	.globalNavList .navList__item {
		font-size: 20px;
		border-left: 1px solid hsl(0, 0%, 100%);
	}
	.globalNavList .navList__item:last-child {
		border-right: 1px solid hsl(0, 0%, 100%);
	}
	.globalNavList .navList__item a {
		display: block;
		height: 60px;
		color: hsl(0, 0%, 100%);
		padding: 0 1.5em;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		line-height: 60px;
		text-decoration: none;
	}
	.globalNavList .navList__item a:hover {
		background-color: #46a7d8;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}
	.globalNavList .navList__item--is_current a {
		background-color: #187bad;
	}
}
@media screen and (max-width: 599px) {
	.globalNavList {
		border-top: 1px solid #8cccec;
	}
	.globalNavList .navList__item {
		border-bottom: 1px solid #8cccec;
	}
	.globalNavList .navList__item a {
		display: block;
		padding: 0.75em calc(0.5em + 12px) 0.75em 0.25em;
		border-bottom: none;
		-webkit-transition: background-color 0.5s;
		transition: background-color 0.5s;
	}
	.globalNavList .navList__item a:hover {
		background-color: hsl(27, 70%, 46%);
		-webkit-transition: background-color 0.5s;
		transition: background-color 0.5s;
	}
	.globalNavList .navList__item--is_archive a {
		position: relative;
	}
	.globalNavList .navList__item--is_archive a::after {
		content: "";
		position: absolute;
		right: 0.25em;
		top: 50%;
		margin-top: -3px;
		display: inline-block;
		width: 0;
		height: 0;
		border: 6px solid transparent;
		border-top-color: #fff;
		vertical-align: bottom;
	}
	.globalNavList .navList__item--is_current a {
		position: relative;
		padding-left: 1.5em;
	}
	.globalNavList .navList__item--is_current a::before {
		content: "\e93b";
		font-family: icomoon;
		position: absolute;
		margin-right: 0.5em;
		left: 0;
		top: 0.6em;
	}
}

.topicpath__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-bottom: 0.5em;
}
.topicpath__item {
	font-size: 1.2rem;
	line-height: 1.4;
}
.topicpath__item::after {
	content: ">";
	margin: 0 0.5em;
}
.topicpath__item a:hover {
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
.topicpath__item--home::before {
	content: "\e950";
	font-family: icomoon;
	margin-right: 0.25em;
}
.articlHeader {
	/* 「articlHeader」を格納 */
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.articlHeader__title {
	font-size: 2.5rem;
	line-height: 1.6;
}
.articlHeader__mainTitle {
	display: block;
	color: #1379ad;
	font-weight: bold;
}
.articlHeader__subTitle {
	display: block;
	font-size: 0.6em;
}
.articlHeader--has_subTitle .articlHeader__mainTitle { /* 変数に格納した「articlHeader」, 直接書いた方がいい？, メンテナンス性を考慮？ */ }
.articlHeader .postDateList {
	margin-left: -0.5em;
}
.articlHeader .postDateList__item {
	display: inline-block;
	margin: 0 0.5em 0 0.5em;
	line-height: 1.25;
}
.articlHeader .postDateList__item--is_release::before {
	content: "\e90b";
	font-family: icomoon;
	margin-right: 0.3em;
}
.articlHeader .postDateList__item--is_modified::before {
	content: "\e905";
	font-family: icomoon;
	margin-right: 0.3em;
}

.contents {
	padding: 0;
	margin-top: 0;
	margin-bottom: 8em;
}
.contents .lead {
	font-size: 1.2em;
	margin-bottom: 3em;
}

.info img {
	margin-bottom: 1.5em;
}
.info img.alignleft {
	margin-right: auto;
	margin-left: 0;
}
.info img.alignright {
	margin-right: 0;
	margin-left: auto;
}
.info img.aligncenter {
	margin-right: auto;
	margin-left: auto;
}
.info strong {
	color: hsl(0, 0%, 20%);
}

.contacts {
	background-color: #ceebfa;
	margin-bottom: 0;
}
.contacts__message {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 0.5em;
	margin-bottom: 2em;
}
.contactsList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.contactsList__item {
	text-align: center;
	margin: 0 min(10vw, 80px) 40px min(10vw, 80px);
}
.contactsList__item--is_phone span {
	display: block;
}
.contactsList__item--is_phone .phone--is_number {
	font-size: 1.75rem;
	color: hsl(200, 80%, 47%);
	font-weight: bold;
	line-height: 1;
	margin-top: 1em;
}
.contactsList__item--is_phone .phone--is_number a {
	display: block;
	color: #fff;
}
.contactsList__item--is_phone .phone--is_number a:hover {
	color: hsl(27, 70%, 46%);
}
.contactsList__item--is_phone .phone--is_number:before {
	content: "\e92c";
	font-family: icomoon;
	display: inline-block;
	-webkit-transform: rotate(40deg);
	        transform: rotate(40deg);
	margin-right: 0.3em;
}
.contactsList__item--is_phone .phone--is_qrcode {
	text-align: center;
}
.contactsList__item--is_phone .phone--is_qrcode img {
	width: 50vw;
	max-width: 240px;
	border-radius: 5px;
	margin: 0 auto;
}
.contactsList__item--is__contactform {
	position: relative;
}
.contactsList__item--is__contactform:before {
	content: "\e938";
	font-family: icomoon;
	font-size: 160px;
	line-height: 1;
	color: hsl(200, 80%, 47%);
	position: relative;
	top: -10px;
	display: block;
	width: 100%;
}
.contactsList__item--is__contactform a {
	font-size: 1.2rem;
	border-radius: 1.5em;
}

.pageFooter {
	background-color: hsl(200, 80%, 47%);
	padding: 0;
	color: hsl(0, 0%, 100%);
}
.pageFooter._layout_outer {
	margin-bottom: 0;
}

.footerNav {
	margin-bottom: 0;
}

.footerGlobalNavList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.footerGlobalNavList .navList__item {
	margin: 0 0.5em 0 0.5em;
}
.footerGlobalNavList .navList__item a {
	color: hsl(0, 0%, 100%);
	text-decoration: none;
}
.footerGlobalNavList .navList__item a:hover {
	text-decoration: underline;
}

.footerHelpNavList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-top: 1em;
}
.footerHelpNavList .navList__item {
	margin: 0 0.5em 0 0.5em;
}
.footerHelpNavList .navList__item a {
	color: hsl(0, 0%, 100%);
	text-decoration: none;
}
.footerHelpNavList .navList__item a:hover {
	text-decoration: underline;
}

.siteInfo {
	padding: 1em 0 2em 0;
}
@media screen and (min-width: 900px) {
	.siteInfo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.siteInfo__title {
	font-size: clamp(1.25rem, -0.083rem + 6.67vw, 2rem);
	line-height: 1.5;
	text-align: center;
	width: 100%;
}
@media screen and (min-width: 900px) {
	.siteInfo__title {
		width: auto;
		text-align: left;
		margin-right: 20px;
	}
}
.siteInfo__title--is_subTitle {
	font-size: 0.75em;
}
.siteInfoList {
	margin-top: 20px;
	text-align: center;
}
@media screen and (min-width: 900px) {
	.siteInfoList {
		text-align: left;
		margin-top: 10px;
		margin-left: 20px;
	}
}
.siteInfoList__address--is_zip {
	display: inline-block;
}
.siteInfoList__address--is_zip::before {
	content: "〒";
}
.siteInfoList__address--is_address {
	display: inline-block;
}
.siteInfoList__item {
	line-height: 1.5;
	margin-bottom: 0.25em;
}
.mobile .siteInfoList__item--is_phone a::before {
	content: "TEL :";
	margin-right: 0.5em;
	display: inline-block;
}
html:not(.mobile) .siteInfoList__item--is_phone::before {
	content: "TEL :";
	margin-right: 0.5em;
	display: inline-block;
}
.siteInfoList__item--is_fax::before {
	content: "FAX :";
	margin-right: 0.5em;
	display: inline-block;
}

.copyright {
	background-color: #1379ad;
	font-size: 1.125rem;
	text-align: center;
	padding: 0.5rem 0 calc(1.5rem + 1.5rem + 1rem + 1rem) 0;
	padding-bottom: 1rem;
}
@media screen and (min-width: 600px) {
	html:not(.snsButtons_floating) .copyright {
		padding-bottom: 0.5rem;
	}
}
@media screen and (min-width: 600px) {
	html:not(.snsButtons_bottom) .copyright {
		padding-bottom: 0.5rem;
	}
}
.copyright__contents {
	font-size: 0.85em;
}
.copyright__contents small {
	color: hsl(0, 0%, 100%);
}
.thumButton {
	position: fixed;
	bottom: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	z-index: 2000;
	pointer-events: none;
}

.hamburger {
	margin: 0 0.75rem;
}
@media screen and (min-width: 600px) {
	.hamburger {
		display: none;
		margin: 0;
	}
}
.hamburger__button {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: hsl(27, 70%, 46%);
	padding: 0.75rem;
	border-radius: 1.5rem;
	pointer-events: all;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.hamburger__button:hover {
	background-color: #e5a26c;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.hamburger__button::before {
	font-family: icomoon;
	font-size: 1.5rem;
	line-height: 1;
	color: hsl(0, 0%, 100%);
}
.js__modal--close .hamburger__button::before {
	content: "\e91b";
}
.js__modal--open .hamburger__button::before {
	content: "\e916";
}

.toTop {
	margin: 0 0.75rem;
}
.js__modal--open .toTop {
	display: none;
}
@media screen and (min-width: 600px) {
	.toTop {
		position: fixed;
		bottom: 1rem;
		right: 1.25rem;
		margin: 0;
	}
}
.toTop__button {
	display: inline-block;
	padding: 0.75rem;
	background-color: hsl(27, 70%, 46%);
	text-decoration: none;
	border-radius: 1.5rem;
	pointer-events: all;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.toTop__button:hover {
	background-color: #e5a26c;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.toTop__button::before {
	content: "\e920";
	font-family: icomoon;
	font-size: 1.5rem;
	display: block;
	color: #fff;
	line-height: 1;
}

.cookiePermission {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: hsl(0, 0%, 40%);
	color: hsl(0, 0%, 100%);
	padding-top: 1rem;
	padding-bottom: calc(2rem + 0.5rem * 2 + 3rem);
	max-height: 100vh;
}
.cookiePermission_layout_inner {
	max-height: calc(100vh - (2rem + 0.5rem * 2 + 4rem));
	overflow: auto;
}
@media screen and (min-width: 600pxpx) {
	.cookiePermission {
		padding-bottom: calc(2rem + 0.5rem * 2 + 2rem);
	}
}
@media screen and (min-width: 600px) {
	.cookiePermission {
		padding-bottom: 1.5rem;
	}
}
.cookiePermission__title {
	position: relative;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	padding-right: 1rem;
	max-width: 19em;
	margin-left: auto;
	margin-right: auto;
}
.cookiePermission__toggleButton {
	position: relative;
	top: 0.3em;
	margin-left: 0.5em;
}
.cookiePermission__toggleLink {
	display: inline-block;
	line-height: 1;
	color: hsl(0, 0%, 100%);
}
.cookiePermission__toggleLink::after {
	content: "\e926";
	font-family: icomoon;
	font-size: 2rem;
	display: inline-block;
}
.cookiePermission--is_close .cookiePermission__toggleLink::after {
	-webkit-transform: scale(1, -1);
	        transform: scale(1, -1);
}
.cookiePermission--is_close .cookiePermissionDescription {
	display: none;
}
.cookiePermissionDescription a {
	color: hsl(0, 0%, 100%);
	border-bottom-color: hsl(0, 0%, 100%);
	margin: 0 0.25rem;
	font-weight: bold;
}
.cookiePermissionDescription__approval {
	text-align: center;
	font-size: 1.02rem;
	font-weight: bold;
	margin-bottom: 0.75rem;
}
.cookiePermissionDescriptionButtons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.cookiePermissionDescriptionButtons__button {
	margin: 0 0.25rem;
	color: hsl(0, 0%, 20%);
}
.cookiePermissionDescriptionButtons__item button {
	width: 5em;
	padding: 0.5em;
	border-radius: 2px;
	cursor: pointer;
}
.cookiePermissionDescriptionButtons__item--is_approved button {
	background-color: hsl(200, 80%, 47%);
	color: hsl(0, 0%, 100%);
}
.cookiePermissionDescriptionButtons__item--is_approved button:hover {
	background-color: #51b8ec;
	color: hsl(0, 0%, 20%);
}
.cookiePermissionDescriptionButtons__item--is_unapproved button {
	background-color: hsl(0, 0%, 88%);
}
.cookiePermissionDescriptionButtons__item--is_unapproved button:hover {
	background-color: white;
}
.cookiePermissionDescriptionButtons__item--is_defer button {
	background-color: hsl(0, 0%, 88%);
}
.cookiePermissionDescriptionButtons__item--is_defer button:hover {
	background-color: white;
}

.week_sun {
	color: red;
}

.week_sat {
	color: blue;
}

.holiday {
	color: red;
}
.holiday .week_sat {
	color: red;
}

._attention {
	color: red;
	font-weight: bold;
}

body {
	padding-top: 80px;
}

.pageHeader {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	padding: 0.25rem 0;
}
.pageHeader__catchphrase {
	font-size: 0.8em;
	margin-top: 0.3em;
}

.pageHeader__title {
	margin: 0;
	font-size: clamp(1rem, 1.167rem + 0.42vw, 1.5rem);
	padding: 0.25em 0;
}

.pageHeader .globalNavList {
	position: absolute;
	top: 0;
	right: 20px;
}
.pageHeader .globalNavList__item {
	margin: 0 0 0 1em;
	font-size: 0.9em;
}
.pageHeader .globalNavList__item a {
	color: white;
}
.pageHeader .globalNavList__item a:hover {
	border-bottom: solid 1px white;
}
.pageHeader .globalNavList__item--is_current::before {
	content: "\e93d";
	font-family: icomoon;
	margin-right: 0.25em;
	vertical-align: middle;
}

.phone {
	position: absolute;
	right: 20px;
	bottom: 0;
	font-size: 1.2rem;
}
.phone::before {
	content: "\e933";
	font-family: icomoon;
	margin-right: 0.3em;
	vertical-align: middle;
}

.dateToday_layoutOuter {
	margin-top: 0;
}

.dateToday__view {
	font-size: 2em;
}

.dateToday_holiday {
	line-height: 1;
	color: red;
}

.underVerification::before {
	content: "！";
	color: red;
}

.dateHoliday {
	font-size: 0.6em;
	color: red;
}

.calendarButton {
	position: relative;
	display: inline-block;
	width: 40px;
	text-align: center;
}
.calendarButton::before {
	content: "\e92f";
	font-family: icomoon;
	display: inline-block;
}
.calendarButton::after {
	content: "OPEN";
	font-size: 12px;
	position: absolute;
	display: block;
	width: 40px;
	text-align: center;
	bottom: -4px;
	left: 0;
	right: 0;
}
.calendarButton.open::after {
	content: "CLOSE";
}

.verificationBlock {
	margin-top: 0;
}
.verificationBlock__title {
	font-size: 1.5rem;
	font-weight: normal;
}
.verificationBlock__selector {
	display: inline-block;
	font-size: 1rem;
	position: relative;
	top: -5px;
}
.verificationBlock__selector.inactive {
	display: none;
}

.verification {
	margin-top: 2rem;
}

.verification summary {
	font-size: 1.2rem;
}

.inactive {
	display: none;
}

.requestPeriod {
	margin-top: 2rem;
}
.requestPeriod ._section_title {
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}

.requestPeriod__title {
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 0.5em;
}

.requestPeriodMyTown__title,
.requestPeriodOtherTown__title {
	font-size: 1.25rem;
	font-weight: normal;
}

.requestPeriod__table td {
	font-size: 1.5rem;
	vertical-align: top;
}

.requestPeriodMyTown__dates,
.requestPeriodOtherTown__dates {
	font-size: 1.75rem;
}

.requestPeriod__from {
	text-align: center;
	padding-left: 0.25em;
	padding-right: 0.5em;
}

.requestPeriod__table th {
	text-align: left;
	font-size: 1.5rem;
	font-weight: normal;
	padding-right: 0.75em;
}
.requestPeriod__table td, .requestPeriod__table th {
	line-height: 1;
	padding-bottom: 0.75em;
}
.requestPeriod__table .holiday td, .requestPeriod__table .holiday th {
	padding-bottom: 0.25em;
}

.facilityEvent .requestPeriod__table th {
	width: 6em;
}

.supplInfo {
	margin-top: 0;
	margin-bottom: 1.5rem;
	padding-left: 1.5em;
}
.supplInfo li {
	font-size: 0.8em;
	margin-top: 0.25em;
}
.notes__title {
	font-weight: normal;
	font-size: 1.25rem;
}

.notesList {
	font-size: 0.8em;
	padding-left: 1.5em;
}
.notesList li {
	margin-top: 0.2em;
}

.calendar {
	margin-top: 0;
	margin-bottom: 2rem;
}
.calendar__title {
	font-size: 1.25rem;
}
.calendarList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.calendarList li {
	margin: 0 1em;
}
.calendar__item {
	font-size: 0.75em;
}

.wrapperCloseDays {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.wrapperCloseDays .closedDaysOther,
.wrapperCloseDays .closedDaysGround,
.wrapperCloseDays .holiday {
	margin: 0 4rem 0 0;
}
.wrapperCloseDays .closedDaysOther h3,
.wrapperCloseDays .closedDaysGround h3,
.wrapperCloseDays .holiday h3 {
	margin-bottom: 0.5em;
}

.closedDays ._chapter_title {
	font-size: 1.5rem;
	font-weight: normal;
}
.closedDays ._section_title {
	font-size: 1.25rem;
}

.closedDaysOther__list,
.closedDaysGround__list,
.closedDays__list,
.holiday__list {
	padding-left: 1em;
}
.closedDaysOther__list li,
.closedDaysGround__list li,
.closedDays__list li,
.holiday__list li {
	font-size: 0.75em;
	margin-top: 0;
}

.pageFooter_layout_inner {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.pageFooter_layout_inner .links {
	margin-top: 0;
}
.pageFooter_layout_inner .links ._chapter_title {
	color: white;
	margin-bottom: 0;
}
.pageFooter_layout_inner .links ._section_title {
	color: white;
	margin-bottom: 0;
}
.pageFooter_layout_inner .links li {
	display: inline-block;
	margin: 0em 1em 1em 0;
	font-size: 0.75rem;
}
.pageFooter_layout_inner .links li a {
	color: white;
	text-decoration: none;
}
.pageFooter_layout_inner .links li a:hover {
	border-bottom: 1px solid white;
}

.footerNavList__item {
	display: inline-block;
	margin-right: 1em;
	font-size: 0.9rem;
}
.footerNavList__item a:hover {
	border-bottom: 1px solid white;
}
.footerNavList__item--is_current::before {
	content: "\e93d";
	font-family: icomoon;
	margin-right: 0.25em;
}

.copyright__contents {
	font-size: 0.75em;
}