/* IMPORT RESET */
@import url("reset.css");
/* IMPORT 12 COLUMN RESPONSIVE GS */
@import url("responsive.gs.12col.css");

body{
  color:#222;
  background:#fff;
  font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ ProW3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MSPGothic",sans-serif;
}
::placeholder {
  color: rgba(166,128,128,1.0);
}
select::-ms-expand {display: none;}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 8.0em;
    margin-left: 0em;
    margin-bottom: 0.8em;
    padding: 0.1em 0.5em 0.1em 1.0em;
    font-size: 1.1em;
    line-height: 1.4em;
    border-radius: 3px;
    border: none;
/*
    background-image: url(../images/icon_down_arrow.svg);
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    background-position: right 0px center;
*/
    background-color: rgba(218, 218, 255, 0.2);
}

.in-sel {
  color: #222;
  text-align: left;
  font-size:1.12em;
  letter-spacing: 0.05em;
  height: 1.6em;
}

select.sel-short{
  /* color:#222; */
  background: transparent;
  padding: 5px;
  font-size: 1.1em;
  line-height: 1.35;
  border: 2px solid #ccc;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  height: 2.0em;
  -webkit-appearance: none;
}

/* body以下のヘッダー */
.header {
  width:100%;
  font-size:110%;
  border: none;
  padding: 0;
}

.header h1 {
  font-size:320%;
  letter-spacing: 0.1em;
}
#header1 {
    position: fixed;
    height: 100px;
    width:99%;
    z-index: 999; /*最前面へ*/
}
.fix-search {
    display: block;
    position: fixed;
    top: 5px;
    background:#FDFDFF;
    z-index: 1000; /*最前面へ*/
}

/*　下に下がる動き　*/
#header1.UpMove{
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/
#header1.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#banner {
  position:relative;
  color:#666;
  background-color:rgba(235, 246, 246, 0.9);
  text-align: center;
/*  background: rgba(235, 246, 246, 0.9); */
  padding: 0.5em;
  height: 96px;
}

#logo_in_banner{
  width:99%:
  text-align:center;
}
#logo_in_banner a{
  text-decoration:none;
}
#banner_logo_img {
    width: 400px;
}

#banner_notice {
  position: absolute;
  top: 70px;
  right: 0.8rem;
  height: auto;
  text-align: right;
  font-size: 0.88em;
  letter-spacing: 0.05em;
  color: #666;
}
#banner_notice a{
  color: #666;
}

.t-nav {
  padding: 0.6em 0.6em 0.6em 0.6em;
  font-size: 0.8em;
  letter-spacing: 0.07em;
  padding-left: 0.6em;
}
.t-nav ul{
   text-align: center;
}
.t-nav ul li{
   display: inline;
}
.t-nav ul li i{
  font-size: 1.1em;
}
/*
.t-nav span:not(:last-child) {
  padding-right: 1.3em;
}
*/
.t-nav ul li:not(:last-child):after {
  content: "　　";
}
.t-nav span:last-child {
  padding-right: 0;
}

#t_navbar_x {
/*  background-color: #E9E9FF; */
  background: #f6f9fc;
  border: solid 1px rgba(235, 246, 246, 0.9);
  position: relative;
  height: 32px;
}

/* ********* main ********** */

p{
  line-height:1.7;
}

main {
  margin-bottom:15px;
}

.gutters {
  padding:0px;
  margin-top:1.2em;
  margin-bottom:0.2em;
}

.err {
  color: #FF0000;
  margin-bottom: 0em;
  padding: 0em 0.3em 0em 0.3em;
  text-align: left;
  font-size: 0.8em;
  letter-spacing: 0.08em;
}

div.page-msg {
  color: blue;
    padding: 0.6em 0.6em 0.6em 0.6em;
    text-align: center;
    font-size: 0.9em;
  letter-spacing: 0.05em;
}

.down {
    padding-top: 0.6em;
}

