@charset "utf-8";
/* CSS Document */

:root {
    --font-size-050: 8px;			/* 50% */
    --font-size-070: 11.2px;		/* 70% */
    --font-size-075: 12px;			/* 75% */
    --font-size-080: 12.8px;		/* 80% */
    --font-size-090: 14.4px;		/* 90% */
    --font-size-100: 16px;			/* 100% */
    --font-size-110: 17.6px;		/* 110% */
    --font-size-120: 19.2px;		/* 120% */
    --font-size-130: 20.8px;		/* 130% */
    --font-size-150: 24px;			/* 150% */
    --font-size-180: 29px;			/* 180% */
    --font-size-200: 32px;			/* 200% */
    --font-size-250: 40px;			/* 250% */
    --color-normal: #003a00;
    --color-link: #1e1eff;
    --color-white: #eeeeee;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--font-size-100);
    letter-spacing: 0.0em;
    line-height: 150%;
    margin: 0;
    color: var(--color-normal);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;       /* これを入れないとchromeで右にわずかに余白が入る */
    background: url(../img/blackback.png);
    background-position: top left;
    background-repeat: repeat;
    background-size: auto;
}

img {
    outline: none;
    border-style: none;
}

a {
    color: var(--color-normal);
    text-decoration: none;
}

a:visited {
    color: var(--color-normal);
}

a:hover {
    color: orange;
    text-decoration: underline solid orange;
}

p {
    letter-spacing: 0.0em;
    line-height: 150%;
    font-size: var(--font-size-100);
}

ul li {
	margin-left: 1.5em;
}

hr.space-1em {
    height: 1em;
    margin: 0;
    background-color: transparent;
    border: none;
}

hr.space-2em {
    height: 2em;
    margin: 0;
    background-color: transparent;
    border: none;
}

hr.space-100px {
    height: 100px;
    margin: 0;
    background-color: transparent;
    border: none;
}

div.inner {
    margin: 47px 94px 47px 94px;
    width: Calc(100% - 188px);
    background: url(../img/whiteback.png);
    background-position: top left;
    background-repeat: repeat;
    background-size: auto;
}

/* 20.09.02 */
div.inner div.image-area-main {
    width: 100%;
    height: 60vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    background: url(../img/20200702.jpg);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: 100%;
}

div.inner div.image-area {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    background-color: blue;
}

/********** HEADER **********/

header {
    max-height: 100%;   /* これを入れないとAndroid chromeで文字が大きくなる、再描画で行間が変わる、ことがある */
    width: 100%;
    height: 60px;
    padding: 0px 10px 0px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    flex-wrap: nowrap;
}

header img.image-left {
    height: 32px;
    margin: 0;
}

header a.image-left {
    width: calc(100% - 4em);
}

header a.lang-right {
    width: 4em;
    padding-right: 4px;
    text-align: right;
    font-size: var(--font-size-090);
    color: var(--color-white);
}

/* 20.09.02 ここから */
header p.title {
	font-weight: bold;
	padding: 0 0 0.2em 0.3em;
	font-size: var(--font-size-200);
	color: var(--color-white);
	width: 100%;
}

header table {
	font-weight: bold;
	font-size: var(--font-size-090);
	color: var(--color-white);
	width: 15em;
	border-collapse: collapse;
	border-spacing: 0px;
	border: 0;
}

header table a {
    color: var(--color-white);
    text-decoration: none;
}

header table a:visited {
    color: var(--color-white);
}

header table a:hover {
    color: orange;
    text-decoration: underline solid orange;
}

/********** NAV **********/

