@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "Noto Sans JP", "Zen kaku Gothic New", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  /*font-weight: 500;*/
  font-size: 1.6em;
  /*line-height: 1.8;*/
}
.section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*下記編集する*/
/* header  1040幅で固定するには */
.header_blue_background {
  background-color: #171C61;
  margin: 0px auto;
  width: 100%;
  height: 80px;
  padding: 13px 0 0 200px;
}
/* 背景青 */
.header_blue_background h1 {}
.header {
  position: relative;
}
.header_logo img {
  width: auto;
  position: absolute;
  top: 0;
  left: 80px;
}
.nssu_1 {
  font-size: 3.0rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #efefef;
  top: 10px;
}
.nssu_2 {
  font-size: 1.8rem;
  letter-spacing: 3.2px;
  padding: 0px 0px 0 4px;
  font-family: "Saira", sans-serif;
  font-weight: 400;
  color: #efefef;
  line-height: 2;
}
.header_nssu_sp {
  display: none;
}
.header_nssu_pc {
  display: block;
}
.header_br {
  display: none;
}
.header_br_none {
  display: none;
}
.header_2_wrap {
  background-color: #fff;
  font-size: 2, 0rem;
  margin: 0px auto;
  padding: 0px 200px 0;
  height: 50px;
}
.header_navigation {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
  width: 100%;
}
.header_navigation ul {
  display: flex;
}
.header_navigation_1 li a {
  color: #000;
  font-family: "Sawarabi Gothic", sans-serif;
  font-style: normal;
  text-decoration: none;
  position: relative;
}
.header_navigation_1 li a:hover {
  color: #858282;
  cursor: pointer;
}
.header_navigation_1 li a::before {
  content: url("../images/top/Line .png");
  position: absolute;
  right: -41px;
  top: -8px;
}
.header_navigation_1 li:last-of-type a::before {
  display: none;
}
.header_navigation_1 {
  max-width: 100%;
  gap: 64px;
  justify-content: space-between;
  align-items: center;
  font-size: 2.0rem;
  height: 48px;
}
.header_navigation_2 {
  padding-top: 4px;
  gap: 22px;
}
/*navigation*/
.nav-wrapper {
  display: none;
}
@media(max-Width:1142px) {
  .nav-wrapper {
    display: block;
  }
  /*崩れが目立ったから作った*/
  .header_2_wrap {
    display: none;
  }
  .header_logo img {
    width: 68px;
    height: 80px;
  }
  /*--ここからボタン*/
  .hamburger {
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 300;
    background: #fefefe;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  .line.nav-wrapper::before{
    content: 'MENU';
    position: absolute;
    text-align: center;
    color: #172e59;
    font-size: 10px;
    font-weight: 900;
    bottom: 5px;
    left: 9px;
  }

  .line.nav-wrapper.open::before{
    content: 'CLOSE';
    position: absolute;
    text-align: center;
    color: #172e59;
    font-size: 10px;
    font-weight: 900;
    bottom: 5px;
    left: 9px;
  }
  .hamburger__line {
    position: absolute;
    width: 30px;
    height: 3px;
    right: 10px;
    top: 16px;
    background-color: #171C61;
    transition: all 0.5s;
    border-radius: 5px;
    margin-top: 8px;
  }
  .hamburger__line--1 {
    top: 1px;
    color: #171C61;
  }
  .hamburger__line--2 {
    top: 10px;
    color: #171C61;
  }
  .hamburger__line--3 {
    top: 20px;
  }
  
  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }
  .open .hamburger__line--2 {
    opacity: 0;
  }
  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }
  
  /* 
sp-nav(ナビ)
=================================== */
  .sp-nav {
    position: fixed;
    right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0px;
    width: 70%; /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    padding: 80px 0 0 30px;
    color: #fefefe;
    text-decoration: none;
  }
  .sp-nav_icon_sp_2 {
    display: flex;
    margin: 50px 80px 0 0;
    gap: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 50%;
  }
  .sp-nav a{
    color: #fefefe;
    
  }
  .sp-nav_icon_sp_3 {
    padding-bottom: 20px;
  }
  .icon_nav_1 {
    width: 75%;
    height: auto;
  }
  .icon_nav_2, .icon_nav_3 {
    width: 80%;
    height: auto;
  }
  /* 実線 
  .hr1, .hr2, .hr3 {
    width: 90%;
    border-top: 2px solid rgba(245, 238, 238, 0.5);
    margin: 25px 30px 25px 0;
  }*/
  .nav_sp_1, .nav_sp_2, .nav_sp_3 {
    font-size: 1.8rem;
    padding: 20px 0 0 8px;
    color: #fefefe;
  
    
  }
  
  }
  /*ハンバーガーがクリックされたら右からスライド*/
  .open .sp-nav {
    right: 0;
  }
  /* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
  }
  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
    opacity: 0.3;
    visibility: visible;
  }
  /*button終わり*/