/* ボタン */
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.button,
.btn {
  border: solid 1px rgba(128, 128, 128, 0.25);
  color: #222;
  background-color: #f0f3f3;
  display: inline-block;
  margin-top:0.2em;
  padding: 0.25em 0.25em;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  /*ボックスシャドウ*/
  box-shadow: 2px 2px 4px #A0A0A0;
  -webkit-box-shadow: 2px 2px 4px #A0A0A0;
  -moz-box-shadow: 2px 2px 4px #A0A0A0;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:hover,
.btn:hover {
  color: #333;
}

button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active,
.btn:active {
    color: #000;
  font-weight: normal;
  /*ボックスシャドウ*/
  box-shadow: 1px 1px 1px #D0D0D0;
  -webkit-box-shadow: 1px 1px 1px #D0D0D0;
  -moz-box-shadow: 1px 1px 1px #D0D0D0;
}

.btn-thin {
  margin: 0 auto;
    color: #F8F8F8;
    background-color: rgba(52, 86, 252, 0.8);
  padding: 0.3em 0.9em 0.2em 0.9em;
    white-space: nowrap;
  font-size: 0.9em;
  letter-spacing: 0.2em;
  line-height: 1.1em;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 1px 1px 2px 1px #999;
  -moz-box-shadow: 1px 1px 2px 1px #999;
  -webkit-box-shadow: 1px 1px 2px 1px #999;
}

.btn-thin:hover {
    color: #333;
  /*ボックスシャドウ*/
  box-shadow: 1px 1px 1px #111;
  -webkit-box-shadow: 1px 1px 1px #111;
  -moz-box-shadow: 1px 1px 1px #111;
}

.btn-thin:active {
    color: #ddd;
  /*ボックスシャドウ*/
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.btn-blue {
    /* background-color: #1010C0; */
    /* background-color: #1080B0; */
    background-color: #1020B8;
}
.dues {
  padding: 0.5em 0.6em;
}
.btn-small {
    width: 5.5em;
    background-color: #5050B8;
}
.centerbox {
  width: 100%;              /* 幅指定は必須 */
  margin-left: auto;
  margin-right: auto;
}
.center-in {
  width: 80%;              /* 幅指定は必須 */
  margin-left: auto;
  margin-right: auto;
}
.tiny-box {
    width: auto;
    color: #f0f0f0;
    background-color: #4036D0;
}
.tiny-box:hover {
    color: #333;
}

group + group {
  margin-top: 20px;
}

.inline-radio {
  display: flex;
  overflow: hidden;
  border: none;

  span {
    display: inline-block;
    position: relative;
    flex: 1;
  }

  input {
    width: 100%;
    height: 60px;
    opacity: 0;
  }

  label {
    position: absolute;
    top: 0; left: 0;
    color: #b6b6b6;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  span:last-child label {
    border-right: 0;
  }

  input:checked + label {
    background: #d81b60;
    font-weight: 500;
    color: #fff;
  }
}

/* タブ */
#tabcontrol a {
  display: inline-block;            /* インラインブロック化 */
  margin-bottom: 0;
  padding: 0.75em 1em;              /* 内側の余白 */
  text-decoration: none;            /* リンクの下線を消す */
  color: #555;                      /* 文字色：黒色 */
  border-width: 1px 1px 0px 1px;            /* 下以外の枠線を引く */
  border-style: solid;                      /* 枠線の種類：実線 */
  border-color: rgba(230, 225, 245, 0.5);  /* 枠線の色：薄色 */
  background-color: white;          /* 背景色：白色 */
  font-weight: bold;                /* 太字 */
  position: relative;               /* JavaScriptでz-indexを調整するために必要 */
}
/* タブにマウスポインタが載った際 */
#tabcontrol a:hover {
}
#tabbody {
  margin-top: 0em;      /* 上側にあるタブと重ねるために「0」を指定 */
}
#tabbody div {
  padding: 1em;            /* 内側の余白量 */
  background-color: white; /* 背景色：白色 */
  position: relative;      /* z-indexを調整するために必要 */
  z-index: 0;              /* 重なり順序を「最も背面」にするため */
}
/* タブと中身の配色 */
#tabcontrol a:nth-child(1) {
  background-color: rgba(200, 225, 235, 0.22);
  border-style: solid;                      /* 枠線の種類：実線 */
  border-width: 1px 1px 0px 1px;            /* 下以外の枠線を引く */
  border-color: rgba(200, 225, 235, 0.3);  /* 枠線の色：薄色 */
}
#tabbody div:nth-child(1) {
  background-color: rgba(200, 225, 235, 0.22);
  border-style: solid;                      /* 枠線の種類：実線 */
  border-width: 0px 1px 1px 1px;            /* 上以外の枠線を引く */
  border-color: rgba(200, 225, 235, 0.3);  /* 枠線の色：薄色 */
}
#tabcontrol a:nth-child(2) {
  background-color: rgba(255, 255, 195, 0.25);
  border-style: solid;                      /* 枠線の種類：実線 */
  border-width: 1px 1px 0px 1px;            /* 下以外の枠線を引く */
  border-color: rgba(230, 225, 245, 0.35);  /* 枠線の色：薄色 */
}
#tabbody div:nth-child(2) {
  background-color: rgba(255, 255, 195, 0.25);
  border-style: solid;                      /* 枠線の種類：実線 */
  border-width: 0px 1px 1px 1px;            /* 上以外の枠線を引く */
  border-color: rgba(230, 225, 245, 0.35);  /* 枠線の色：薄色 */
}
#tabcontrol a:nth-child(3) {
  background-color: rgba(188, 235, 235, 0.12);
  border-style: solid;                      /* 枠線の種類：実線 */
  border-width: 1px 1px 0px 1px;            /* 下以外の枠線を引く */
  border-color: rgba(230, 225, 245, 0.35);  /* 枠線の色：薄色 */
}
#tabbody div:nth-child(3) {
  background-color: rgba(188, 235, 235, 0.12);
  border-style: solid;                      /* 枠線の種類：実線 */
  border-width: 0px 1px 1px 1px;            /* 上以外の枠線を引く */
  border-color: rgba(230, 225, 245, 0.35);  /* 枠線の色：薄色 */
  height: 23.1em;
}
#tabcontrol a {
  /* 枠線の左上角と右上角だけを丸く */
  border-radius: 18px 18px 0px 0px;
  -webkit-border-radius: 18px 18px 0px 0px;
  -moz-border-radius: 18px 18px 0px 0px;
}
.tack-area {
  padding: 0.2em 0.1em 0.1em 0.5em;
  box-shadow: 0 0 3px #aaa, 0 0 2px #bbb inset; /* 上 右 下 左 */
}
.box-dl {
 position: relative;
 white-space: break-spaces;
 margin: 0.5em 0em;
 padding: 0.6em 0.5em 0.9em 0.3em;
 width: auto;
 min-height: 2.0em;
 background: #fafafa; /* ボックス背景色 */
 font-weight: normal; /* テキスト太字 */
 color: #555; /* 文章色 */
 border: 1px solid #e7d3fc; /* 枠線 */
 border-radius: 2px; /* 角の丸み */
 box-shadow: 0 0 3px #888, 0 0 2px #999 inset;
}
.title-dl {
 position: absolute;
 padding: .1em .5em;
 left: 1em;
 top: .5em;
 font-weight: bold;
 font-size: 1.1em; /* 文字サイズ */
 color: #06f; /* タイトル文字色 */
 background-color: #ffffff; /* ボックス背景色 */
 box-shadow: 1px 1px 3px #a0a0a0;
}

table.listtable {
  border-collapse: collapse;
  table-layout: fixed;
  margin-left: 0.15em;
    border: solid 1px;
  border-color: rgba(128, 128, 128, 0.20);
  line-height: 1.1em;
}

table.listtable th {
  white-space: nowrap;
  padding: 0.2em 0.5em;
  background: rgba(240, 240, 240, 0.75);
  font-size: 0.86em;
  height: 2.0em;
}

table.listtable tr {
  border-top: solid 1px rgba(128, 128, 128, 0.20);
}

table.listtable tr td {
  font-size: 0.8em;
  padding-top: 0.3em;
  padding-right: 0.3em;
  padding-bottom: 0.3em;
  padding-left: 0.3em;
  border-right: solid 1px rgba(128, 128, 128, 0.20);
}

table.listtable tr td a {
  margin-top: 0.2em;
  padding: 0.1em;
    text-decoration: none;
  font-size: 1.4em;
  color: #103080;
  vertical-align: middle;
  background: rgba(10, 148, 255, 0.1);
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.20);
    border-style: solid solid solid solid;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
table.listtable tr td a:hover {
  background: rgba(10, 148, 255, 0.25);
}

table.listtable tr td.fold{
  word-wrap: break-word;
}
table.listtable tr th {
  border: solid 1px rgba(96, 96, 96, 0.20);
}
table.listtable tr:nth-child(2n) {
   background: rgba(0, 150, 140, 0.025);
}

