@charset "UTF-8";
/**
 * 1.0 - Normalize
 * 2.0 - Common
 * 3.0 - Header
 *    3.1 - Header Navigation
 * 4.0 - Footer
 * 5.0 - Contents
 * 6.0 - Option
 *    6.1 - Index
 *    6.2 - Program
 * 0.0 - Text
 */
/*----------------------------------------------------
	1.0 - Normalize-HTML5 Reset
----------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
/* Forms */
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	border: 0; /* 1 */
	padding: 0; /* 2 */
}
button, input, select, textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 2 */
	margin: 0; /* 3 */
}
input, select {
	vertical-align: middle;
}
button, input {
	line-height: normal;
}
button, select {
	text-transform: none;
}
button, html input[type="button"], /* 1 */ input[type="reset"], input[type="submit"] {
	-webkit-appearance: button; /* 2 */
	cursor: pointer; /* 3 */
}
button[disabled], html input[disabled] {
	cursor: default;
}
input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box; /* 2 */
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto; /* 1 */
	vertical-align: top; /* 2 */
}
/*----------------------------------------------------
	2.0 - Common Setting
----------------------------------------------------*/
/* - option sp [base] - */
html {
	font-size: 62.5%; /* base-font-size:10px */
}
body {
	background-image: url("../img/common/bg_base.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	color: #222;
	font-family: 'Noto Sans JP', 'Noto Sans KR', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 15px;
	font-size: 1.5rem;
	letter-spacing: 0;
	min-width: 320px;
}
ul {
	list-style-type: none;
}
body * {
	box-sizing: border-box;
	/*word-break: break-all;*/
	white-space: normal;
}
figure {
	line-height: 0%;
}
img {
	width: 100%;
	height: auto;
	line-height: 0%;
}
a:link, a:visited {
	color: #1765DD;
}
a:hover, a:active {
	color: #f4b62c;
}
/* - option tablet - */
@media screen and (min-width: 481px) {}
/* - option tablet wide - */
@media screen and (min-width: 601px) {
	body {
		font-size: 16px;
		font-size: 1.6rem;
	}
}
/* - option pc - */
@media screen and (min-width: 960px) {}
/* - option pc - */
@media screen and (min-width: 1281px) {}
/*----------------------------------------------------
	3.0 - Header Setting
----------------------------------------------------*/
header {
	position: relative;
	z-index: 1;
	margin: 0 auto -190px;
	width: 1000px;
}
.index header {
	margin: 0 auto -200px;
}
.header-logo {
	display: flex;
	padding-top: 30px;
}
.header-logo p {
	width: 250px;
	padding: 0 25px;
}
.header-logo h1 {
	width: 750px;
	padding: 0 40px 0 30px;
}
.header-logo img {
	vertical-align: top;
}
/*----------------------------------------------------
	4.0 - Footer Setting
----------------------------------------------------*/
footer {
	background-color: #3f3c3b;
	color: #fff;
}
footer a:link, footer a:visited {
	color: #93c965;
}
footer a:hover, footer a:active {
	color: #f4b62c;
}
.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
.footer-contact {
	padding: 40px 0;
	flex-basis: 50%;
	width: 50%;
	max-width: 50%;
}
.footer-contact:nth-of-type(odd) {
	padding-right: 20px;
}
.footer-contact:nth-of-type(even) {
	padding-left: 20px;
}
.footer-contact dt {
	border-bottom: 1px solid #93c965;
	color: #fff;
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: -1px;
	padding-bottom: 0.5em;
}
.footer-contact dd {
	border-top: 1px solid #666261;
	font-size: 1.2rem;
	line-height: 1.8;
	padding-top: 0.5em;
	width: 100%;
}
.copyright {
	border-top: 1px solid #666261;
	color: #d7d7d7;
	font-size: 1.2rem;
	line-height: 1.8;
	text-align: center;
	padding: 15px 0 20px;
}
footer button {
	background-color: #4a6f34;
	border: none;
	color: #fff;
	font-size: 1.2rem;
	padding-top: 20px;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 60px;
	z-index: 2;
}
footer button:after {
	font-size: 2.1rem;
	margin-top: -0.75em;
	margin-left: -0.5em;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1em;
	height: 1em;
}
footer button:hover, footer button:active, footer button:focus {
	background-color: #93c965;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	color: #fff;
	transition: 0.3s;
}
/*----------------------------------------------------
	5.0 - Contents Setting
----------------------------------------------------*/
#contents {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	display: flex;
	margin: 0 auto;
	width: 1000px;
}
.contents-title {
	background-image: url("../img/contents/bg_contents.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	color: #fff;
	padding: 170px 20px 20px;
	text-align: center;
	height: 280px;
}
.contents-title h1 {
	font-family: 'Noto Serif JP', serif;
	font-size: 4.0rem;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-align: center;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.75), -3px -3px 5px rgba(0, 0, 0, 0.75), 3px -3px 5px rgba(0, 0, 0, 0.75), -3px 3px 5px rgba(0, 0, 0, 0.75);
}
.wrapper {
	margin: 0 auto;
	padding: 80px 0;
	width: 100%;
	max-width: 1000px;
}
h2, h3, h4, h5 {
	line-height: 1.25;
}
h2 {
	font-size: 2.4rem;
	font-weight: 500;
    text-shadow: 0px 0px 4px rgba(28,102,10,0.90);
}
h2 span {
	font-size: 45%;
	font-weight: 400;
	display: block;
}
h3 {
	border-left: 3px solid #4a6f34;
	font-size: 2.0rem;
	margin-top: 2.5em;
	margin-bottom: 0.75em;
	padding-left: 0.5em;
}
h4 {
	font-size: 1.6rem;
	margin-top: 1.5em;
	margin-bottom: 1em;
	border-bottom: 3px double #ddd;
	padding-bottom: 0.25em;
}
section p, section li {
	line-height: 1.8;
}
section dt, section dd {
	line-height: 1.8;
}
/*----------------------------------------------------
	5.1 - Main Setting
----------------------------------------------------*/
#main {
	background-color: #fff;
	width: 750px;
	order: 2;
    position: relative;
}
.sections {
	background-color: #fff;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05) inset;
	padding-bottom: 40px;
	height: calc(100% - 280px);
}
section {
	padding: 40px 30px 20px;
}
section h2 {
	background: #4a6f34;
	background: -moz-linear-gradient(left, #4a6f34 0%, #ffffff 100%);
	background: -webkit-linear-gradient(left, #4a6f34 0%, #ffffff 100%);
	background: linear-gradient(to right, #4a6f34 0%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a6f34', endColorstr='#ffffff', GradientType=1);
	color: #fff;
	margin-bottom: 1em;
	padding: 9px 10px 13px 16px;
}
section h2.page-title {
	background: none;
	color: #4a6f34;
	font-size: 2.8rem;
	position: relative;
	text-align: center;
}
section h2.page-title:after {
	content: " ";
	width: 50px;
	position: absolute;
	display: inline-block;
	border-bottom: 3px solid #ddd;
	bottom: -5px;
	left: calc(50% - 25px);
}
section h2 + h3 {
	margin-top: 0.5em;
}
section li table th,section li table td {
	text-indent: 0;
}
.public_postar a:hover img, .public_postar a:active img {
    filter: alpha(opacity=75);
    -ms-filter: "alpha( opacity=75 )";
    opacity: 0.75;
    transition: 0.3s;
}
/*----------------------------------------------------
	5.2 - Side Setting
----------------------------------------------------*/
#side {
	border-top: 3px solid #d90615;
	background-color: #fff;
	order: 1;
	padding: 160px 10px 20px;
	position: relative;
	width: 250px;
}
.side-movie {
	width: 100%;
	margin-bottom: 10px;
}
.side-movie iframe {
	width: 100%;
}
.side-movie iframe.w16-9 {
	width: 100%;
	height: calc(230px / 16 * 9);
}
.side-link {
	width: 100%;
}
.side-link li {
	margin-top: 10px;
}
.side-link li:first-of-type {
	margin-top: 0;
}
.side-link .side-poaster {
	background-color: #efefef;
	border: 1px solid #ddd;
	padding: 9px;
}
.side-link span {
	background-color: #333;
	color: #fff;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 6px 5px 8px;
	text-align: center;
	width: 100%;
	height: auto;
}
.side-link img {
	width: 100%;
	height: auto;
}
.side-link a:hover img {
	opacity: 0.7;
	transition: 0.3s;
}
/*----------------------------------------------------
	5.2.1 - Navigation Setting
----------------------------------------------------*/
.nav-primary {
	width: 100%;
	position: relative;
	z-index: 2;
}
.nav-primary li {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 10px;
}
.nav-primary a {
	text-decoration: none;
}
.nav-primary .on {}
.nav-primary .off, .nav-primary a {
	border-radius: 4px;
	display: flex;
	align-items: center;
	padding: 6px 20px 8px 10px;
	transition: 0.3s;
	height: 50px;
	position: relative;
}
.nav-primary a:link, .nav-primary a:visited, .nav-primary .off {
	background-color: #f9f5ef;
	border: 1px solid #d1cbc3;
	color: #333;
}
.nav-primary a:hover, .nav-primary a:active, .nav-primary .on a {
	background-color: #d90615;
	border: 1px solid #d90615;
	color: #fff;
}
.nav-primary .off:before, .nav-primary a:before {
	background-color: #4d4d4d;
	border-radius: 8px;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.6rem;
	vertical-align: middle;
	line-height: 0;
	padding-top: 8px;
	padding-left: 1px;
	position: absolute;
	top: calc(50% - 8px);
	right: 10px;
	width: 16px;
	height: 16px;
}
_:lang(x)::-moz-placeholder, .nav-primary .off:before {
	padding-top: 9px;
}
_:lang(x)::-moz-placeholder, .nav-primary a:before {
	padding-top: 9px;
}
.nav-primary a:hover:before, .nav-primary .on a:before {
	background-color: #fff;
	color: #d90615;
}
/*----------------------------------------------------
	6.0 - Option Setting Containar
----------------------------------------------------*/
.items {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 100%;
}
.items.itemC {
	justify-content: center;
}
.items.itemR {
	justify-content: flex-end;
}
[class^="col"] .item, [class*=" col"] .item {
	width: 50%;
	max-width: 50%;
	flex-basis: 50%;
}
[class^="col"] .item:nth-of-type(odd), [class*=" col"] .item:nth-of-type(odd) {
	padding-left: 0;
	padding-right: 1em;
}
[class^="col"] .item:nth-of-type(even), [class*=" col"] .item:nth-of-type(even) {
	padding-left: 1em;
	padding-right: 0;
}
.col1 .item, .col1s .item {
	width: 100%;
	max-width: calc(50% - 1em);
	flex-basis: 100%;
}
.col1 .item:nth-of-type(n), .col1s .item:nth-of-type(n) {
	padding-left: 0;
	padding-right: 0;
}
.col2-1 .item:nth-of-type(odd) {
	flex-basis: 33.333%;
	width: 33.333%;
	max-width: 33.333%;
}
.col2-1 .item:nth-of-type(even) {
	flex-basis: calc(100% - 33.333%);
	width: calc(100% - 33.333%);
	max-width: calc(100% - 33.333%);
}
.col2-2 .item:nth-of-type(odd) {
	flex-basis: calc(100% - 33.333%);
	width: calc(100% - 33.333%);
	max-width: calc(100% - 33.333%);
}
.col2-2 .item:nth-of-type(even) {
	flex-basis: 33.333%;
	width: 33.333%;
	max-width: 33.333%;
}
.col4-1 .item:nth-of-type(odd) {
	flex-basis: 25%;
	width: 25%;
	max-width: 25%;
}
.col4-1 .item:nth-of-type(even) {
	flex-basis: calc(100% - 25%);
	width: calc(100% - 25%);
	max-width: calc(100% - 25%);
}
.col4-2 .item:nth-of-type(odd) {
	flex-basis: calc(100% - 25%);
	width: calc(100% - 25%);
	max-width: calc(100% - 25%);
}
.col4-2 .item:nth-of-type(even) {
	flex-basis: 25%;
	width: 25%;
	max-width: 25%;
}
.col3 .item {
	width: 33.333%;
	max-width: 33.333%;
	flex-basis: 33.333%;
}
.col3 .item:nth-of-type(3n+1) {
	padding-left: 0;
	padding-right: 1em;
}
.col3 .item:nth-of-type(3n+2) {
	padding-left: 0.5em;
	padding-right: 0.5em;
}
.col3 .item:nth-of-type(3n) {
	padding-left: 1em;
	padding-right: 0;
}
.col4 .item {
	width: 25%;
	max-width: 25%;
	flex-basis: 25%;
}
.col4 .item:nth-of-type(4n+1) {
	padding-left: 0;
	padding-right: 16px;
}
.col4 .item:nth-of-type(4n+2) {
	padding-left: 5px;
	padding-right: 11px;
}
.col4 .item:nth-of-type(4n+3) {
	padding-left: 11px;
	padding-right: 5px;
}
.col4 .item:nth-of-type(4n) {
	padding-left: 16px;
	padding-right: 0;
}
.col5 .item {
	width: 20%;
	max-width: 20%;
	flex-basis: 20%;
}
.col5 .item:nth-of-type(5n+1) {
	padding-left: 0;
	padding-right: 14px;
}
.col5 .item:nth-of-type(5n+2) {
	padding-left: 4px;
	padding-right: 10px;
}
.col5 .item:nth-of-type(5n+3) {
	padding-left: 7px;
	padding-right: 7px;
}
.col5 .item:nth-of-type(5n+4) {
	padding-left: 10px;
	padding-right: 4px;
}
.col5 .item:nth-of-type(5n) {
	padding-left: 14px;
	padding-right: 0;
}
.item img {
	width: 100%;
	height: auto;
}
.item-media {
	vertical-align: top;
}
.item-media img, .item-media video {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	vertical-align: top;
}
/*----------------------------------------------------
	6.0 - Option Setting List
----------------------------------------------------*/

li.link_style {
    position: absolute;
    width: 100%;
    max-width: 1000px;
    height: 280px;
    margin: 0 auto;
	display: block;
    top: 360px;
    right: -450px;
}
li.link_style ul {
	width: 250px;
	height: 100%;
	display: block;
	padding-top: 40px;
	position: relative;
	top: 0;
	left: 0;
}
li.link_style ul li {
	width: 100%;
	height: 80px;
	background-color: #fff;
	display: block;
	margin: 0 0 15px;
	line-height: 1.2;
    border-radius: 30px;
}
li.link_style ul li a {
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #E8194D;
	font-weight: 700;
	border:  3px solid #E8194D;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	box-shadow: 0 0 5px #fff;
	text-decoration: none;
	position: relative;
    border-radius: 30px;
}

/*li.link_style ul li a:hover {
	background-color: #E8194D;
	color: #fff;
	transition: 0.3s;
    border-radius: 30px;
}*/


/* list */
[class^="list_"] li, [class*=" list_"] li {
	list-style-type: none;
}
.list-text-jp {
	margin-left: 1em;
}
.list-text-jp li {
	text-indent: -1em;
}
.list-text-jp li ul li {
	text-indent: 0;
}
.list-text-en {
	margin-left: 0.5em;
}
.list-text-en li {
	text-indent: -0.5em;
}
.list_disc {
	margin-left: 1em;
}
.list_disc li {
	position: relative;
}
.list_disc li:before, .list_disc li .list_disc li:before {
	color: #BABDCB;
	content: "\025cf";
	display: inline-block;
	font-size: 80%;
	margin-right: 2em;
	padding-right: 1em;
	position: absolute;
	top: 0.7em;
	left: -1.2em;
	line-height: 1.0;
}
.list_disc li ul li:before {
	display: none;
}
.list_decimal {
	margin-left: 2em;
	counter-reset: num;
}
.list_decimal > li {
	position: relative;
}
.list_decimal > li:before {
	box-sizing: border-box;
	counter-increment: num;
	content: counter(num) ".";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2.25em;
	margin-right: 2em;
	padding-right: 0.25em;
	text-align: right;
}
/* text */
/* mark */
/* link */
.list-link {
	margin-left: 1em;
}
.list-link li:before {
	color: #BABDCB;
	content: "\025b6";
	font-size: 80%;
	margin-left: -1.3em;
	padding-right: 0.3em;
}
/* Decimal Style */
ol.list_decimal {
	list-style: none;
	counter-reset: num;
	margin-left: 2.0em;
}
ol.list_decimal > li {
	position: relative;
}
ol.list_decimal > li:before {
	counter-increment: num;
	content: counter(num) ".";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}
/* Decimal (Parentheses) Style */
ol.list_numberParen {
	list-style-type: none;
	counter-reset: ol_li;
	margin-left: 2em;
}
ol.list_numberParen > li {
	position: relative;
}
ol.list_numberParen > li:before {
	counter-increment: ol_li;
	content: "("counter(ol_li)")";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}
/* Decimal (Parentheses - One Side) Style */
ol.list_numberParenR {
	list-style-type: none;
	counter-reset: ul_lione;
	margin-left: 2em;
}
ol.list_numberParenR > li {
	position: relative;
}
ol.list_numberParenR > li:before {
	counter-increment: ul_lione;
	content: counter(ul_lione)")";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}
/* banner */
.list-banner {
	width: 100%;
}
.list-banner li {}
.list-banner a, .list-banner span {
	border-radius: 8px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	font-weight: 500;
	line-height: 1.3;
	padding-left: 1em;
	padding-right: 1em;
	padding-bottom: 0.1em;
	overflow: hidden;
	text-decoration: none;
	width: 100%;
	height: 3.75em;
	text-align: center;
	position: relative;
}
.list-banner span {
	background-color: #ccc;
	color: #555;
}
.list-banner a span, .list-banner span span {
	background-color: transparent;
	width: auto;
}
.list-banner a:link, .list-banner a:visited {
	background-color: #d90615;
	color: #fff;
}
.list-banner a:hover, .list-banner a:active, .list-banner a:focus {
	background-color: #FA4D59;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	color: #fff;
	transition: 0.3s;
}
.list-banner a:after {
	width: 1em;
	height: 1em;
	position: absolute;
	right: 1em;
	top: 50%;
	margin-top: -0.5em;
}
.banner-bgY a:link, .banner-bgY a:visited {
	background-color: #F78D07;
}
.banner-bgY a:hover, .banner-bgY a:active, .banner-bgY a:focus {
	background-color: #FFC243;
}
.banner-bgB a:link, .banner-bgB a:visited {
	background-color: #167EDD;
}
.banner-bgB a:hover, .banner-bgB a:active, .banner-bgB a:focus {
	background-color: #50A1EC;
}
.banner-bgG a:link, .banner-bgG a:visited {
	background-color: #289D38;
}
.banner-bgG a:hover, .banner-bgG a:active, .banner-bgG a:focus {
	background-color: #45C858;
}
/*----------------------------------------------------
	6.0 - Option Setting Table
----------------------------------------------------*/
table.col1 {
	width: 100%;
}
table .nowrap {
	white-space: nowrap;
}
/* border */
.table-border {}
.table-border th, .table-border td {
	border: 1px solid #999;
	line-height: 1.8;
	padding: 0.65em 0.75em 0.8em;
}
.table-border th {
	background-color: #4a6f34;
	color: #fff;
}
.table-border td {
	background-color: #fff;
}
.table-border-btm {
	border-top: 1px solid #ddd;
	width: 100%;
}
.table-border-btm th, .table-border-btm td {
	border-bottom: 1px solid #ddd;
	line-height: 1.8;
	padding-top: 1em;
	padding-bottom: 1.2em;
	display: table-cell;
	width: auto;
}
.table-border-btm th {
	color: #4a6f34;
	font-weight: 500;
	padding-right: 1em;
	vertical-align: top;
}
/* no border */
.table-noborder {}
.table-noborder th, .table-noborder td {
	border: none;
	line-height: 1.8;
	margin: 0;
	padding: 0;
}
.table-noborder th {
	font-weight: 400;
	text-align: left;
	padding-right: 1em;
}
.table-noborder td {}
/* flex */
.table-flex {
	width: 100%;
}
.table-flex th, .table-flex td {
	border: 1px solid #999;
	line-height: 1.8;
	padding: 0.5em 0.75em 0.7em;
	width: auto;
	display: block;
}
.table-flex th {
	background-color: #555;
	border-top: none;
	border-bottom: none;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}
.table-flex td {
	background-color: #fff;
}
.scroll-table {
	width: 100%;
	overflow-x: auto;
}
.scroll-table table {
	min-width: 640px;
	max-width: 1000px;
}
/*----------------------------------------------------
	6.0 - Option Setting Other
----------------------------------------------------*/
/* space */
.mgnT0 {
	margin-top: 0;
}
.mgnT10 {
	margin-top: 1em;
}
.mgnT20 {
	margin-top: 2em;
}
.mgnB0 {
	margin-bottom: 0;
}
.mgnB10 {
	margin-bottom: 1em;
}
.mgnB20 {
	margin-bottom: 2em;
}
.mgnB30 {
	margin-bottom: 3em;
}
.mgnB40 {
	margin-bottom: 4em;
}
.pdgT0 {
	padding-top: 0;
}
.pdgT10 {
	padding-top: 1em;
}
.pdgT20 {
	padding-top: 2em;
}
.pdgB0 {
	padding-bottom: 0;
}
.pdgB10 {
	padding-bottom: 1em;
}
.pdgB20 {
	padding-bottom: 2em;
}
.pdgL10 {
	padding-left: 1em;
}
section .pdgR10 {
	padding-right: 1em;
}
/*----------------------------------------------------
	6.1 - Index Setting
----------------------------------------------------*/
.mv {
	background-image: url("../img/index/bg_index.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding-top: 200px;
	height: 900px;
}
/* news */
#news {
	background-color: #fff;
	padding-bottom: 80px;
}
#news h2 {
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	margin: 0;
	padding: 0 30px 20px 0;
	position: relative;
	top: -80px;
	text-align: right;
	height: 80px;
	z-index: 1;
	margin-bottom: -80px;
}
#news h2:before {
	color: #acbea1;
	content: "INFORMATION";
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.075em;
	padding-right: 76px;
	position: absolute;
	top: 3.75em;
	right: 30px;
}
#news h2:after {
	background-color: #acbea1;
	content: " ";
	position: absolute;
	top: 2.2em;
	right: 30px;
	width: 70px;
	height: 1px;
}
.news-list {
	padding: 0 30px 0;
	overflow: auto;
	height: 17.8em;
}
.news-list li {
	border-bottom: 1px dotted #d7d7d7;
	display: flex;
	align-items: flex-start;
	font-size: 1.5rem;
	line-height: 1.8;
	padding: 20px 0 22px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.news-list li:first-of-type {
	margin-top: 0;
}
.news-list time {
	background-color: #4a6f34;
	border-radius: 1em;
	color: #fff;
	position: relative;
	text-align: center;
	padding: 0 0 1px;
	width: 7em;
	z-index: 1;
}
.news-list p {
	padding-left: 20px;
}
/*----------------------------------------------------
	6.2 - Welcome massage Setting
----------------------------------------------------*/
.message-info {
	display: flex;
	align-items: center;
	align-content: center;
}
.message-info .info-image {
	width: 150px;
	border-radius: 50%;
	overflow: hidden;
}
.message-info .info-text {
	width: calc(100% - 150px);
	padding-left: 20px;
}

/*----------------------------------------------------
	6.3 - Program Setting
----------------------------------------------------*/
.program_link {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.program_link > li {
	padding-right: 1em;
	width:50%;
}
.program_link > li:nth-of-type(2n) {
	padding-right: 0;
}
.program_link > li a:before {
	content: "\025b6";
	background: #4a6f34;
	color: #fff;
	display: inline-block;
	position: relative;
	font-size: 0.5em;
	width: 1.6em;
	height: 1.6em;
	margin-right: 0.5em;
	padding: 0.25em 0.3em;
	line-height: 1.1;
	top: -1px;
}
.program_list {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.program_list .prg_title {
	margin-top: 1em;
	padding-left: 2em;
	color: #168225;
	font-weight: 700;
	text-indent: -2em;
	line-height: 1.2;
}
.program_list .prg_title > .title_number {
	display: inline-block;
	background: #000;
	width: 3.5em;
	margin-right: 0.5em;
	padding: 0 0.15em;
	color: #fff;
	line-height: 1.15;
	text-indent: 0;
	text-align: center;
}
.program_list dt {
	float: left;
	width: 3.0em;
}
.program_list dt:after {
	content: "：";
}
.program_list dd {
	display: block;
	padding-left: 9em;
	text-indent: -6em;
}
.program_list dd .prg_name {
	text-indent: 0;
	display: inline-table;
	width: 5em;
}
.prg_time {
	text-align: right;
}
.prg_time {
	padding-top: 5px;
	text-align: right;
	color: #555;
}
.prg_sponsor {
	margin-top: 10px;
	text-align: right;
}
/* Flyer Style */
section .prg_flyer {
	float: right;
	margin-left: 1em;
	overflow: hidden;
}
section .prg_flyer img {
	width: 100px;
	float: right;
}
section .prg_flyer a:hover img {
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	opacity: 0.60;
	transition: 0.2s;
}
section .prg_flyer a:not(:first-of-type) {
	display: none;
}
/* Irregular Option */
section h3 + .prg_time {
	margin-top: -20px;
}
section h4.prg {
	font-size: 1.8rem;
	/*padding-right: 4em;*/
	margin: 1em 0 0.5em;
}
section h4.prg .prg_icon {
	position: absolute;
	bottom: 8px;
	right: 5px;
	padding: 0.15em;
	color: #fff;
	font-size: 0.7em;
	font-weight: normal;
	border-radius: 2px;
}
section .program_list h4 {
	margin: 0.5em 0 0.5em;
	border-bottom: 1px dotted #ddd;
}
.program_list h4 + .prg_title {
	margin-top: 0;
}
section h3 + h4.prg  {
	margin-top: 0em;
}
/*----------------------------------------------------
	public-lecture
----------------------------------------------------*/
.public_flex {
    display: flex;
    justify-content: flex-start;
    
}
.public_flex img {
    width: 150px;
    margin: 20px 20px 0;
}
.border {
        border: 1px solid #B7B7B7;
}
/*----------------------------------------------------
	box_attention
----------------------------------------------------*/
.box_attention {
	max-width: 100%;
	margin: 0 auto;
	padding: 1em;
	line-height: 1.6;
	border: 5px solid #e0363c;
    text-align: left;
}
.box_attention_home {
    max-width: 100%;
    margin: 0 auto;
	padding: 1em;
	line-height: 1.6;
	border: 5px solid #102AC1;
    text-align: left;
}
/*----------------------------------------------------
	0.0 - Text Setting
----------------------------------------------------*/
.red_del{
    text-decoration-line: line-through;
    text-decoration-style: solid;
    text-decoration-color: red;
}
.sans {
	font-family: 'Noto Sans JP', sans-serif;
}
.serif {
	font-family: 'Noto Serif JP', serif;
}
.break {
	word-break: break-all;
}
.txC {
	text-align: center;
}
.txL {
	text-align: left;
}
.txR {
	text-align: right;
}
.txMd {
	vertical-align: middle;
}
.txUl {
	text-decoration: underline;
}
.tx32 {
	font-size: 32px;
	font-size: 3.2rem;
}
.tx24 {
	font-size: 24px;
	font-size: 2.4rem;
}
.tx20 {
	font-size: 20px;
	font-size: 2.0rem;
}
.tx18 {
	font-size: 18px;
	font-size: 1.8rem;
}
.tx17 {
	font-size: 17px;
	font-size: 1.7rem;
}
.tx14 {
	font-size: 14px;
	font-size: 1.4rem;
}
.lh18 {
	line-height: 1.8;
}
.lh14 {
	line-height: 1.4;
}
.lh12 {
	line-height: 1.2;
}
.lh10 {
	line-height: 1.0;
}
.txRed {
	color: #d01a1a;
}
.txBlack {
	color: #222222;
}
.txGray {
	color: #999;
}
.tx_space01 {
    letter-spacing: 0.1rem;
}
.tx_space02 {
    letter-spacing: 0.2rem;
}
.tx_space03 {
    letter-spacing: 0.3rem;
}
.tx_space04 {
    letter-spacing: 0.4rem;
}
.tx_space05 {
    letter-spacing: 0.5rem;
}