@charset "UTF-8";
body {
  color: #444;
  position: relative;
  font-family: "YuGothic", "Yu Gothic Medium", "Yu Gothic Regular", sans-serif; }
  body * {
    box-sizing: border-box; }

a:link {
  color: #009444; }

a:visited {
  color: #009444; }

a:hover {
  color: #c00; }

a:active {
  color: #009444; }

ul, ol {
  list-style: none; }

img {
  max-width: 100%; }

#header {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 60px;
  display: flex;
  align-items: center; }
  #header h1 {
    width: 960px;
    margin: auto; }
    @media (max-width: 960px) {
      #header h1 {
        width: auto;
        margin-right: 10px;
        margin-left: 10px; } }
    #header h1 img {
      vertical-align: middle; }
  @media (max-width: 960px) {
    #header {
      position: relative; } }

#mopen {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999; }
  #mopen a {
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
    width: 50px;
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 15px 0 10px;
    border-radius: 4px; }
  #mopen span {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    margin: 0 auto;
    margin-bottom: 0px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: all 0.3s; }
    #mopen span.for {
      transform: translateY(-8px) rotate(45deg); }
    #mopen span.rev {
      transform: translateY(8px) rotate(-45deg); }
  @media (max-width: 960px) {
    #mopen {
      display: block; } }

#gnav {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 60px;
  width: 100%;
  z-index: 2;
  font-family: serif; }
  @media (max-width: 960px) {
    #gnav {
      position: fixed;
      top: 0;
      z-index: 3;
      display: none; }
      #gnav.movOpen {
        display: block; } }

ul#global-menu {
  width: 960px;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  list-style: none;
  flex-direction: column;
  flex-wrap: wrap; }
  @media (max-width: 960px) {
    ul#global-menu {
      width: auto;
      margin-right: 0;
      margin-left: 0; } }
  ul#global-menu > li a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 3px;
    border-bottom: solid 1px #888; }
    ul#global-menu > li a:hover {
      color: #ff0; }
  @media (min-width: 960px) {
    ul#global-menu {
      flex-direction: row; }
      ul#global-menu > li > a {
        padding: 3px 0 3px 1.5em;
        border-bottom: none; }
      ul#global-menu > li:nth-child(1) > a {
        padding-left: 0; }
        ul#global-menu > li:nth-child(1) > a:before {
          content: '';
          border-left: solid 1px #fff;
          margin-right: 1.5em; }
      ul#global-menu > li > a:after {
        content: '';
        border-right: solid 1px #fff;
        margin-left: 1.5em; }
      ul#global-menu > li ul.sub-menu {
        display: none; }
      ul#global-menu > li:hover ul.sub-menu {
        display: block;
        position: absolute;
        z-index: 1;
        background: rgba(255, 255, 255, 0.9); }
        ul#global-menu > li:hover ul.sub-menu a {
          display: block;
          padding: 2px 8px;
          color: #444;
          font-family: "YuGothic", "Yu Gothic Medium", "Yu Gothic Regular", sans-serif;
          font-size: 0.9375rem;
          text-decoration: none;
          border-bottom: dotted 1px #ccc; }
        ul#global-menu > li:hover ul.sub-menu a:hover {
          color: #c00; } }

#catch {
  text-align: center;
  position: relative;
  min-height: 400px;
  height: 50vh;
  overflow: hidden;
  margin-bottom: 40px; }
  #catch img {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: -0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%; }
  @media (max-width: 960px) {
    #catch {
      min-height: initial;
      height: auto; }
      #catch img {
        position: relative; } }

#subcatch {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  text-align: center; }
  #subcatch img {
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: auto;
    max-width: initial; }

#breadcrumb {
  background: #e6e6e6;
  padding: 12px 0;
  margin-bottom: 40px; }
  #breadcrumb h2 {
    width: 960px;
    margin: auto;
    font-size: 0.875rem;
    color: #4d4d4d; }
    @media (max-width: 960px) {
      #breadcrumb h2 {
        width: auto;
        margin-right: 10px;
        margin-left: 10px; } }
    #breadcrumb h2:before {
      font-family: 'FontAwesome';
      margin-right: 0.7em;
      content: ""; }

.home main {
  width: 100%;
  margin: auto; }