table.rectable {
  border-collapse: collapse;
  margin-left: 0.15em;
  border: solid 1px;
  border-color: rgba(128, 128, 128, 0.20);
  line-height: 1.1em;
}
table.rectable th {
  white-space: nowrap;
  padding: 0.2em 0.5em;
  background: rgba(240, 240, 240, 0.75);
  font-size: 0.86em;
  height: 2.0em;
}
table.rectable tr {
  border-top: solid 1px rgba(128, 128, 128, 0.20);
}
table.rectable tr td {
  font-size: 0.8em;
  padding-top: 0.3em;
  padding-right: 0.3em;
  padding-bottom: 0.3em;
  padding-left: 0.3em;
  border-right: solid 1px rgba(128, 128, 128, 0.20);
}
table.rectable tr td a {
  margin-top: 0.2em;
  padding: 0.1em;
    text-decoration: none;
  font-size: 0.9rem;
  color: #103080;
  vertical-align: middle;
  background: rgba(200, 198, 25, 0.12);
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.20);
    border-style: solid solid solid solid;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
table.rectable tr td a:hover {
  background: rgba(200, 198, 25, 0.25);
}
table.rectable tr td.fold{
  word-wrap: break-word;
}
table.rectable tr th {
  border: solid 1px rgba(96, 96, 96, 0.20);
}
table.rectable tr:nth-child(2n) {
   background: rgba(0, 150, 140, 0.025);
}

.unfold{
  white-space: nowrap;
}

table.parttable th, table.parttable td {
  border: solid 1px rgba(96, 96, 96, 0.20);
  padding: 0.3em 0.5em;
  font-size: 0.85em;
  line-height: 1.0em;
  text-align: left;
}
table.parttable th {
  font-size: 0.8em;
  font-weight: bold;
  color: #555;
  background-color: rgba(196, 196, 196, 0.20);
}
a.withblue {
  margin-top: 0.2em;
  padding: 0.1em;
    text-decoration: none;
  font-size: 1.4em;
  color: #103080;
  vertical-align: middle;
  background: rgba(10, 148, 255, 0.1);
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.20);
    border-style: solid solid solid solid;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
a.withblue:hover {
  background: rgba(10, 148, 255, 0.25);
}

.datelink{
  white-space: nowrap;
}
div.in-division{
  padding: 0;
  /* border: solid 1px rgba(256, 96, 96, 0.20); */
  dislay:inline;
}
div.in-division span.in-cell{
  display: inline-block;
  margin: 0.2em 2.2em 1.6em 0em;
  padding: 7px 7px 5px 9px;
  font-size:0.8em;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 125, 0.5);
  /* min-height */
  min-height:2.2em;
  height: auto !important;
  /* min-width */
  min-width:8.0em;
  width: auto !important;
  border: none;
}
div.in-division span.inner-cell{
  display: inline-block;
  margin: 3px;
  padding: 8px;
  font-size:0.8em;
  letter-spacing: 0.06em;
  background: rgba(238, 238, 240, 1.0);
  /* min-height */
  min-height:80px;
  height: auto !important;
  height: 80px;
  /* min-width */
  min-width:146px;
  width: auto !important;
  min-width:146px;
  border: solid 1px rgba(32, 96, 96, 0.80);
  /*角丸*/
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  /*ボックスシャドウ*/
  box-shadow: 5px 5px 10px #aaa;
  -webkit-box-shadow: 5px 5px 10px #aaa;
  -moz-box-shadow: 5px 5px 10px #aaa;
}
div.in-division span.inner-cell:hover a{
  color:#333;
  font-weight:bold;
}
div.in-division span.inner-cell:hover{
  background: rgba(255, 240, 0, 0.9);
}
div.in-division span.inner-cell a{
    text-decoration: none;
  font-size:13px;
  letter-spacing: 1px;
  color: rgba(32, 32, 32, 1.0);;
}
div.in-division span.inner-cell a:hover{
  color: #333;
  font-weight:bold;
}
div.in-division span.inner-cell:active{
  color:#000;
  box-shadow: 1px 1px 1px #aaa;
  -webkit-box-shadow: 1px 1px 1px #aaa;
  -moz-box-shadow: 1px 1px 1px #aaa;
}
div.in-division span.inner-cell:active a{
  color:#000;
  font-weight:normal;
}

.explain-blue {
  margin-top: -0.3em;
  margin-left: 0;
  padding: 0 0 0 0.3em;
  color: white;
  font-size:0.8em;
    background-color: #1020B8;
}

/*
div.in-division span.in-cell:nth-of-type(2n)::after{
  content:"\A";
  white-space:pre;
}
*/
/* 非使用のアンカーリンク ＝ spanにthispageが付いているときのaタグなど */
a.not_in_use {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/* field */
fieldset {
  border-width: 2px;
  border-color: rgba(128, 128, 128, 0.20);
}
legend {
    text-align: center;
  padding: 4px 20px;
  background: rgba(248, 248, 248, 0.75);
    border-width: 2px;
    border-color: rgba(128, 128, 128, 0.20);
    border-style: solid solid solid solid;
}

pre, code, .mono {
 /* font-family: Consolas, 'Courier New', Courier, Monaco, monospace; */
  line-height: 1.2em;
}

form {
  margin: 0px;
  padding: 0px;
  font-size:1.0em;
  letter-spacing: 0.06em;
}

label {
  font-size:0.80em;
  font-weight:bold;
}

input {
  font-size:1.0em;
  width:100%;
}

input[type="checkbox"] {
    display: inline;
    padding: 0.15em 0.35em;
    text-decoration: none;
  font-size: 2.2em;
  min-width: 18px;
  min-height: 18px;
}

input[type="text"] {
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
    padding: 0.1em 0.15em;
  font-size: 1.0em;
  letter-spacing: 0.06em;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

textarea {
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  margin: 0.3em 0 1.3em;
    padding: 0.2em 0.2em;
  font-size: 0.86em;
  letter-spacing: 0.06em;
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.30);
    border-style: solid solid solid solid;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.input_note {
  color:#00C;
  font-size:0.75em;
}

.nofold {
  white-space: nowrap;
}

ul.inp{
  padding: 0px;
}
ul.inp li{
  display: inline-block;
  border: none;
  padding: 0px;
  background: rgba(255, 255, 255, 0.0);
  min-width: 260px;
  text-align: left;
}

ul.std-ul{
  padding-left: 1.0em;
}
ul.std-ul li{
  list-style: disc;
  margin-left: 1.5em;
  border: none;
  padding: 0.35em;
  text-align: left;
}

/* メニューアイテムでこのページ自体を指すリンクをわかりやすく示す */
#t_navbar .thispage {
    background: rgba(16, 22, 252, 0.7);
}
.wrapper {
    float: left;
    margin: 0;
    width: 100%;
/*  margin-right: -260px; */
}

.content {
    height: 95%;
  display: block;
}

.content_main {
    width: auto;
    position: relative;
    border: none;
}

.inner{
  margin: 0 auto;
  min-width: 250px;
/*  color: #686868; */
}

.medium-inner{
  width: 95%;
  display: inline-block;
  margin: 0.75em 0.85em 0.55em 0.85em;
  font-size:0.9em;
  letter-spacing: 0.03em;
  min-width: 251px;
}

.small-inner{
 /* font-family: "メイリオ",Meiryo,Osaka," ヒラギノ角ゴ ProW3","Hiragino Kaku Gothic Pro"," ＭＳ Ｐゴシック","MSPGothic",sans-serif; */
  font-size:1.15em;
  letter-spacing: 0.06em;
  padding:0.5em 0 0.2em 0;
  width: 20%;
  margin: 0 auto;
  max-width: 250px;
  min-width: 120px;
}

small{
  font-size:0.8em;
  letter-spacing: 0.02em;
}

.l_sidebar {
    float: left;
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.15);
    border-style: none solid none solid;
    height: 560px;
    width: 250px;
  min-width: 165px;
}
.r_sidebar {
    float: right;
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.15);
    border-style: none solid none solid;
    height: 560px;
    width: 250px;
  min-width: 190px;
}
/* アンカーリンク */
a {
    color: #222;
    text-decoration: none;
  display: inline-block;
}