nav {
    max-height: 100%;   /* これを入れないとAndroid chromeで文字が大きくなる、再描画で行間が変わる、ことがある */
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding-bottom: 1px;
    background-color: rgba(247, 247, 247, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul {
    width: auto;
    margin: 0;
}

nav ul li.wide-nav {
    width: 10em;
    min-width: 8em;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 2px;
    margin-right: 2px;
    font-size: var(--font-size-090);
    letter-spacing: 0px;
    font-weight: normal;
    line-height: 200%;
    cursor: pointer;
    text-align: center;
    float: left;
    list-style-type: none;
    border: 1px solid transparent;
}

nav ul li {
    width: 8em;
    min-width: 8em;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 2px;
    margin-right: 2px;
    font-size: var(--font-size-090);
    letter-spacing: 0px;
    font-weight: normal;
    line-height: 200%;
    cursor: pointer;
    text-align: center;
    float: left;
    list-style-type: none;
    border: 1px solid transparent;
}

/********** SECTION **********/

/* 20.09.02 */
p.blanding {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: var(--font-size-200);
    color: var(--color-white);
    margin-top: 3.5vw;
    margin-left: 3.5vw;
}

p.blanding a {
    color: var(--color-white);
    text-decoration: none;
}

p.blanding a:visited {
    color: var(--color-white);
    text-decoration: none;
}

p.blanding a:hover {
    color: var(--color-white);
    text-decoration: none;
}

div.article-group {
    width: 100%;
    margin: none;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

/* 20.09.02 */
/********** INPUT FORM **********/

article.main-article form.input-form {
    margin: 1em 0 1em 0;
}

form.input-form h3 {
    font-size: var(--font-size-110);
    font-weight: bold;
    margin: 0 0 0 0;
}

form.input-form table {
    width: 100%;
    margin: 0.5em 0 0.5em 0;
    border-collapse: collapse;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #c2c2c2;
}

form.input-form table th {
    max-width: 8em;
    padding: 8px;
    text-align: left;
    font-size: var(--font-size-120);
    /* background-color: #FFFFAA; */
    background: linear-gradient(135deg, #DDE2FF, #D1D7FF);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #c2c2c2;
}

form.input-form table td {
    padding: 8px;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #c2c2c2;
}

form.input-form button {
    line-height: 1.7em;
    margin: 0;
    padding: 0em 0.5em 0em 0.5em;
    text-align: center;
    border: 1px solid #c2c2c2;
    background: linear-gradient(180deg, #E5BB00, #F9CC00, #E5BB00);
}

button.button-3em {
    min-width: 3em;
}

button.button-8em {
    font-size: var(--font-size-120);
    min-width: 8em;
}

form.input-form input[type="text"] {
    font-size: var(--font-size-100);
    height: 100%;
    border: 1px solid #c2c2c2;
    text-align: left;
    padding: 0 0 0 0.2em;
}

form.input-form input[type="text"][disabled] {
    background: lightgray;
}

form.input-form select[disabled] {
    background: lightgray;
    color: gray;
}

form.input-form button[disabled] {
    background: lightgray;
    color: gray;
}

input.stext-full {
    width: 100%;
}

input.stext-3_5em {
    width: 3.5em;
}

input.stext-7em {
    width: 7em;
}

select.select-12em {
    width: 12em;
}

select.select-14em {
    width: 14em;
}

p.padding-top-0_4em {
    padding-top: 0.4em;
}

/* エラーメッセージ用 */

p.error-message {
    text-align: left;
    font-size: var(--font-size-100);
    font-weight: bold;
    color: red;
}

/********** MAIN ARTICLE **********/

/* 20.09.02 */
div.article-group article.main-article {
    width: 100%;
    margin: 0;
    padding: 40px 0px 40px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

/* 20.09.02 */
div.article-group article.for-main {
    width: 72%;
}

article.main-article div.right-to-left {
    width: 90%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: flex-start;	/* 上揃え */
    justify-content: space-between;	/* 均等配置 */
    align-content: flex-start;    /* 折り返し分もすべて上寄せ */
    background-color: transparent;
}

article.main-article div.left-to-right {
    width: 90%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;	/* 上揃え */
    justify-content: space-between;	/* 均等配置 */
    align-content: flex-start;    /* 折り返し分もすべて上寄せ */
    background-color: transparent;
}

div.right-to-left img {
    width: 100%;
    padding: 0;
    margin: 0;
}

div.left-to-right img {
    width: 100%;
    padding: 0;
    margin: 0;
}

div.img20 div.image-box {
    width: 22%;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.txt80 div.text-box {
    width: 74%;
    font-size: var(--font-size-150);
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.img40 div.image-box {
    width: 42%;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.txt60 div.text-box {
    width: 54%;
    font-size: var(--font-size-150);
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.img50 div.image-box {
    width: 48%;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.img50 div.video-box {
    position: relative;
    width: 48%;
    height: 0;
    padding-top: 27%;
    margin: 0;
}

div.img100 div.image-box {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.txt50 div.text-box {
    width: 48%;
    font-size: var(--font-size-150);
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.txt100 div.text-box {
    width: 100%;
    font-size: var(--font-size-150);
    padding: 0;
    margin: 0;
    background-color: transparent;
}

div.text-box p {
    font-size: var(--font-size-120);
}

div.text-box h3 {
    font-size: var(--font-size-180);
    margin: 0 0 0.5em 0;
}

div.text-box h4 {
    font-size: var(--font-size-150);
    margin: 0 0 0.5em 0;
}

div.text-box ul {
    font-size: var(--font-size-120);
    line-height: 150%;
}

/* 20.09.03 */
div.text-box ol {
    margin: 0 0 0 2em;
    list-style-type: decimal;
    font-size: var(--font-size-120);
    line-height: 150%;
}

div.text-box ol li {
    display: list-item;
    font-size: var(--font-size-120);
    line-height: 150%;
}

/* 20.09.02 ここから */
div.text-box ol.docs li {
    display: list-item;
    font-size: var(--font-size-120);
    line-height: 150%;
    padding: 0.5em 0 0.5em 0;
}

/* 20.09.03 */
ol.docs table {
    margin: 0;
}

/* 20.09.03 */
ol.docs table th {
    padding: 0.1em 2em 0.1em 2em;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #c2c2c2;
}

/* 20.09.03 */
ol.docs table td {
    padding: 0.1em 2em 0.1em 2em;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #c2c2c2;
}

/* 20.09.03 */
div.text-box pre {
    border-width : 1px;
    border-color : silver;
    border-style : solid;
    white-space : pre-wrap;
    line-height : 125%;
    margin : 0.5em 0 0.5em 0;
    padding: 0em 1em 0em 1em;
}

/* 20.09.03 */
div.text-box table.docs {
    margin: 0;
}

/* 20.09.03 */
div.text-box table.docs tr {
    font-size: var(--font-size-110);
}

/* 20.09.03 */
div.text-box table.docs th {
    padding: 0.5em 2em 0.5em 2em;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #c2c2c2;
}

/* 20.09.03 */
div.text-box table.docs td {
    padding: 0.5em 2em 0.5em 2em;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #c2c2c2;
}

div.text-box dl {
    margin: 0;
    padding: 0;
}

div.text-box dl dt {
    float: left;
    margin: 0;
    text-align: left;
    line-height: 150%;
    font-size: var(--font-size-100);
    font-weight: normal;
}

div.text-box dl dd {
    margin: 0;
    text-align: left;
    line-height: 150%;
    font-size: var(--font-size-100);
    font-weight: normal;
}

div.text-box dl.dl-4em-normal dt {
    font-size: var(--font-size-120);
    line-height: 150%;
    font-weight: normal !important;
    padding: 0.5em 0 0 0 !important;
    width: 7em !important;
}

div.text-box dl.dl-4em-normal dd {
    font-size: var(--font-size-120);
    line-height: 150%;
    padding: 0.5em 0 0 7em !important;
}

div.text-box table {
    margin: 0;
}

div.text-box summary {
    font-size: var(--font-size-150);
    font-weight: bold;
    margin: 0 0 0.5em 0;
}

div.text-box td {
    padding: 1em 1em 1em 1em;
}

/********** NEWS **********/

div.article-group article.sub-article {
    width: 28%;
    padding: 60px 0px 60px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

article.sub-article div.news {
    width: 80%;
    margin: 0;
    background-color: #F5F5F5;
}

div.news a {
    color: var(--color-link);
    text-decoration: none;
}

div.news a:visited {
    color: var(--color-link);
}

div.news a:hover {
    color: orange;
    text-decoration: underline solid orange;
}

div.news h3 {
    color: white;
    text-align: left;
    font-size: var(--font-size-090);
    font-weight: bold;
    padding-top: 2px;
    padding-right: 0px;
    padding-bottom: 2px;
    padding-left: 0px;
    text-align: center;
    background: linear-gradient(180deg, #6FBAC4, #7FD6E0, #6FBAC4);
}

div.news p {
    font-size: var(--font-size-075);
    font-weight: normal;
    margin-bottom: 0px;
    padding: 5px 7px 5px 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e2e2e2;
}

div.news img {
    width: 100%;
}

div.news span.date {
    color: #00A000;
}

div.news span.important {
    color: red;
    font-weight: bold;
    font-size: 120%;
}

/* 20.09.02 */
/********** NEWSROOM **********/

div.newsroom
{
    width: 90%;
    text-align: left;
}
div.newsroom h3
{
    font-size: var(--font-size-200);
}

div.newsroom p
{
    font-size: var(--font-size-150);
}

div.newsroom p span.date
{
    display:block;
    color: #00A000;
    margin: 40px 0 0 0;
}

div.newsroom p span.important
{
    color: red;
    font-weight: bold;
    font-size: 120%;
}

div.newsroom a {
    color: var(--color-link);
    text-decoration: none;
}

div.newsroom a:visited {
    color: var(--color-link);
}

div.newsroom a:hover {
    color: orange;
    text-decoration: underline solid orange;
}

/********** FOOTER **********/

footer {
    max-height: 100%;   /* これを入れないとAndroid chromeで文字が大きくなる、再描画で行間が変わる、ことがある */
    width: 100%;
    background-color: black;
    font-size: var(--font-size-080);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 0 30px 0;
}

footer div.footer-group {
    width: 60%;
    padding: 0 10px 0 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

footer p.privacy {
    width: auto;
    font-size: var(--font-size-100);
    text-align: left;
    color: white;
    padding: 0 0 0 20px;
}

p.privacy a {
    color: white;
}

p.privacy a:visited {
    color: white;
}

p.privacy a:hover {
    color: orange;
    text-decoration: underline solid orange;
}

footer p.copyright {
    width: 40%;
    font-size: var(--font-size-050);
    margin: 0 40px 0 0;
    text-align: right;
    color: white;
    letter-spacing: 0.1em;
}