@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");
/* 全体設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

p {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  letter-spacing: 0.05rem;
}

/* ヘッダー設定 */

header {
  display: flex; /* ←追加 */
  position: fixed; /* ←追加 */
  top: 0; /* ←追加 */
  left: 0; /* ←追加 */
  height: 70px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  /* ヘッダー下の画像をぼかす */
  backdrop-filter: blur(7px);
  transition: transform 0.4s 0.4s;
}

header.hidden {
  transform: translateY(-70px);
}

/* ロゴ＆アイコン全体をFlexで並べる */
.header-icons {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 999;
}

.logo {
  margin-top: 10px;
  width: 220px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ロゴ位置のズレを防ぐ役割 */
header h1 a {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.shopicon {
  width: 28px;
  height: 28px;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.shopicon:hover {
  opacity: 0.4;
}

/* ▼▼▼ ヘッダー　スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .logo {
    margin-top: auto;
    width: 170px;
    height: auto;
  }
  .header-icons {
    right: 10px;
    top: 22px;
  }

  .shopicon {
    width: 25px;
    height: 25px;
  }
  button.hamburger {
    left: 10px;
  }
}
/* ▲▲▲▲▲▲▲　ここまで ▲▲▲▲▲▲▲ */

/* メインビジュアル　フェードイン ==================*/

.mainVisual {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 50px auto;
  overflow: hidden;
  position: relative; /* ← 追加！ */

  /* はみ出た部分はトリミング */
}

.animate img {
  top: 0;
  width: 100%;
  height: auto;
  max-height: 750px;

  animation: fadeIn 3s ease-in 1;
  display: block;
  object-fit: cover;
  object-position: center top;
}
@keyframes fadeIn {
  0%,
  100% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ▼▼▼ アニメイト（メインビジュアル）　スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .animate img {
    height: 400px;
  }
}
/* ▲▲▲▲▲▲▲　ここまで ▲▲▲▲▲▲▲ */

/* about================================= */
.lead-copy {
  margin-top: 80px;
}

.lead-copy p {
  font-family: "Shippori Mincho", serif;
  margin-top: 50px;
  left: 50%;
  color: #696969;
  text-align: center; /* 横方向の中央揃え */
  font-size: 17px;
  line-height: 0.3rem;
}

.lead-text {
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.lead-text.inview {
  opacity: 1;
}

/* ▼▼▼ 本文コピー　スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .lead-copy {
    margin-top: 30px;
  }

  .lead-copy p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.8; /* 適切な行間に変更 */
    padding: 0 20px; /* スマホで左右に余白を加える */
  }
}
/* ここまで======================================== */

.bottle-wrapper {
  position: relative;
  text-align: center;
  margin: 90px 20px 0 20px;
}

.bottle_image {
  position: static; /* または position: relative; */
  margin: 0 auto;
  display: block;
  width: 180px;
  height: auto;
  opacity: 0.9;
}

.bottle-caption {
  margin-top: 20px;
  font-size: 1rem;
  color: #696969;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 2rem; /* 行間を設定 */
  opacity: 0;
  /* transition: opacity 2s ease; */
}

.bottle-text {
  font-size: 0.88rem;
  color: #696969;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 1.8; /* 行間を設定 */
  margin: 10px auto 30px auto;
  max-width: 700px;
  padding: 0 20px;
}

/* ▼▼▼ 香水説明　スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .bottle-wrapper {
    margin: 50px 20px 0 20px;
  }

  .bottle_image {
    width: 160px;
  }

  .bottle-caption {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.5rem; /* 行間を設定 */
  }

  .bottle-text {
    font-size: 0.8rem;
    line-height: 1.8rem; /* 行間を設定 */
    margin: 10px auto 30px auto;
    padding: 0 5px;
  }
}
/* ▲▲▲▲▲▲▲　ここまで ▲▲▲▲▲▲▲ */

/* アイテム写真＝＝＝＝＝＝＝＝＝＝＝ */
.items-title {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-size: 2rem;
  color: rgba(44, 92, 63, 0.9);
  text-align: center;
  opacity: 0.6;
  margin-top: 100px;
}

.item-wrapper {
  display: flex;
  max-width: 700px;
  width: 100%;
  margin: 70px auto 150px auto;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 16px; /* 端でつぶれないように */
}

.item-box img {
  width: 200px;
  height: auto;
  display: block;
}

