@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Murecho:wght@100..900&display=swap');

:root {
  --main-color: #5c4a54;
  --red-color: #f88379;
}


body {
  color: #5c4a54;
  font-family: "Murecho", sans-serif;
  letter-spacing: 0;
}

p {
  color: #5c4a54;
  margin-bottom: 0;
}

.wrapper {
  overflow: hidden;
  position: relative;
}

.flex-box {
  display: flex;
}

.container {
  max-width: 1950px;
}

.container-1300 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.content {
  overflow: hidden;
}

a {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

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

.wrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
  /*
  background-size: cover;
  background-image: url('../images/common/all-bg.png');
  */
}

html,
body {
  color: var(--main-color);
  scroll-behavior: auto !important;
}

@media (max-width: 1950px) {
  .container {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

@media (max-width: 1340px) {
  .container-1300 {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

/* ===============
bg
=============== */
.wrap-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    filter: blur(60px);
}

.fluid {
    background: #ffeeed;
    position: absolute;
    animation: fluidRotate 30s ease 0s infinite;
}

.fluid:nth-of-type(1) {
    width: 42vw;
    height: 47vh;
    top: -8%;
    left: -10%;
}

.fluid:nth-of-type(2) {
    width: 58vw;
    height: 54vh;
    bottom: -5%;
    left: -6%;
}

.fluid:nth-of-type(3) {
    width: 24vw;
    height: 21vw;
    top: 40%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.fluid:nth-of-type(4) {
    width: 39vw;
    height: 60vh;
    top: -5%;
    right: -6%;
}

.fluid:nth-of-type(5) {
    width: 47vw;
    height: 39vh;
    bottom: -4%;
    right: -5%;
}

@keyframes fluidRotate {

    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}


/* =======================================
共通
======================================== */

.ttl-box {
  margin-bottom: 60px;
}

.ttl-box .en {
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--main-color);
  letter-spacing: 0.08em;
  font-family: "Comfortaa", sans-serif;
}

.ttl-box h3 {
  font-weight: 500;
  padding-left: 30px;
  letter-spacing: 0.014em;
  font-size: 20px;
  position: relative;
  color: var(--main-color);
}

.ttl-box h3::after {
  width: 10px;
  height: 10px;
  content: '';
  background-color: #ffb9b2;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: calc(50% + 2px);
  transform: translateY(-50%);
}

.more-btn {
  margin-top: 50px;
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color) !important;
  letter-spacing: 0.08em;
  padding: 0 25px;
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--main-color);
  font-family: "Comfortaa", sans-serif;
  overflow: hidden;
  /* ★これが重要 */
  z-index: 1;
  /* ★これも重要 */
}

.more-btn:hover {
  color: #fff !important;
}

.more-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--main-color);
  border-radius: 30px;
  transition: transform 0.6s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

.more-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.more-btn::after {
  content: '';
  right: 25px;
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
}

.more-btn:hover::after {
  background-color: #fff;
}

@media (max-width: 1280px) {

  .ttl-box .en {
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--main-color);
    letter-spacing: 0.08em;
    font-family: "Comfortaa", sans-serif;
  }

  .ttl-box h3 {
    font-weight: 500;
    padding-left: 30px;
    letter-spacing: 0.014em;
    font-size: 18px;
    position: relative;
    color: var(--main-color);
  }
}

@media (max-width: 768px) {
  .ttl-box .en {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--main-color);
    letter-spacing: 0.08em;
    font-family: "Comfortaa", sans-serif;
  }

  .ttl-box h3 {
    font-weight: 500;
    padding-left: 30px;
    letter-spacing: 0.014em;
    font-size: 18px;
    position: relative;
    color: var(--main-color);
  }

}

@media (max-width: 480px) {
  .ttl-box {
    margin-bottom: 40px;
  }

  .ttl-box .en {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--main-color);
    letter-spacing: 0.08em;
    font-family: "Comfortaa", sans-serif;
  }

  .more-btn {
    margin-top: 50px;
    width: 160px;
    height: 50px;
    font-size: 16px;
    padding: 0 15px;
  }

  .more-btn::after {
    right: 10px;
    width: 6px;
    height: 6px;
  }
}

