@charset "utf-8";

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

ul,
ol {
  list-style: none;
}

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

body {
  font-family: "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", sans-serif;
  font-size: 16px;
  color: #504946;
  line-height: 1.3;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* ヘッダーが他の要素の上にくるように */
  background-color: #ddb9c7;
  /* 背景色をつけておくと重なっても見やすい */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* お好みで影もつけてみて！ */
  color: #ffffff;
}

.main {
  padding-top: 110px;
}

.header-inner {
  max-width: 1200px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 90px;
  display: block;
}

.header-site-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: #ffffff;
  background-color: #ddb9c7;
  padding-top: 30px;
  padding-bottom: 50px;
  display: none;
}

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

.site-menu ul {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.site-menu li {
  margin-top: 30px;
  font-weight: bold;
}

.header-site-menu.is-show {
  display: block;
}

.toggle-menu-button {
  display: block;
  width: 44px;
  height: 34px;
  background-image: url(../images/common/icon-menu.png);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

.footer {
  color: #ffffff;
  background-color: #ddb9c7;
  padding-top: 50px;
  padding-bottom: 70px;
}

.footer-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.footer-logo {
  width: 200px;
  display: block;
}

.instagram {
  display: block;
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
}

.footer-right {
  text-align: center;
}

.footer-left {
  text-align: center;
}

.footer-left p {
  margin-top: 10px;
}

.footer-line {
  border-left: 1px solid #fff;
  height: 250px;
  /* 縦の長さ */
  margin-left: 15px;
}

.footer-menu {
  width: 650px;
}

.follow {
  font-weight: bold;
  padding-bottom: 6px;
}

.site-menu li a {
  color: #fff;
  text-decoration: none; /* 下線を消しておく */
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.site-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0; /* ← ここを調整！ */
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}


.site-menu li a:hover {
  color: #fff;
}

.site-menu li a:hover::after {
  width: 100%;
}

@media(max-width:767px) {
  .main {
    padding-top: 50px;
  }

  .header {
    height: 50px;
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
  }

  .header-logo {
    width: 40px;
  }

  .header-site-menu {
    padding-bottom: 30px;
  }

  .site-menu {
    flex-direction: column;
    align-items: center;
  }

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

  /* body {
    overflow-x: hidden;
  } */

  .footer-menu {
    display: none;
  }

  .footer-inner {
    display: flex;
    flex-direction: column-reverse;
    /* これを追加するだけで順番が逆になる！ */
    align-items: center;
  }

  .footer-line {
    height: 1px;
    background-color: #fff;
    width: 100%;
    margin: 30px 0;
  }

  .footer- {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header {
    height: 70px;
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
  }

  .header-logo {
    width: 60px;
  }

  .header-site-menu {
    padding-bottom: 30px;
  }

  .site-menu {
    align-items: center;
  }

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

  /* body {
    overflow-x: hidden;
  } */

  .footer-menu {
    display: none;
  }

  .footer-inner {
    display: flex;
    flex-direction: column-reverse;
    /* これを追加するだけで順番が逆になる！ */
    align-items: center;
  }

  .footer-line {
    height: 1px;
    background-color: #fff;
    width: 100%;
    margin: 30px 0;
  }

  .footer- {
    margin-left: auto;
    margin-right: auto;
  }
}