@charset "UTF-8";

/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box;outline:none;}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1em}input,button,textarea,select{font:inherit}img:not([alt]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

/* font */
/* @font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: normal;
	src: local("Noto Sans CJK JP Regular"),
			url('/assets/font/NotoSans_Regular.woff2') format('woff2'),
			url('/assets/font/NotoSans_regular.woff') format('woff'),
			url('/assets/font/NotoSans_regular.otf') format('opentype');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: bold;
	src: local("Noto Sans CJK JP Bold"),
			url('/assets/font/NotoSans_Bold.woff2') format('woff2'),
			url('/assets/font/NotoSans_bold.woff') format('woff'),
			url('/assets/font/NotoSans_bold.otf') format('opentype');
}
@font-face {
	font-family: "YakuHanJP";
	font-style: normal;
	font-weight: normal;
	src: url("/assets/font/YakuHanJP-Regular.woff2") format("woff2"),
			url("/assets/font/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
	font-family: "YakuHanJP";
	font-style: normal;
	font-weight: bold;
	src: url("/assets/font/YakuHanJP-Bold.woff2") format("woff2"),
			url("/assets/font/YakuHanJP-Bold.woff") format("woff");
} */

html {
	font-size: 10px;
}

/* Structure */
body, #wrapper {
	color: #333;
	font-size: 1.6rem;
	font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*"YakuHanJP",*/
}
body {
	min-height: 100vh;
}
#wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
/* div#wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
} */
div.content-inner {
	margin: 0 auto;
	padding: 0px 10px;
	width: 100%;
	max-width: 1200px;
	overflow: hidden;
}
main {
	flex: 1;
}

/* Common */
a {
	color: #bf5900; /* #ee7800 */
	text-decoration: none;
}
.strong {
	font-weight: 700;
}
p {
	margin-bottom: 1em;
}

