@charset "utf-8";
/* common.css */
html {
  font-size: 62.5%; /* 10px */
}
body {
  font-family: "source-han-sans-japanese", 'Yu Gothic', 'メイリオ', Meiryo, 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}
body.panelactive {
  overflow: hidden;
}
section {
  padding: 60px 0;
}
* a:hover {
  opacity: 0.75;
}
.pc {
  display: none;
}
/*■■■■■■■■■■■■■■■SP■■■■■■■■■■■■■■■*/
/*----------header----------*/
header {
  position: relative;
}
/*●●●logo●●●*/
.logo {
  position: relative;
}
/*
.logo p {
  background-color: #0F1A7D;
  width: 110px;
  height: 64px;
}
.logo p img {
  display: block;
  margin: auto;
  width: 70px;
  padding-top: 4.5px;
}
*/
.logo h1 {
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: 1px;
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 10;
}
.logo h1 a {
  color: #FFF;
}
.logo h1 span {
  display: block;
  font-size: 1.8rem;
}
/*●●●j_note●●●*/
.header_jnote {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 60px;
}
.header_jnote.panelactive {
  display: none;
}
.header_jnote p a {
  display: inline-block;
  background: rgba(255,255,255,0.85);
  width: 60px;
  height: 60px;
  color: #0F1A7D;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  padding: 8px 0
}
.header_jnote p a span {
  font-size: 1.2rem;
  display: block;
}
/*●●●open_btn●●●*/
.open_btn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 30px;
  background: rgba(15,26,125,0.85);
}
.open_btn.active {
/*  border-color: #0F1A7D;*/
  background: #fff;
}
/*×に変化*/
.open_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #FFF;
  width: 34px;
}
.open_btn span:nth-of-type(1) {
  top: 15px;
}
.open_btn span:nth-of-type(2) {
  top: 27px;
}
.open_btn span:nth-of-type(3) {
  top: 40px;
}
.open_btn.active span:nth-of-type(1) {
  top: 21px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
  background-color: #0F1A7D;
}
.open_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.open_btn.active span:nth-of-type(3) {
  top: 33px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
  background-color: #0F1A7D;
}
/*●●●nav●●●*/
#g_nav {
  display: none;
  position: absolute;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 70%;
  height: 100vh;
  background-color: rgba(15, 26, 125, 0.85);
  transition: all 0.6s;
}
#g_nav.panelactive {
  display: block;
  right: 0;
}
#g_nav.panelactive #g_navList {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g_nav ul {
  width: 60%;
  position: absolute;
  z-index: 999;
  left: 20%;
  margin-top: 75px;
}
#g_nav ul li {
  position: relative;
  border-bottom: 1px solid #fff;
}
#g_nav ul li a {
  color: #fff;
  font-size: 1.6rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 0 18px;
}
#g_nav ul li.nav_jnote::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f35d";
    position: absolute;
    top: 18px;
    right: 17px;
    color: #fff;
    font-size: 1.6rem;
    z-index: -1;
}
#g_nav ul li.has-child.active {
  border-bottom: none;
  margin-bottom: -30px;
}
#g_nav ul li.has-child::after {
  /*矢印の設定*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  top: 18px;
  right: 17px;
  color: #fff;
  font-size: 1.6rem;
  z-index: -1;
}
#g_nav ul li.has-child.active::after {
  transform: rotate(-180deg);
  top: 15px;
}
#g_nav li.has-child ul {
  width: 100%;
  position: relative;
  left: 0;
  margin-top: 0;
  height: 200px;
  visibility: visible; /*JSで制御するため一旦表示*/
  opacity: 1; /*JSで制御するため一旦表示*/
  display: none; /*JSのslidetoggleで表示させるため非表示に*/
  transition: none; /*JSで制御するためCSSのアニメーションを切る*/
}
#g_nav li.has-child ul li {
  border-color: rgba(15, 26, 125, 0.85);
}
#g_nav li.has-child ul li a {
  background: rgba(255, 255, 255, 0.85);
  color: #0F1A7D;
  padding-left: 15px;
}
#g_nav li.has-child ul li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  position: absolute;
  right: 17px;
  font-size: 1.4rem;
}
#g_nav ul li.nav_jnote_pc {
    display: none;
}
#g_nav ul li.sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: none;
  padding-top: 10px;
  max-width: 220px;
  margin: auto;
}
#g_nav ul li.sns a {
  width: 18%;
  display: block;
}
.sc_ttl {
  text-align: center;
  margin-bottom: 20px;
}
.sc_ttl span {
  position: relative;
  z-index: 20;
  font-family: darkmode-off, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  padding: 1px 15px;
}
.sc_ttl span::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 23px;
  left: 0;
  right: 0;
  background: #0F1A7D;
  transform: skewX(-25deg);
}
.sc_ttl h2 {
  font-family: ruika, sans-serif;
  font-size: 3.5rem;
  font-weight: normal;
  color: #0F1A7D;
  display: flex;
  align-items: center;
}
.sc_ttl h2:before, .sc_ttl h2:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #0F1A7D;
}
.sc_ttl.wh span {
  color: #0F1A7D;
}
.sc_ttl.wh span::after {
  background: #fff;
}
.sc_ttl.wh h2 {
  color: #FFFFFF;
}
.sc_ttl.wh h2:before, .sc_ttl.wh h2:after {
  background-color: #FFFFFF;
}
.sc_ttl h2:before {
  margin-right: 20px;
}
.sc_ttl h2:after {
  margin-left: 20px;
}
.sc_ttl02 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0F1A7D;
  margin-bottom: 10px;
}
.sc_ttl02.wh {
  color: #FFFFFF;
}
.format {
  padding: 0 20px;
}
.link_btn {
  text-align: center;
  margin-top: 30px;
}
.link_btn a {
  width: 250px;
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 18px;
}
.link_btn.wh a {
  background: #fff;
  color: #0F1A7D;
}
.link_btn.bl a {
  background: #0F1A7D;
}
.footer_bg {
  background-color: #000000;
}
footer {
  padding: 60px 20px;
  text-align: center;
}
footer .footer_logo {
  margin: auto;
  width: 130px;
}
footer .footer_name {
  color: #FFFFFF;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.3;
  margin-top: 5px;
}
footer .footer_name span {
  display: block;
  font-size: 2.3rem;
}
footer .link_btn.wh a {
  color: #000;
}
footer ul li.head {
  font-family: ruika, sans-serif;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  display: block;
  margin-bottom: 7px;
}
footer .footer_news {
  margin: 35px 0;
}
footer .footer_news li {
  padding: 0 20px;
  display: inline-block;
}
footer .footer_news li a {
  color: #FFFFFF;
  text-align: center;
}
footer .footer_sns li.head {
  margin-bottom: 11px;
}
footer .footer_sns .icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .footer_sns .icon a {
  width: 70px;
  padding: 0 15px;
}
footer .copyright {
  color: #FFFFFF;
  margin-top: 40px;
  font-size: 1.2rem;
}
/*■■■■■■■■■■■■■■■TB■■■■■■■■■■■■■■■*/
@media (min-width:768px) {
  .logo h1 {
    font-size: 3.5rem;
  }
  .logo h1 span {
    display: inline-block;
    font-size: 3.5rem;
  }
  .format {
    max-width: 940px;
    margin: auto;
  }
}
/*■■■■■■■■■■■■■■■PC-S■■■■■■■■■■■■■■■*/
@media (min-width:980px) {
  section {
/*    padding: 80px 0;*/
    padding: 80px 0 100px;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .sc_ttl {
    margin-bottom: 30px;
  }
  .sc_ttl span {
    font-size: 1.5rem;
  }
  .sc_ttl h2 {
    font-size: 5rem;
  }
  .sc_ttl span::after {
    height: 25px;
  }
  footer {
    padding: 80px 20px;
  }
}
/*■■■■■■■■■■■■■■■PC-L■■■■■■■■■■■■■■■*/
@media (min-width:1200px) {
  body {
    font-size: 1.6rem;
  }
  .link_btn {
    text-align: left;
  }
  .link_btn a {
    width: 100%;
    text-align: center;
  }

  .logo h1, .logo h1 span {
    font-size: 2.7rem;
    padding-top: 3px;
  }
  .open_btn {
    display: none;
  }
  .header_jnote {
  display: none;  
  }
  #g_nav {
  top: 0;
  right: 0;
  width: 83%;
  height: 64px;
  background-color: transparent;
  transition: all 0.6s;
  display: block;
  }
  #g_nav ul {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
  }
  #g_nav ul li {
    border: none;
  }
  #g_nav ul li a {
    color: #FFF;
    font-weight: bold;
    text-align: center;
