@charset "UTF-8";
@import url("grid.css");

:root {
	/* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
	--base-color: #000;
	--link-color: #666;
	--linkhover-color: #fff;
	--back-color: #f9c7bd;
	--border-color: #ccc;
	--white-color: #fff;
}

* {
	overflow-wrap: break-word;
	word-wrap: break-word;
}

img {
	max-width: 100%;
	height: auto;
	/*高さ自動*/
}

a {
	display: block;
	color: var(--base-color);
	text-decoration-line: none;
}

a:hover {
	/*color: var(--linkhover-color);*/
	opacity: 0.7;
}

.top .footer a.pbutton {
	background-color: #777;
	padding: 0.5em 1em;
	font-size: 0.9em;
}

.table_design .list a.paid {
	background-color: #ffd6d6;
	pointer-events: none;
	color: red;
}











/* フロー：土台 */
.registration_flow {
	margin-top: 1em;
	margin-bottom: 0.5em;
}

.registration_flow ol {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

.registration_flow ol span {
	width: 280px;
	height: 70px;
	background: #fff;
	/* ← デフォルトは白 */
	position: relative;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	/* 縦中央 */
	justify-content: center;
	/* 横中央 */
	margin: 0;
	padding: 0;
}

.registration_flow ol li {
	margin-right: -20px;
	margin-top: 10px;
	padding: 0;
	color: #FF9589;
	font-weight: bold;
	list-style: none;
	line-height: 1.4;
	font-size: 0.8em;
}

/* ▶︎ 右向き三角（外側） */
.registration_flow ol span:before {
	content: "";
	position: absolute;
	top: 0;
	right: -26px;
	width: 0;
	height: 0;
	border-top: 35px solid transparent;
	border-bottom: 35px solid transparent;
	border-left: 26px solid #ddd;
	z-index: 2;
}

/* ▶︎ 白い内側の三角（内側） */
.registration_flow ol span:after {
	content: "";
	position: absolute;
	top: 0;
	right: -25px;
	width: 0;
	height: 0;
	border-top: 35px solid transparent;
	border-bottom: 35px solid transparent;
	border-left: 25px solid #fff;
	/* デフォルトは白 */
	z-index: 3;
}

/* ▼ アクティブステップ（current が付いた span をグレー） */
.registration_flow ol span.current {
	background-color: #f1f1f1 !important;
}

.registration_flow ol span.current:after {
	border-left-color: #f1f1f1 !important;
}












.registration_flow ol span:nth-last-child(1) {
	z-index: 1;
}

.registration_flow ol span:nth-last-child(2) {
	z-index: 2;
}

.registration_flow ol span:nth-last-child(3) {
	z-index: 3;
}

.registration_flow ol span:nth-last-child(4) {
	z-index: 4;
}

.registration .cont {
	min-width: 1300px;
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

.registration .cont a {
	display: block;
	margin: 2em auto 0;
}

.table_design .list a {
	background: #ccc;
	border: 1px solid #666;
	width: 9em;
	padding: 0.1em 0.3em;
	margin: 0 auto;
	border-radius: 6px;
}



a.postcode {
  background: linear-gradient(135deg, #8bc34a, #81c784); /* 優しいグリーン */
  padding: 0.4em 1em;      /* ← ボタンの高さ・幅を小さく */
  border-radius: 20px;     /* 丸みを強調してやさしい感じ */
  margin-left: 0.6em;
  margin-top: 3.5px;
  text-align: center;
  color: #fff;
  font-size: 0.8em;        /* 文字も少し小さめ */
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15); /* 控えめな影 */
  transition: all 0.25s ease-in-out;
  border: none;
}

/* ホバー時 */
a.postcode:hover {
  background: linear-gradient(135deg, #aed581, #9ccc65);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 押した時 */
a.postcode:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}


.table_design .list a:hover {
	color: #aaa;
}



a img {
	margin-bottom: 1rem;
}

a img:hover {
	opacity: 0.8;
}

p {
	line-height: 170%;
}

.blueback {
	background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}

.underline {
	border-bottom: 3px solid var(--back-color);
	padding-bottom: 0.5rem;
}

.center {
	text-align: center;
}

html {
	height: 100%;
}

html {
	min-height: 100%;
	/*height: auto !important;*/
	height: 100%;
}

body {
	position: relative;
	min-height: 100%;
}

.center {
	text-align: center;
	width: 100%;
}

h3,
h4 {
	font-weight: bold;
	font-size: 1.2em;
}

h3 span {
	margin-left: 1em;
	color: #ed2024;
}

.modaltop_explanation {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #efefef;
  text-align: center;   /* 中央揃え */
  margin-right: 61px;
}

.modaltop_explanation span {
  display: block;   /* 幅いっぱいに使う */
  color: red;
  font-weight: bold;
  text-decoration: underline;
}

.modaltop_explanation p {
	font-size: 0.9em;
	line-height: 1.8;
}




.modaltop .modal__content {
	/*max-height:25em;*/
	/*border:1px solid #ccc;*/
}

.modaltop_kakunin {
	width: 100%;
	text-align: center;
}

.modaltop_kakunin button {
	margin-top: 0.5em;
	color: #333;
}

.modal__content h3,
.modaltop_explanation h3 {
	font-weight: bold;
	font-size: 1.4em;
	background-color: #e3eef4;
	padding: 0.3em 0.6em;
}

.modal__content h4 {
	font-weight: bold;
	font-size: 1.2em;
}

.modal__content p {
	margin-left: 1em;
	margin-bottom: 0;
	font-size: 0.9em;
}

.modal__content div p {
	font-size: 0.8em;
	margin-left: 3em;
}

.modal__content ol li {
	margin-bottom: 0;
	list-style-position: outside;
	font-size: 1em;
}

.modal__content ul li ul {
	padding-left: 1em;
	font-size: 1em;
}

.modal__content ul li ul li {
	list-style: disc;
	font-size: 0.9em;
}

.modal__content ul li ul.marumoji li {
	list-style: none;
	margin-bottom: 0;
	font-size: 0.9em;
	text-indent: -1.2em;
}

.modal__content ul li ul.dice {
	font-size: 0.9em;
	margin: 0;
	list-style-position: inside;
	margin-left: 1em;
}

.modal__content ul li ul.dice li {
	padding: 0;
}

.modal__content div.madoguchi ul {
	font-size: 0.9em;
	margin: 0;
}

.modal__content div.madoguchi ul li {
	/*list-style:none;*/
	padding: 0;
	list-style-position: inside;
	margin-left: 1em;
}

.modal__content div.madoguchi p {
	margin: 1em 1em;
}

.modal__content .right {
	width: 100%;
	text-align: right;
}

.modal__content a {
	display: inline-block;
	color: var(--back-color);
	font-weight: bold;
	text-decoration: underline;
}

.cancelbutton:hover {
	/*opacity:0.7;*/
}

.grapharea {
	overflow-y: auto;
	height: 95%;
	width: 80%;
	min-width: 600px;
	margin: 0 auto;
}

.graph_highstress {
	margin-left: 10%;
}

.graph_examinationrate {
	/*width:50%;*/
}

.graph_examinationrate h2,
.graph_highstress h2 {
	margin-bottom: 0;
}

.graph_cautionary {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.graph_cautionary p,
.graph_cautionary ul,
.graph_cautionary a,
.graph_cautionary span {
	font-size: 0.9em;
}

div.backbutton {
	width: 100%;
	/*text-align:center;*/
	text-align: right;
}


.downloadarea {
	display: flex;
	justify-content: center;
}

.downloadarea div {
	width: 30%;
	margin-right: 1em;
	margin-bottom: 1em;
	text-align: center;
}

.downloadarea img {
	border: 1px solid #ccc;
	width: 95%;
}

.downloadarea p {
	margin-bottom: 0.3em;
}

body.top main {
	background-image: url("../img/newregistration_background.png");
	background-repeat: no-repeat;
	background-size: cover;
}

body.top div.header {
	background: #f2aa9c;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.2em 1em;
	min-width: 1300px;
	position: relative;
}

body.top div.header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	/* ヘッダーの外に出す */
	height: 10px;
	/* ぼかし部分の高さ */
	background: linear-gradient(to bottom, #e4e4e4, transparent);
	filter: blur(8px);
	/* ぼかし具合 */
	z-index: 1;
	/* 前面に表示 */
	pointer-events: none;
	/* クリックを邪魔しない */
}


body.top .footer {
	position: fixed;
	left: 20px;
	/* 左端から20px */
	bottom: 20px;
	display: flex;
	justify-content: flex-start;
	/* 左寄せ */
	align-items: flex-end;
	gap: -5px;
	/* ボタンの間隔 */
	z-index: 1000;
	pointer-events: none;
}

body.top .footer a {
	pointer-events: auto;
}


/* --- 左側：丸ボタン（1・2つ目のa.pbutton）--- */
body.top .footer .pbutton {
	background-color: #f2aa9c !important;
	color: #fff;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.2;
	padding: 0 12px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
	transition: transform .3s ease, box-shadow .3s ease;
}

body.top .footer .pbutton+.pbutton {
	margin-left: 12px;
}

/* 丸同士の間隔 */

body.top .footer .pbutton:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, .25);
}

/* --- スマホ向け（任意）--- */
@media (max-width: 768px) {
	body.top .footer .pbutton {
		width: 96px;
		height: 96px;
		font-size: 12px;
		padding: 0 8px;
	}

	body.top .footer>a:not(.pbutton) {
		height: 48px;
		padding: 0 16px;
		font-size: 14px;
	}
}

.header a.login {
	margin: 0 !important;
	background-color: #fff !important;
	border: 1px solid rgb(255, 255, 255) !important;
	padding: 0.5em 1.5em !important;
	/* 上下0.5em、左右1.8emで余裕 */
	font-size: 0.80em !important;
	/* 少し大きめ文字 */
	font-weight: bold !important;
	border-radius: 12px !important;
	/* 丸みも強調 */
	transition: all 0.3s ease !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
	color: #f1a899 !important;
	display: inline-block;
	text-decoration: none !important;
	line-height: 1.4;
	/* 高さバランス調整 */
}

/* li を挟む構造なら */
.header li+li {
	margin-left: 0 !important;
}

.header a.login:hover {
	background-color: #f2aa9c !important;
	color: #ffffff !important;
	border-color: #f2aa9c !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.header ul li {
	margin-right: 0.1em;
	/* ボタン間隔 */
}

.header ul li:last-child {
	margin-right: 0;
	/* 最後のボタンは余白なし */
}




body.top h1 {
	margin: 0;
	font-size: 4rem;
}

body.top h1 {
	color: var(--back-color);
	font-weight: bold;
	font-size: 6rem;
}

body.top h1 span,
.login_form_top h1 span {
	color: #999;
	font-size: 4rem;
	margin-left: 0.5em;
}

.head h1 span {
	font-size: 2.5rem;
}

body.top div.header ul {
	display: flex;
	list-style-type: none;
	margin: 0;
}

body.top div.header ul li {
	margin-left: 1em;
	margin-bottom: 0;
}

body.top div.header ul li a {
	/*background-color:var(--back-color);*/
	background-color: #e7f2fa;
	/*color:#fff;*/
	color: #005491;
	font-weight: bold;
	padding: 0.4em 0.8em;
	border-radius: 0.5em;
	line-height: 100%;
	border: 2px solid var(--back-color);
}

.button {
	background-color: #ccc;
	color: #000;
	margin-left: 0.5em;
	border-radius: 5px;
	border: 1px solid #666;
}

.button2 {
	background-color: #eee;
	color: #333;
	margin-left: auto;
	border-radius: 5px;
	border: 1px solid #666;
	font-size: 0.9em;
	font-weight: bold;
	padding: 0.5em 0.5em;
	height: 2em;
}

.button2:hover {
	color: #ccc;
	background-color: #efefef;
}

.note {
	font-size: 0.95em;
	line-height: 160%;
	margin-top: 0.5em;
}

.note a {
	color: var(--back-color);
	font-weight: bold;
}

p.red {
	color: red;
	margin-bottom: 1em;
}




/* ロゴ画像：サイズ基準（高さ優先） */
.logo-img3 {
	display: block;
	/* ベースラインずれ防止 */
	height: clamp(48px, 5vw, 56px);
	/* 画面に応じて 38〜56px で可変 */
	width: auto;
	/* 縦横比を維持 */
	object-fit: contain;
	/* ↓ 微調整（必要に応じて値を変更） */
	margin-top: 1px;
	/* 上下の“締め” */
	margin-left: -10px;
	/* 左右の“寄せ” */
	margin-bottom: 5px;
	/* transform: translateY(1px);  ← 1〜3pxほど下に“ほんの少し”動かしたい時 */
}

/* ヘッダー右側のリストも縦中央を維持したい場合（任意） */
.header>ul {
	display: flex;
	align-items: center;
	gap: 10px;
	/* ボタン間の間隔 */
	margin: 0;
	padding: 0;
	list-style: none;
}

/* スマホでロゴを気持ち小さめに（任意） */
@media (max-width: 480px) {
	.logo-img3 {
		height: 40px;
	}
}



/*ヘッダー
-------------------------------------*/
header {
	background-color: var(--back-color);
	position: absolute;
	left: 0;
	width: 20em;
	min-height: 910px;
	height: 100%;
	max-width: 350px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.head {
	display: flex;
	flex-direction: row;
	padding: 1rem 0 0 0;
}

.head h1 {
	padding: 1rem 0 0;
	text-align: center;
	width: 100%;
	margin-bottom: 0.5rem;
	line-height: 80%;
}

.head h1 a {
	color: #fff;
	font-weight: bold;
	font-size: 3rem;
	margin-top: 0.2em;
}

.login .head h1 a:hover {
	opacity: 0.6;
}

.login_form_top h1 {
	color: var(--back-color);
	font-weight: bold;
	font-size: 3em;
}

.login h2 {
	text-align: center;
	padding-top: 1em;
	color: var(--back-color);
	font-weight: bold;
}

input[type="checkbox"] {
	width: auto;
	padding: 3px;
	margin: 5px 0;
}

.wrapper form {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* 自身のサイズの半分だけ移動して完全中央に */
}

.registration .wrapper form {
	margin: 0 auto;
	width: 100%;
	max-width: 1350px;
	position: static;
	transform: unset;
}

.telbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
}

.menu {
	background-color: var(--back-color);
	height: 80%;
	margin-bottom: 5em;
}

nav ul {
	/*display: flex;*/
	/*flex-direction: row;*/
	/*justify-content: space-around;*/
	list-style: none;
	margin-bottom: 0;
}

nav li {
	flex: 1 0 auto;
	margin-bottom: 0;
}

nav li a {
	text-decoration: none;
	color: var(--white-color);
	border: 2px solid #fff;
	border-radius: 0.8em;
	margin: 0.6em 0.3em 0;
	font-weight: bold;
	position: relative;
}

nav li.current a,
.sidemenu .current a {
	background-color: #fff;
	color: #005491;
}

nav li a span {
	position: absolute;
	top: 35%;
}

nav a:hover {
	background-color: var(--linkhover-color);
	color: var(--back-color);
}

nav a {
	padding: 1.8rem 1.8rem;
	display: block;
}


.sidemenu a:hover {
	background-color: var(--linkhover-color);
	color: var(--back-color);
}

ul.header-nav li:nth-child(1) a:before {
	content: url("../img/icon01-01.svg");
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

ul.header-nav li:nth-child(2) a:before {
	content: url("../img/icon01-02.svg");
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

ul.header-nav li:nth-child(3) a:before {
	content: url("../img/icon01-03.svg");
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

ul.header-nav li:nth-child(4) a:before {
	content: url("../img/icon01-04.svg");
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

ul.header-nav li:nth-child(5) a:before {
	content: url("../img/icon01-05.svg");
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

ul.header-nav li:nth-child(6) a:before {
	content: url("../img/icon01-06.svg");
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

ul.header-nav li:nth-child(7) a:before {
	content: url("../img/icon01-07.svg");
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}



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

	/* PC時はMENUボタンを非表示 */
	#open,
	#close {
		display: none !important;
	}

	#navi {
		display: block !important;
	}
}

@media screen and (max-width: 768px) {
	.head {
		flex-direction: column;
		text-align: left;
		margin-bottom: 20px;
	}

	.telbox {
		margin-left: 0;
		text-align: center;
	}

	.head #open,
	#close {
		position: absolute;
		top: 20px;
		right: 12px;
	}

	nav ul {
		flex-direction: column;
	}

	/*nav li {
	padding-top: 0;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 0;
}*/
	/* スマホ時はMENUボタンを表示 */
	#open {
		display: block;
		background: url(../img/button.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 50px;
		height: 50px;
		border: none;
		position: absolute;
		top: 20px;
		right: 12px;
	}

	#close {
		display: block;
		background: url(../img/button2.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 50px;
		height: 50px;
		border: none;
		position: absolute;
		top: 20px;
		right: 12px;
	}

	/* スマホ時はメニューを非表示 */
	/*#navi {
    display: none;
}*/
}

/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
form {
	text-align: center;
	margin-bottom: 0;
}

.login form a {
	display: inline-block;
	/*color:var(--back-color);*/
	text-decoration: underline;
}

.login form a.postcode {
	text-decoration: none;
}

.login form a.kiyaku,
.login form a.button {
	text-decoration: none;
}

.login form button a {
	color: #333;
	text-decoration: none;
}

.passwordlink {
	margin-bottom: 2em;
	line-height: 120%;
}

.passwordlink a {
	color: var(--back-color);
	/*font-weight:bold;*/
	font-size: 0.8em;
}



.login_form_btm {
	padding: 10px 0;
	background-color: #F7F7F7;
	margin: 10px 0;
}

.login .login_form_btm {
	background-color: #fff;
}

.login_form_btm input {
	border: 1px solid #ccc;
	height: 38px;
	padding: 6px 10px;
	border-radius: 5px;
	width: 18em;
}

.login_form_btm input:focus {
	border: 2px solid #000;
	border-radius: 5px;
}

p.logincheckbox {
	margin-bottom: 0;
	line-height: 120%;
}

p.logincheckbox label {
	display: inline;
	font-weight: normal;
	font-size: 0.8em;
}

p.logincheckbox input {
	width: auto;
}

.login button.login {
	background-color: #ccc;
	font-size: 1.2em;
	height: 2.5em;
	width: 10em;
}


.login button:hover,
.login button a:hover {
	color: #efefef;
}

.login .backbutton {
	text-align: center;
}

.login .backbutton button {
	background-color: #fff;
}

input {
	width: 200px;
	padding: 3px;
	margin: 5px 0;
	margin-right: 0.5em;
}

label,
input {
	margin-left: 1em;
}

.modal__content input {
	margin-left: 0;
}

main {
	margin-left: 17em;
	margin-right: 1em;
	/*width:100%;*/
	height: 100%;
	height: 100vh;
}

.login main {
	margin-left: 0;
	margin-right: 0;
	height: 100vh;
	min-height: 100%;
}

.login .wrapper {
	min-width: 1300px;
	display: block;
	height: 100%;
	position: relative;
}

.officeinfo .selectoffice p {
	margin-bottom: 0;
	font-size: 130%;
}

.enddate {
	display: flex;
	align-items: center;
}

.datetitle {
	font-size: 1.5em;
	font-weight: bold;
	margin-right: 0.5em;
	margin-bottom: 0;
	padding-bottom: 0;
}

.enddate .date {
	background: #f2f2f2;
	padding: 0 0.1em 0;
	margin-bottom: 0.1em;
	font-weight: bold;
	font-size: 2em;
	min-width: 8.5em;
	text-align: center;
	color: #ed2024;
}

.enddate p.date {
	line-height: 150%;
}

main .subheader {
	display: flex;
	/*padding-top:0.5em;*/
}

.explanation1 {
	display: flex;
	align-items: flex-start;
	width: 100%;
	margin-top: 1em;
}

.explanation1 a {
	margin-left: auto;
}

main .subheader .submenu {
	margin-left: auto;
}

.submenu ul {
	display: flex;
	justify-content: right;
	list-style: none;
	margin-top: 1.4em;
	margin-bottom: 0;
}

.submenu ul li a {
	margin-left: 1em;
	background-color: #fff;
	border: 1px solid #b3b3b3;
	min-width: 9em;
	text-align: center;
	padding: 0.3em 0.1em 0;
	font-size: 0.8em;
}

.submenu ul li a:hover {
	background-color: #b3b3b3;
	color: #f2f2f2;
}

.submenu ul.cascademenu {
	margin-top: 0;
}

.submenu ul.cascademenu li a {
	background-color: transparent;
	border: none;
	/*color:var(--back-color);*/
	color: #333;
	/*font-weight:bold;*/
	text-decoration: underline;
	min-width: auto;
	text-align: right;
	padding: 0 0.1em;
}

.contentsarea {
	height: 60vh;
	min-height: 25em;
	background: #fff;
	padding: 0 1em 1em 1em;
	border: 1px solid #ccc;
}

.contentsarea .center {
	text-align: center;
}

.contentsarea div.cont {
	margin-top: 1em;
	margin-bottom: 1em;
	padding: 0 1em 1em;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px solid #efefef;
	/*text-align:center;*/
}

.contentsarea div.cont p {
	padding: 0 1em;
}

.flow ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	list-style-type: none;
	width: 100%;
	height: 185px;
	margin-bottom: 0;
	margin-top: 1em;

}

.contentsarea a.border {
	border: 1px solid #ccc;
	display: inline-block;
}

.flow ul>* {
	min-width: 0;
}

.flow ul li {
	margin: 0 1.5em;
	width: 7vw;
	min-width: 145px;
	height: 185px;
}

.flow ul li span {
	display: block;
	margin-left: 6em;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.flow ul li p {
	display: block;
	height: 175px;
	position: relative;
}

.flow ul li p:after {
	content: "";
	position: absolute;
	bottom: 25%;
	left: 105%;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 40px solid transparent;
	border-bottom: 40px solid transparent;
	border-left: 35px solid #ddd;
	border-right: 0;
}

.flow ul li:last-child p:after {
	content: none;
}


.flow ul li:nth-child(1) {
	background-image: url("../img/flow01.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.flow ul li:nth-child(2) {
	background-image: url("../img/flow02.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.flow ul li:nth-child(3) {
	background-image: url("../img/flow03.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.flow ul li:nth-child(4) {
	background-image: url("../img/flow04.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.flow ul li:nth-child(5) {
	background-image: url("../img/flow05.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.flow ul li:nth-child(6) {
	background-image: url("../img/flow06.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 135px;
}


.flow ul li.on:nth-child(1) {
	background-image: url("../img/flow01_on.png");
}

.flow ul li.on:nth-child(2) {
	background-image: url("../img/flow02_on.png");
}

.flow ul li.on:nth-child(3) {
	background-image: url("../img/flow03_on.png");
}

.flow ul li.on:nth-child(4) {
	background-image: url("../img/flow04_on.png");
}

.flow ul li.on:nth-child(5) {
	background-image: url("../img/flow05_on.png");
}

.flow ul li.on:nth-child(6) {
	background-image: url("../img/flow06_on.png");
}

.flow00-5 .left {
	/*margin-top:1em;*/
	/*background-color:rgba(255,255,255,0.7);*/
	/*padding:1em;*/
}

.flow00-5 .left p {
	margin-left: 1em;
	margin-bottom: 0.5em;
	font-size: 0.85em;
}

.flow00-5 .left ul {
	margin-bottom: 0.5em;
	font-size: 0.85em;
}

.flow00-5 .left ul li {
	padding-left: 2em;
}

.flow00-5 .left a {
	display: inline-block;
	background-color: var(--back-color);
	color: #fff;
	font-weight: bold;
	padding: 0.2em 0.5em 0;
	margin: 0 0.5em;
	border-radius: 0.5em;
	border: 1px solid #ccc;
	font-size: 2rem;
}



p.now {
	border: 5px solid #fcb527;
	/*animation: flash 1s ease infinite;*/
	animation: flash 1s ease 5;
	/*width:7.5vw;*/
	/*min-width:130px;*/
	/*height:19vh;*/
	/*height:190px;*/
}

@keyframes flash {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}



.selectoffice select {
	margin-left: 1em;

	border-radius: 0.5em;
}

.selectoffice {
	display: inline-flex;
	align-items: center;
	position: relative;
}

/*.selectoffice::after {
    position: absolute;
top:1.5em;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}*/
.selectoffice p {
	font-weight: bold;
}

.selectoffice select {
	appearance: none;
	min-width: 25vw;
	height: 2.8em;
	padding: .4em calc(.8em + 30px) .4em .8em;
	border: 1px solid #d0d0d0;
	border-radius: 0.5em;
	background-color: #fff;
	color: #333333;
	font-size: 1em;
	cursor: pointer;
}

.contents {
	min-height: 80vh;
}

body.contents .contents {
	min-height: 80%;
}

.registration section {
	height: 100%;
}

body.contents section.contents .contentsarea {
	width: 100%;
	min-height: 35em;
	/*overflow: auto;*/
	overflow: hidden;
}

.emphasis {
	font-weight: bold;
	padding: 1em;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	/*縁取り文字や袋文字*/
	paint-order: stroke;
	margin-bottom: 0;
}

p.emphasis,
div.emphasis {
	/*line-height:0%;*/
	padding-top: 6em;
	font-size: 1.5em;
	/*color:var(--back-color);*/
}

.login p.emphasis {
	padding-top: 4em;
	line-height: 0%;
	font-size: 2.5em;
	color: var(--back-color);
}

.flow00 {
	background-image: url("../img/img00.png");
}

.flow01 {
	background-image: url("../img/img01.png");
}

.flow02 {
	background-image: url("../img/img02.png");
}

.flow03 {
	background-image: url("../img/img03.png");
}

.flow04 {
	background-image: url("../img/img04.png");
}

.flow05 {
	background-image: url("../img/img05.png");
}

.flow06 {
	background-image: url("../img/img06.png");
}

.flow00-2 {
	background-image: url("../img/img00-2.png");
}

.flow00-3 {
	background-image: url("../img/img00-3.png");
}

.flow00-4 {
	background-image: url("../img/img00-4.png");
}

.flow00-5 {
	background-image: url("../img/img00-5.png");
}

.flow00-6 {
	background-image: url("../img/img00-6.png");
}


.contentsarea {
	height: 19em;
	background-color: rgba(255, 255, 255, 0.8);
	background-blend-mode: lighten;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 530px;
	margin-bottom: 0;
}

.none a {
	opacity: 0.3;
	pointer-events: none;
}

.table-scroll {
	/*overflow-x: auto;*/
	overflow: auto;
	height: 29em;
}

.flow00 .table-scroll {
	overflow-x: auto;
	height: auto;
}

.flow00 .info_table input {
	width: 100%;
	min-width: auto;
}

thead {
	position: sticky;
	top: 0;
	padding-top: 1em;
	z-index: 4;
	border-top: 2px solid var(--base-color);
}

.table_design .list a {
	background: #ccc;
	border: 1px solid #666;
	width: 9em;
	padding: 0.3em 0.5em;
	margin: 0 auto;
	border-radius: 6px;
}

.table_design .list a:hover {
	color: #aaa;
}

main button {
	color: #000;
	background-color: #ccc;
	margin-left: 0.5em;
	border-radius: 5px;
	border: 1px solid #666;
}

main button:hover {
	color: #aaa;
	opacity: 0.7;
}

main button.incapable {
	pointer-events: none;
	opacity: 0.3;
}

.table_design {
	border-collapse: collapse;
	min-width: 700px;
	width: 100%;
	font-weight: bold;
	text-align: center;
}

.table_design th,
.table_design td {
	padding: .5em 1em;
	text-align: center;
	background-color: #fff;
}

.table_design td {
	border: 1px solid #ccc;
}

.table_design th {
	background: var(--back-color);
	color: #fff;
	border-right: 2px solid #fff;
	/*border-top: 2px solid var(--back-color);*/
}

.table_design th:last-of-type {
	border-right: 2px solid var(--back-color);
}

.table_design th:hover {
	cursor: pointer;
	background: #52a8e9;
}

.table_design input[type="checkbox"] {
	width: 1em;
	height: 1em;
	border: 1px solid #000;
	vertical-align: -5px;
}

.checkbox {
	display: flex;
	justify-content: flex-end;
	/* ← これが右寄せのポイント */
	align-items: center;
	/* 縦位置も中央に揃える */
	margin-top: -0.3emem;
	/* 必要に応じて */
}

.checkbox label {
	font-size: 0.75em;
	margin-right: 50px;
}

.checkbox input {
	margin-left: 0.5em;
}


.table_design tbody tr th:nth-child(4) {
	min-width: 15em;
}

.info_table {
	background-color: #fff;
	/*border:1px solid #ccc;*/
	width: 80%;
	margin: 0 auto;
}

.flow00 .info_table {
	background-color: #fff;
	width: 80%;
	margin: 0 auto;
}

.info_table tr {
	border: 0.3em solid #fff;
}

.info_table th {
	background-color: #ddd;
	width: 15em;
	min-width: 200px;
	padding: 1em;
	border: 0;
}

.info_table td {
	padding: 0.2em 0.5em;
	/* ← 縦の余白をさらに少なく */
	border: 0;
	vertical-align: middle;
}

.info_table input {
	width: 100%;
	height: 1.7em;
	/* ← 高さを抑える */
	padding: 0.2em 0.4em;
	font-size: 1em;
}

.info_table label {
	/*width:12em;*/
	min-width: 150px;
	font-size: 0.75em;
	text-align: right;
	margin-right: 1em;
	margin-top: 0.8em;
}

#postcode {
	max-width: 20em;
	font-size: 1.3em;
	color: #000;
}

#tel {
	font-size: 1.3em;
	color: #000;
}

.info_table select {
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-left: 1em;
	font-size: 0.9em;
}



.selectbox_area {
	position: relative;
	margin: 0em 0em 0em 0em;
	float: left;
	min-width: 15em;
}

/* セレクトボックス項目の後に"▼"を追加 */
.selectbox_area::after {
	pointer-events: none;
	/*矢印部分をクリックを可能にする*/
	position: absolute;
	color: #999;
	top: 50%;
	right: 0.5em;
	transform: translateY(-50%);
	/*▼を上に移動*/
	content: "▼";
}



.input {
	display: flex;
	align-items: flex-start;
}

label.required:after {
	content: "*";
	color: red;
}

.required span {
	background-color: red;
	color: #fff;
	font-weight: bold;
	font-size: 0.6em;
	padding: 0.1em 0.1em 0;
	min-width: 45px;
	/*height:2em;*/
	text-align: center;
	display: block;
	border-radius: 0.5em;
	margin-top: 0.8em;
}

.required span:after {
	content: "";
}

.required input,
.required select {
	background-color: #ffe8e8;
}




/* 親は右寄せ。ここでは gap を使わない（均等に広がるのを防ぐ） */
.submitarea{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

/* ←ここで左グループと右グループの“間”だけを調整 */
.kiyakudoui{ 
  margin-right: 25px;   /* ★ ここを好きな値に。左グループ→右グループの距離 */
}


/* 右ボタン間の個別マージンは打ち消す（あれば） */
.phase1 > * , .phase2 > * 
{ margin: 0 !important;
  margin-bottom: 45px; 
 }

/* 利用規約ボタンの見た目（横間隔は .kiyakudoui の margin-right に一本化） */
.submitarea a.kiyaku{
  background:#666; 
  color:#fff; 
  padding:0 1.5em; 
  font-weight:bold;
  font-size:.7em; 
  border-radius:.5em; 
  line-height:160%; 
  height:auto;
  margin:0;  /* ← ここで margin-right を使わない */
  margin-top: 70px;                 
  display:inline-block;
}


/* 確認する */
#btn_confirm {
	background-color: #bdbdbd;
	border: 3px solid #afafaf;
	font-size: 1em;
	padding: 0.6em 1em;
	color: #ffffff;
	border-radius: 10px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 45px;
}

#btn_confirm:hover {
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
	color: #818181 !important;
}


/* 登録 */
#btn_regist {
	background-color: #bdbdbd;
	border: 3px solid #afafaf;
	font-size: 1em;
	padding: 0.5em 2em;
	color: #ffffff;
	border-radius: 10px;
	font-weight: bold;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	height: 45px;
}

#btn_regist:hover {
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
	color: #818181 !important;
}

/* 戻る */
#btn_back {
	background-color: #bdbdbd;
	border: 3px solid #afafaf;
	font-size: 1em;
	padding: 0.5em 1.95em;
	color: #ffffff;
	border-radius: 10px;
	font-weight: bold;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	height: 45px;
	margin-right: 1px;
}

#btn_back2 {
	background-color: #bdbdbd;
	border: 3px solid #afafaf;
	font-size: 1em;
	padding: 0.5em 2em;
	color: #ffffff;
	border-radius: 10px;
	font-weight: bold;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	height: 45px;
}

/* まとめて同じ高さだけ下げる */
#btn_back,
#btn_regist,
#btn_confirm {
	margin-top: 54px !important;
}

.submitarea [hidden] {
	display: none !important;
}















/* フィルター機能 */
#test-filterInput {
	margin-bottom: 10px;
	padding: 8px;
	width: 20em;
	box-sizing: border-box;
}


.sort.desc:after {
	content: "▼";
}

.sort.asc:after {
	content: "▲";
}




button.mainbutton,
a.mainbutton {
	background-color: #e7f2fa;
	border: 3px solid var(--back-color);
	font-size: 1.6em;
	padding: 0.5em;
	height: auto;
	min-width: 11em;
	color: #005491;
	width: auto;
	/*margin-left: 0.5em;*/
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
}

a.mainbutton {
	max-width: 12em;
	/*padding:0.8em 0.5em;*/
}

.buttoncenter a.mainbutton {
	margin: auto;
}

button.mainbutton:hover,
a.mainbutton:hover {
	opacity: 0.5;
}

button.none,
a.none {
	pointer-events: none;
	opacity: 0.4;
	background-color: #bbb;
	color: #666;
	border: 3px solid #888;
}

input.none {
	background-color: #ccc;
}

.buttoncenter,
button.buttoncenter {
	/*margin-left:42%;*/
	display: block;
	margin: 0 auto;
}

.attention {
	color: #ed2024;
	font-weight: bold;
}

.attention2 {
	color: #999;
	font-size: 0.7em;
	margin-right: 1em;
}

.attention2 p {
	margin-bottom: 0;
	margin-left: 1em;
	line-height: 100%;
}

.topposition {
	/*margin-top:-2em;*/
}

.contentsarea div.downloadbutton {
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
}

.downloadbutton {
	width: auto;
	background-color: #fff;
	/*position: sticky;*/
	/*top: 0;*/
	padding-top: 1em;
}

tbody.list {
	overflow-x: auto;
}

.contentsarea div.search {
	text-align: right;
	margin-bottom: 0;
	position: relative;
}

.contentsarea div.search input {
	position: absolute;
	bottom: 0;
	right: 0;
}

.explanation {
	padding-top: 1em;
}

.graph_aging {
	display: flex;
}

.graph_aging div {
	flex: 1;
	margin-right: 2em;
}

.graph {
	/*display:flex;*/
	/*justify-content:center;*/
}

.graph .graph_analysis {
	max-width: 570px;
}

.graph1 {
	display: flex;
}

.graph1 .graph_analysis {
	max-width: 650px;
}

.graph2 .graph_analysis h2 {
	width: 100%;
	/*margin:0 auto 1em;*/
}

.graph3 {
	width: 100%;
}

.graph3 .graph_analysis {
	margin: 0 auto;
	margin-bottom: 1em;
}

.graph_doughnut_chart {
	width: 400px;
}

.graph_chart {
	width: 100%;
	max-width: 600px;
}

.contents h2 {
	font-size: 1.2em;
	font-weight: bold;
	width: 100%;
	background-color: #e3eef4;
	padding: 0.5em;
	margin-top: 1em;
}

.graph2 {
	margin-top: 2em;
}

.graph_scatter {
	display: flex;
	/*justify-content:center;*/
}

.graph_scatter div.shudanlist {
	/*text-align:center;*/
	width: 35%;

}

div.shudanlist table {
	background-color: #fff;
	width: 100%;
	font-size: 0.9em;
	border: 1px solid #333;
}

div.shudanlist table span {
	font-size: 60%;
}

div.shudanlist table tr,
div.shudanlist table td,
div.shudanlist table th {
	border: 1px solid #333;
	text-align: center;
}

div.shudanlist table th {
	padding: 0 0.5em;
	background-color: #90ee90;
}

div.shudanlist table .yellow {
	background-color: #ffffe0;
}

div.shudanlist table td,
div.shudanlist table th {
	padding: 5px;
}

div.shudanimg2 {
	margin-right: 5%;
}

.graph_scatter img {
	vertical-align: top;
	max-width: 340px;
}

.graph_examinationrate,
.graph_doughnut_chart {
	margin-right: 1em;
}

.download_area {
	display: flex;
	justify-content: center;
	align-items: center;
}

.download_area select,
.download_area a {
	width: 30%;
	margin: 0.2em 0.5em;
	border: 2px solid var(--back-color);
	text-align: center;
	border-radius: 0.6em;
	font-weight: bold;
	/*color:var(--back-color);*/
}

.download_area select {
	/*background:var(--back-color);*/
	/*color:#fff;*/
}

.download_area select:hover {
	opacity: 0.5;
}

.download_area a {
	padding: 4px 10px;
	background: #e7f2fa;
	color: #005491;

}

.download_area a:hover {}

/* セレクトボックスのフォーカス時のブラウザが付加する枠線を非表示 */
:focus {
	outline: none;
}

/* ::after要素をabsoluteで表示するために記載 */
.download_area {
	position: relative;
	margin: 0em 0em 0em 0em;
}

/* セレクトボックス項目の後に"▼"を追加 */
.download_area::after {
	pointer-events: none;
	/*矢印部分をクリックを可能にする*/
	position: absolute;
	color: var(--back-color);
	top: 50%;
	left: 30%;
	transform: translateY(-50%);
	/*▼を上に移動*/
	content: "▼";
}

.download_area::after {
	color: #fff;
}

.download_area select:hover {
	cursor: pointer;
}

.date_selectbox {
	/*元々の<select>のスタイルを削除 */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/*background:#e7f2fa;*/
	background-color: var(--back-color);
	color: #fff;
}





/*新着情報
-------------------------------------*/
.news h2 {
	background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}

.news li {
	list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 0.5rem 0;
}

/*フッター
-------------------------------------*/
footer {
	background-color: var(--back-color);
	padding: 5rem 0;
	color: var(--white-color);
}

footer h5 {
	border-bottom: 2px solid var(--white-color);
}

.footer {
	text-align: center;
	background-color: var(--back-color);
	color: #fff;
	width: 100%;
	position: sticky;
	top: 100vh;
}

.login .footer {
	/*position:absolute;*/
	/*bottom:0;*/
	width: 100%;
	min-width: 1300px;
}

.login .footer p {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	margin-bottom: 0;
}

.top .footer {
	background-color: transparent;
	text-align: right;
	min-width: 1300px;
}

.top .footer a {
	background-color: var(--back-color);
	width: auto;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	padding: 0.7em 1em;
	border-radius: 0.7em;
	border: 1px solid #fff;
	margin-bottom: 1em;
	margin-right: 1em;
}

.top .footer a:hover {
	background-color: #73c1fb;
	opacity: 1;
}



/*コピーライト、フッターエリア
-------------------------------------*/
.copyright {
	text-align: center;
	padding: 0;
	margin-top: 2em;
	/*background-color: var(--white-color);*/
	width: 100%;
	position: absolute;
	bottom: 0;
	color: #fff;
}

.copyright p {
	border-top: 1px solid #fff;
	margin-top: 0.5em;
	padding-top: 1em;
	margin-bottom: 0.5em;
}

.copyright a {
	color: #fff;
	display: inline-block;
}

.sidemenu a {
	text-decoration: none;
	color: var(--white-color);
	border: 2px solid #fff;
	border-radius: 0.6em;
	margin: 0.6em 0.3em 0;
	font-weight: bold;
	font-size: 0.8em;
	position: relative;
	/*width:100%;*/
	display: block;
	padding: 1.3rem 1.3rem;
	text-align: left;
}

.sidemenu a.soudan:before {
	content: url(../img/icon01-07.svg);
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

.sidemenu a.touroku:before {
	content: url(../img/icon01-08.svg);
	position: relative;
	margin-right: 1em;
	vertical-align: middle;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 15px;
	right: 15px;
}

#pagetop a {
	display: block;
	background: var(--back-color);
	color: var(--white-color);
	width: 50px;
	padding: 10px 5px;
	text-align: center;
	font-size: 0.7em;
}

#pagetop a:hover {
	background: var(--back-color);
}