/* Common parts */
.flex-container {
	display: flex;
}
input, select, textarea {
	font-size: 16px;
	border: 1px solid #777;
	border-radius: 4px;
	/* transform: scale(0.9); *//*iPhone Safari対策*/
}
input.width_full {
	width: 100%;
}
textarea {
	width: 100%;
	height: 300px;
}
button {
	border: 1px solid #777;
	outline: none;
}
input::placeholder { color: #ccc; }
input:-ms-input-placeholder { color: #ccc; } /* IE */
input::-ms-input-placeholder { color: #ccc; } /* Edge */
select {
	display: inline-block;
	font-size: 16px;
	font-family: sans-serif;
	color: #444;
	line-height: 1.3;
	padding: 5px 25px 5px 5px;
	width: auto;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #aaa;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	border-radius: .5em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
	  linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
	background-repeat: no-repeat, repeat;
	background-position: right 7px top 50%, 0 0;
	background-size: .65em auto, 100%;
}
select::-ms-expand {
	display: none;
}
select:hover {
	border-color: #888;
}
select:focus {
	border-color: #aaa;
	/* box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7); */
	/* box-shadow: 0 0 0 3px -moz-mac-focusring; */
	color: #222;
	outline: none;
}
select option {
	font-weight: normal;
}
button, .btn {
	padding: 7px 20px;
	background: #1fd5ea;
	border: 1px solid #08b6ca;
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
}
.btn_primary {
	color: #fff;
	background: #bf5900;
	border: 1px solid #914400;
}
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
/*
 Color palette
 https://codepen.io/techntvz/full/QKGARV
 */
.danger  { color: #ff4444; }
.warning { color: #ffbb33; }
.success { color: #00C851; }
.info    { color: #33b5e5; }
.danger-dark  { color: #CC0000; }
.warning-dark { color: #FF8800; }
.success-dark { color: #007E33; }
.info-dark    { color: #0099CC; }
.default   { color: #2BBBAD; }
.primary   { color: #4285F4; }
.secondary { color: #aa66cc; }
.default-dark   { color: #00695c; }
.primary-dark   { color: #0d47a1; }
.secondary-dark { color: #9933CC; }

.hidden {
	display: none !important;
}
.required {
	position: relative;
}
.required::after {
	content: "必須";
	margin-left: 10px;
	padding: 2px 6px;
	color: #fff;
	background-color: #ef454a;
	font-size: 1rem;
	white-space: nowrap;
	position: relative;
	top: 0;
}

/* Header */
header {
	margin-bottom: 30px;
	padding: 10px 0;
	background: #FEAC5E;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #4BC0C8, #C779D0, #FEAC5E);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #4BC0C8, #C779D0, #FEAC5E); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	background: #fff;
	box-shadow: #aaa 0px 0px 5px;
}
header a {
	text-decoration: none;
}
header .content-inner {}
header .header-content {
	align-items: center;
}
header .logo {
	width: 180px;
	height: auto;
}
header nav {
	flex: 1;
}
header nav ul {
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
header nav ul > li {
	padding: 5px 10px;
	text-align: center;
	flex: 1;
	white-space: nowrap;
}
header nav a {
	width: 100%;
	display: inline-block;
}
.btn_login {
	color: #fff;
	background: #ef454a;
	border: 1px solid #f14e4e;
}
.btn_regist {
	background: #fff;
	border: 1px solid #ef454a;
}
@media screen and (max-width: 600px) {
	header {
		padding-bottom: 10px;
	}
	header .header-content {
		display: block;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	/* header div.logo { order: 1; } */
	/* header nav.menu { order: 3; flex: 100%; } */
	/* header div.btn_area { order: 2; } */
}

/* Footer */
footer {}
footer .copyright {
	padding: 5px;
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	/* background-color: #ef454a; */
	background: #00C9FF;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #92FE9D, #00C9FF);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #92FE9D, #00C9FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* Common */
h1 {
	line-height: 1.2;
}
.page-title {
	margin-bottom: 10px;
	font-size: 2.1rem;
}

.section {
	margin: 30px 0;
}
.section .title {
	margin-bottom: 2em;
	font-size: 2rem;
	font-weight: 700;
}
.link_area {
	margin: 20px 0;
}

.flex-container .label {
	width: 100%;
	max-width: 350px;
	font-weight: 700;
}

/* ページ構成 */
.contents_header {
	background-color: #efefef;
}
.contents_header h1 {
	text-align: center;
}
.contents_header h1 .en {
	margin-top: 1rem;
	font-size: 1.8rem;
	display: block;
}
.contents_main {}
@media screen and (max-width: 600px){
	.contents_header {
		padding: 30px 0;
	}
	.contents_header h1 {
		font-size: 2.4rem;
	}
	.contents_main {
		padding: 30px 0;
	}
}
@media screen and (min-width: 601px){
	.contents_header {
		padding: 60px 0;
	}
	.contents_header h1 {
		text-align: center;
		font-size: 3.6rem;
	}
	.contents_main {
		padding: 60px 0;
	}
}

/* ページネーション */
.pagenation ul {
	margin: 10px;
	display: flex;
	justify-content: center;
}
.pagenation li {
	margin: 0 5px;
}
.pagenation a {
	text-decoration: none;
}
.pagenation span {
	padding: 5px;
	min-width: 30px;
	min-height: 30px;
	text-align: center;
	background-color: #fff;
	border: 1px solid #ef454a;
	border-radius: 4px;
	display: block;
}
.pagenation span.current {
	color: #fff;
	background-color: #ef454a;
}

/* ダイアログ */
#dialog {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#dialog .overlay {
	background-color: #333;
	opacity: .7;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
#dialog .dialog_inner {
	margin: 0 auto;
	padding: 20px;
	width: 100%;
	width: fit-content;
	max-width: 98vw;
}
#dialog .content_wrap {
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
}
#dialog .content {
	margin-bottom: 10px;
}
#dialog .btn_area {
	text-align: center;
}
#dialog .btn_area button {
	margin: 0 20px;
	border: 1px solid;
	line-height: 1;
}

/*for dark-mode*/
@media (prefers-color-scheme: dark){}

/*デバッグ用*/
div.debug {
	margin: 0 auto;
	padding: 0px 10px;
	max-width: 1200px;
}

/* 暫定設定 */
header nav,
header .btn_area {
	display: none;
}
