@media (max-width: 767px){ 
.pc { display: none; }
.tb { display: none; }
.sp { display: flex; flex-flow: column; }

body
{
  font-size: 14px;
}
.breadcrumb
{
  font-size: 0.9em;
  margin: 10px;
}
.page-title
{
  /* aspect-ratio: 375/186; */
    padding: 43px 0;
    background-size: cover;
}
section
{
  margin: 40px auto 0;
}
/* ==== ハンバーガーアイコン ==== */
.menu-trigger {
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 2000;
  background-color: #0D0D0D;
  border-radius: 0 0 0 3px;
}
.menu-trigger.menu-trigger.active
{
    background-color: #262626;
}
.menu>ul li
{
    margin: 5px 0;
}
.menu-trigger>div
{
    display: inline-flex;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
}
.menu-trigger span,
.menu-trigger span::before,
.menu-trigger span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  content: "";
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.menu-trigger span {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.menu-trigger span::before {
  top: -10px;
}
.menu-trigger span::after {
  top: 10px;
}

/* 開いたときのアニメーション */
.menu-trigger.active span {
  background: transparent;
  transform: translateX(-50%) translateY(-50%);
}
.menu-trigger.active span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.menu-trigger.active span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* ==== サイドバー（全画面拡大演出） ==== */
.sidebar-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  clip-path: circle(0 at 100% 0);
  transition: clip-path 0.8s ease-in-out;
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  background-color: #0D0D0D;

}
.sidebar-content.active {
  clip-path: circle(150% at 100% 0);
  opacity: 1;
  pointer-events: auto;
}

/* ==== 中身のアニメーション ==== */
.sidebar-content .logo-wrap,
.sidebar-content .menu,
.sidebar-content .sns {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.sidebar-content.active .logo-wrap,
.sidebar-content.active .menu,
.sidebar-content.active .sns {
  opacity: 1;
  transform:  translateY(0);
}

/* ロゴ */
.logo-wrap {
  text-align: center;
  padding: 55px 0 20px;
}
.logo-wrap::after
{
    bottom: 5%;
    font-size: clamp(10px, 5vw, 16px);
}
/* .logo {
  width: 120px;
} 
  */

/* メニュー */

.menu
{
  padding: 25px 25px 15px 25px;
}
.sp .menu
{
  width: 100%;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;

}

.sp .menu li a
{
  font-size: 16px;
}
.menu li a:hover {
  background: #f5f5f5;
}
.menu-icon {
  width: 25px;
  height: 25px;
  position: relative;
}
.menu-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s;
}
.menu-icon img.hover {
  opacity: 0;
}
.menu li a:hover .menu-icon img.hover {
  opacity: 1;
}
.menu li a:hover .menu-icon img.default {
  opacity: 0;
}

/* SNSリンク */
.sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0 40px;
}
.sns img {
  width: 30px;
  transition: transform 0.3s ease;
}
.sns img:hover {
  transform: scale(1.1);
}

/* ==== 背景拡大時にスクロール禁止 ==== */
body.menu-open {
  overflow: hidden;
}




    footer
    {
        padding: 5px 0;
    }
    footer>p
    {
        font-size: 12px;
    }
}

