@charset "UTF-8";
@import url(font-awesome.min.css);
/*@mixin tabletL {
  //タブレット横の場合
  @media only screen and (max-width: $bpTabletL) {
	  @content;
  }
}*/
/* Reset
------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

address,
em {
  font-style: normal; }

strong,
th {
  font-weight: normal; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }
  table.-radiolist {
    width: auto; }
    table.-radiolist,
    table.-radiolist thead, table.-radiolist tbody, table.-radiolist tfoot,
    table.-radiolist tr {
      display: block; }
    table.-radiolist {
      margin-bottom: -16px; }
    table.-radiolist th, table.-radiolist td {
      display: inline-block; }
    table.-radiolist td {
      padding-bottom: 16px; }
      table.-radiolist td:not(:last-child) {
        padding-right: 20px; }

th {
  text-align: left; }

hr,
legend {
  display: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal; }

img,
fieldset {
  border: 0; }

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto; }

li {
  list-style-type: none; }

input[type="submit"], button, label, select {
  cursor: pointer; }

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden; }

* {
  box-sizing: border-box; }

*:before,
*:after {
  box-sizing: border-box; }

/* link
------------------------------------------------------------*/
a {
  color: #333;
  text-decoration: none; }
  a:hover {
    text-decoration: underline;
    color: #333; }

button:hover {
  opacity: 0.8; }

/* Fonts
------------------------------------------------------------*/
html {
  font-size: 62.5%; }

/* 10px base */
body {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word; }

body > div, input, button, textarea, select {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
  line-height: 1.5;
  color: #333;
  font-weight: 400; }

/* form
------------------------------------------------------------*/
select {
  width: 100%; }

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
select {
  padding: 7px;
  border-radius: 5px;
  border: solid 1px #aaa; }
  @media only screen and (max-width: 600px) {
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="email"],
    select {
      padding: 10px; } }

select {
  padding: 10px; }
  @media only screen and (max-width: 600px) {
    select {
      padding: 13px; } }

input::-webkit-input-placeholder {
  color: #BBB; }

input:-moz-placeholder {
  color: #BBB; }

input::-moz-placeholder {
  color: #BBB; }

input:-ms-input-placeholder {
  color: #BBB; }

textarea.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
select.error {
  background-color: #fff2f2;
  border: solid 2px #ff0000; }

/* radio
-------------*/
input[type="radio"] {
  display: none; }

input[type="radio"] + label {
  background-color: #fff;
  border: 2px solid #edeff0;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  padding: 7px 17px 7px 41px;
  cursor: pointer;
  max-width: 100%;
  width: 220px; }

input[type="radio"] + label::before,
input[type="radio"] + label::after {
  content: '';
  top: 50%;
  position: absolute;
  border-radius: 100%;
  transition: all .2s; }

input[type="radio"] + label::before {
  width: 16px;
  height: 16px;
  margin-top: -9px;
  left: 10px;
  background: #EEE;
  border: 1px solid #ccc; }

input[type="radio"].error + label::before {
  border-color: #ff0000;
  background-color: #fff2f2; }

input[type="radio"] + label:hover::before {
  background: #FEFEFE; }

input[type="radio"] + label::after {
  opacity: 0;
  left: 13px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: #1255a3;
  transform: scale(0.5); }

input[type="radio"]:checked + label {
  border-color: #1255a3;
  color: #1255a3;
  font-weight: bold; }

input[type="radio"]:checked + label::before {
  background: #fff;
  border: 1px solid #1255a3; }

input[type="radio"]:checked + label::after {
  opacity: 1;
  transform: scale(1); }

/* checkbox
-------------*/
input[type="checkbox"] {
  display: none; }

input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  padding: 3px 10px 3px 22px;
  cursor: pointer;
  transition: all .2s; }

input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
  position: absolute;
  content: ''; }

input[type="checkbox"] + label::before {
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px; }

input[type="checkbox"] + label::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid #1255a3;
  border-bottom: 2px solid #1255a3;
  transform: rotate(-45deg) scale(0.5); }

input[type="checkbox"] + label:hover::before {
  background: #fff; }

input[type="checkbox"]:checked + label::before {
  background: #fff;
  border: 1px solid #1255a3; }

input[type="checkbox"]:checked + label::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1); }

/* layout */
body {
  background: #f6f6f6;
  font-family: "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif; }
  body#login {
    background: #7ab3d5; }

#wrapper {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden; }

#header {
  width: 205px;
  background: #1255a3;
  position: fixed;
  height: 100%;
  z-index: 200; }
  @media only screen and (max-width: 992px) {
    #header {
      width: 100%;
      background: #1255a3;
      height: 60px; } }
  #header .logo {
    text-align: center; }
    @media only screen and (max-width: 992px) {
      #header .logo {
        text-align: left; } }
    #header .logo img {
      width: 150px;
      margin: 30px 0 0 0; }
      @media only screen and (max-width: 992px) {
        #header .logo img {
          width: 18vw;
          margin: 12px; } }
      @media only screen and (max-width: 600px) {
        #header .logo img {
          width: 32vw; } }
  #header .logoText {
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    padding-top: 8px;
    letter-spacing: 0.05em; }
    @media only screen and (max-width: 992px) {
      #header .logoText {
        font-size: 14px;
        font-size: 1.4rem;
        position: absolute;
        left: 160px;
        top: 11px; } }
    @media only screen and (max-width: 600px) {
      #header .logoText {
        left: 37vw; } }
  #header .btnMenuSp {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer; }
    @media only screen and (max-width: 992px) {
      #header .btnMenuSp {
        display: block; } }
    #header .btnMenuSp .open,
    #header .btnMenuSp .close {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto; }
      #header .btnMenuSp .open:after,
      #header .btnMenuSp .close:after {
        font-size: 24px;
        font-size: 2.4rem;
        font-family: FontAwesome;
        line-height: 1;
        width: 1em;
        height: 30px;
        line-height: 30px;
        position: absolute;
        top: 8px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
        color: #fff; }
      #header .btnMenuSp .open span,
      #header .btnMenuSp .close span {
        position: absolute;
        bottom: 7px;
        left: 0;
        width: 100%;
        text-align: center;
        font-size: 10px;
        font-size: 1rem;
        color: #fff;
        line-height: 1.5; }
    #header .btnMenuSp .open {
      display: block; }
      #header .btnMenuSp .open:after {
        content: ""; }
    #header .btnMenuSp .close {
      display: none; }
      #header .btnMenuSp .close:after {
        content: ""; }
    #header .btnMenuSp.select .open {
      display: none; }
    #header .btnMenuSp.select .close {
      display: block; }
  @media only screen and (max-width: 992px) {
    #header #gNav {
      display: none;
      position: absolute;
      background: #1255a3;
      width: 100vw;
      top: 60px; } }
  #header #gNav ul {
    color: white;
    list-style: none;
    margin-top: 40px;
    padding: 0 0 0 25px; }
    @media only screen and (max-width: 992px) {
      #header #gNav ul {
        margin-top: 0;
        padding: 0;
        border-top: 1px solid #f6f6f6; } }
    #header #gNav ul li {
      position: relative;
      display: table; }
      @media only screen and (max-width: 992px) {
        #header #gNav ul li {
          display: block; } }
      #header #gNav ul li a {
        display: table-cell;
        width: 180px;
        height: 57px;
        box-sizing: border-box;
        padding: 0 20px 0 30px;
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        color: white;
        text-decoration: none;
        line-height: 1.3;
        vertical-align: middle; }
        @media only screen and (max-width: 992px) {
          #header #gNav ul li a {
            display: block;
            padding: 20px 30px;
            width: 100%;
            text-align: center; } }
        #header #gNav ul li a:hover {
          background: #176dd1; }
    #header #gNav ul li.on:before {
      content: "";
      width: 4px;
      height: 36px;
      background: #1255a3;
      position: absolute;
      top: 50%;
      left: 10px;
      margin-top: -18px;
      z-index: 1; }
    #header #gNav ul li.on a {
      background: #f6f6f6;
      cursor: default;
      color: #333;
      z-index: 100; }
      #header #gNav ul li.on a:hover {
        background: #f6f6f6; }