/* =======================================
 ヘッダー
======================================== */
#header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

#header.is-scroll {
  background: rgba(255, 255, 255, 0.8);
}

#header .header-inner {
  padding: 18px 40px;
  display: flex;
  position: relative;
  justify-content: flex-end;
}

.logo {
  position: absolute;
  top: 30px;
  left: 30px;
}

.logo a {
  line-height: 1;
  font-family: "Comfortaa", sans-serif;
  font-size: 140px;
  transition: 0.7s;
  letter-spacing: 0.08em;
  color: var(--red-color);
}

.logo.scrolled {
    width: 22vw;
}

.logo.scrolled a {
  font-size: 60px;
}

.logo a:hover {
  opacity: 0.6;
}

.list-gnav {
  gap: 0 60px;
  display: flex;
}

.list-gnav li {
  text-align: center;
}

.list-gnav li.active a {
  color: var(--red-color);
}

.list-gnav li.active .en {
  color: var(--red-color);
}

.list-gnav .en {
  font-weight: 700;
  display: block;
  font-size: 20px;
  line-height: 1;
  color: var(--main-color);
  margin-bottom: 5px;
  transition: 0.7s;
  font-family: "Comfortaa", sans-serif;
}

.list-gnav a:hover .en {
  color: #c2b2bb !important;
}

.list-gnav a {
  font-size: 16px;
  line-height: 1;
  transition: 0.7s;
  font-weight: 500;
  color: var(--main-color);
}

.list-gnav a:hover {
  color: #c2b2bb !important;
}

#header .contact-btn {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  height: 80px;
  width: 200px;
  text-align: center;
  transition: 0.7s;
  border-radius: 40px;
  background-color: var(--main-color);
}

#header .contact-btn:hover {
  background-color: #c2b2bb;
}

.contact-btn .en {
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
}

.head_contents {
  display: flex;
  gap: 0 60px;
  align-items: center;
}

.mv-img {
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1780px) {
  .logo a {
    font-size: 120px;
    top: 40px;
  }

  .logo {
    left: 30px;
  }

}

@media (max-width: 1660px) {
  .head_contents {
    display: flex;
    gap: 0 40px;
    align-items: center;
  }

  .list-gnav {
    gap: 0 40px;
    display: flex;
  }

}

@media (max-width: 1600px) {
  .logo a {
    font-size: 100px;
  }

  .logo {
    left: 30px;
    top: 20px;
  }
}

@media (max-width: 1480px) {
  .logo {
    left: 30px;
    top: 30px;
  }

  .logo a {
    font-size: 70px;
  }
}

@media (max-width: 1300px) {
  #header .header-inner {
    padding: 18px 20px;
    display: flex;
    position: relative;
    justify-content: flex-end;
  }

  .logo {
    left: 20px;
    top: 25px;
  }

  .logo a {
    font-size: 70px;
  }

  .list-gnav .en {
    font-weight: 700;
    display: block;
    font-size: 16px;
    line-height: 1;
    color: var(--main-color);
    margin-bottom: 5px;
    transition: 0.7s;
    font-family: "Comfortaa", sans-serif;
  }

  .list-gnav a {
    font-size: 14px;
    line-height: 1;
    transition: 0.7s;
    font-weight: 500;
    color: var(--main-color);
  }

  #header .contact-btn {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    height: 70px;
    width: 160px;
    text-align: center;
    transition: 0.7s;
    border-radius: 40px;
    background-color: var(--main-color);
  }

  .contact-btn .en {
    display: block;
    font-size: 16px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
  }
}

@media (max-width: 1160px) {
  .list-gnav {
    gap: 0 20px;
    display: flex;
  }

  .logo a {
    font-size: 60px;
  }

}

@media (max-width: 1030px) {

  #header .header-inner {
    justify-content: flex-start;
  }

  .logo {
    padding-top: 5px;
    position: static;
  }

  .head_contents {
    display: none;
  }

}

