@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  /* color: black; */
  font-size: 14px;
  background-color: white;
  line-height: 24px;
  position: relative;
  letter-spacing: 0.5px;
}

.my-container {
  margin: 0 auto;
  width: auto;
  padding: 0 20px;
}

.header-inner {
  margin-top: 2em;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
}

.header-left {
  display: none;
}

.tel-box {
  display: flex;
  align-items: center;
  /* アイコンとテキストを縦方向で中央揃え */
}

.tel-box>.bi-telephone {
  display: block;
  font-size: xx-large;
  margin-right: 16px;
}

.tel-info a {
  color: black;
  font-weight: bold;
}

.tel-info a:hover {
  color: lightpink;
}

.bus-hours {
  font-size: small;
}

.logo {
  margin: 0 auto;
}

.logo img {
  width: 320px;
  text-align: center;
}

.logo img:hover {
  opacity: .6;
}

.header-right {
  display: none;
}

.sns-icon {
  display: flex;
}

.sns-icon li {
  margin: 0 8px;
}

.sns-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.sns-icon img:hover {
  opacity: .6;
}

.sp-category {
  display: flex;
  height: 32px;
  margin-bottom: 32px;
  align-items: center;
  /* 要素を垂直方向（高さ）の中心に揃える */
}

.sp-category h2 {
  margin: 0;
  padding: 0;
}

/* ハンバーガーメニュー */
.sp-menu {
  margin-left: auto;
  line-height: 0;
  /* アイコンの親要素のline-heightをリセットして、アイコンのサイズに合わせる */
}

.sp-menu #open {
  font-size: 32px;
  cursor: pointer;
  display: block;
  /* line-heightを無視して配置を調整するため */
}

.sp-menu #open.hide {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
  z-index: 2;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.overlay #close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  cursor: pointer;
}

.overlay ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.overlay li {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}

.overlay.show li {
  opacity: 1;
  transform: none;
}

.overlay a {
  color: black;
}

.overlay a:hover {
  color: lightpink;
}

.overlay.show li:nth-child(1) {
  transition-delay: .1s;
}

.overlay.show li:nth-child(2) {
  transition-delay: .2s;
}

.overlay.show li:nth-child(3) {
  transition-delay: .3s;
}

.overlay.show li:nth-child(4) {
  transition-delay: .4s;
}

.overlay.show li:nth-child(5) {
  transition-delay: .5s;
}

.overlay.show li:nth-child(6) {
  transition-delay: .6s;
}

.overlay.show li:nth-child(7) {
  transition-delay: .7s;
}

.overlay.show li:nth-child(8) {
  transition-delay: .8s;
}

.overlay .tel-button-sp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  /* 幅を80%から75%に縮小 */
  max-width: 250px;
  /* 最大幅を300pxから250pxに縮小 */
  margin: 0 auto;
  padding: 10px 18px;
  /* 上下のパディングを小さく */
  background-color: #83ae46;
  /* 濃いめの青 */
  color: white;
  font-weight: bold;
  font-size: 16px;
  /* フォントサイズを18pxから16pxに縮小 */
  border-radius: 6px;
  /* 角丸を小さく */
  box-shadow: 0 3px #91d18f;
  /* 濃いめの青のシャドウ */
  transition: all 0.1s;
}

.overlay .tel-button-sp:hover {
  background-color: #769f3c;
  /* ホバーで少し明るく */
  transform: translateY(1px);
  /* 沈み込みを小さく */
  box-shadow: 0 2px #0D47A1;
}

.overlay .tel-button-sp i {
  margin-right: 8px;
  /* アイコンと文字の間隔を小さく */
  font-size: 18px;
  /* アイコンサイズを小さく */
}

/* ハンバーガーメニュー内のSNSアイコンのスタイル */
.overlay-sns {
  position: absolute;
  /* ハンバーガーメニュー（.overlay）に対して絶対配置 */
  bottom: 24px;
  /* 下端から24px上に配置 */
  left: 50%;
  transform: translateX(-50%);
  /* 中央寄せ */
  width: 100%;
}

.overlay-sns ul {
  display: flex;
  /* 横並びに設定 */
  justify-content: center;
  /* 中央寄せ */
  list-style: none;
  padding: 0;
  margin: 0;
}

.overlay-sns li {
  margin: 0 12px;
  /* アイコン間の間隔 */
  opacity: 1 !important;
  /* メニューのリスト（li）のフェードインアニメーションを無視 */
  transform: none !important;
  transition: none !important;
}

.overlay-sns .fa-brands {
  color: black;
  font-size: 16px;
  /* アイコンサイズを大きく */
}

.pc-menu {
  display: none;
}

.pc-menu>ul {
  display: flex;
  justify-content: space-between;
}

.pc-menu a {
  color: black;
}

.pc-menu a:hover {
  color: lightgrey;
}

footer {
  margin-top: 32px;
  padding-top: 48px;
  background-color: #fafafa;
  color: #555;
  border-top: 1px solid #e6e6e6;
}

.footer-inner > div {
  margin-bottom: 40px; 
}

@media (min-width: 576px) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
  }
}

footer h3 {
  color: black;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px; /* 見出しとリストの間の余白 */
}

footer .footer-links a {
  color: #555;
}

footer .footer-links a:hover {
  color: lightpink;
}

.footer-sns {
  margin-top: 36px;
  height: 32px;
  align-items: center;
  line-height: 16px;
}

.footer-sns ul {
  display: flex;
  justify-content: center;
  text-align: center;

  li+li {
    margin-left: 16px;
  }
}

.footer-sns .fa-brands {
  color: black;
  font-size: large;
}

.footer-sns .fa-brands:hover {
  color: #555;
}

.footer-bottom {
  background-color: #000;
  color: #fafafa;
  text-align: center;
  padding: 16px;
}

/* カーソル追尾ドット */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(61, 214, 238, 0.1);
  pointer-events: none;
  z-index: 9999;
  transform-origin: center;
  backdrop-filter: blur(2px);
  transition: background-color 0.3s ease;
}

/* カーソル追尾ドットレスポンシブ無効 */
@media (max-width: 768px) {
  #cursor-dot {
    display: none;
  }
}

/* レスポンシブ */
@media (min-width: 576px) {
  .my-container {
    width: 540px;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .my-container {
    width: 720px;
    padding: 0;
  }

  .header-left {
    display: block;
  }

  .header-right {
    display: block;
  }

  .sp-category {
    display: none;
  }

  .pc-menu {
    display: block;
    margin-bottom: 48px;
  }
}

@media (min-width: 992px) {
  .my-container {
    width: 960px;
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .my-container {
    width: 1140px;
    padding: 0;
  }
}