main {
  width: 960px;
  margin: auto;
  padding: 20px 0 40px; }
  @media (max-width: 960px) {
    main {
      width: auto;
      margin-right: 10px;
      margin-left: 10px; } }
  main p + p, main p + ul, main p + ol, main ul + p, main ol + p,
  main p + div, main div + p {
    margin-top: 1em; }
  main p + h4:not([class]) {
    margin-top: 20px; }
  main p + h3:not([class]), main ol + h3:not([class]), main ul + h3:not([class]) {
    margin-top: 40px; }
  main h2:not([class]) {
    font-family: "YuMincho", "Yu Mincho", serif;
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 10px; }
  main h3:not([class]) {
    font-size: 1.25rem;
    border-bottom: solid 1px #cccccc;
    color: #009444;
    margin-bottom: 0.5rem; }
    main h3:not([class]):before {
      font-family: 'FontAwesome';
      margin-right: 0.3em;
      content: ""; }
  main h4:not([class]) {
    font-size: 1.125rem;
    margin-bottom: 0.2rem;
    color: #f70; }
    main h4:not([class]):before {
      content: '\f024';
      font-family: 'FontAwesome';
      margin-right: 0.5em;
      font-size: 1rem; }
  main ul:not([class]) {
    list-style: disc;
    padding: 0.5em 2em; }
  main ol:not([class]) {
    list-style: decimal;
    padding: 0.5em 2em; }

#top_btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  opacity: 0.9; }

#footer {
  border-top: solid 1px #000; }
  #footer .footer__info {
    width: 960px;
    margin: auto;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.75rem; }
    @media (max-width: 960px) {
      #footer .footer__info {
        width: auto;
        margin-right: 10px;
        margin-left: 10px; } }
    #footer .footer__info * {
      vertical-align: middle; }
    #footer .footer__info .footer__info__body {
      border-left: solid 1px #000;
      padding-left: 3em;
      margin-left: 3em; }
    #footer .footer__info .footer__info__btn {
      margin-left: auto; }
    #footer .footer__info .footer__address span {
      display: inline-block;
      box-sizing: content-box;
      width: 6em;
      padding: 0; }
    @media (max-width: 960px) {
      #footer .footer__info {
        flex-direction: column; }
        #footer .footer__info .footer__info__body {
          border-left: none;
          padding: 0;
          margin: 1em 0; }
        #footer .footer__info .footer__info__btn {
          margin: auto; } }
    @media (max-width: 768px) {
      #footer .footer__info .footer__address span {
        display: block;
        font-weight: bold; } }
  #footer .copyright {
    text-align: center;
    color: #fff;
    background: #000;
    font-size: 0.75rem;
    padding: 3px 0; }

.c-table-std td, .c-table-std th {
  border: solid 1px #b3b3b3;
  text-align: left;
  padding: 5px 10px;
  vertical-align: top; }

.c-table-std th {
  color: #444;
  background: #e6e6e6;
  width: 30%; }

@media (max-width: 768px) {
  .c-table-std tbody, .c-table-std tr, .c-table-std td, .c-table-std th {
    display: block;
    width: 100%; } }

.c-square {
  border: dotted 1px #999;
  padding: 1em;
  font-size: small; }

.c-column {
  padding: 1em; }