a.ud-line {
  text-decoration:underline;
}

a.curr {
  font-weight:bold;
  padding: 2px 3px 2px 4px;
  background: rgba(255, 255, 255, 1.0);
}

a:visited {
    color: #222;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

#pagination {
  margin-top: 0.8em;
  font-size: 0.9em;
}
#pagination strong {
  color : #F01616;
  margin-left: 0.6em;
  padding: 0.2em 0.3em;
  background: rgba(10, 180, 190, 0.2);
}
#pagination a {
  margin-left: 0.6em;
  padding: 0em 0.3em;
  background: rgba(10, 180, 190, 0.08);
}
.unknown-sizpag {
  color : #333;
  padding: 0.3em 0.3em 0.2em 0.2em;
  background: rgba(180, 180, 180, 0.1);
}
.a5-240 {
  color : #333;
  padding: 0.3em 0.3em 0.2em 0.2em;
  background: rgba(255, 120, 53, 0.1);
}
.a5-480 {
  color : #333;
  padding: 0.3em 0.3em 0.2em 0.2em;
  background: rgba(156, 230, 105, 0.15);
}
.b6-240 {
  color : #383838;
  padding: 0.3em 0.3em 0.2em 0.2em;
  background: rgba(205, 12, 195, 0.1);
}
.b6-480 {
  color : #333;
  padding: 0.3em 0.3em 0.2em 0.2em;
  background: rgba(16, 120, 245, 0.08);
}

#dtl{
    display:none;
    position:absolute;
    background-color: #fff;
}
#dtl dl{
    width:100%;
    height:100%;
    margin:0;
}
#dtl dl dt{
    margin: 0;
    padding: 0;
    height:2.8em;
    line-height:2.8em;
    color:#222;
    font-weight:bold;
    cursor:move;
}
#dtl dl dd{
    margin: -1em 0 0 0;
    padding: 1.0em;
    line-height:1.5;
    text-indent:1em;
}
.memo-text{
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size:0.7em;letter-spacing:0;line-height:1.2em;color:#22e;
}
.memo-date{
    color:#22e;
}

/*===============================
contents
===============================*/
.box {
  margin: 0em;
  padding: 0em;
  position:relative;
  word-wrap:break-word;
}

.box:after {
  display: block;
  clear: both;
  height: 0;
  content:"";
}
.in-sel {
  color: #222;
  margin: 0.2em 0.2em;
  padding: 0.1em 0.1em 0.1em 0.1em;
  text-align: left;
  font-size:1.12em;
  letter-spacing: 0.03em;
  line-height: 1.20em;
}

h1{
  font-size:1.1em;
  font-weight:bold;
  letter-spacing: 0.1em;
  margin-bottom:0.3em;
  padding-left:0px;
  /* color:#C63; */
 /* color: rgba(16, 46, 228, 0.6); */
 /* color:#c30; */
  color:#1030C0;
  line-height:1.25em;
}

.box h2{
  font-size:1.35em;
  background:#EFEFEF;
  border-left:10px solid #20A0A0;
  border-right:10px solid #20A0A0;
  padding:5px 10px;
  margin-left:0;
  margin-bottom:20px;
  line-height:1.3;
}

.box h3{
  font-size:0.95em;
  margin-top:-0.8em;
  margin-bottom:1.2em;
  padding: 0em;
  line-height:1.1em;
  font-weight:bold;
  color:#1030C0;
}
.setting > h3{
  margin-top: 0.8em;
  margin-bottom: 0.5em;
  color:#00C;
}
/*
.setting > h3:first-child{
  margin-top: 0.3em;
}
*/

.box h4{
  margin-top:1.0em;
  color:#333;
}

.box h5{
  margin: 0.5em 0.25em 0.5em 1.25em;
  font-size:0.85em;
  letter-spacing: 0.08em;
  font-weight:bold;
  line-height: 1.0em;
}

h1.belt {
  color:#222;
  background:#F0F0F0;
  text-align:left;
  padding-top:0.08em;
  text-decoration:none;
  font-size:1.15em;
  line-height: 1.40em;
  border:1px solid #E0E0E0;
}

.title-belt {
  color:#FFFFFF;
  background:#000000;
  text-align:left;
  padding-top:0.1em;
  padding-bottom:0.02em;
  text-decoration:none;
  font-size:0.98em;
  line-height: 1.35em;
  border: none;
}

.box p{
  font-size:0.95em;
  margin-bottom:10px;
}
.paramount {
  width: 96%;
  margin: 0 auto;
  padding-left: 0.3em;
  border: none;
  color: #222;
  font-size:0.95em;
  font-weight:bold;
  letter-spacing: 0.1em;
  line-height:1.5em;
}
.paramount2 {
  width: 100%;
  margin: 0 auto;
  padding-left: 0em;
  border: none;
  color: #282828;
  font-size:0.7em;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height:1.5em;
}
.paramount3 {
  border: none;
  color: #222;
  font-size:0.85em;
  font-weight:normal;
  letter-spacing: 0.1em;
}
.paramount4 {
  border: none;
  color: #111;
  font-size:0.9em;
  font-weight:normal;
  letter-spacing: 0.06em;
}

