@charset "UTF-8";
@import url("https://use.typekit.net/fdp7etr.css");
header {
  height: 70px;
  width: auto;
}

/*********************
logo
**********************/
header {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 30px;
  margin-left: 20px;
}

/*********************
entry
**********************/
.entry-box {
  position: fixed;
  display: flex;
  top: 0;
  right: 0;
  z-index: 50;
}
.entry-box a {
  background: #2e67c2;
  color: white;
  text-decoration: none;
  font-weight: 800;
  display: block;
  padding: 25px 25px 25px 35px;
  border-radius: 0 0 0px 20px;
  color: #ffe200;
  font-size: 14px;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.2);
}
.entry-box a:nth-child(1),
.entry-box a:nth-child(4) {
  margin-right: -15px;
  background: #a6c4f2;
  padding: 25px 40px 25px 35px;
  background: #a6c4f2;
  color: white;
}
.entry-box a:nth-child(2),
.entry-box a:nth-child(5) {
  margin-right: -15px;
  padding: 25px 40px 25px 35px;
  background: #668ecc;
  color: white;
}

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

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background-color: #668ecc;
  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);
}

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

#menu-btn-check:checked ~ .menu-btn {
  background-color: transparent;
  top: 10px;
  right: 10px;
  transition: 0.5s;
}

#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: 200px;
  max-width: 70%;
  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: #f1f2ee;
}
.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;
}
.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 {
  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 {
  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%;
  text-align: center;
  color: #668ecc;
  font-weight: 400;
  line-height: 130%;
  font-size: 14px;
  margin-bottom: 30px;
}
.menu-footer a,
.menu-footer p {
  color: white;
}
.menu-footer a {
  display: block;
  color: #668ecc;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 20px;
}
.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: 100%;
  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;
}

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

.menu-btn {
  top: 80px;
  right: 10px;
}

.entry-pc {
  display: block !important;
}

.entry-sp {
  display: none !important;
}

.menu-area-flex {
  display: flex;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.menu-li {
  padding-right: 20px;
}

.menu-li:nth-child(1) {
  width: 25%;
}

.menu-li:nth-child(2) {
  width: 50%;
}

.menu-li:nth-child(3) {
  width: 25%;
}

.menu-li a {
  font-weight: 800;
  color: #668ecc;
}
.menu-li ul a {
  font-weight: 400;
  font-size: 12px;
  color: #668ecc;
}
.menu-li label {
  font-weight: 800;
  color: #668ecc;
}

.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;
  padding: 16px 0;
}
.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%;
}

/*********************
sp
**********************/
@media (max-width: 1000px) {
  .entry-pc {
    display: none !important;
  }
  .entry-sp {
    display: block !important;
  }
  .entry-box {
    top: auto;
    bottom: 0;
  }
  .entry-box a {
    border-radius: 20px 0 0 0;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.2);
    padding: 15px 20px 15px 35px;
  }
  .entry-box a:nth-child(1),
  .entry-box a:nth-child(4) {
    padding: 15px 35px 15px 30px;
  }
  .entry-box a:nth-child(2),
  .entry-box a:nth-child(5) {
    padding: 15px 35px 15px 30px;
  }
  .menu-btn {
    right: 10px;
    top: 10px;
  }
}
@media (max-width: 700px) {
  header .logo img {
    height: auto;
    width: 300px;
    max-width: 70%;
    margin-left: 20px;
  }
  .menu-area-flex {
    flex-direction: column;
  }
  .menu-area-flex .menu-li {
    width: 330px !important;
    max-width: 100%;
    margin: 0 auto;
  }
  .btns {
    flex-direction: column;
  }
  .btns li {
    width: auto !important;
  }
}
@media (max-width: 500px) {
  .entry-box {
    width: 100%;
    align-items: center;
  }
  .entry-box a {
    padding: 15px 0 !important;
    width: 30%;
    text-align: center;
    font-size: 10px;
  }
  .entry-box a:nth-child(4) {
    width: calc(35% + 15px);
  }
  .entry-box a:nth-child(5) {
    width: calc(35% + 15px);
  }
}/*# sourceMappingURL=head.css.map */