.c-btn {
  display: inline-block;
  text-align: center;
  padding: 0.3em 2em;
  background: #000;
  color: #fff;
  text-decoration: none; }
  .c-btn:hover {
    opacity: 0.8; }
  .c-btn:link, .c-btn:visited, .c-btn:hover {
    color: #fff; }
  .c-btn.btn1 {
    border: solid 1px #000;
    border-radius: 4em;
    color: #000;
    background: transparent; }
    .c-btn.btn1:hover {
      background: #000;
      color: #fff; }
  .c-btn.btn2 {
    border: solid 1px #009444;
    border-radius: 4em;
    color: #009444;
    background: transparent; }
    .c-btn.btn2:hover {
      background: #009444;
      color: #fff; }

.c-list3 {
  display: flex;
  justify-content: space-between; }
  .c-list3 li {
    width: 300px; }
  .c-list3 p {
    font-size: 0.9375rem; }
  .c-list3 .c-list3__heading {
    color: #f70;
    font-size: 1.125rem;
    margin-top: 0; }
  @media (max-width: 960px) {
    .c-list3 {
      flex-wrap: wrap;
      justify-content: center; }
      .c-list3 li {
        margin: 10px; } }
  @media (max-width: 640px) {
    .c-list3 {
      justify-content: center; } }

.c-archive {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #ccc; }

.c-paginate {
  display: table;
  margin: auto;
  border: solid 1px #ccc;
  border-radius: 4px;
  font-size: 0; }
  .c-paginate span, .c-paginate a {
    font-size: 0.9375rem;
    font-family: sans-serif;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    border-left: solid 1px #ccc; }
    .c-paginate span:first-child, .c-paginate a:first-child {
      border-left: none; }

.p-top1 {
  width: 960px;
  margin: auto;
  margin-bottom: 70px; }
  @media (max-width: 960px) {
    .p-top1 {
      width: auto;
      margin-right: 10px;
      margin-left: 10px; } }
  .p-top1 h2 {
    font-family: "YuMincho", "Yu Mincho", serif;
    color: #009444;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 5px; }
  .p-top1 p {
    font-size: 0.9375rem;
    text-align: center; }
  .p-top1 .p-top1__navi {
    text-align: center;
    margin: 3em auto 0 !important; }
    .p-top1 .p-top1__navi a {
      text-decoration: none;
      display: block;
      margin: auto;
      width: 16em;
      border: solid 1px #009444;
      border-radius: 10em;
      padding: 0.3em; }
      .p-top1 .p-top1__navi a:hover {
        background: #009444;
        color: #fff; }

.p-topics {
  margin-bottom: 40px; }
  .p-topics .p-topics__img {
    padding-top: 270px;
    position: relative;
    overflow: hidden; }
    .p-topics .p-topics__img img {
      max-width: initial;
      display: block;
      position: absolute;
      z-index: 1;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .p-topics h3 {
    width: 960px;
    margin: auto;
    font-size: 1.25rem;
    text-align: center;
    border-bottom: solid 1px #000;
    font-family: "YuMincho", "Yu Mincho", serif;
    margin-bottom: 30px;
    color: #000;
    font-weight: bold; }
    @media (max-width: 960px) {
      .p-topics h3 {
        width: auto;
        margin-right: 10px;
        margin-left: 10px; } }
  .p-topics .d8_news {
    list-style: none;
    padding: 1rem 3rem;
    width: 960px;
    margin: auto; }
    @media (max-width: 960px) {
      .p-topics .d8_news {
        width: auto;
        margin-right: 10px;
        margin-left: 10px; } }
    @media (max-width: 960px) {
      .p-topics .d8_news {
        padding: 1rem 0; } }
  .p-topics li {
    margin-bottom: 0.5em;
    border-bottom: solid 1px #ccc;
    color: #000; }
    .p-topics li:last-child {
      margin-bottom: initial; }
  .p-topics li.d8_news_new .d8_news_body:after {
    content: 'New';
    margin-left: 1em;
    background-color: #f00;
    padding: 0 5px;
    font-size: 0.75rem;
    color: #fff; }
  .p-topics .d8_news_date {
    display: inline-block;
    width: 12em;
    color: #444;
    font-family: "YuMincho", "Yu Mincho", serif; }
    .p-topics .d8_news_date:before {
      font-family: 'FontAwesome';
      margin-right: 0.8em;
      content: "";
      color: #009444; }
    @media (max-width: 960px) {
      .p-topics .d8_news_date {
        display: block; } }
  .p-topics .p-topics__navi {
    text-align: center;
    font-size: 0.9375rem;
    margin: 3em 0; }

.p-step > li {
  display: flex;
  margin-bottom: 40px; }
  @media (max-width: 768px) {
    .p-step > li {
      flex-direction: column; } }

.p-step .p-step__img {
  width: 250px;
  flex-shrink: 0;
  text-align: left; }

.p-step .p-step__info {
  margin: 0; }

.p-step h5 {
  color: #009444;
  font-weight: bold; }

.p-about {
  margin-top: 30px; }
  .p-about .p-about__table1 {
    margin-bottom: 1em; }
    .p-about .p-about__table1 th, .p-about .p-about__table1 td {
      width: 25%; }
      @media (max-width: 768px) {
        .p-about .p-about__table1 th, .p-about .p-about__table1 td {
          width: 100%; } }
  .p-about .p-about__table2 {
    font-size: 0.9375rem; }
    .p-about .p-about__table2 th, .p-about .p-about__table2 td {
      vertical-align: middle; }
  .p-about .p-about__table2 + h4 {
    margin-top: 20px; }
  .p-about .p-about__caption {
    list-style: circle;
    padding-left: 1em; }

.p-news {
  margin-bottom: 40px; }
  .p-news .p-news__head {
    margin-bottom: 20px; }

.p-form {
  margin: 10px 0; }
  .p-form th {
    width: 12em;
    white-space: nowrap; }
    @media (max-width: 768px) {
      .p-form th {
        width: 100%;
        border-bottom: none; } }
  .p-form .require {
    font-size: 0.875rem;
    font-weight: bold;
    color: #f80;
    margin-left: 1em; }
  .p-form input[type="text"],
  .p-form input[type="email"],
  .p-form textarea {
    width: calc( 100% - 10px); }

.u-mt0 {
  margin-top: 0px !important; }

.u-mr0 {
  margin-right: 0px !important; }

.u-mb0 {
  margin-bottom: 0px !important; }

.u-ml0 {
  margin-left: 0px !important; }

.u-pt0 {
  padding-top: 0px !important; }

.u-pr0 {
  padding-right: 0px !important; }

.u-pb0 {
  padding-bottom: 0px !important; }

.u-pl0 {
  padding-left: 0px !important; }

.u-mt10 {
  margin-top: 10px !important; }

.u-mr10 {
  margin-right: 10px !important; }

.u-mb10 {
  margin-bottom: 10px !important; }

.u-ml10 {
  margin-left: 10px !important; }

.u-pt10 {
  padding-top: 10px !important; }

.u-pr10 {
  padding-right: 10px !important; }

.u-pb10 {
  padding-bottom: 10px !important; }

.u-pl10 {
  padding-left: 10px !important; }

.u-mt20 {
  margin-top: 20px !important; }

.u-mr20 {
  margin-right: 20px !important; }

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

.u-ml20 {
  margin-left: 20px !important; }

.u-pt20 {
  padding-top: 20px !important; }

.u-pr20 {
  padding-right: 20px !important; }

.u-pb20 {
  padding-bottom: 20px !important; }

.u-pl20 {
  padding-left: 20px !important; }

.u-mt30 {
  margin-top: 30px !important; }

.u-mr30 {
  margin-right: 30px !important; }

.u-mb30 {
  margin-bottom: 30px !important; }

.u-ml30 {
  margin-left: 30px !important; }

.u-pt30 {
  padding-top: 30px !important; }

.u-pr30 {
  padding-right: 30px !important; }

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

.u-pl30 {
  padding-left: 30px !important; }

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

.u-mr40 {
  margin-right: 40px !important; }

.u-mb40 {
  margin-bottom: 40px !important; }

.u-ml40 {
  margin-left: 40px !important; }

.u-pt40 {
  padding-top: 40px !important; }

.u-pr40 {
  padding-right: 40px !important; }

.u-pb40 {
  padding-bottom: 40px !important; }

.u-pl40 {
  padding-left: 40px !important; }

.u-mt50 {
  margin-top: 50px !important; }

.u-mr50 {
  margin-right: 50px !important; }

.u-mb50 {
  margin-bottom: 50px !important; }

.u-ml50 {
  margin-left: 50px !important; }

.u-pt50 {
  padding-top: 50px !important; }

.u-pr50 {
  padding-right: 50px !important; }

.u-pb50 {
  padding-bottom: 50px !important; }

.u-pl50 {
  padding-left: 50px !important; }

.u-fs-xxsmall {
  font-size: 0.75rem; }

.u-fs-xsmall {
  font-size: 0.875rem; }

.u-fs-small {
  font-size: 0.9375rem; }

.u-fs-normal {
  font-size: 1rem; }

.u-fs-large {
  font-size: 1.125rem; }

.u-fs-xlarge {
  font-size: 1.25rem; }

.u-fs-xxlarge {
  font-size: 1.5rem; }

.u-fc-background {
  color: #fff; }

.u-fc-text {
  color: #444; }

.u-fc-primary {
  color: #009444; }

.u-fc-secondary {
  color: #f70; }

.u-fc-reverse {
  color: #fff; }

.u-fc-strong {
  color: #28a745; }

.u-fc-atention {
  color: #f80; }

.u-fc-other {
  color: #888; }

.u-fc-link {
  color: #009444; }

.u-fc-visited {
  color: #009444; }

.u-fc-hover {
  color: #c00; }

.u-fc-active {
  color: #009444; }

.u-btn {
  display: inline-block;
  text-align: center;
  padding: 0.1em 5em;
  background: #009444;
  color: #fff;
  text-decoration: none; }
  .u-btn:link, .u-btn:visited, .u-btn:hover {
    color: #fff; }
  .u-btn.btn1 {
    border: solid 1px #009444;
    border-radius: 4em;
    color: #009444;
    background: transparent; }
    .u-btn.btn1:hover {
      background: #009444;
      color: #fff; }

.u-fb {
  font-weight: bold; }

.u-tr {
  text-align: right; }

.u-tc {
  text-align: center; }

.u-tl {
  text-align: left; }