.span-med{
  display: inline;
  font-size:1.15em;
  margin-top:0.6em;
  margin-bottom:1.2em;
  padding-left:1.2em;
  line-height:1.2em;
  color:#00C;
  /* color:#1010F0; */
}

span.normal-title,
p.normal-title {
  margin:0.3em 0.1em 0.3em 0.1em;
  color: #000000;
  font-weight:bold;
}

span.normal-title2,
p.normal-title2 {
  margin:0.3em 0.1em 0.3em 0.1em;
  color: #222;
  font-weight:bold;
}


.inbox {
  width: 98%;
  margin-top: 1.0em;
  margin-bottom: 0.8em;
  padding: 0.3em 0.8em 0.8em 0.8em;
  line-height: 1.3em;
  border: solid 1px;
  border-color: rgba(128, 128, 128, 0.12);
}

.inbox-nobo {
  width: 98%;
  margin: 0 auto;
  margin-bottom: 0.8em;
  padding: 0;
  line-height: 1.6em;
  border: none;
}

.inbox-notice {
  width: 100%;
  padding: 0.5em 0.3em 0.3em 0.3em;
  font-size:1.38em;
  letter-spacing: 0.08em;
  font-weight:bold;
  line-height: 1.4em;
  background: rgba(248, 248, 108, 0.3);
  border-bottom: dotted;
}

div.in-submenu {
  display: block;
}

span.in-submenu-link {
  display: inline-block;
  text-align: center;
  width: 9.6em;
  margin-top: 0.6em;
  margin-bottom: 0.2em;
  padding: 0.8em 0.6em;
  line-height: 1.20em;
  color: #000000;
  background-color: rgba(246, 246, 32, 0.5);
  border: none;
  text-decoration:none;
  /*角丸*/
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  /*ボックスシャドウ*/
  box-shadow: 4px 4px 6px #aaa;
  -webkit-box-shadow: 4px 4px 6px #aaa;
  -moz-box-shadow: 4px 4px 6px #aaa;
/*
  background:#f6f9f9;
  background-color: #dfe8b1;
  border: none;
  text-decoration:none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  box-shadow: 5px 5px 10px #aaa;
  -webkit-box-shadow: 5px 5px 10px #aaa;
  -moz-box-shadow: 5px 5px 10px #aaa;
*/
}

span.in-submenu-link a{
  text-align:center;
  text-decoration:none;
}


span.in-submenu-link:hover{
  font-weight:bold;
  text-decoration:none;
}

span.in-submenu-link:active{
/*  background:#eff3eb; */
  font-weight:normal;
  text-decoration:none;
  /*ボックスシャドウ*/
  box-shadow: 1px 1px 2px #aaa;
  -webkit-box-shadow: 1px 1px 2px #aaa;
  -moz-box-shadow: 1px 1px 2px #aaa;
}
/* 20220609 */
.go-link {
  white-space: nowrap;
  text-align: center;
  margin-top: 0.3em;
  margin-bottom: 0.2em;
  padding: 0.2em 0.3em;
  line-height: 1.3em;
  color: #222;
  border: dotted;
  text-decoration:none;
  /*角丸*/
  border-radius: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  /*ボックスシャドウ*/
  box-shadow: 3px 3px 5px #aaa;
  -webkit-box-shadow: 3px 3px 5px #aaa;
  -moz-box-shadow: 3px 3px 5px #aaa;
}
.go-link:hover{
  color: #22d;
  text-decoration:none;
}
.go-link:active{
  font-weight:normal;
  text-decoration:none;
  /*ボックスシャドウ*/
  box-shadow: 1px 1px 2px #aaa;
  -webkit-box-shadow: 1px 1px 2px #aaa;
  -moz-box-shadow: 1px 1px 2px #aaa;
}

div.next-btns {
  display: block;
  text-align: center;
  width: 99%;
}

.box label {
  margin-right: 0.5em;
  width: inherit;
}

.box input[type="checkbox"] {
  display: table-cell;
  left: 1.0em;
  text-align: left;
  vertical-align: middle;
}

span.chk-area {
  display: inline;
 /* word-wrap: break-word; */
  word-break: break-all;
  /* font-family: "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif; */
  text-align: left;
  font-size:1.0em;
  margin-top: 0.1em;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.5em;
  padding: 0 0.4em 0.8em 0;
  line-height: 1.54em;
  color: brown;
  border: none;
  text-decoration:none;
}
.chk-form {
 /*
  margin-top: -0.3em;
  margin-left: -0.3em;
  margin-bottom: 0;
*/
  width: 0.85em;
  height: 0.85em;
  background: rgba(223, 223, 223, 0.05);
}
div.chk-title {
  display: block;
 /* word-wrap: break-word; */
  word-break: break-all;
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: left;
  font-size:0.92em;
  margin-top: 0.5em;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.1em;
  padding: 0.7em 0.1em 0.7em 0.5em;
  line-height: 1.05em;
  color: black;
  text-decoration:none;
  border: solid 2px rgba(64, 64, 64, 0.2);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

#dlg {
  display:none;
}
div.dialog-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(223, 223, 223, 0.05);
}
div.dialog-content {
  position: absolute;
/*  font-family: "メイリオ",Meiryo,Osaka," ヒラギノ角ゴ ProW3","Hiragino Kaku Gothic Pro"," ＭＳ Ｐゴシック","MSPGothic",sans-serif; */
  padding: 0 0 0.1em 0;
  color: #222;
  width: 270px;
  height: auto;
  background-color: #fff;
  text-align: center;
  border: solid 1px;
}
.dialog-title {
  color: #222;
  width: 100%;
  padding: 0.5em 0.3em 0.3em 0.3em;
  text-align: center;
  font-size:1.0em;
  letter-spacing: 0.08em;
  font-weight:bold;
  line-height: 1.1em;
  background: rgba(255, 240, 0, 0.7);
  border-bottom: dotted;
}
.dialog-msg {
  color: #111;
  padding: 0.9em 0.2em 0.5em 0.4em;
  text-align: left;
  font-size:0.8em;
  letter-spacing: 0.06em;
  line-height: 1.2em;
  background: #FFF;
}
.dlg-bottom-line {
  margin: 0.3em 0.5em 0 0.5em;
}
#dtl {
  display:none;
}
div.detail-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(223, 223, 223, 0.05);
}
div.detail-content {
  position: absolute;
/*  font-family: "メイリオ",Meiryo,Osaka," ヒラギノ角ゴ ProW3","Hiragino Kaku Gothic Pro"," ＭＳ Ｐゴシック","MSPGothic",sans-serif; */
  padding: 0 0 0.1em 0;
  color: #222;
  height: auto;
  background-color: #fff;
  text-align: center;
  border: solid 1px;
}
.detail-title {
  color: #555;
  width: 100%;
  padding: 0.5em 0.3em 0.3em 0.3em;
  text-align: center;
  font-size:0.9em;
  letter-spacing: 0.08em;
  font-weight:bold;
  line-height: 1.1em;
  background: rgba(192, 240, 156, 0.5);
  border-bottom: dotted;
}
.detail-msg {
  color: #111;
  padding: 0.9em 0.2em 0.5em 0.4em;
  text-align: left;
  font-size:0.8em;
  letter-spacing: 0.06em;
  line-height: 1.2em;
  background: #FFF;
}
.dtl-bottom-line {
  margin: 0.3em 0.5em 0 0.5em;
}
.dtl-memo {
}
.dtl-detail {
}