/*
    display: block;
    padding: 15px 10px 18px;
    width: 100%;
*/
  }
  #g_nav ul li.nav_jnote {
    display: none;
  }
  #g_nav ul li.nav_jnote_pc {
    display: block;
    width: 11%;
  }
  #g_nav ul li.nav_jnote_pc a {
    background: rgba(255,255,255,0.85);
    padding: 15px 10px 18px;
    color: #0F1A7D;
    }
  #g_nav ul li.has-child {
    padding-right: 20px;
  }
  #g_nav ul li.has-child::after {
    color: #000;
    top: 18px;
    right: 17px;
  }
  #g_nav ul li.has-child ul {
    position: absolute;
    top: 51px;
    left: -10px;
    width: 118px;
  }
  #g_nav ul li.has-child ul li:nth-child(2) {
    border-top: 1px dotted #fff;
    border-bottom: 1px dotted #fff;
  }
  #g_nav ul li.has-child ul li a {
    text-align: left;
    background: rgba(255,255,255,0.85);
    color: #0F1A7D;
    padding: 10px 15px;
  }
  #g_nav li.has-child ul li a::after {
    font-size: 1.2rem;
    top: 14px;
    right: 15px;
  }
  #g_nav ul li.has-child::after {
    width: 0;
    height: 0;
    color: #FFF;
  }
  #g_nav ul li.has-child:hover ul {
    display: block;
  }
  #g_nav ul li.has-child:hover::after {
    transform: rotate(-180deg);
    top: 40px;
    right: 4px;
  }
  #g_nav ul li.sns {
    width: 85px;
    padding: 15px 5px;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-around;
    background: rgba(15, 26, 125, 0.8);
    position: absolute;
    top: 38vh;
    right: 0;
  }
  #g_nav ul li.sns a {
    width: 100%;
    margin: auto;
    padding: 10px;
  }
  .format {
    max-width: 1240px;
    margin: auto;
  }
  footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1240px;
    margin: auto;
  }
  footer .footer_logo {
    margin: 0;
    width: 105px;
  }
  footer .footer_name {
    margin: 10px 0 0 0;
  }
  footer ul li.head {
    margin-bottom: 18px;
  }
  footer .footer_news {
    margin: 0 0 0 60px;
  }
  footer .footer_news li {
    padding: 0 15px;
  }
  footer .link_btn {
    margin: 13px 0 0 30px;
  }
  footer .link_btn a {}
  footer .copyright {
    width: 100%;
  }
}