@charset "UTF-8";
/*---------------------------------
Google Font
font-family: 'Noto Sans JP', sans-serif;
-----------------------------------*/
/* width */
/*border*/
/*screenmarge*/
/*---------------------------------
	HTML RESET
-----------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, img, strong, dl, dt, dd, ol, ul, li,
form, label, table, caption, tr, th, td, input, form, textarea, header, nav, section, article, aside, footer {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  font-family: "游明朝","Yu Mincho","Sawarabi Mincho","ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN",HGS明朝E,serif;
  font-size: 1.5rem;
  line-height: 1;
  min-width: 320px; }

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

ol, ul {
  list-style: none; }

/*---------------------------------
	LINK
-----------------------------------*/
a {
  transition-property: all;
  transition: 0.2s linear;
  cursor: pointer; }
  a:link, a:visited, a:hover, a:active {
    color: #000000;
    text-decoration: none; }
  a.w:link, a.w:visited, a.w:hover, a.w:active {
    color: #FFF; }
  a:hover, a:hover img {
    filter: alpha(opacity=60);
    opacity: 0.6; }

.icon a, a.icon, .btn a.icon {
  position: relative;
  padding-left: 10px; }
  .icon a:before, a.icon:before, .btn a.icon:before {
    display: inline-block;
    content: " ";
    position: absolute;
    top: 0.65em;
    left: 0;
    margin-top: -2px;
    border: 4px solid transparent;
    border-left: 4px solid #000; }

.btn {
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  margin: 0.5rem 0;
  display: inline-block; }
  .btn.border {
    border: double 3px #02216a;
    border-radius: 4px; }
  .btn a.icon {
    padding-left: 15px; }
    .btn a.icon:before {
      left: 0.5rem; }
  .btn:hover {
    background: #02216a; }
    .btn:hover a.icon {
      color: #FFF; }
      .btn:hover a.icon:before {
        border-left-color: #FFF; }

a.word {
  border-bottom: 1px dotted #02216a;
  position: relative; }
  a.word:hover:after {
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    content: '';
    background: url(../imgs/icon_word.webp) no-repeat;
    background-size: cover;
    bottom: -5px;
    right: -10px; }

.linkb {
  position: relative; }
  .linkb a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*---------------------------------
	SET
-----------------------------------*/
h2, h3, h4, h5, h6 {
  font-weight: normal; }

#wrapper h1 {
  color: #02216a;
  margin: 5rem auto 6rem;
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 3.3rem;
  line-height: 1.3; }
  #wrapper h1:before, #wrapper h1:after {
    width: 2rem;
    height: 2rem;
    content: ''; }
  #wrapper h1:before {
    border-top: 2px solid #BCA522;
    border-left: 2px solid #BCA522;
    margin: -1rem 2rem 0 0; }
  #wrapper h1:after {
    border-right: 2px solid #BCA522;
    border-bottom: 2px solid #BCA522;
    margin: auto 0 -1rem 2rem; }
  @media only screen and (max-width: 600px) {
    #wrapper h1:before {
      margin: -1rem 1rem 0 0; }
    #wrapper h1:after {
      margin: auto 0 -1rem 1rem; } }
  #wrapper h1 span em {
    font-size: 65%;
    font-style: normal; }