.inbox-confirm {
  font-size:0.84em;
  color: #222;
  margin:0 auto;
  padding: 0.6em 0 0.1em 0;
}

/*===============================
リンクの装飾
===============================*/
/*コンテンツ内の通常リンク*/
button.go-anker,
a.go-anker{
    white-space: nowrap;
  color:#FFF;
    background-color: #00f;
  padding: 0.6em;
  letter-spacing: 0.18em;
  font-weight:bold;
  text-decoration:none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
a.go-anker:hover{
  font-weight:normal;
}
a.go-anker:active{
  font-weight: normal;
}
a.boxed{
  font-weight: bold;
}

.in-separator {
  color: #222;
  width: 100%;
  margin: 0.9em 0;
  padding: 0.4em 0.1em 0.1em;
  text-align: center;
  font-size:0.96em;
  letter-spacing: 0.08em;
  font-weight:bold;
  line-height: 1.0em;
  background: rgba(255, 240, 0, 0.7);
  border: none;
}

.in-txt {
    font-family: 'ＭＳ Ｐゴシック',Osaka,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,sans-serif;
  color: #222;
  margin: 0.5em 0.3em;
  padding: 0.1em 0.1em 0.1em 0.1em;
  text-align: left;
  font-size:17px;
  letter-spacing: 1px;
  line-height: 1.25em;
}

/*コンテンツ内のリンク*/
.box .cha {
  white-space: nowrap;
  color:#262626;
  background-color:rgba(235, 246, 246, 0.9);
  margin: 0.1em 0.3em 0.5em 0.1em;
  padding: 0.3em 0.3em 0.2em 0.5em;
  font-size: 1.1em;
  letter-spacing: 0.16em;
  text-decoration:none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.box .cha:hover{
  color:#333;
}
.box .ki {
  white-space: nowrap;
  color:#262626;
  background-color:rgba(255, 255, 6, 0.2);;
  margin: 0.1em 0.3em 0.5em 0.1em;
  padding: 0.3em 0.3em 0.2em 0.5em;
  font-size: 1.1em;
  letter-spacing: 0.16em;
  text-decoration:none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.box .ki:hover{
  background-color:rgba(238, 238, 6, 0.5);
}
.flexbox {
  display: flex;
  display: -ms-flexbox;
  margin: 3px 0px 2px 6px;
  padding: 3px;
  border: none;
  background-color: none;
  width: 99%;
  height: auto;
}
.flexes {
  margin-top: 0em;
  margin-bottom: 0.5em;
}
.flexes .cha {
/*  font-family:"Yu Gothic", "游ゴシック", YuGothic,"游ゴシック体","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,sans-serif; */
  font-size: 1.15em;
  padding: 0.5em;
}
span.ank-small a{
  font-size:0.8em;
}
.yel {
  background-color:rgba(245, 245, 6, 0.3);
}
.to-pagetop{
    position: fixed;
    right: 16px;
    bottom: 16px;
  font-size: 2.2em;
  background: rgba(192, 192, 192, 0.25);
  /*角丸*/
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  /*ボックスシャドウ*/
  box-shadow: 2px 2px 4px #aaa;
  -webkit-box-shadow: 2px 2px 4px #aaa;
  -moz-box-shadow: 2px 2px 4px #aaa;
  display: none;
}
.to-pagetop:hover{
  background: rgba(192, 192, 192, 0.35);
  /*ボックスシャドウ*/
  box-shadow: 1px 1px 1px #aaa;
  -webkit-box-shadow: 1px 1px 1px #aaa;
  -moz-box-shadow: 1px 1px 1px #aaa;
  display: none;
}
.move-pagetop
{
    color: #3030F0;
    -webkit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    transition:all 0.4s;
}

/* ファイルアップロード画面 */
#inputFile {
    position: relative;
    padding: 5px 0 0px;
    text-align: center;
}

#uploadfile {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 300px;
    height: 40px;
    opacity: 0;
    text-align:center;
}

#inputFileWrap {
    position: relative;
    top: 0.5em;
    display: inline-block;
    text-align:center;
}

#btnInputFile,
#btnChangeFile {
    display: table;
    width: 300px;
    text-align:center;
}

#btnChangeFile {
    display: none;
}


#btnInputFile span,
#btnChangeFile span {
    position: relative;
    z-index: 2;
    display: table-cell;
    width: 300px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #33a;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    vertical-align: middle;
    text-align:center;
}

#upFileWrap.selected #btnInputFile {
    display: none;
}

#upFileWrap.selected #btnChangeFile {
    display: table;
}

/*===============================
写真の装飾
===============================*/
/* シャドウを使った写真の装飾 */
/* .box img{
  background:#fff;
  padding:5px;
  box-shadow:0 1px 3px #aaa;
  -webkit-box-shadow:0 1px 3px #aaa;
  -moz-box-shadow:0 1px 3px #aaa;
  behavior: url(PIE.htc);
}
*/
#guide_bar {
  float: right;
  position:relative;
  margin: 0;
  width: 170px;
  height: 27px;
  padding: 0 0 0 0;
  top: -0.5em;
  border: none;
}

.alignleft {
  display: block;
  float: left;
  margin-right: 15px;
  margin-bottom:1em;
}
.aligncenter {
  display: block;
  margin:0 auto;
}
.alignright {
  display: block;
  float: right;
  margin-left: 15px;
  margin-bottom:1em;
}

/*================================
詳細ボタン用
================================*/
p.more{
  margin:40px 150px 10px;
  letter-spacing: 0.16em;
}