/*パンくずリスト
-----------------------------------*/
.breadcrumb {
	margin: 0 0 1em 0;
	padding: 0;
}

.breadcrumb li {
	list-style-type: none;
}

.breadcrumb li a {
	display: inline-block;
	color: var(--link-color);
}




/*モーダルウィンドウ
-----------------------------------*/
.layer_base {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index: 5;
	top: 0;
}

.layer_base2,
.layer_base3,
.layer_base4,
.layer_base5,
.layer_base6 {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index: 5;
	top: 0;
}

.layernone {
	display: none;
}

.layer {
	/*background: rgba(0, 0, 0, .2);*/
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	/*transition: opacity 1s linear, visibility 1s linear, z-index 1s linear;*/
}

.layer.is-open {
	/*z-index: 999;*/
	opacity: 1;
	/*visibility: visible;*/
	/*overflow-y:auto;*/
}

.layer.is-open .modal {
	opacity: 1;
	visibility: visible;
}

.modal__button-wrap {
	position: absolute;
	right: -10px;
	top: -20px;
	display: inline-flex;
}

button.close-button {
	position: relative;
	width: 39px;
	height: 39px;
	background: #333;
	border-radius: 50%;
	padding: 0;
	border: transparent;
	cursor: pointer;
}

button.close-button span {
	width: 25px;
	height: 2px;
	background: #fff;
	display: inline-block;
	position: absolute;
	left: calc(50% - 12px);
	top: 50%;
	border-radius: 20px;
}