@media (max-width: 768px) {
  .logo a {
    font-size: 55px;
  }
}

@media (max-width: 480px) {
  .logo a {
    font-size: 40px;
  }

}

/* =======================================
お問い合わせ
======================================== */

.contact-area {
  padding-top: 200px;
  padding-bottom: 200px;
}

.contact-area .flex-box {
  display: flex;
  justify-content: space-between;
}

.contact-right {
  padding-top: 40px;
  display: flex;
  gap: 0 20px;
}

.tel-box {
  width: 414px;
  height: 140px;
  display: flex;
  justify-content: center;
  border-radius: 70px;
  flex-flow: column;
  border: 1px solid var(--main-color);
}

.tel-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 0 7px;
  margin-bottom: 5px;
}

.tel-icon {
  width: 29px;
  font-size: 0;
  display: block;
}

.tel-text {
  line-height: 1;
  color: var(--main-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 32px;
}

.time {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.time span {
  font-size: 16px;
}

.contact-btn {
  width: 414px;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  height: 140px;
  border-radius: 70px;
  transition: 0.7s;
  background-color: var(--main-color);
}

.contact-btn:hover {
  background-color: #c2b2bb;
}


.mail-wrap {
  align-items: center;
  display: flex;
  margin-bottom: 5px;
  gap: 0 10px;
}

.mail-icon {
  font-size: 0;
}

.mail-text {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.contact-btn .text {
  font-size: 16px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 1340px) {

  .tel-box {
    width: 364px;
    height: 120px;
    border-radius: 60px;
  }

  .contact-btn {
    width: 364px;
    height: 120px;
    border-radius: 60px;
  }
}

@media (max-width: 1200px) {
  .contact-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contact-right {
    padding-top: 0;
    display: block;
    gap: 0 20px;
  }

  .contact-area .flex-box {
    display: flex;
    justify-content: center;
    gap: 0 50px;
  }

  .contact-btn {
    margin-top: 30px;
  }

  #header .contact-btn {
    margin-top: 0;
  }
}

@media (max-width: 768px) {

  .contact-area {
    padding-bottom: 180px;
  }

  .contact-area .flex-box {
    display: block;
    justify-content: center;
    gap: 0 50px;
  }

  .contact-left {
    display: table;
    margin: 0 auto;
  }

  .contact-right {
    display: table;
    margin: 0 auto;
    margin-top: 30px;
  }

  .tel-text {
    line-height: 1;
    color: var(--main-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 24px;
  }

  .mail-text {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
  }

  .mail-icon {
    padding-top: 3px;
    font-size: 0;
  }

  .tel-box {
    width: 324px;
    height: 110px;
    border-radius: 60px;
  }

  .contact-btn {
    width: 324px;
    height: 110px;
    border-radius: 60px;
  }
}

@media (max-width: 480px) {

  .contact-area {
    padding-top: 80px;
    padding-bottom: 180px;
  }

  .tel-box {
    width: 304px;
    height: 90px;
    border-radius: 60px;
  }

  .contact-btn {
    width: 304px;
    height: 90px;
    border-radius: 60px;
  }
}

/* =======================================
ページトップボタン
======================================== */


.page-top-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 112px;
  z-index: 410;
  height: 110px;
  display: block;
  transition: 0.7s;
}

.page-top-btn:hover {
  opacity: 0.7;
}

.rotate-img {
  position: absolute;
  inset: 0;
  width: 112px;
  height: 110px;
  animation: rotateText 10s linear infinite;
}

/* ⬆ 固定の矢印 */
.arrow-img {
  position: absolute;
  width: 14px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: auto;
  z-index: 2;
  pointer-events: none;
  /* クリック誤作動防止 */
}

/* 回転アニメーション */
@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* =======================================
フッター
======================================== */
.site-footer {
  background: #ffffff;
  padding: 0 60px 0 0;
  box-shadow:
    0 2px 28px rgba(217, 195, 204, 0.3);
}

.footer-inner {
  display: flex;
  align-items: stretch;
  /* ← これに変更 */
  justify-content: space-between;
  gap: 60px;
}

/* カラム配置 */
.footer-col {
  display: flex;
  align-items: stretch;
}

.footer-col--left {
  gap: 0 60px;
  display: flex;
  align-items: stretch;
  /* ← これに変更 */
}

.footer-detail {
  padding-top: 80px;
}

.footer-col--right {
  flex: 0 0 30%;
  padding-top: 84px;
  justify-content: flex-end;
}

/* 左：大きい画像 */
.footer-main-img {
  width: 100%;
  overflow: hidden;
}

.footer-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ロゴ・テキスト */
.footer-logo {
  font-size: 40px;
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  line-height: 1;
}

.footer-address p {
  margin: 0;
  line-height: 20px;
  font-size: 14px;
}

/* TEL・営業時間など */
.footer-info {
  margin-top: 18px;
  font-size: 14px;
  color: #555;
}

.footer-info-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer-info-row dt {
  display: table;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  background: #c2b2bb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;

}

.footer-info-row dd {
  margin: 0;
  font-size: 14px;
  color: var(--main-color);
}

.footer-info-row dd a span{
  margin: 0;
  font-size: 14px;
  color: var(--main-color);
}

/* 右：ナビ＋写真 */
.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li+li {
  margin-top: 35px;
  line-height: 1;
}

.footer-nav li {
  white-space: nowrap;
}

.footer-nav a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--main-color);
  text-decoration: none;
  transition: 0.7s;
}