p.more a{
  position:relative;
  display:block;
  padding:5px 15px 5px;
  color:#fff;
  text-align:center;
  text-decoration:none;
  background:#244386;
  border:1px solid #e8e8e8;
  /*角丸*/
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  /*ボックスシャドウ*/
  box-shadow: 2px 2px 4px #aaa;
  -webkit-box-shadow: 2px 2px 4px #aaa;
  -moz-box-shadow: 2px 2px 4px #aaa;
  /*グラデーション*/
  background:#cc0000;
  background: -webkit-gradient(#cc0000, #EF6767);
  background: -moz-linear-gradient(#cc0000, #EF6767);
  background: linear-gradient(#cc0000, #EF6767);
  -pie-background: linear-gradient(#cc0000, #EF6767);
  behavior: url(PIE.htc);
}

p.more a:hover{
  background:#cc0000;
  color:#FF0;
  background: -webkit-gradient(#cc0000, #EF6767);
  background: -moz-linear-gradient(#EF6767,#cc0000);
  background: linear-gradient(#EF6767,#cc0000);
  -pie-background: linear-gradient(#EF6767,#cc0000);
  behavior: url(PIE.htc);
  text-decoration:none;
}

p.btn-x{
  margin:40px 150px 10px;
  letter-spacing: 0.16em;
}

/*================================
SIDEBARの装飾
================================*/
#l_sidebar{
}

#left_container{
  display: none;
  margin-top:2.0em;
  color: #333;
  border: dotted 2px;
  border-color: rgba(128, 128, 128, 0.3);
  background:#fff url(../images/bg2.png);
}

#left_navigation{
  display: none;
  margin-top:0.7em;
  margin-bottom:0.3em;
}

#left_navigation ul li{
  display: none;
  font-size:0.95em;
  line-height:2.0em;
  letter-spacing: 0.03em;
}

#h_sidebar{
  display: none;
}

#sidebar{
  font-size:0.84em;
  margin-top:15px;
}

.sideinfo {
  background:#fff;
  /* border:1px solid #999; */
  border:none;
  padding:10px;
  margin-bottom:25px;
}

.sideinfo h4,
.ad h4{
  font-size:1.6em;
  border-bottom:2px solid #999;
  margin-bottom:15px;
}

.sideinfo h5{
  font-weight:bold;
  font-size:1.2em;
}

.newentry img{
  float:left;
  margin:0 7px 5px 0;
  border:1px solid #999;
  padding:3px;
}

.newentry dd{
  margin-top:10px;
}

.newentry h5 a{
  color:#069;
  text-decoration:none;
}

.newentry h5 a:hover{
  color:#c00;
}

.newentry p{
  margin-bottom:15px;
}

.icon-file-text-alt{
  font-size:1.1em;
  margin:0 5px 0;
}

/* 左からスライドして表示される領域 */
#sub_container {
  position: fixed;
  left: -260px;
  top: 0;
  z-index: 500;
  width: 260px;
  height: 90%;
  font-size:0.6em;
  line-height: 1.0em;
  letter-spacing: 0.06em;
  background-color: rgba(248, 248, 248, 0.9);
  -webkit-transition: left 0.4s ease-in-out;
  transition: left 0.4s ease-in-out;
  behavior: url(PIE.htc);
}
#sub_container.appeared {
  left: 0;
}

/* ナビゲーション */
#main_navigation {
  display: none;  /* 2022-03-11 */
  position: relative;
  top: 3.2em;
}
#main_navigation li {
  padding-top: 1px;
  margin-bottom: 1px;
}
#main_navigation a {
  display: block;
  padding: 1.5em;
  overflow: hidden;
  color: #666666;
  border-left: 0.5em solid #ddd;
}
#main_navigation .separate a {
  padding-top: 2em;
  padding-bottom: 2em;
}
#main_navigation i {
  display: inline-block;
  width: 18%;
  vertical-align: middle;
  font-size: 2.5em;
  line-height: 1;
  color: inherit;
}
#main_navigation span {
  display: inline-block;
  font-size: 1.6em;
  line-height: 1;
  vertical-align: middle;
  width: 70%;
  color: inherit;
}
#main_navigation a,
#main_navigation a:hover i,
#main_navigation a:hover span {
  font-weight:bold;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.t_navbar, .left_bookmark {
  padding-left: 0.3em;
}

#main_navigation ul li a {
  padding-left: 0.8em;
}

#main_navigation  ul li a:hover {
  /* Bookmarkの色 */
  color: #333;
  border-color: #FFB050;
  background-color: rgba(255, 248, 0, 0.5);
  font-weight:bold;
}

#main_navigation .main_navigation_trigger {
  /* ナビゲーションを表示・非表示させるボタン */
  position: absolute;
  top: 0;
  right: -4em;
  width: 4em;
  border-radius: 0 8px 8px 0;
  background-color: rgba(248, 248, 248, 0.9);
  behavior: url(PIE.htc);
}
#main_navigation .main_navigation_trigger a {
  border: none;
  padding: 1em 1em 0.75em 0.75em;
  cursor: pointer;
}
#main_navigation .main_navigation_trigger i {
  width: auto;
}

.short-note{
  width: 30.2em;
  display: block;
  font-size:0.86em;
}

div.explain{
  margin-top: -0.3em;
  margin-left: 0.3em;
  font-size:0.86em;
}

a.mini-anker {
    text-decoration: none;
  font-size: 1.3em;
    padding:0 2px;
  color: #E03070;
  vertical-align: middle;
  background: rgba(250, 248, 248, 0.75);
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.20);
    border-style: solid solid solid solid;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
a.mini-anker:hover {
  color: #FF0040;
  background: #FFFFFF;
}

label.num-rad-lav {
  display: inline;
}

label img.num-rad {
  margin: 2px;
  padding: 3px;
}

img.num-rad {
  opacity: 0.65;
  width: 3.2em;
  height: 3.2em;
}

span.num-rad-row {
  display: table-row;
  vertical-align: middle;
  top: -20px;
  width: 98%;
  max-width: 98%;
}

span.num-rad-str {
  display: table-cell;
  vertical-align: middle;
  padding-left: 3px;
  width: 98%;
  max-width: 98%;
}

.selection-group input[type="radio"] {
  display: none;
}

.selection-group input[type="radio"]:checked + label img {
  background-color: orange;
  transition: background-color 0.65s linear;
}

.selection-group input[type="radio"] + label img:hover {
  opacity: 1.0;
}

.back-lightblue {
  background: rgba(230, 245, 250, 0.15);
}
.back-pink {
  background-color: rgba(246, 32, 0, 0.1);
}
.back-yellow {
  background: rgba(250, 250, 30, 0.15);
}
.box-in {
  background-color: rgba(246, 232, 255, 0.1);
  border: 1px solid rgba(206, 232, 200, 0.1);
}
/*================================
FOOTER
================================*/
#footer_container{
  font-family: Arial,"Helvetica Neue","Yu Gothic UI","Hiragino Sans","Hiragino Kaku Gothic ProN",Osaka,"Meiryo UI","MS PGothic",sans-serif !Important;
  width: 100%;
  margin-top:20px;
  color:#666;
  background-color:rgba(235, 246, 246, 0.9);
  text-align: center;