button.close-button span:nth-child(1) {
	transform: rotate(45deg) translate(-1px, -1px);
}

button.close-button span:nth-child(2) {
	transform: rotate(-45deg) translate(1px, -1px);
}

.modal {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	width: 60%;
	min-width: 440px;
	opacity: 0;
	visibility: hidden;
	/*transition:  visibility .7s linear, opacity .7s linear;*/
}

.modal__inner {
	margin-top: 125px;
	margin-bottom: 125px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 13px;
	display: block;
	padding: 21px 8px 21px;
	height: auto;
}

.modal__content {
	padding-top: 15px;
	padding-bottom: 23px;
	max-height: 70vh;
	padding: 0.5em 3em;
	font-size: 1em;
}

.modal__content ul {
	list-style: none;
}

.modal__content ul.waku {
	height: 43vh;
	display: block;
	overflow-y: scroll;
	border: 1px solid #ccc;
	margin-bottom: 0.5em;
}

.modal__content ul li {
	padding: 0.5em;
}

.modal__content ul li span {
	color: red;
	font-weight: bold;
	text-decoration: underline;
}

.modal__content ul li h4 {
	font-weight: bold;
	/*font-size:1em;*/
	margin-bottom: 0.5em;
}

.modal__content ul li h5 {
	font-weight: bold;
	font-size: 1em;
	margin: 1em 0.5em 0;
}