.footer-nav a:hover {
  color: #c2b2bb;
}

.footer-sub-img {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
}

.footer-sub-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* コピーライト */
.footer-copy {
  text-align: right;
  margin-top: 37px;
  font-size: 12px;
  color: #000000;
  font-family: "Comfortaa", sans-serif;
}

.footer-col--right {
  padding-top: 84px;
  justify-content: flex-end;
}

.footer-right-flex {
  justify-content: flex-end;
  display: flex;
  gap: 0 57px;
}



.site-footer {
  background: #ffffff;
  padding: 0 60px 0 0;
}

@media (max-width: 1420px) {
  .site-footer {
    background: #ffffff;
    padding: 0 30px 0 0;
  }

  .footer-main-img {
    width: 300px;
    height: 100%;
  }

  .footer-main-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
  }

  .site-footer {
    background: #ffffff;
  }

  .footer-col--right {
    justify-content: flex-end;
  }

  .footer-col--left {
    gap: 0 60px;
    display: flex;
  }

  .footer-detail {
    padding-bottom: 60px;
  }

  .footer-sub-img {
    width: 100%;
    width: 260px;
    margin-left: auto;
  }
}

@media (max-width: 1120px) {
  .footer-inner {
    gap: 30px;
  }

  .footer-col--left,
  .footer-col--center,
  .footer-col--right {
    flex: 1 1 auto;
  }

  .footer-sub-img {
    margin: 0 auto;
  }

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

  .footer-col--left {
    gap: 0 30px;
    display: flex;
  }

  .footer-logo {
    font-size: 30px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    letter-spacing: 0.08em;
    margin: 0 0 24px;
    line-height: 1;
  }

  .footer-sub-img {
    width: 100%;
    width: 200px;
    margin-left: auto;
  }
}