/*  background: #b0c0a0; */
}

#footer_container p{
    text-align:center;
    color:#666;
    padding:10px 0;
}

.footer {
    clear: both;
    border: 1px solid #303030;
}

#to_mail {
  width: 85%;
  max-width: 85%;
}
#to_name {
  width: 85%;
  max-width: 85%;
}
#m_title {
  width: 85%;
  max-width: 85%;
}

#folding_index_01::before {
  content: '';
    white-space: nowrap;
}

/* 画面幅別の対応 */
@media (min-width: 1080px) {
    #sub_container {
        display: none;
    }
}

@media (max-width: 1079px) {

    #l_sidebar {
        display: none;
    }
    #sub_container {
        display: block;
    }
  #guide_bar {
    width: 250px;
    top: -1.2em;
  }

}

@media (max-width: 770px) {

  /*コンテンツ領域のサイドの余白の設定*/
  .span_8,
  .span_4{
    padding-left:10px;
    padding-right:10px;
  }

  /* サイトロゴを左に (右の#banner_noticeと被らないように) */
  #banner {
    text-align:left;
  }

  #banner h1 {
    font-size: 3em;
  }

  /* サイトロゴ画像部分 */
  #logo_in_banner {
    margin-left:2.6em;
  }

  .box h1{
    font-size:1.1em;
  }

  #guide_bar {
    width: 220px;
    top: -1.7em;
  }

  .paramount {
    padding: 0 1.2em;
    border: none;
    font-size:0.9em;
    letter-spacing: 0.02em;
  }

  .paramount2 {
    font-size:0.9em;
  }

  .paramount3 {
    font-size:0.82em;
  }

  .inner small{
    font-size:0.8em;
  }

  .to-pagetop{
    right: 12px;
    bottom: 12px;
    font-size: 1.9em;
  }

  .short-note{
    width: 29.2em;
    display: block;
    font-size:0.76em;
  }

  /*詳細ボタンのサイズ設定*/
  p.more{
    margin:20px 20px 0;
  }

  p.more a{
    padding:10px 0;
    font-size:1.3em;
  }

  p.btn-x{
    margin:20px 20px 0;
    padding:10px 0;
    font-size:1.3em;
  }

    #l_sidebar {
        display: none;
    }
    .l_sidebar {
        display: none;
    }
    .omit {
        display: none;
    }

    .wrapper, .content, .content_main, .r_sidebar {
        float: none;
        margin: 0;
        width: auto;
    }

  .medium-inner{
    font-size:0.35em;
  }

  .inbox-notice {
    font-size:3.4em;
  }

  .medium-inner .err {
    font-size:3.4em;
  }
}

@media (max-width: 680px) {

  #banner_logo_img {
    width: 320px;
  }

  #folding_index_01::before {
    content: '\A';
    white-space: pre;
  }

  .box h4{
    margin-top:0.6em;
  }

  .flexes {
    margin-top: 0.2em;
    margin-bottom: 1.0em;
  }

  .paramount{
    padding: 0 1.0em;
    font-size:0.85em;
  }
  .paramount2{
    padding: 0 1.0em;
  }
  .paramount3{
    padding: 0 1.0em;
  }
  .paramount4 {
    font-size:0.95em;
    letter-spacing: 0.03em;
  }

  #img_step1 {
    width: 350px;
  }

  #img_step2 {
    width: 350px;
  }

  #guide_bar {
    width: 190px;
    top: -2.9em;
  }

  #to_mail {
    width: 85%;
    max-width: 85%;
  }
  #to_name {
    width: 85%;
    max-width: 85%;
  }
  #m_title {
    width: 90%;
    max-width: 90%;
  }

  .inbox-nobo {
    width: 98%;
    margin: 0 auto;
  }

  .medium-inner{
    font-size:0.3em;
  }

  .inbox-confirm {
    font-size:0.76em;
  }

  .inbox-notice {
    font-size:3.4em;
  }

  .medium-inner .err {
    font-size:3.4em;
  }
}

@media (max-width: 410px) {

  #banner_logo_img {
    width: 280px;
  }
  #banner_notice {
    position: relative;
    top: auto;
/*    padding-top: 1.2em; */
  }
  #guide_bar {
    width: 160px;
    top: -2.9em;
  }

  .to-pagetop{
    right: 10px;
    bottom: 10px;
    font-size: 1.6em;
  }

  .sidebar-beta {
    display: none;
  }

  #img_step1 {
    width: 330px;
  }

  #img_step2 {
    width: 330px;
  }

  .short-note {
    font-size:0.67em;
    letter-spacing: 0.02em;
  }
  span.in-submenu-link {
    font-size:0.78em;
    letter-spacing: 0.02em;
    width: 9.0em;
    margin-top: 0.4em;
    margin-bottom: 0.2em;
    padding: 0.8em 0.6em;
    line-height: 1.10em;
  }
  .explain-blue {
    font-size:0.7em;
  }
  div.chk-title {
    font-size:0.85em;
  }
  span.chk-area {
    display: inline;
    white-space:wrap;
    font-size:0.96em;
  }

  .inbox-confirm {
    font-size:0.72em;
  }

  #footer_container{
    margin-top:10px;
    font-size:0.78em;
    letter-spacing: 0.02em;
  }

  .inbox-notice {
    font-size:3.1em;
  }

  .medium-inner .err {
    font-size:3.3em;
  }
}

@media (max-width: 375px) {

  #guide_bar {
    width: 140px;
    top: -2.9em;
  }
  #img_step1 {
    width: 288px;
  }

  #img_step2 {
    width: 288px;
  }

  .short-note {
    font-size:0.6em;
    letter-spacing: 0.02em;
  }
  span.in-submenu-link {
    font-size:0.7em;
    letter-spacing: 0.02em;
    width: 8.8em;
    margin-top: 0.4em;
    margin-bottom: 0.2em;
    padding: 0.8em 0.6em;
    line-height: 1.0em;
  }
  .explain-blue {
    font-size:0.6em;
  }

  .medium-inner{
    font-size:0.28em;
  }

}

@media (max-width: 350px) {

  .medium-inner{
    font-size:0.22em;
  }

  .inbox-confirm {
    font-size:0.62em;
  }

}