#contents {
  padding-left: 205px;
  width: 100%;
  height: 100%;
  box-sizing: border-box; }
  @media only screen and (max-width: 992px) {
    #contents {
      padding-left: 0;
      position: static;
      padding-top: 60px; } }
  #contents .con-head {
    box-sizing: border-box;
    width: calc(100% - 205px);
    padding: 10px 0 10px 32px;
    background: #1255a3;
    color: #fff;
    position: fixed;
    height: 44px;
    z-index: 200; }
    @media only screen and (max-width: 992px) {
      #contents .con-head {
        display: none; } }
    #contents .con-head a {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      line-height: 44px;
      padding: 0 15px;
      font-size: 12px;
      font-size: 1.2rem;
      color: #fff;
      text-decoration: none;
      white-space: nowrap; }
      #contents .con-head a:hover {
        background: #176dd1; }
      #contents .con-head a img {
        padding: 11px 5px 11px 0;
        box-sizing: border-box; }
  #contents .con-body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 90px 50px 100px 50px; }
    @media only screen and (max-width: 992px) {
      #contents .con-body {
        padding: 30px; } }

.infoList {
  padding: 0;
  margin: 0; }
  .infoList li {
    list-style: none;
    border-bottom: 1px dotted #c5c5c5; }
    .infoList li a {
      color: #333;
      text-decoration: none;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      padding: 20px;
      background-color: #f6f6f6; }
      @media only screen and (max-width: 600px) {
        .infoList li a {
          display: block;
          padding: 15px 0; } }
      .infoList li a:hover {
        background-color: #fff; }
      .infoList li a .date {
        width: 6em;
        margin-right: 15px; }
        @media only screen and (max-width: 600px) {
          .infoList li a .date {
            display: inline;
            margin-right: 5px; } }
      .infoList li a .cat {
        width: 8em;
        display: block;
        text-align: center;
        font-size: 12px;
        font-size: 1.2rem;
        text-decoration: none;
        margin-right: 15px;
        padding: 2px 10px; }
        @media only screen and (max-width: 600px) {
          .infoList li a .cat {
            display: inline;
            font-size: 11px;
            font-size: 1.1rem;
            padding: 2px 5px; } }
        .infoList li a .cat.cat2 {
          color: #197916;
          border: 1px solid #197916; }
        .infoList li a .cat.cat3 {
          color: #ff0000;
          border: 1px solid #ff0000; }
      .infoList li a .title {
        width: calc(100% - 14em - 30px); }
        @media only screen and (max-width: 600px) {
          .infoList li a .title {
            width: 100%;
            margin-top: 12px; } }

.contactList {
  padding: 0;
  margin: 0;
  border: 1px solid #aaa; }
  @media only screen and (max-width: 600px) {
    .contactList {
      border: none; } }
  .contactList li {
    list-style: none;
    border-bottom: 1px dotted #c5c5c5;
    color: #333;
    text-decoration: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0 20px 20px;
    background-color: #f6f6f6; }
    @media only screen and (max-width: 600px) {
      .contactList li {
        display: block;
        padding: 15px 0 20px; } }
    .contactList li .cd {
      width: 7em;
      margin-right: 15px; }
    .contactList li .date {
      width: 7.2em;
      margin-right: 15px; }
      @media only screen and (max-width: 600px) {
        .contactList li .date {
          display: inline;
          margin-right: 5px; } }
    .contactList li .title {
      width: calc(100% - 20em); }
      @media only screen and (max-width: 600px) {
        .contactList li .title {
          width: 100%;
          margin-top: 10px; } }
    .contactList li:first-child {
      background: #e7ebf1;
      padding: 12px 10px 12px 20px;
      font-size: 1.6rem;
      font-weight: bold; }
      @media only screen and (max-width: 600px) {
        .contactList li:first-child {
          display: none; } }
      .contactList li:first-child .cd {
        width: 5.5em; }
      .contactList li:first-child .date {
        width: 6em; }
    .contactList li .modFormButton {
      width: 150px; }
      @media only screen and (max-width: 600px) {
        .contactList li .modFormButton {
          width: 100%;
          margin-top: 10px; }
          .contactList li .modFormButton a {
            display: block; } }

.faqList .question {
  cursor: pointer;
  font-size: 18px;
  font-size: 1.8rem;
  color: #1255a3;
  font-weight: bold;
  border-top: 1px dotted #c5c5c5;
  padding: 15px 20px 15px 70px;
  background-color: #dee4eb;
  position: relative;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 600px) {
    .faqList .question {
      display: block;
      font-size: 15px;
      font-size: 1.5rem;
      padding: 15px 15px 15px 60px; } }
  .faqList .question:hover {
    background: #eaf3fd; }
  .faqList .question:before {
    content: "Q";
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #1255a3;
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
    position: absolute;
    top: 11px;
    left: 40px; }
    @media only screen and (max-width: 600px) {
      .faqList .question:before {
        font-size: 20px;
        font-size: 2rem;
        left: 38px;
        top: 10px; } }
  .faqList .question:after {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 1px solid #1255a3;
    border-right: 1px solid #1255a3;
    transform: rotate(135deg);
    position: absolute;
    left: 17px;
    top: 20px; }
    @media only screen and (max-width: 600px) {
      .faqList .question:after {
        right: 20px;
        top: 16px; } }
  .faqList .question.active:after {
    transform: rotate(-45deg);
    left: 17px;
    top: 26px; }
    @media only screen and (max-width: 600px) {
      .faqList .question.active:after {
        top: 23px; } }

.faqList .answer {
  display: none;
  background-color: #fff;
  padding: 20px 20px 20px 70px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem; }
  @media only screen and (max-width: 600px) {
    .faqList .answer {
      font-size: 13px;
      font-size: 1.3rem;
      padding: 15px 15px 15px 60px; } }
  .faqList .answer:before {
    content: "A";
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fc0d1b;
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
    position: absolute;
    top: 16px;
    left: 42px; }
    @media only screen and (max-width: 600px) {
      .faqList .answer:before {
        font-size: 20px;
        font-size: 2rem;
        left: 40px;
        top: 10px; } }
  .faqList .answer:last-child {
    border-bottom: 1px dotted #c5c5c5; }
  .faqList .answer .image {
    margin-top: 15px; }

.commentList {
  background: #fff; }
  .commentList li {
    padding: 20px;
    border-bottom: 1px dotted #c5c5c5; }
    .commentList li:last-child {
      border-bottom: none; }
    .commentList li .top {
      margin-bottom: 10px; }
    .commentList li .dateTime,
    .commentList li .author {
      font-size: 13px;
      font-size: 1.3rem;
      color: #777; }
    .commentList li .dateTime {
      margin-right: 10px; }
    .commentList li .file {
      margin-top: 10px; }
      .commentList li .file a {
        text-decoration: underline;
        color: #1255a3; }

.pagination {
  margin: 30px 0;
  text-align: center; }
  .pagination li {
    display: inline-block;
    margin: 0 3px; }
    .pagination li a {
      color: #1255a3;
      display: inline-block;
      position: relative;
      width: 27px;
      height: 27px;
      text-decoration: none;
      line-height: 27px;
      border: 1px solid #1255a3; }
      .pagination li a:hover {
        background-color: #1255a3;
        color: #fff; }
  .pagination li.active a {
    background-color: #1255a3;
    color: #fff; }
  .pagination .prev a,
  .pagination .next a {
    text-indent: -9999px;
    border: none; }
    .pagination .prev a:after,
    .pagination .next a:after {
      font-family: FontAwesome;
      line-height: 1;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1em;
      margin: auto;
      text-indent: 0;
      font-size: 20px;
      font-size: 2rem;
      vertical-align: middle; }
  .pagination .prev a:after {
    content: ""; }
  .pagination .next a:after {
    content: ""; }

.compMsg {
  padding: 40px 80px; }
  @media only screen and (max-width: 992px) {
    .compMsg {
      padding: 0 0 40px; } }

/* CSS Document */
.container {
  max-width: 970px; }
  @media only screen and (min-width: 1200px) {
    .container {
      max-width: 800px; } }
  @media only screen and (max-width: 992px) {
    .container {
      max-width: 750px; } }

@media only screen and (max-width: 992px) {
  .modPcOnly {
    display: none; } }

.modSpOnly {
  display: none; }
  @media only screen and (max-width: 992px) {
    .modSpOnly {
      display: block; } }

/* modTitle
------------------------------------------------------------*/
.modTitleBlock {
  position: relative;
  margin-bottom: 20px; }
  .modTitleBlock .title {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 300;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede; }
    @media only screen and (max-width: 600px) {
      .modTitleBlock .title.type2 {
        padding-bottom: 60px; } }
  .modTitleBlock .catlist {
    position: absolute;
    right: 0;
    top: 0;
    margin: 6px 0; }
    @media only screen and (max-width: 600px) {
      .modTitleBlock .catlist {
        left: 0;
        top: 40px;
        display: -ms-flexbox;
        display: flex; } }
    .modTitleBlock .catlist li {
      display: inline; }
      @media only screen and (max-width: 600px) {
        .modTitleBlock .catlist li {
          width: 33.3%; } }
      .modTitleBlock .catlist li a {
        font-size: 12px;
        font-size: 1.2rem;
        text-decoration: none;
        margin-right: 5px;
        padding: 2px 10px; }
        @media only screen and (max-width: 600px) {
          .modTitleBlock .catlist li a {
            display: block;
            text-align: center;
            padding: 5px 5px;
            height: 30px; } }
        .modTitleBlock .catlist li a.cat1 {
          color: #1255a3;
          border: 1px solid #1255a3; }
          .modTitleBlock .catlist li a.cat1.on, .modTitleBlock .catlist li a.cat1:hover {
            background: #1255a3; }
        .modTitleBlock .catlist li a.cat2 {
          color: #197916;
          border: 1px solid #197916; }
          .modTitleBlock .catlist li a.cat2.on, .modTitleBlock .catlist li a.cat2:hover {
            background: #197916; }
        .modTitleBlock .catlist li a.cat3 {
          color: #ff0000;
          border: 1px solid #ff0000; }
          .modTitleBlock .catlist li a.cat3.on, .modTitleBlock .catlist li a.cat3:hover {
            background: #ff0000; }
        .modTitleBlock .catlist li a.cat4, .modTitleBlock .catlist li a.cat5 {
          color: #1255a3; }
          .modTitleBlock .catlist li a.cat4.on, .modTitleBlock .catlist li a.cat4:hover, .modTitleBlock .catlist li a.cat5.on, .modTitleBlock .catlist li a.cat5:hover {
            background: #1255a3; }
        .modTitleBlock .catlist li a.on, .modTitleBlock .catlist li a:hover {
          color: #fff; }
      .modTitleBlock .catlist li:last-child a {
        margin-right: 0; }
  .modTitleBlock .date {
    display: inline-block; }
  .modTitleBlock .category {
    display: inline-block;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 2px 10px;
    margin: 10px; }
    .modTitleBlock .category.cat2 {
      color: #197916;
      border: 1px solid #197916; }
    .modTitleBlock .category.cat3 {
      color: #ff0000;
      border: 1px solid #ff0000; }

.modTitle01 {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid #b0cee0;
  margin-bottom: 20px; }

.modTitle02 {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  background-color: #dedede;
  padding: 10px 15px;
  margin: 40px 0 20px; }
  @media only screen and (max-width: 992px) {
    .modTitle02 {
      margin: 40px 0 0; } }
  .modTitle02.type2 {
    background-color: #1255a3;
    color: #fff;
    margin: 20px 0 0; }
    @media only screen and (max-width: 600px) {
      .modTitle02.type2 {
        font-size: 16px;
        font-size: 1.6rem;
        margin: 20px 0 0; } }

.modTitle03 {
  line-height: 20px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-left: 5px solid #1255a3;
  padding-left: 15px;
  margin: 40px 0 20px; }
  @media only screen and (max-width: 600px) {
    .modTitle03 {
      margin: 40px 0 15px; } }

/* modBtn
------------------------------------------------------------*/
.modBtn01 > a {
  min-width: 280px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 15px;
  text-decoration: none;
  color: #333;
  background-color: #1255a3;
  border-bottom: solid #0d3d75 5px;
  color: #FFF; }
  .modBtn01 > a:hover {
    background-color: #176dd1; }

.modBtn02 {
  margin-bottom: 40px; }
  .modBtn02 > a {
    color: #1255a3;
    display: inline-block;
    padding: 10px;
    border: solid 1px #1255a3;
    min-width: 280px;
    text-align: center; }
    @media only screen and (max-width: 600px) {
      .modBtn02 > a {
        width: 100%; } }
    .modBtn02 > a:hover {
      text-decoration: none;
      color: #fff;
      background-color: #1255a3; }

.modFormButton {
  text-align: center;
  margin-top: 30px; }
  @media only screen and (max-width: 992px) {
    .modFormButton.block a {
      display: block;
      width: 100%; } }
  .modFormButton button[type=submit],
  .modFormButton a {
    background: #1255a3;
    color: #FFF;
    padding: 15px 30px;
    font-size: 16px;
    font-size: 1.6rem;
    border: none; }
    @media only screen and (max-width: 600px) {
      .modFormButton button[type=submit],
      .modFormButton a {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 15px 20px; } }
    .modFormButton button[type=submit]:hover,
    .modFormButton a:hover {
      opacity: 0.8; }
  .modFormButton button[type=submit]#__back {
    background: #999; }
  .modFormButton.colorDark button,
  .modFormButton.colorDark a {
    width: 100%;
    font-weight: bold;
    background: #0d3d75; }
  .modFormButton.small {
    margin-top: 0; }
    .modFormButton.small button[type=submit],
    .modFormButton.small a {
      font-size: 14px;
      font-size: 1.4rem;
      padding: 5px 30px; }
      .modFormButton.small button[type=submit]:hover,
      .modFormButton.small a:hover {
        text-decoration: none; }
  .modFormButton.type2 {
    margin-top: 0;
    padding-bottom: 30px;
    background: #fff; }
    .modFormButton.type2 button[type=submit],
    .modFormButton.type2 a {
      padding: 10px 50px; }

span.sign{
  color:#6666dd;
  }

.modBtnKenshu {
	width:8rem;
	height:3rem;
	border: none;
	color:#fff;
  }
  .modBtnKenshu.ok {
  	background-color:#004080;  }
  .modBtnKenshu.ng {
  	background-color:#d74600;  }
  .modBtnKenshu.ok.active {
  		box-shadow: 0 0 5px 5px rgba(128, 255, 255, 1);  }
  .modBtnKenshu.ng.active {
  		box-shadow: 0 0 5px 5px rgba(255, 128, 128, 1);  }


/* modBlock
------------------------------------------------------------*/
.modBlock01 {
  background: #fff;
  padding: 40px;
  margin-bottom: 40px; }
  @media only screen and (max-width: 600px) {
    .modBlock01 {
      background: transparent;
      padding: 0; } }
  .modBlock01 .image {
    text-align: center; }
    .modBlock01 .image img {
      max-width: 640px; }
      @media only screen and (max-width: 600px) {
        .modBlock01 .image img {
          max-width: 100%; } }
  .modBlock01 p {
    margin-bottom: 20px; }

.modBlockLogin {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #3d7bab;
  padding: 30px 40px 50px;
  width: 400px;
  height: 560px;
  box-sizing: border-box; }
  @media only screen and (max-width: 600px) {
    .modBlockLogin {
      padding: 60px 40px 50px;
      width: 100vw;
      height: 100vh; } }
  .modBlockLogin .logo {
    position: relative;
    top: 10px;
    left: -20px;
    width: 130px;
    height: 44px; }
  .modBlockLogin .title {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 20px;
    letter-spacing: 0.05em; }
  .modBlockLogin .text01 {
    color: #fff; }
  .modBlockLogin .formDl {
    margin-top: 30px; }
    .modBlockLogin .formDl dt {
      color: #fff;
      font-size: 16px;
      font-size: 1.6rem;
      margin-bottom: 5px; }
    .modBlockLogin .formDl dd {
      margin-bottom: 10px; }
      .modBlockLogin .formDl dd input {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        font-size: 1.6rem;
        border: none;
        margin-bottom: 10px; }
      .modBlockLogin .formDl dd .validationError {
        color: #FF9933; }
  .modBlockLogin .passRemind {
    text-align: center;
    padding: 20px; }
    .modBlockLogin .passRemind a {
      color: #c1dcef;
      font-size: 14px;
      font-size: 1.4rem;
      text-decoration: underline; }

.modBlockAcdn .acdnBtn {
  position: relative;
  cursor: pointer;
  padding: 10px 15px 10px 40px;
  margin: 1px 0 0; }
  .modBlockAcdn .acdnBtn:after {
    content: "";
    width: 15px;
    height: 15px;
    background: left top no-repeat url(/assets/img/icon-plus.svg);
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: normal;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -8px; }
  .modBlockAcdn .acdnBtn.active:after {
    background: left top no-repeat url(/assets/img/icon-minus.svg);
    margin-top: -2px; }

.modBlockAcdn .acdnContant {
  display: none; }

.modBlockSearch {
  border: 1px solid #aaa;
  background-color: #fafafa; }
  .modBlockSearch .title {
    font-size: 16px;
    font-size: 1.6rem;
    background-color: #e7ebf1;
    font-weight: bold;
    border-bottom: 1px solid #aaa;
    padding: 10px 20px 10px 40px;
    margin-bottom: 5px;
    position: relative; }
    .modBlockSearch .title:before {
      content: "";
      width: 15px;
      height: 15px;
      background: left top no-repeat url(/assets/img/icon-search.svg);
      background-size: 18px auto;
      position: absolute;
      left: 15px;
      top: 50%;
      margin-top: -8px; }
  .modBlockSearch .body {
    padding: 15px; }
  .modBlockSearch .searchTable {
    table-layout: fixed; }
    .modBlockSearch .searchTable tbody {
      display: flex;
      flex-wrap: wrap;
      width: 100%; }
      @media only screen and (max-width: 600px) {
        .modBlockSearch .searchTable tbody {
          display: block; } }
    .modBlockSearch .searchTable tr:nth-child(1), .modBlockSearch .searchTable tr:nth-child(2), .modBlockSearch .searchTable tr:nth-child(3) {
      width: 50%;
      display: flex;
      margin-bottom: 10px; }
      @media only screen and (max-width: 600px) {
        .modBlockSearch .searchTable tr:nth-child(1), .modBlockSearch .searchTable tr:nth-child(2), .modBlockSearch .searchTable tr:nth-child(3) {
          width: 100%;
          margin-bottom: 5px; } }
    .modBlockSearch .searchTable th {
      width: 110px;
      font-weight: bold;
      text-align: right;
      padding-right: 20px;
      line-height: 40px; }
      @media only screen and (max-width: 992px) {
        .modBlockSearch .searchTable th {
          padding-right: 15px; } }
      @media only screen and (max-width: 600px) {
        .modBlockSearch .searchTable th {
          width: 30%;
          padding-right: 10px; } }
    .modBlockSearch .searchTable td {
      width: calc(100% - 110px);
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 600px) {
        .modBlockSearch .searchTable td {
          width: 70%; } }
    .modBlockSearch .searchTable input {
      width: 100%;
      margin-bottom: 5px; }
      .modBlockSearch .searchTable input.date {
        width: 46%;
        padding: 7px;
        border-radius: 5px;
        border: solid 1px #aaa; }
        @media only screen and (max-width: 992px) {
          .modBlockSearch .searchTable input.date {
            width: 44%; } }
    .modBlockSearch .searchTable + .modFormButton {
      margin-top: 5px; }
      @media only screen and (max-width: 600px) {
        .modBlockSearch .searchTable + .modFormButton {
          margin-top: 10px;
          margin-bottom: 5px; } }
      .modBlockSearch .searchTable + .modFormButton button[type=submit] {
        padding: 8px 80px; }

.modDlForm {
  margin: 20px 0 20px; }
  @media only screen and (max-width: 992px) {
    .modDlForm {
      margin: 0 0 20px; } }
  .modDlForm dt {
    float: left;
    clear: both;
    width: 20em;
    padding: 28px 0 20px 55px;
    position: relative;
    font-weight: bold;
    line-height: 2rem; }
    @media only screen and (max-width: 992px) {
      .modDlForm dt {
        float: none;
        width: auto;
        padding: 28px 0 10px 0;
        font-size: 16px;
        font-size: 1.6rem; } }
    @media only screen and (max-width: 992px) {
      .modDlForm dt.required, .modDlForm dt.any {
        padding: 28px 0 10px 53px; } }
    .modDlForm dt.required:before, .modDlForm dt.any:before {
      position: absolute;
      left: 0;
      top: 26px;
      color: #FFF;
      font-size: 11px;
      font-size: 1.1rem;
      padding: 2px 10px; }
    .modDlForm dt.required:before {
      content: "必須";
      background: #ff0000; }
    .modDlForm dt.any:before {
      background: #999999;
      content: "任意"; }
    .modDlForm dt.wide {
      width: 100%; }
  .modDlForm dd {
    border-top: solid 1px #ccc;
    padding: 10px 0;
    padding-left: 21em;
    padding-top: 29px;
    min-height: 80px; }
    .modDlForm dd.wide {
      padding: 29px 0 10px 0; }
    .modDlForm dd:nth-child(2) {
      border-top: none; }
    @media only screen and (max-width: 992px) {
      .modDlForm dd {
        padding: 10px 0;
        border-top: none;
        border-bottom: solid 1px #ccc;
        min-height: 60px; } }
    @media only screen and (max-width: 600px) {
      .modDlForm dd {
        border-top: none;
        border-bottom: solid 1px #ccc; }
        .modDlForm dd:last-child {
          border-bottom: none; } }
    .modDlForm dd .parts {
      position: relative;
      top: -6px;
      padding: 0; }
      .modDlForm dd .parts select.harf {
        width: 50%; }
      .modDlForm dd .parts input:disabled + label {
        color: #ccc;
        cursor: default; }
        .modDlForm dd .parts input:disabled + label:before {
          border: 1px solid #eee; }
        .modDlForm dd .parts input:disabled + label.disabled:before {
          background-color: #eee; }
        .modDlForm dd .parts input:disabled + label.disabled:after {
          background-color: #eee; }
        .modDlForm dd .parts input:disabled + label:hover:before {
          background-color: #eee; }
      .modDlForm dd .parts textarea,
      .modDlForm dd .parts input[type="text"],
      .modDlForm dd .parts input[type="email"],
      .modDlForm dd .parts input[type="password"] {
        width: 100%; }
      .modDlForm dd .parts input[type="text"].harf {
        width: 50%; }
      .modDlForm dd .parts textarea:-ms-input-placeholder,
      .modDlForm dd .parts input:-ms-input-placeholder {
        color: #ccc; }
      .modDlForm dd .parts textarea::placeholder,
      .modDlForm dd .parts input::placeholder {
        color: #ccc; }
      .modDlForm dd .parts.radio_inline > div, .modDlForm dd .parts.check_inline > div {
        display: inline-block; }
      .modDlForm dd .parts.radio_inline + .parts, .modDlForm dd .parts.check_inline + .parts {
        margin-top: 10px; }
      .modDlForm dd .parts.name {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .modDlForm dd .parts.name > div {
          width: 48.5%; }
      .modDlForm dd .parts.post, .modDlForm dd .parts.tel {
        display: -ms-flexbox;
        display: flex; }
        .modDlForm dd .parts.post .hyphen, .modDlForm dd .parts.tel .hyphen {
          padding: 10px 10px 0 10px; }
          @media only screen and (max-width: 600px) {
            .modDlForm dd .parts.post .hyphen, .modDlForm dd .parts.tel .hyphen {
              padding: 10px 5px 0 5px; } }
      .modDlForm dd .parts.password input {
        width: 100%; }
      .modDlForm dd .parts.password .text {
        padding: 10px 0; }
      .modDlForm dd .parts .alert {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 10px;
        color: #999; }
    .modDlForm dd .textList li {
      display: inline-block; }
      .modDlForm dd .textList li:after {
        content: "、"; }
      .modDlForm dd .textList li:last-child:after {
        display: none; }
  .modDlForm .validationError {
    color: #ff0000;
    padding: 5px 0; }
    @media only screen and (max-width: 992px) {
      .modDlForm .validationError {
        font-size: 16px;
        font-size: 1.6rem; } }
  .modDlForm .caption {
    font-size: 12px;
    font-size: 1.2rem;
    color: #999;
    padding-top: 5px; }
  .modDlForm .teigi_box {
    display: table;
    table-layout: fixed;
    width: 100%; }
    @media only screen and (max-width: 600px) {
      .modDlForm .teigi_box {
        display: block; } }
    .modDlForm .teigi_box .name,
    .modDlForm .teigi_box .body {
      display: table-cell; }
      @media only screen and (max-width: 600px) {
        .modDlForm .teigi_box .name,
        .modDlForm .teigi_box .body {
          display: block; } }
    .modDlForm .teigi_box .name {
      width: 10%;
      font-weight: bold; }
      @media only screen and (max-width: 600px) {
        .modDlForm .teigi_box .name {
          width: auto; } }
    .modDlForm .teigi_box .body > .parts {
      margin: 10px 0;
      top: auto; }
  .modDlForm a {
    color: #1c79e6;
    text-decoration: underline !important; }
  .modDlForm.type2 {
    margin: 20px 0 0 0;
    padding: 15px 20px 20px 20px;
    background: #fff; }
    @media only screen and (max-width: 992px) {
      .modDlForm.type2 {
        padding: 5px 20px 20px 20px; } }
    .modDlForm.type2 dt {
      width: 8em;
      padding: 20px 0 0 0; }
      @media only screen and (max-width: 992px) {
        .modDlForm.type2 dt {
          padding: 20px 0 10px 0; } }
    .modDlForm.type2 dd {
      padding: 20px 0 0 9em;
      border-top: none; }
      @media only screen and (max-width: 992px) {
        .modDlForm.type2 dd {
          padding: 10px 0; } }

.modDlForm02 {
  margin: 10px 0 20px; }
  .modDlForm02 dt {
    float: left;
    clear: both;
    width: 11em;
    padding: 20px 0 20px 20px;
    position: relative;
    font-weight: bold;
    background-color: #ddd; }
    @media only screen and (max-width: 600px) {
      .modDlForm02 dt {
        float: none;
        width: auto;
        padding: 10px 20px 0 15px; } }
  .modDlForm02 dd {
    padding: 12px;
    background-color: #ddd; }
    @media only screen and (max-width: 600px) {
      .modDlForm02 dd {
        padding: 10px 12px; } }
    .modDlForm02 dd .parts {
      position: relative;
      padding: 0; }
      .modDlForm02 dd .parts .inputWrap {
        width: 80%; }
        @media only screen and (max-width: 600px) {
          .modDlForm02 dd .parts .inputWrap {
            width: 62vw; } }
      .modDlForm02 dd .parts input[type="text"] {
        width: 100%; }
      .modDlForm02 dd .parts.freeword {
        display: -ms-flexbox;
        display: flex; }
        .modDlForm02 dd .parts.freeword .button {
          padding: 0 10px; }
          @media only screen and (max-width: 600px) {
            .modDlForm02 dd .parts.freeword .button {
              padding: 0 0 0 10px; } }
          .modDlForm02 dd .parts.freeword .button a {
            display: block;
            background-color: #666;
            width: 100px;
            color: #fff;
            text-align: center;
            font-size: 14px;
            font-size: 1.4rem;
            padding: 8px;
            text-decoration: none !important;
            border-radius: 5px; }
            @media only screen and (max-width: 600px) {
              .modDlForm02 dd .parts.freeword .button a {
                width: 16vw;
                padding: 11px; } }
            .modDlForm02 dd .parts.freeword .button a:hover {
              opacity: 0.8; }

.modNavFlow {
  margin-bottom: 40px; }
  .modNavFlow:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden; }
  .modNavFlow li {
    float: left;
    background-color: #edeff0;
    font-weight: bold;
    width: 33.33333333%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: relative; }
    .modNavFlow li:not(:last-child):after {
      content: "";
      display: block;
      width: 28px;
      height: 50px;
      background-image: url(../img/arrow.png);
      position: absolute;
      top: 0;
      right: -20px;
      z-index: 100; }
    .modNavFlow li.visited {
      background-color: #3498db;
      color: #FFF; }
      .modNavFlow li.visited:not(:last-child):after {
        background-image: url(../img/arrow_current.png); }
    .modNavFlow li span {
      padding-left: 10px; }

.modTable01 {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 30px; }
  @media only screen and (max-width: 600px) {
    .modTable01 {
      border-right: none;
      border-bottom: none;
      border-left: none; } }
  .modTable01 th,
  .modTable01 td {
    vertical-align: top;
    padding: 15px 20px;
    border: 1px solid #ccc; }
    @media only screen and (max-width: 600px) {
      .modTable01 th,
      .modTable01 td {
        width: 100%;
        display: block;
        border-top: none; } }
  .modTable01 th {
    white-space: nowrap;
    background: #eee; }
    @media only screen and (max-width: 600px) {
      .modTable01 th {
        border-bottom: none; } }
  .modTable01 td {
    background: #fff; }

/* text
------------------------------------------------------------*/
.cosTxtBold {
  font-weight: bold !important; }

.cosTxtRight {
  text-align: right !important; }

.cosTxtCenter {
  text-align: center !important; }

.cosTxtLeft {
  text-align: left !important; }

.cosMt40 {
  margin-top: 40px !important; }

.cosMb20 {
  margin-bottom: 20px !important; }

.cosPb30 {
  padding-bottom: 30px !important; }

.mailList{
  display: none;
  background-color: #fff;
  padding: 20px 20px 20px 70px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem; }

.type2.acdnBtn {
  cursor: pointer;}
.mailList .name {
  cursor: pointer;
  padding: 10px 0;
    border-bottom: 1px dotted #c5c5c5; }

.parts+.parts {
  margin-top: 10px;}

.parts+.parts>div {
  line-height:3rem;}