@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  background-color: #fff;
  color: #727171;
}

img {
  max-width: 100%;
}

.first-view-img,
.hero-image,
.full-width-image {
  max-width: none;
}

.wallpaper {
  background-image: url(../img/index/mc_noisemint1200bk.jpg);
}

.header {
  width: 100%;  height: 110px;
  margin: 0;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1111;
}

.header-logo {
  display: block;
}

.toggle-menu-button {
  display: none;
}

.header-site-menu {
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 600px;
  height: 40px;
  font-size: 14px;
  padding: 0 20px;
  font-weight: 700;
  font-style: normal;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin: 0 20px;
}

.site-menu ul li a {
  font-weight: 700;
}

.sns-menu {
  display: flex;
}

.instagram {
  display: block;
  width: 25px;
  margin-right: 10px;
}

.x {
  display: block;
  width: 23px;
  margin-right: 5px;
  margin: 0 auto;
}

.footer {
width: 100%; 
background-image: url(../img/common/mc_haikei_footer.jpg);
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center, center;
background-size: cover;}

.footer-logo {
  padding: 80px;
}

.footer-logo img {
  width: 150px;
}

.footer-site-menu {
  text-align: right;
  margin: 20px 140px;
}

.footer-site-menu-inner {
  display: inline-block;
  text-align: left;
  line-height: 3;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin: 100px 140px;
}

.footer-sns {
  display: flex;
  padding: 0 20px;
}

.instagram {
  margin: 0 10px;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #faee8c;
  border: solid 2px #727171;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #727171;
  border-right: 3px solid#727171;
  transform: translateY(20%) rotate(-45deg);
}

@media(max-width:1100px){

  .footer-site-menu {
    margin: 20px 50px;
  }

  .footer-inner {
    margin: 100px 50px;
  }
  
}

@media(max-width:930px){

  .site-menu ul{
    display: block;
    text-align: center;
  }

  .site-menu ul li{
    margin-top: 20px;
  }

  .header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0;
    position: relative;

  }
  
  .header img{
    width: 80%;
  }

  .header-site-menu {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    color: #727171;
    background-color: #fff;
    display: block;
    border-radius: 0;
    width: 100%;
    height: 250px;
  }

  .site-menu{
    padding: 30px;
  }

  .sns-menu {
    display: flex;
justify-content: center;
  }
  
  .instagram {
 
    margin-right: 0;
  }
  
  .x {
margin: 0;
  }

  .header-site-menu.is-show {
    opacity: 1;
    pointer-events: all;
    visibility: unset;}

    .toggle-menu-button {
      display: block;
      width: 44px;
      height: 34px;
      background-color: transparent;
      border: none;
      border-radius: 0;
      outline: 0;
      /* position: fixed;
      top: 0;
      left:0;
      padding: 20px;
      z-index: 30; */
  }
  .line {
    display: block;
    width: 80%;
    height: 2px;
    background-color: brown;
    margin: 0 auto;
    position: relative;
    /* ゆっくり×になる */
    transition: all 0.5s;
}

.line::before,
.line::after {
    content: "";
    display: block;
    /* 親要素に対してのサイズなので100%に変える */
    width: 100%;
    height: 2px;
    background-color: brown;
    margin: 0 auto;
    position: absolute;
    left: 0;
    /* ゆっくり×になる */
    transition: all 0.5s;
}

.line::before {
    top: -10px
}

.line::after {
    top: 10px
}

.toggle-menu-button.is-show .line {
    background-color: #00000000;
}

.toggle-menu-button.is-show .line::before {
    /* 中心に重ねる */
    top: 0;
    transform: rotate(25deg);
}

.toggle-menu-button.is-show .line::after {
    /* 中心に重ねる */
    top: 0;
    transform: rotate(-25deg);
}

}