@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #F8F8FF;
  /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

section h2 {
  font-size: 2.4rem;
}

a:hover {
  opacity: 0.5;
}

.none {
  display: none;
}

/* headerコード */


.header {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 13px 10px 10px;
  display: flex;
  justify-content: space-between;
}

.header-logo img {
  width: 100%;
  height: auto;
  max-width: 30px;
}


/* ここから下がハンバーガーメニューに関するCSS */

.nav {
  position: relative;
  top: 0px;
  right: 0px;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  position: absolute;
  right: 0;
  z-index: 100;
  /* 重なり順を一番上にする */
  cursor: pointer;
  width: 30px;
  height: 30px;
}


/* ハンバーガーメニューのアイコン */

.drawer_open span {
  top: 14px;
}

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 28px;
  border-radius: 3px;
  background: #FFF;
  transition: 0.5s;
  position: absolute;
  right: 0;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: rgba(0, 0, 0, 0.9);
  transition: .5s;
  text-align: center;
  padding-top: 20px;

}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  margin-top: 200px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
  bottom: 0;
  /* メニューを画面に入れる */
}

.nav_item {
  text-align: center;
  padding-bottom: 22px;
  font-family: "Arial", "メイリオ";
  font-weight: lighter;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}

/*fotterコード*/
.footer {
  background-color: #000011;
  text-align: center;
  color: #c3c3c3;
}

.test-footer {
  position: relative;
  background-image: url(../../assets/img/test-footer-muji.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 800px;
  padding-top: 300px;
}

.footer-icon-map {
  display: flex;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  gap: 35px;
  justify-content: center;
  margin-bottom: 50px;
}

.map-text {
  border: 1px solid #FFF;
  border-radius: 4px;
  padding: 9px 11px;
  font-size: 1.4rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .07em;
}

.map-fream-text a:hover {
  background-color: red;
}

.copy_lite {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  padding-bottom: 15px;
  letter-spacing: .01em;
}

#scroll-top {
  text-align: right;
  position: absolute;
  bottom: 5px;
  right: 0;
  justify-content: right;
  margin: 0 17px 6px 0;
  /* topボタンサイズ↓ */
  width: 20px;
  height: 15px;
}

/* _::-webkit-full-page-media,
_:future,
:root .map-text {
  margin-left: 20px;
} */



/* MB 780px以下に適用されるcss*/
@media screen and (max-width: 780px) {
  .nav_list {
    margin-top: 150px;
  }

  .nav_item {
    padding-bottom: 30px;
  }

  .test-footer {
    height: 500px;
    padding-top: 130px;
  }

  .nav-icon {
    margin-top: 10px;
  }

}