.modal__content ul li label {
	display: inline-block;
	width: 5em;
}

.modal__content ul li input {
	width: 30em;
}

.modal__content ul li select {
	width: 10em;
}

.modal__content ul.list {
	list-style: circle;
	margin-left: 3em;
}

.modal__content ul.list li {
	padding: 0;
}

.modal__content ul.list a,
.modal__content ul.list span {
	display: inline;
}

.modal__content ul.list span,
.precautions span {
	color: var(--back-color);
	font-weight: bold;
}

.modal__content ul.list a {
	color: var(--back-color);
	font-weight: bold;
	text-decoration: underline;
}

.modal__button-area {
	max-width: 843px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 17px;
	padding-top: 15px;
}

button.okbutton {
	background-color: var(--back-color);
	color: #fff;
}

button.okbutton:hover {
	opacity: 0.7;
	color: #fff;
}




@media screen and (max-width: 1600px) {
	.flow ul li:nth-child(6) {
		background-size: 100%;
	}

	.home p.datetitle,
	.datetitle {
		font-size: 0.8em;
	}

	.home p.emphasis {
		font-size: 1.25em;
	}


	.flow ul li p {
		height: 162px;
		min-height: 162px;
	}

	.flow ul li {
		min-width: 135px;
	}

	.graph_doughnut_chart {
		width: 300px;
	}

	.graph_chart {
		width: auto;
		max-width: 500px;
	}

	.graph1 .graph_analysis {
		max-width: 600px;
	}

	.graph_scatter img {
		max-width: 310px;
		width: 100%;
	}

	div.shudanlist table {
		font-size: 0.9em;
	}


	.graph1 {
		width: 100%;
	}

	.graph2 .graph_analysis h2 {
		width: 100%;
		/*margin:0 auto 1em;*/
	}

	.graph3 {
		width: 100%;
	}

	.downloadarea div {
		width: 50%;
	}

	.download_area select,
	.download_area a {
		font-size: 0.8em;
	}

	.flow ul li {
		margin: 0 1em;
	}

	.attention {
		font-size: 0.8em;
	}

	button.mainbutton,
	a.mainbutton {
		font-size: 1em;
		min-width: 10em;
	}

	.enddate p.date {
		font-size: 1.7em;
	}

	.contentsarea div.search input {
		height: 1.4em;
		font-size: 0.8em;
	}

	.table_design {
		font-size: 0.75em;
	}

	.attention2,
	a.postcode {
		font-size: 0.6em;
		width: 11em;
	}

	a.postcode {
		margin-left: auto;
	}

	.flow00 .info_table {
		width: 98%;
	}

	.info_table th {
		font-size: 0.8em;
	}

	#postcode {
		font-size: 1.4em;
		width: 12em;
	}

	.contentsarea div.cont p {
		font-size: 0.6em;
	}

	.info_table label {
		font-size: 0.7em;
		min-width: 140px;
		margin-right: 0;
	}

	.info_table th {
		width: 9em;
	}

	.info_table td {
		padding: 0.3em 0.5em;
	}

	form p.req {
		width: auto;
	}

	.flow00 .info_table input {
		font-size: 1em;
	}




}


@media screen and (max-height: 600px) {
	.wrapper form {
		position: static;
		transform: none;
	}

	.login .footer {
		position: static;
	}

	.modal__inner {
		margin-top: 0;
	}

}

@media screen and (max-height: 750px) {

	.modal__inner {
		margin-top: 5%;
	}

}

