@charset "UTF-8";
/*********************
header
**********************/
header {
  position: relative;
  z-index: 100;
}

.head-box {
  display: flex;
  height: 50px;
  background: rgba(26, 49, 123, 0.7568627451);
  align-items: center;
  color: white;
}
.head-box a {
  color: white;
}
.head-box .logo a {
  padding-left: 10px;
}
.head-box .logo a img {
  width: 150px;
}
.head-box nav {
  flex-grow: 1;
}
.head-box .head-flex {
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.head-box .head-flex > li {
  margin: 0 20px;
  font-weight: 600;
  padding-right: 10px;
  cursor: default;
}
.head-box .head-flex > li ul {
  display: none;
}
.head-box .head-flex > li:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.head-box .head-flex > li:hover ul {
  display: block;
}
.head-box .head-flex ul {
  background-color: white;
  padding: 5px;
  border-radius: 10px;
}
.head-box .head-flex ul a {
  color: #6f6f6f;
}
.head-box .head-flex li {
  position: relative;
}
.head-box .head-flex .hover-box {
  position: absolute;
  padding-top: 10px;
  line-height: 150%;
}
.head-box .head-flex .hover-box li {
  font-size: 10px;
  font-weight: 500;
}

.entry-box {
  padding: 0 20px;
}
.entry-box a {
  display: block;
  width: 100px;
  background: #1a2f79;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
}

/*********************
メニュー
**********************/
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 45px;
  width: 45px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #546598;
  border-radius: 5px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #668ecc;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #668ecc;
}

#menu-btn-check:checked ~ .menu-btn {
  background-color: transparent;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0%; /**/
  z-index: 80;
  background-color: transparent;
}

/*
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}*/
.menu-logo {
  display: flex;
  height: 50px;
  align-items: center;
}
.menu-logo img {
  width: 150px;
  margin-left: 5%;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: white;
  transition: all 0.5s; /*アニメーション設定*/
  display: none;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}

.menu-content {
  background-color: #1a307b;
}
.menu-content .menu-area {
  padding-top: 30px;
  text-align: center;
  width: 100%;
}
.menu-content .menu-area li {
  display: block;
  list-style: none;
  text-align: left;
  width: auto;
  font-size: 16px;
  margin: 20px auto;
  width: 80px;
}
.menu-content .menu-area .sns {
  display: flex;
  justify-content: center;
}
.menu-content .menu-area .sns li {
  margin: 30px 20px;
}

.menu-area input {
  display: none; /*チェックボックスを隠す*/
}

.menu-area label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  position: relative;
}

.menu-content .menu-area .menu-anime li {
  font-size: 15px;
  margin: 0;
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}

#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li {
  width: 200px;
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
  padding: 10px;
}

.menu-content .menu-area .menu-anime {
  height: 0;
}

#menu_bar01:checked ~ #links01,
#menu_bar02:checked ~ #links02 {
  height: auto;
}

/*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child {
  margin-bottom: 0px;
}

/*閉じた状態の矢印描画*/
.menu-area label {
  position: relative;
}

.menu-bg {
  background-image: url("../../src/head/menu-bg.webp");
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.menu-area label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #707070 2px solid;
  border-right: #707070 2px solid;
  transform: rotate(135deg);
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 15%;
  margin: auto;
}

/*開いた状態の矢印描画*/
.menu-area input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: gray3 2px solid;
  border-right: gray3 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  right: -20px;
  bottom: -5px;
  margin: auto;
}

.menu-area .about-us {
  display: flex;
  flex-wrap: wrap;
}
.menu-area .about-us li {
  text-align: center;
  border-bottom: solid 1px rgb(46, 46, 46);
  width: 33.3333333333%;
  margin: 0;
  border-right: solid 1px rgb(46, 46, 46);
}
.menu-area .about-us li a {
  padding: 20px 0;
}
.menu-area .about-us li:first-child {
  border-top: solid 1px rgb(46, 46, 46);
  width: 100%;
  border-right: 0;
  padding: 20px 0;
}
.menu-area .about-us li:last-child {
  border-right: 0;
}

.menu-footer {
  width: 100%;
  background-color: #3a3a3a;
  color: white;
  text-align: center;
}
.menu-footer a,
.menu-footer p {
  color: white;
}
.menu-footer img.logo {
  width: 100px;
  margin: 0 auto;
  padding: 20px 0;
  filter: invert(100%);
}
.menu-footer nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;
  margin-right: 0px;
}
.menu-footer nav li {
  list-style: none;
  margin: 0;
  width: 50%;
  border: solid 1px #6f6f6f;
  font-size: 15px;
}
.menu-footer nav li a {
  padding: 20px 0;
}
.menu-footer nav li:nth-child(odd) {
  border-left: 0;
}
.menu-footer nav li:nth-child(even) {
  border-right: 0;
}
.menu-footer p {
  padding: 30px 0;
  font-size: 13px;
}

/*メニューPC追加*/
.menu-content {
  display: block !important;
  width: 500px;
  transition: all 0.5s;
  top: 0;
  right: -100%;
  left: auto;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.532);
  max-width: 100%;
  overflow-y: scroll;
  overscroll-behavior: contain;
  padding: 20px 2.5% 40px 2.5%;
  box-sizing: border-box;
}
.menu-content nav {
  margin: 30px 0 50px 0;
}
.menu-content li {
  margin-bottom: 20px;
  font-weight: 800;
}
.menu-content li .hover-box-sp {
  margin-top: 20px;
  margin-bottom: 30px;
}
.menu-content li .hover-box-sp li {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 10px;
}
.menu-content .access {
  color: #668ecc;
}
.menu-content .access a {
  color: #668ecc;
}

#menu-btn-check:checked ~ .menu-content {
  right: 0;
  left: auto;
}

.menu-btn {
  top: 0px;
  right: 0px;
  display: none;
}

.btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 1200px;
  margin: 30px auto;
  max-width: 90%;
  padding-bottom: 30px;
  border-bottom: solid 1px #668ecc;
}
.btns li {
  text-align: center !important;
}
.btns .nav-entry {
  background: #ffa700;
  color: white;
  font-weight: 800;
}
.btns a {
  display: block;
  width: 250px;
  max-width: 90%;
  padding: 20px 0;
  border-radius: 9999px;
  margin: 0 auto;
}
.btns .nav-entry1 {
  border: solid 1px #668ecc;
  padding: 10px 0;
  background: white;
}
.btns .nav-entry1 img {
  width: 60%;
  margin: 0 auto;
}
.btns .nav-entry2 {
  padding: 15px 0;
  color: white;
}
.btns .nav-entry2 {
  background: #a6c4f2;
}
.btns .nav-entry2.color2 {
  background: #668ecc;
}
.btns .nav-entry3 {
  width: 250px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  border: solid 1px #707070;
}
.btns .nav-entry3 .left {
  width: 40px;
}
.btns .nav-entry3 img {
  width: 20px;
}
.btns li:nth-child(1),
.btns li:nth-child(2),
.btns li:nth-child(3) {
  width: 33.33%;
}
.btns li a {
  color: #2c2c2c;
  font-weight: 600;
}

.btns {
  flex-direction: column;
}
.btns li {
  width: auto !important;
  margin-bottom: 40px;
}

@media screen and (max-width: 1300px) {
  .head-box .head-flex > li {
    margin: 0 10px;
    font-size: 14px;
  }
  .head-box .head-flex ul {
    font-size: 10px;
  }
}
@media screen and (max-width: 1150px) {
  .head-box .head-flex {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .entry-box {
    padding-right: 60px;
  }
}/*# sourceMappingURL=head.css.map */