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

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

#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: 250px;
  padding: 10px;
  padding-top: 30px;
}

.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;
  overflow-y: scroll;
  overscroll-behavior-y: none;
}

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

.menu-content {
  background: #eff6fc;
}
.menu-content .menu-area {
  padding-top: 30px;
  text-align: center;
  width: 100%;
  /*
  .menu-anime {
      border-bottom: solid 1px $black;
  }*/
}
.menu-content .menu-area li {
  display: block;
  list-style: none;
  text-align: left;
  width: auto;
  font-size: 16px;
  margin: 30px auto;
  max-width: 80%;
  width: 400px;
}
.menu-content .menu-area label {
  border-bottom: solid 1px rgb(46, 46, 46);
  padding: 5px 5%;
}
.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,
#menu_bar03:checked ~ #links03 li,
#menu_bar04:checked ~ #links04 li,
#menu_bar05:checked ~ #links05 li,
#menu_bar06:checked ~ #links06 li {
  width: 250px;
  max-width: 100%;
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
  padding: 10px 5%;
}

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

#menu_bar01:checked ~ #links01,
#menu_bar02:checked ~ #links02,
#menu_bar03:checked ~ #links03,
#menu_bar04:checked ~ #links04,
#menu_bar05:checked ~ #links05,
#menu_bar06:checked ~ #links06 {
  margin: 20px 0;
  height: auto;
}

/*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child,
#menu_bar03:checked ~ #links03 li:last-child,
#menu_bar04:checked ~ #links04 li:last-child,
#menu_bar05:checked ~ #links05 li:last-child,
#menu_bar06:checked ~ #links06 li:last-child {
  margin-bottom: 0px;
}

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

.menu-bg {
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.menu-area label:after {
  content: ">";
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(0deg);
  position: absolute;
  font-size: 20px;
  right: 10px;
  top: -20px;
  bottom: 15%;
  margin: auto;
}

/*開いた状態の矢印描画*/
.menu-area input[type=checkbox]:checked + label:after {
  content: ">";
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(270deg);
  position: absolute;
  right: 25px;
  top: 0px;
  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%;
  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;
}

.menu-content .contact a {
  display: block !important;
  background: #004da1;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  text-align: center;
  display: inline;
  font-weight: 600;
  margin: 0 auto;
  max-width: 90%;
  width: 400px;
}
.menu-content .contact {
  margin-bottom: 20px;
}
.menu-content .menu-footer {
  margin-top: 40px;
}
.menu-content .info {
  margin: 0 auto;
  width: 300px;
  max-width: 90%;
  padding-bottom: 40px;
}
.menu-content .tel span {
  font-weight: 800;
  font-size: 25px;
}

.bottom-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  background: #004da1;
  width: 100%;
  z-index: 30;
}
.bottom-fixed .contact {
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  width: 50%;
  font-weight: 800;
}
.bottom-fixed .contact a {
  color: white;
}
.bottom-fixed .contact:nth-child(1) {
  border-right: solid 0.8px white;
}
.bottom-fixed .contact:nth-child(2) {
  border-left: solid 0.8px white;
}

@media (max-width: 1200px) {
  .menu-btn {
    display: flex;
  }
  .menu-content {
    display: block;
  }
}/*# sourceMappingURL=menu.css.map */