.caption {
  margin-top: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  line-height: 1.6;
  color: #696969;
  text-align: center;
}

/* リンク　ボタン */

.link-wrapper {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.link-btn-line {
  display: inline-block;
  font-size: 14px;
  color: #666;
  text-decoration: none; /* 通常の下線はオフ */
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #c7c7c7; /* 点線だけを表示 */
  transition: border-color 0.3s ease;
}

.link-btn-line:hover {
  border-bottom-color: #06562a; /* ホバー時に色を変える */
}

.fade-in {
  opacity: 0;
  transition: all 2s ease;
}

.fade-in.inview {
  opacity: 1;
}
/* =================== */

/* スライダー */
.slider {
  position: relative;
  height: 450px;
  max-width: 700px;
  margin: 100px auto;
  overflow: hidden;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.slide-img.active {
  opacity: 1;
  z-index: 1;
}

/* ▼▼▼ スライダー　スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .slider {
    height: 350px;
    margin: 0px auto;
  }
}
/* =================== */

/* 調香師紹介======================== */

.perfumer {
  background-color: #c6ccb3;
  margin: 150px auto;
}

.perfumer-box {
  display: flex;
  max-width: 700px;
  margin: auto;
  align-items: flex-start;
  /* 比率を固定↑↑↑ */
  padding: 0 40px 0 40px;
}

.perfumer-box .perfumer-text {
  margin: 50px 20px 50px auto;
}

.perfumer-box .perfumer-photo {
  width: 200px;
  height: auto;
  margin: 50px auto 50px 0;
}

.perfumer-title {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.6;
}
.perfumer-name {
  color: #696969;
  margin: 20px auto 10px auto;
}

.perfumer-bodycopy {
  color: #696969;
  line-height: 1.7rem;
  font-size: 0.85rem;
}
/* ▼▼▼ スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .perfumer-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .perfumer-title {
    font-size: 1.8rem;
  }

  .perfumer-box .perfumer-text {
    margin: 50px auto 20px auto;
  }

  .perfumer-box .perfumer-photo {
    width: 150px;
    height: auto;
    margin: 10px auto 50px auto;
  }
  .perfumer-box {
    padding: 0 20px 0 20px;
    margin-bottom: 0px;
  }
}
/* フッター＝＝＝＝＝＝＝＝＝＝＝＝ */
.site-footer {
  margin-top: 100px;
  background: rgba(44, 92, 63, 0.9);
  padding: 30px 20px 10px 20px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-logo img {
  width: 130px;
  margin-bottom: 18px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-nav a {
  text-decoration: none;
  color: #c2c6bb;
  font-family: "Bodoni Moda", serif;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-sns a {
  margin: 0 15px;
  display: inline-block;
  opacity: 0.8;
}

.footer-sns img {
  width: 22px;
  height: 22px;
  transition: opacity 0.3s;
}

.footer-sns a:hover img {
  opacity: 0.6;
}

.footer-copy {
  display: block;
  margin: 20px auto 10px auto;
  font-size: 0.7rem;
  color: #c2c6bb;
  letter-spacing: 0.1rem;
}
/* ▼▼▼ フッター　スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .footer-nav a {
    font-size: 0.9rem;
  }

  .footer-sns a {
    margin: 0 10px;
  }

  .footer-sns img {
    width: 20px;
    height: 20px;
  }

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

  .site-footer {
    padding: 20px 15px 10px 15px;
  }

  .footer-copy {
    font-size: 0.65rem;
  }
}

/* カーソル============================ */
#cursor {
  pointer-events: none;
  position: fixed;
  /* top: -4px;
    left: -4px; */
  width: 10px;
  height: 10px;
  /* ７角形に */
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
  background: cadetblue;
  z-index: 1000;
}

/* マウスフォロー */
.mouse-follow {
  width: 35px;
  height: 35px;
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
  pointer-events: none; /* 直下のリンクをクリック可能にする */
  position: fixed;
  background-color: rgb(252, 252, 252);
  top: 0;
  left: 0;
  transition: transform 0.5s ease-out; /* 遅れてついてくる時間 */
  z-index: 1000;
  margin-left: -50px;
  margin-top: -50px;
}

/* マウスフォロー2 */
.mouse-follow2 {
  width: 15px;
  height: 15px;
  /* 五角形に */
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  position: fixed;
  background-color: #ffffff;
  top: 0;
  left: 0;
  transition: transform 0.7s ease-out; /* 遅れてついてくる時間 */
  z-index: 1000;
  margin-left: 30px;
  margin-top: 30px;
}

/* マウスフォロー3 */
.mouse-follow3 {
  width: 5px;
  height: 5px;
  /* 五角形に */
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  position: fixed;
  background-color: rgba(255, 255, 255, 0.789);
  top: 0;
  left: 0;
  transition: transform 1s ease-out; /* 遅れてついてくる時間 */
  z-index: 1000;
  margin-left: 70px;
  margin-top: 70px;
}

/* ハンバーガーメニュー（2本線） */
.hamburger {
  position: fixed;
  top: 30px;
  left: 20px;
  z-index: 1001;
  width: 18px;
  height: 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background-color: #939393;
  transition: 0.4s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* メニュー画面 */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(44, 92, 63, 0.9);
  backdrop-filter: blur(30px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
}
.nav-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
.nav-menu li {
  margin: 40px 0;
}
.nav-menu a {
  text-decoration: none;
  color: #c2c6bb;
  font-size: 1.2rem;
  font-family: "Shippori Mincho", serif;
  transition: opacity 0.3s;
}
.nav-menu a:hover {
  opacity: 0.6;
}

/* コンタクトページ================================= */

.contact-page {
  background: #c2c6bb;
}

.contactfaq {
  margin-top: 150px;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  /* text-align: center; */
  opacity: 0.6;
}

.contactwrapper {
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto;
}

.qa-section {
  margin: 50px auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-item {
  border-bottom: 1px dashed #f8f8f8;
  padding-bottom: 10px;
}

.question {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;

  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
  font-weight: bold;
  color: #495851;
  transition: color 0.3s;
}

.question:hover {
  color: #7b9187;
}

.answer {
  font-family: "Shippori Mincho", serif;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding-left: 10px;
}

.answer.open {
  max-height: 200px; /* 適宜調整可 */
  margin-top: 5px;
}

.contact-form {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
  color: #495851;
  transition: color 0.3s;
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto;
}

.contact-form-title {
  margin-top: 50px;
  margin-bottom: 30px;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.7;
  letter-spacing: 0.1rem;
  font-weight: normal;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  font-family: "Shippori Mincho", serif;

  background-color: #6e857a;
  color: white;
  padding: 6px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #87a496;
}

input::placeholder,
textarea::placeholder {
  color: #c6c6c6; /* 薄いグレー */
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
}

/* ▼▼▼ contactページ　スマホ対応 ▼▼▼ */
@media (max-width: 600px) {
  .contactfaq {
    margin-top: 120px;
  }
}

/* ここから　aboutページ====================== */

.about-wrapper {
  margin: 160px auto 0px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  max-width: 1000px;
  flex-wrap: wrap; /* スマホ対応 */
}

.about-image4 {
  max-width: 380px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  opacity: 0.85;
  object-fit: contain; /* 念のため：中身を収める */
  align-self: flex-start; /* 高さを引っ張られないように */
  padding: 0 0 0 70px;
}

.about-text {
  flex: 1;
  max-width: 300px;
  padding: 0 70px 0 0;
}

.about-readcopy {
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  line-height: 2rem;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
  color: #898989;
}

.about-bodycopy {
  font-size: 0.9rem;
  line-height: 1.8rem;
  max-width: 300px;
  color: #898989;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.about-wrapper {
  animation: fadeInUp 3s ease-out 1;
  /* アニメーションの再発防止 */
  opacity: 1;
}

.about-farm-wrapper {
  text-align: center;
  margin: 0 auto;
  animation: fadeIn 3s ease-out 1;
  margin-top: 140px;
}

.about-farm {
  width: 100%;
  height: auto;
  max-width: 700px;
  overflow: hidden;
}
.about-farm-text {
  font-size: 0.8rem;
  line-height: 1.4rem;
  max-width: 700px;
  color: #898989;
  margin: 0 auto;
  margin-top: 10px;
}

/* ▼▼▼ aboutページ　スマホ対応 ▼▼▼ */
@media (max-width: 600px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 120px auto 0px auto;
    gap: 60px;
  }
  .about-image4 {
    padding: 0; /* ← これで padding を完全に消せます */
    max-width: 300px;
    margin: 0 auto;
  }

  .about-text {
    text-align: center;
    padding: 0 15px;
  }

  .about-readcopy {
    font-family: "Shippori Mincho", serif;
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 0.1rem;
    margin-bottom: 15px;
    color: #898989;
  }

  .about-bodycopy {
    font-size: 0.8rem;
    line-height: 1.5rem;
    max-width: 300px;
    color: #898989;
  }

  .about-farm-wrapper {
    margin: 80px auto 0px auto;
  }
}

/* shopページ========================= */
.shop-hero {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 50px auto;
  overflow: hidden;
  animation: fadeIn 3s ease-in 1;
}

.hero-bg {
  width: 100%;
  height: auto;
  min-height: 380px; /* スマホでも縮みすぎない */
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

.shop-hero-subtitle {
  font-family: "Shippori Mincho", serif;
  margin-top: 40px;
  text-align: center;
  color: #696969;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 2rem;
}

.product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 20px;
  gap: 50px;
  max-width: 750px;
  margin: 0 auto;
}

.kakaku {
  margin-top: 30px;
  color: #8e8e8e;
}

.product.reverse {
  flex-direction: row-reverse;
}

.product-image {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.product-text {
  font-family: "Shippori Mincho", serif;
  flex: 1;
  max-width: 400px;
  min-width: 150px;
}

.shop-button {
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 20px;
  padding: 7px 20px;
  background-color: #c5dbc1;
  color: #696969;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}
.shop-button:hover {
  background-color: #b0cab1;
}

.product-title {
  color: rgba(44, 92, 63, 0.9);
}

.product-specs {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  font-size: 0.8rem;
  color: #8e8e8e;
}
.product-specs li {
  margin-bottom: 6px;
}

.product-description {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-top: 20px;
  color: #898989;
}

.gift-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* 横方向の中央揃え */
  justify-content: center; /* 縦方向の中央揃え（高さが必要） */
  text-align: center; /* テキストも中央寄せに */
  padding: 20px;
}
.gift-text {
  max-width: 400px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-top: 30px auto;
  color: #898989;
}
.gift-img {
  max-width: 400px;
  margin: 20px auto;
  opacity: 0.8;
}

/* ショップ情報 */

.shop-closing {
  text-align: center;
  padding: 80px 20px 0 20px;
}

.shop-img {
  width: 100%;
  max-width: 750px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.shop-name {
  margin-bottom: 20px;
  color: rgba(44, 92, 63, 0.9);
}
.info-block {
  font-family: "Shippori Mincho", serif;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  color: #898989;
}
.shop-eng {
  font-family: "Shippori Mincho", serif;
  font-size: 0.65rem;
  line-height: 1rem;
  margin-top: 10px;
  color: #898989;
}

/* ▼▼▼ shopページ　スマホ対応 ▼▼▼ */
@media screen and (max-width: 600px) {
  .shop-hero-subtitle {
    margin-top: 30px;
    padding: 0 10px;
    font-size: 0.8rem;
    line-height: 1.7rem;
  }

  .product-text {
    max-width: 300px;
  }
  .product-title {
    color: rgba(44, 92, 63, 0.9);
    line-height: 1.5rem;
  }
  .product {
    padding: 30px 20px;
    gap: 30px;
  }

  p.kakaku {
    margin-top: 20px;
  }

  .product-description {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 15px;
    color: #898989;
  }

  .gift-img {
    max-width: 250px;
    margin: 30px auto;
    opacity: 0.8;
  }

  .shop-closing {
    text-align: center;
    padding: 40px 10px 0px 10px;
  }

  .product-specs {
    margin-top: 15px;
    list-style: none;
    padding: 0;
    font-size: 0.8rem;
    color: #666;
  }
  .product-specs li {
    margin-bottom: 6px;
    padding: 0 15px;
  }

  .shop-img {
    width: 100%;
    max-width: 750px;
    opacity: 0.9;
    margin-bottom: 20px;
  }

  div.info-block {
    line-height: 1.1rem;
    margin-bottom: 5px;
  }
  p.items-title {
    margin-top: 40px;
  }
}

/* ▼▼▼カーソル　スマホ対応 ▼▼▼ */
@media screen and (max-width: 450px) {
  #mouse-follow-matome {
    display: none;
  }

  #cursor {
    display: none;
  }
}