@media (max-width: 991px) {
  .footer-inner {
    display: block;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
    padding-top: 30px;
  }

  .footer-col--left {
    gap: 0 30px;
    display: flex;
    justify-content: center;
  }

  .footer-detail {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-col--right {
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .site-footer {
    background: #ffffff;
    padding: 0 20px 0 20px;
  }
}

@media (max-width: 480px) {
  .footer-col--left {
    gap: 0 30px;
    display: block;
    justify-content: center;
    width: 332px;
    margin: 0 auto;
  }

  .footer-main-img {
    width: 332px;
    height: 100%;
    margin: 0 auto;
  }

  .footer-right-flex {
    justify-content: flex-end;
    display: flex;
    gap: 0 30px;
  }
}

/* =======================================
SPMENU
======================================== */
.openbtn {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: none;
  background: var(--main-color);
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}

.openbtn {
  cursor: pointer;
  margin-left: 0;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  border-radius: 4px;
  height: 2px;
  background-color: #ffffff;
}

.openbtn span:nth-of-type(1) {
  top: 8px;
  left: 7px;
  width: 35px;
}

.openbtn span:nth-of-type(2) {
  top: 17px;
  left: 7px;
  width: 35px;
}

.openbtn span:nth-of-type(3) {
  top: 26px;
  left: 7px;
  width: 35px;
}

.openbtn.active span:nth-of-type(1) {
  top: 12px;
  width: 35px;
  left: 7px;
  background-color: #ffffff;
  transform: translateY(5px) rotate(-160deg);
}

.openbtn.active span:nth-of-type(3) {
  top: 22px;
  left: 7px;
  width: 35px;
  background-color: #ffffff;
  transform: translateY(-5px) rotate(160deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active p {
  color: #ffffff;
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
}

.overlay-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  color: #fff;
  text-align: left;
  background-color: var(--red-color);
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 9900;
  padding-bottom: 50px;
}



.overlay-menu-inner {
  position: relative;
  height: 100%;
  padding: 100px 20px 20px;
}

#sp-menu .flex-box {
  display: block;
}

.spNav-top-01 ul li {
  line-height: 1.5;
  padding-bottom: 10px;
}

.spNav-top-01 ul {
  width: 100%;
}

.spNav-top-01 ul li:nth-child(n+2) {
  margin-top: 22px;
}

.sp-nav-copy {
  margin-top: 60px;
  padding-bottom: 80px;
  color: #fff;
  font-size: 12px;
}

.overlay-menu-inner .fa-angle-right {
  padding-right: 5px;
}

.overlay-menu .tel {
  font-size: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  display: flex;
  line-height: 1;
  font-family: "Comfortaa", sans-serif;
  align-items: center;
  margin-top: 30px;
}

.overlay-menu .tel-text {
  color: #fff;
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Comfortaa", sans-serif;
  margin-left: 13px;
  padding: 0;
}

.overlay-menu .tel-icon {
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-size: 16px;
}

.overlay-menu .tel-icon .fa-phone {
  font-size: 20px;
  color: #fff;
}

.overlay-menu .tel a {
  display: block;
  font-size: 0;
  line-height: 1;
}

.overlay-menu {
  display: block;
  opacity: 0;
  left: 0;
  top: 0;
  transition: 0.7s;
  position: fixed;
  overflow: auto;
  width: 100%;
  height: 100%;
  z-index: 1001;
  pointer-events: none;
  z-index: 1000;
}

.overlay-menu.active {
  opacity: 1;
  background: rgba(248, 131, 121, 0.9);
  pointer-events: all;
}

.overlay-menu-inner {
  position: relative;
  height: 100%;
  padding: 150px 28px 20px;
}

.spNav-top-01 ul li {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
}

.spNav-top-01 ul li::before {
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 2px;
  content: '';
  display: block;
}

.spNav-top-01 ul li::after {
  background-color: var(--main-color);
  width: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  content: '';
  display: block;
}

.spNav-top-01 ul li a {
  font-weight: 700;
  width: 100%;
  font-size: 20px;
  display: block;
  color:#fff;
  line-height: 1;
}

.spNav-top-01 ul li.active a {
  color: #ffb9b2;
}

.spNav-top-01 ul {
  max-width: 100%;
  width: 100%;
}

.spNav-top-01 ul li:nth-child(n+2) {
  margin-top: 32px;
}

.sp-nav-copy {
  margin-top: 60px;
  color: #fff;
  font-size: 12px;
}

#sp-menu .copy {
  color: #fff;
  margin-top: 60px;
  font-weight: 500;
}

@media (max-width: 1030px) {
  .openbtn {
    top: 22px;
    right: 20px;
    display: block;
  }

  .openbtn p {
    font-size: 11px;
    font-family: "Comfortaa", sans-serif;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    margin-top: 35px;
  }
}

@media (max-width: 480px) {
  .openbtn {
    top: 15px;
    right: 20px;
    display: block;
  }
}