h2 {
  position: relative;
  padding: 0 0 0.5rem;
  color: #02216a;
  font-size: 2.2rem;
  margin: 6rem 0 3rem;
  border-bottom: 3px solid #02216a; }
  h2:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20%;
    height: 3px;
    content: '';
    background: #BCA522; }

h3 {
  color: #02216a;
  padding: 0 2rem 0 0;
  margin: 5rem 0 2rem;
  font-size: 2rem;
  display: flex;
  align-items: center; }
  h3:after {
    width: 100%;
    height: 2px;
    flex: 1;
    content: '';
    border-top: solid 2px #BCA522;
    border-bottom: solid 1px #BCA522;
    margin-left: 1rem; }

h4 {
  color: #02216a;
  display: flex;
  margin: 3rem 0 1.5rem;
  font-size: 1.8rem; }
  h4:before {
    background: #BCA522;
    width: 12px;
    height: 6px;
    content: '';
    margin-top: 1rem;
    margin-right: 0.5rem; }

.bold {
  font-weight: bold; }

img {
  width: auto;
  height: auto;
  max-width: 100%; }

.clear:after {
  content: "";
  display: block;
  clear: both; }

.f_left {
  float: left; }

.f_right {
  float: right; }

.a_left {
  text-align: left; }

.a_center {
  text-align: center; }

.a_right {
  text-align: right; }
  .a_right .a_right img {
    display: inline-block; }

.flx {
  display: flex; }
  .flx.between {
    justify-content: space-between; }
  .flx.around {
    justify-content: space-around; }
  .flx.j_center {
    justify-content: center; }
  .flx.a_center {
    align-items: center; }
  .flx.a_center_tl {
    align-items: center;
    text-align: left; }
  .flx.wrap {
    flex-wrap: wrap; }
  .flx.column {
    flex-direction: column; }
  .flx.rev {
    flex-direction: row-reverse; }

/*---------------------------------
	HEADER
-----------------------------------*/
header {
  font-size: 1.7rem; }
  header h1 img {
    height: 50px; }
  header .subnav {
    background-color: #02216a;
    padding: 1rem;
    font-size: 1.3rem; }
    @media only screen and (max-width: 780px) {
      header .subnav {
        display: none; } }
    header .subnav ul {
      justify-content: flex-end; }
      header .subnav ul li {
        margin: 0 1rem; }
    header .subnav a:link, header .subnav a:visited, header .subnav a:hover, header .subnav a:active {
      color: #FFF;
      text-decoration: none; }
  header .mainnav {
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5); }
    header .mainnav.fixed {
      position: fixed;
      top: 0;
      position: fixed;
      width: 100%;
      z-index: 199;
      background: rgba(255, 255, 255, 0.85); }
    header .mainnav nav ul {
      display: flex;
      justify-content: center; }
    header .mainnav nav li {
      margin: 0 1.5rem;
      position: relative; }
      header .mainnav nav li a {
        position: relative;
        z-index: 201; }
        header .mainnav nav li a:link, header .mainnav nav li a:visited, header .mainnav nav li a:hover, header .mainnav nav li a:active {
          text-decoration: none; }
      header .mainnav nav li ul {
        display: none;
        position: absolute;
        z-index: 200;
        top: 0;
        left: calc(-19em / 2 + 2.5em);
        width: 19em;
        font-size: 1.5rem;
        padding: 3rem 0; }
        header .mainnav nav li ul li a {
          padding: 1.2rem 1rem 1.2rem;
          background: rgba(0, 27, 106, 0.8);
          display: block;
          text-align: center;
          color: #FFF; }
        header .mainnav nav li ul:before {
          display: block;
          content: '';
          left: calc(50% - 3px);
          top: 3rem;
          margin-top: -12px;
          position: absolute;
          border: 6px solid transparent;
          border-bottom: 6px solid rgba(0, 27, 106, 0.8); }
    @media only screen and (max-width: 780px) {
      header .mainnav nav {
        display: none; } }

header .drawernav {
  margin-top: 63px;
  background: rgba(2, 33, 106, 0.9);
  margin: 0 auto 0 0;
  padding-top: 50px;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100%;
  min-height: 100%;
  height: 100%;
  z-index: 9980;
  display: none;
  overflow-y: scroll;
  scrollbar-width: none; }
  header .drawernav::-webkit-scrollbar {
    display: none; }
  header .drawernav ul {
    font-size: 1.5rem;
    margin: 0 auto;
    font-weight: bold;
    letter-spacing: 0.1rem;
   /*
  li:first-child {
  	border: none
  }*/ }
    header .drawernav ul li {
      border-top: 1px solid rgba(255, 255, 255, 0.5); }
      header .drawernav ul li a {
        padding: 1rem 1.25rem;
        display: block; }
      header .drawernav ul li ul {
        margin-left: 3%;
        font-weight: normal; }
  header .drawernav a:link, header .drawernav a:visited, header .drawernav a:hover, header .drawernav a:active,
  header .drawernav li a:link,
  header .drawernav li a:visited,
  header .drawernav li a:hover,
  header .drawernav li a:active {
    color: #FFFFFF; }
  header .drawernav .subdrawer {
    margin: 2rem 1%;
    padding: 1rem;
    border: 2px dotted rgba(255, 255, 255, 0.3); }
    header .drawernav .subdrawer li {
      border-top: none;
      font-weight: normal; }

@media only screen and (max-width: 780px) {
  header .navbtn {
    width: 50px;
    height: 50px;
    z-index: 9981;
    display: block;
    cursor: pointer;
    position: fixed;
    right: 0;
    top: 0; }
    header .navbtn.close {
      background: url(../imgs/sp_nav.webp) center center no-repeat;
      background-size: 100%; }
    header .navbtn.open {
      background: url(../imgs/sp_nav_off.webp) center center no-repeat;
      background-size: 100%;
      display: none; } }
/*---------------------------------
	FOOTER
-----------------------------------*/
.backtop {
  text-align: right;
  margin: 5rem 2rem 0 auto;
  font-size: 1.3rem; }

footer {
  margin: 2rem 0 2rem;
  text-align: center; }

/*---------------------------------
	wrapper
-----------------------------------*/
#wrapper {
  line-height: 1.6; }

.inwidth {
  padding-top: 55px;
  max-width: 1020px;
  margin: 0 auto 0;
  padding-left: 0.5%;
  padding-right: 0.5%; }

/*---------------------------------
	parts
-----------------------------------*/
.pan {
  font-size: 1.1rem; }
  .pan a {
    margin-right: 1rem; }
    .pan a:after {
      content: " > ";
      margin-left: 1rem; }

.pcimg {
  display: inherit; }

.spimg {
  display: none; }

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

  .spimg {
    display: inherit; } }

/*# sourceMappingURL=base2.css.map */