@media(max-Width:969px) {
  .header_blue_background {
    height: 80px;
    padding: 20px 0 0 100px;
    
  }
  .nssu_1 {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #efefef;
    letter-spacing: 0.3px;
  }
  .header_logo img {
    top: 0;
    left: 20px;
  }
  .nssu_2 {
    display: none;
  }
  .header_nssu_pc {
    display: none;
  }
  .header_nssu_sp {
    display: block;
    padding-top: 0px;
  }
  .header_br_none {
    display: block;
    padding-top: 5px;
  }
  /*--ここからボタン*/
  .hamburger {
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 300;
    background: #fefefe;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    text-decoration: none;
  }
  .nav-wrapper_close,.nav-wrapper,.open::before {
    content: 'CLOSE';
}
  .hamburger__line {
    position: absolute;
    width: 30px;
    height: 3px;
    right: 10px;
    top: 16px;
    background-color: #171C61;
    transition: all 0.5s;
    border-radius: 5px;
    margin-top: 8px;
  }
  .hamburger__line--1 {
    top: 1px;
    color: #171C61;
  }
  .hamburger__line--2 {
    top: 10px;
    color: #171C61;
  }
  .hamburger__line--3 {
    top: 20px;
  }
  
  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }
  .open .hamburger__line--2 {
    opacity: 0;
  }
  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }
  
  
  /* 
sp-nav(ナビ)
=================================== */
  .sp-nav {
    position: fixed;
    right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0px;
    width: 70%; /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    padding: 80px 0 0 30px;
    color: #fefefe;
  }
  .sp-nav_icon_sp_2 {
    display: flex;
    margin: 50px 80px 0 0px;
    gap: 17px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 60%;
}
  }
  .sp-nav_icon_sp_3 {
    padding-bottom: 20px;
  }
  .icon_nav_1{
    width: 160px;
    height: auto;
padding-bottom: 10px;
  }
  
  
  .icon_nav_2, .icon_nav_3 {
    width: 75%;
    height: auto;
  }
  /* 実線 */
  .hr1, .hr2, .hr3 {
    width: 90%;
    border-top: 2px solid rgba(245, 238, 238, 0.5);
    margin: 25px 30px 25px 0;
  }
  .nav_sp_1, .nav_sp_2, .nav_sp_3 {
    font-size: 1.8rem;
   
    padding: 20px 0 0 8px;
    color: #fefefe;
    border-bottom:1px solid #fefefe;
    padding-top: 35px;
  padding-bottom:20px;
    width: 90%;
 
  }
  /*ハンバーガーがクリックされたら右からスライド*/
  .open .sp-nav {
    right: 0;
  }
  /* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
  }
  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
    opacity: 0.3;
    visibility: visible;
  }
  /*button終わり*/

/*footer */
.footer {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #10133F;
  text-align: left;
  color: #fff;
}
.footer_1 {
  display: flex;
  gap: 35px;
  max-width: 1040px;
  padding-top: 70px;
  margin: 0 auto;
  color: #fff;
  justify-content: flex-start;
}
.footer_logo img {
  top: 30px;
  height: 103px;
  width: auto;
}
.footer_1 h1 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
.footer_h1 {
  left: 325px;
}
.footer_navigation {
  max-width: 1040px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: 50px 0 120px;
}
.footer_navigation ul {
  display: flex;
  justify-content: flex-start;
}
.footer_navigation_1 li a {
  color: #fff;
  text-decoration: none;
  font-size: 2.0rem;
  font-weight: 200;
  font-family: "Saira", sans-serif;
}
.footer_navigation_1 li a:hover {
  color: #858282;
  cursor: pointer;
}
.footer_navigation_1 {
  max-width: 450px;
  gap: 64px;
}
.footer_navigation_2 {
  gap: 32px;
  max-width: 415px;
  padding-left: 80px;
}
.copyright {
  position: relative;
  min-height: 100%;
}
.footer_copyright {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 100;
  letter-spacing: 1px;
}
.nssu_button{
  width: 13vw;
  
  
}
.footer_sns{
   width: 3.5vw;
  
}
@media(max-Width:969px) {
  .footer {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }
  .footer_1 {
    display: flex;
    gap: 20px;
    font-weight: 600;
    padding-top: 70px;
    margin: 0 auto;
    color: #fff;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer_1 h1 {
    font-size: 1.8rem;
    font-weight: 500;
    gap: 65px;
    margin: 20px 20px 0;
    font-family: "Noto Sans JP", sans-serif;
  }
  .footer_navigation {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 50px;
    flex-wrap: wrap;
  }
  .footer_navigation ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 109px;
  }
  .footer_logo img {
    top: 30px;
    height: auto;
    width: 80%;
  }
  .footer_navigation {
    font-size: 1.8rem;
  }
  .footer_navigation_1 li a {
    color: #fff;
    text-decoration: none;
    font-size: 2.0rem;
    font-weight: 200;
    font-family: "Saira", sans-serif;
  }
  .footer_navigation_1 {
    gap: 30px;
  }
 
 
    
   
  .footer_navigation_2 {
    gap: 30px;
    margin: 40px 0 70px;
  }
  .nssu_button{
    width: 180px;
  }
  .footer_sns{
    width: 45px;
    
    
    
  }
}