@charset "UTF-8";
/*********************************
preset variables
*********************************/
:root {
  --fontSize: 16px;
  --linkColor: #3562a0;
  --textColor: #333;
  /* color preset */
  --mainColor: #2063BC;
  --mainDarkColor: #1F5CAC;
  --mainLightColor: ;
  --subColor: #6B992E;
  --subDarkColor: #5B8626;
  --subLightColor: #E0EAD0;
  /* width preset */
  --gutter: 1.3rem;
  --gap: 3rem;
  --contentWidth: 960px;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

/* OVERWRITE RADIX */
/*
固定ページ化用
body {min-width: var(--contentWidth)}
.centering {width: var(--contentWidth);max-width: var(--contentWidth)}
*/
/* OVERWRITE end */
/* 背景色設定など */
body > .bg > .wrapper {
  width: var(--contentWidth);
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

body > .bg.header {
  background-color: var(--mainColor);
}

body > .bg.body {
  background-color: #FFFFFF;
}

body > .bg.body > .wrapper {
  padding-top: 8px;
  background-color: #FFFFFF;
}

/*************************************
* START header
*************************************/
header {
  height: 250px;
  background-image: url(../img/template/header.png);
}

header .lang-switcher {
  float: right;
  text-align: center;
  width: 110px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  background-color: #427908;
  color: #FFFFFF;
  -webkit-filter: opacity(0.75);
          filter: opacity(0.75);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

header .lang-switcher::before {
  background-image: url(../img/template/arrow_lang.png);
  display: inline-block;
  content: '';
  width: 10px;
  height: 6px;
  vertical-align: middle;
  margin-right: 6px;
}

header .lang-switcher:hover {
  -webkit-filter: opacity(1);
          filter: opacity(1);
  text-decoration: none;
}

header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin-left: 20px;
  color: #FFFFFF;
  -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.5));
}

header h1 .main {
  font-size: 58px;
  line-height: 58px;
}

header h1 .main span {
  font-size: 38px;
}

header h1 .sub {
  font-size: 25px;
  line-height: 25px;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 4px solid var(--mainDarkColor);
  border-bottom: 2px solid var(--mainDarkColor);
}

nav > a {
  display: block;
  position: relative;
  text-align: center;
  width: calc(100% / 5);
  height: 50px;
  line-height: 50px;
  color: #272727;
  font-weight: bold;
  z-index: 0;
}

nav > a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-gradient(linear, left top, left bottom, from(#E3E3E3), to(#FFFFFF));
  background: linear-gradient(to bottom, #E3E3E3, #FFFFFF);
  z-index: -1;
}

nav > a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#E3E3E3), to(#FFFFFF));
  background: linear-gradient(to top, #E3E3E3, #FFFFFF);
}

nav > a:hover::before {
  opacity: 0;
}

nav > a:active::after {
  opacity: 0;
}

nav > a:active {
  background-color: #F1F1F1;
}

nav > a:hover {
  text-decoration: none;
}

nav > a + a {
  border-left: 1px solid #FFFFFF;
}

/*************************************
* END header START main
*************************************/
/* レイアウト */
body main {
  margin: 0 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 210px;
      grid-template-columns: auto 210px;
  -ms-grid-rows: 35px auto;
      grid-template-rows: 35px auto;
}

body main article {
  padding-right: 30px;
  -ms-grid-row: 2;
  grid-row: 2;
}

body main aside {
  -ms-grid-row: 2;
  grid-row: 2;
}

body main aside > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 60px;
  font-weight: bold;
  line-height: 1.3rem;
  /* background-color: #EDECEC; */
background-color: lightgreen;
  color: #000000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body main aside > a:hover {
  text-decoration: none;
  /* background-color: #dbdbdb; */
   background-color: blue;
}

body main aside > a:active {
  /* background-color: #9e9e9e; */
background-color: blue;
}

body main aside > a + a {
  margin-top: 10px;
}

body.en main aside a {
  font-size: 0.85rem;
}

/* breadcrumb */
body.sub ul.breadcrumb {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding-left: 0;
  line-height: 35px;
}

body.sub ul.breadcrumb li + li::before {
  content: '>';
  margin: 0 14px;
}

section {
  margin-bottom: 50px;
}

h2 {
  line-height: 28px;
  padding-bottom: 4px;
  font-size: 22px;
  color: #1951A0;
  border-bottom: double 3px #363636;
}

h2::before {
  content: '';
  display: inline-block;
  background-image: url(../img/template/arrow_h2.png);
  margin-right: 7px;
  width: 12px;
  height: 13px;
}

h2 .goto {
  float: right;
  font-size: 14px;
  margin-top: 8px;
}

h2 .goto::before {
  content: '';
  display: inline-block;
  background-image: url(../img/template/arrow_green.jpg);
  margin-bottom: 2px;
  margin-right: 7px;
  width: 11px;
  height: 7px;
}

h3 {
  padding: 4.5px 9px;
  font-size: 18px;
  line-height: calc(18px * 1.5);
  color: var(--subDarkColor);
  background-color: var(--subLightColor);
}

h4 {
  font-weight: bold;
  border-left: 6px solid var(--subColor);
  line-height: 18px;
  font-size: 1rem;
  padding-left: 5px;
}

dl.topics dt {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
}

dl.topics dt::before {
  content: '';
  display: inline-block;
  background-image: url(../img/template/arrow_green.jpg);
  margin-bottom: 2px;
  margin-right: 4px;
  width: 11px;
  height: 7px;
}

dl.topics dd {
  margin-bottom: 12px;
  padding-bottom: 14px;
  line-height: 1.2rem;
  border-bottom: 1px solid #E0E0E0;
}
section.rightimg img {
  float: right;
  max-width: 330px;
  padding: 5px 10px;
}

.container{
  display: flex;
  flex-direction : row-reverse
}

.item-img{
  padding-left: 10px;
}

/*************************************
* END main START footer
*************************************/
footer {
  height: 80px;
  background-color: #1E5BAB;
  font-size: 13px;
}

footer .footer-nav {
  padding-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .footer-nav a {
  color: #FFFFFF;
  padding: 0 18px;
  border-left: 2px solid #8FA6CE;
  border-right: 2px solid #8FA6CE;
  line-height: 13px;
}

footer .footer-nav a + a {
  border-left: none;
}

footer .copyright {
  margin-top: 22px;
  text-align: center;
  line-height: 13px;
  color: #B8C6DF;
}

/*************************************
* END footer START only for sp
*************************************/
@media only screen and (max-width: 700px) {
  .sp-hide {
    visibility: hidden;
    opacity: 0;
  }
  .sp-visible {
    visibility: visible;
    opacity: 1;
  }
  .sp-none {
    display: none !important;
  }
  .rdx-btn {
    display: block;
  }
}

/*************************************
* END only for sp START only for pc
*************************************/
@media print, screen and (min-width: 700px) {
  .pc-hide {
    visibility: hidden;
    opacity: 0;
  }
  .pc-visible {
    visibility: visible;
    opacity: 1;
  }
  .pc-none {
    display: none !important;
  }
}
/*# sourceMappingURL=style.css.map */