@charset "UTF-8";

:root {
  --color-accent: #eac773;
  --color-bg: #ffffff;
  --color-text: #000000;
  --header-h: 90px;
  --text-color: var(--color-text);
  --body-bg-color: var(--color-bg);
  --base-font-family: "IrohaKakuC", "Noto Sans JP", sans-serif;
  --base-font-size: 1.6rem;
  --container-width: 440px;

/* 可変フォントサイズ */
  --font-size-xl: clamp(3.6rem, 3.6vw, 4.8rem); /* メインタイトル */
  --font-size-lg: clamp(1.8rem, 1.8vw, 2.4rem); /* サブタイトル（xlの0.5倍） */
  --font-size-md: clamp(1.6rem, 2.2vw, 2.2rem); /* セクションタイトル - 最小値も大きく */
  --font-size-sm: clamp(1.4rem, 1.5vw, 1.5rem); /* 説明文 */
  /* --font-size-xs: clamp(1.6rem, 2vw, 2.0rem); 小さいテキスト */
  --font-size-header: var(--font-size-sm);
}

@font-face {
  font-family: "IrohaKakuC";
  src: url("../fonts/irohakakuC-ExtraLight.woff2") format("woff2"),
       url("../fonts/irohakakuC-ExtraLight.woff") format("woff"),
       url("../fonts/irohakakuC-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IrohaKakuC";
  src: url("../fonts/irohakakuC-Light.woff2") format("woff2"),
       url("../fonts/irohakakuC-Light.woff") format("woff"),
       url("../fonts/irohakakuC-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IrohaKakuC";
  src: url("../fonts/irohakakuC-Regular.woff2") format("woff2"),
       url("../fonts/irohakakuC-Regular.woff") format("woff"),
       url("../fonts/irohakakuC-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IrohaKakuC";
  src: url("../fonts/irohakakuC-Medium.woff2") format("woff2"),
       url("../fonts/irohakakuC-Medium.woff") format("woff"),
       url("../fonts/irohakakuC-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IrohaKakuC";
  src: url("../fonts/irohakakuC-Bold.woff2") format("woff2"),
       url("../fonts/irohakakuC-Bold.woff") format("woff"),
       url("../fonts/irohakakuC-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*-----*RESET CSS*-----*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
  padding: 0;
}
img {
  width: 90%;
  max-width: 100%;
  vertical-align: bottom;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }
body {
  color: var(--text-color);
  background: var(--body-bg-color);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: 1.6;
  padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100vw;
  padding-bottom: 0;
}

body.menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (max-width: 1049px) {
  body {
        width: 100%;
    max-width: 440px;
    margin: 0 auto;
  padding-top: var(--header-h); 
    text-align: left;
    position: relative;
  }
}

@media (min-width: 1050px) {
  body {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  padding-top: var(--header-h);
    text-align: left;
    position: relative;
  }

  .container {
    width: 90%; 
    max-width: var(--container-width);
    margin: 0 auto;
    box-sizing: border-box;
  }
  }

  h1 {
    font-size: var(--font-size-xl);
  }
  h2 {
    font-size: var(--font-size-lg);
  }
  h3 {
    font-size: var(--font-size-md);
  }
  h4 {
    font-size: var(--font-size-sm);
  }
  p {
    font-size: var(--font-size-xs);
  }
  dt,
  dd,
  li,
  th,
  td,
  strong,
  h5,
  h6,
  i,
  em,
  aside,
  article,
  header,
  footer,
  address,
  b,
  div {
    font-size: var(--font-size-xs);
  }
  small {
    font-size: var(--font-size-xs);
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }

  /*-----*BASE CSS*-----*/
  .container {
    width: 100%; 
    max-width: var(--container-width);
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
  }
  .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }


  @media (min-width: 600px) {
    a[href^="tel:"] {
      pointer-events: none;
    }
  }

  .wrapper {
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
    background: var(--color-bg);
  }

  .text-accent {
    color: var(--color-accent);
  }
  .bg-accent {
    background-color: var(--color-accent);
    color: #fff;
  }
  .btn-accent {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
  }
  .btn-accent:focus,
  .btn-accent:hover {
    opacity: 0.95;
  }

  /* ===== ヘッダー固定・デザイン ===== */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
  }
  .header-inner {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: var(--header-h);
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    background: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-right: auto;
  }
  .logo-icon {
    display: flex;
    align-items: center;
  }
  .logo-icon img,
  .logo-icon svg {
    height: 28px;
    width: auto;
  }
  .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 6px; /* enlarge hit area */
    border-radius: 6px;
  }
  .logo-link:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
  }
  .logo-text {
    color: #fff;
    font-size: var(--font-size-header);
    font-weight: 700;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
  }
  .accent-e {
    color: #fff;
    font-size: inherit;
    font-style: italic;
    position: relative;
    left: 2px;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  .header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .header-icon:hover {
    opacity: 0.7;
  }
  .header-icon svg,
  .header-icon img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .header-icon.menu {
    flex-direction: column;
    width: 56px;
    height: 40px;
    gap: 0;
    background: none;
  }
  .menu-svg {
    display: block;
    width: 40px;
    height: 24px;
    margin-bottom: 2px;
  }
  .menu-text {
    color: #fff;
    font-size: var(--font-size-xs);
    letter-spacing: 0.18em;
    margin-top: 0;
    text-align: center;
  }
  @media (max-width: 700px) {
    :root {
      --header-h: 75px;
    }
    .header-inner {
      padding: 0 10px;
      height: var(--header-h);
      width: 100%;
      box-sizing: border-box;
    }
    .header-icon {
      width: 35px;
      height: 35px;
    }
    .header-left,
    .header-right {
      gap: 20px;
    }
  }

  /* ===== PC/SP表示切り替え ===== */
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  
  @media (max-width: 1049px) {
    .pc-only {
      display: none;
    }
    .sp-only {
      display: block;
    }
  }

  /* ===== PC用ナビゲーション ===== */
  .header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0 20px;
  }
  
  .nav-list {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
  }
  
  .nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 4px 8px;
    border-radius: 3px;
    transition: color 0.2s;
    white-space: nowrap;
    display: block;
  }
  
  .nav-list li a:hover,
  .nav-list li a:focus {
    color: var(--color-accent);
  }

  @media (max-width: 1200px) {
    .nav-list {
      gap: 3px;
    }
    .nav-list li a {
      font-size: 1.2rem;
      padding: 4px 6px;
    }
  }

  @media (max-width: 1049px) {
    .header-nav {
      display: none !important;
    }
    .nav-list {
      display: none !important;
    }
  }

  .header-icon.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 36px;
    gap: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  @media (min-width: 1050px) {
    .header-icon.menu {
      display: none !important;
    }
  }

  .hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
    margin: 2px 0;
  }
  
  .header-icon.menu.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .header-icon.menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .header-icon.menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-text {
    color: #fff;
    font-size: 1.0rem;
    letter-spacing: 0.1em;
    margin-top: 2px;
    text-align: center;
  }

  /* ===== SP用ドロワーメニュー ===== */
  .drawer-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    transform: translateY(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    z-index: 999;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
  }
  
  .drawer-menu.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  
  .drawer-nav {
    padding: 20px;
  }
  
  .drawer-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .drawer-list li {
    border-bottom: 1px solid #333;
  }
  
  .drawer-list li:last-child {
    border-bottom: none;
  }
  
  .drawer-list li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 16px 0;
    transition: color 0.2s;
  }
  
  .drawer-list li a:hover,
  .drawer-list li a:focus {
    color: var(--color-accent);
  }

  @media (min-width: 1050px) {
    .drawer-menu {
      display: none;
    }
  }

  /* ===== コンセプトセクション ===== */
  .concept {
    background-image: url("../img/concept_bk.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0px 0 40px 0;
    min-height: 600px;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }

    .concept-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      text-align: -webkit-center;
    }

    .concept-content {
      text-align: center;
      width: 90%;
    }

    .concept-title {
      margin-bottom: 40px;
    }

    .concept-main {
      display: block;
      font-size: var(--font-size-xl);
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: 0.1em;
    }

    .concept-sub {
      display: block;
      font-size: var(--font-size-lg);
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .concept-separator {
      width: 80px;
      height: 3px;
      background-color: var(--color-accent);
      margin: 0 auto 40px;
    }

    .concept-subtitle {
      font-size: var(--font-size-md);
      margin-bottom: 30px;
      letter-spacing: 0.05em;
    }

    .concept-description {
      margin-bottom: 15px;
      line-height: 1.8;

      p {
        text-align: left;
        margin-bottom: 8px;
        letter-spacing: 0.02em;
      }
    }
    .concept-features {
      border: 2px solid var(--color-accent);
      padding: 30px 25px;
      text-align: left;

      p {
        font-size: var(--font-size-sm);
        margin-bottom: 12px;
        line-height: 1.6;
        letter-spacing: 0.02em;

        &:last-child {
          margin-bottom: 0;
        }
      }
    }

    @media (max-width: 768px) {
      min-height: 500px;

      .concept-separator {
        width: 65px;
        margin-bottom: 30px;
      }

      .concept-features {
        padding: 20px 15px;
      }
    }
  }
  /* ===== 特徴セクション ===== */
  .feature {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .section-header {
    background-image: url("../img/feature/feature_title_bk.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .section-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  .section-title {
    font-size: var(--font-size-xl);
    font-weight: 300;
    color: #fff;
    padding-left: 18px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
    text-align: left;
  }
  .section-title span {
    color: var(--color-accent);
  }
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1.5px;
    background: var(--color-accent);
  }
  .section-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: #fff;
    padding-bottom: 10px;
    margin: 0;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 18px;
  }
  
  .feature .section-subtitle span {
    color: var(--color-accent);
    font-size: var(--font-size-lg);
  }
  
  .Others .section-subtitle span {
    color: var(--color-accent);
    font-size: var(--font-size-lg);
  }
  
  .flow .section-subtitle span {
    color: var(--color-accent);
    font-size: var(--font-size-lg);
  }

  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 90%;
    margin: 20px auto;
  }

  .feature-item {
    position: relative;
    margin-bottom: 0;
    background: #000;
  }

  .feature-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;

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

  .feature-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: #fff;
    font-weight: 300;
    font-size: var(--font-size-lg);
    margin: 0;
    z-index: 3;
    text-align: left;

    span {
      color: var(--color-accent);
    }
  }
  p.feature-text.text-right {
    text-align: right;
    span {
      text-align: right;
      color: var(--color-accent);
    }
  }
}

@media (max-width: 768px) {
  .feature-header {
    padding: 60px 0;
  }

  .feature-list {
    max-width: 100%;
  }

  .feature-text {
    bottom: 0;
    left: 0;
    right: 0;
    font-size: var(--font-size-sm);
    padding: 15px 20px;
    width: 100%;
    clip-path: polygon(0 0, 75% 0, 85% 100%, 0 100%);
  }
}

/* Others */
.Others {
  background: #fff;
  color: #000;
  position: relative;
  overflow: hidden;
}
.Others-content {
  margin-bottom: 25px;
}
.Others-content01{
  text-align: center;
  p {
    margin: 10px 0;
    text-align: center;
  }
}

/* ===== Plan セクション ===== */
.plan {
  background: #000;
}
.plans {
  display: flex;
  gap: 20px;
  flex-direction: column;
  background: #000;
  padding: 20px 0;
}
.section-subtitle {
    .plan_sub {
    font-size: var(--font-size-sm);
    color: #fff;
  }
}

/* ===== flow セクション ===== */
.flow {
  background: #000;
}
.flow-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

/* ===== .gallery セクション ===== */
.gallery {
  .gallery-content {
    h3 {
      border-bottom: 2px solid #000;
      margin: 15px 0;
      text-align: left;
    }
  }
}

.gallery-image {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 25px;
  flex-direction: row;
  flex-wrap: wrap;
}

.gallery-image img {
  width: 100%;
  height: auto; 
  display: block;
  object-fit: cover;
  aspect-ratio: 2/3;
  border-radius: 4px;
}

.gallery-image .gallery-text {
  text-align: left;
  width: 100%;
}

  .gallery-image > * {
    flex: 0 0 calc((100% - 8px * 2) / 3);
    width: calc((100% - 8px * 2) / 3);
  }

.gallery-main {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto 40px;
  box-sizing: border-box;
  text-align: center;
}
.inst_btn {
  text-align: center;
  margin-bottom: 20px;
  img {
    width: 100%;
    height: auto;
  }
}

.access {
  background: #000;
  color: #fff;
}

.access .container h3,
.access h3 {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.gmap {
  margin-top: 20px;
}

.map-banners {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 15px 0 20px 0;
  width: 100%;
}

.map-banner-item {
  flex: 1;
  max-width: 33.333%;
}

.map-banner-item a {
  display: block;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.map-banner-item a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.map-banner-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

iframe {
  width: 100%;
  height: auto;
  min-height: 150px; 
  max-height: 250px; 
  margin-bottom: 10px;
  filter: grayscale(100%);
  display: block;
  border: 0;
}

.access-social__inner {
  width: 25%;
  display: flex;
  gap: 10px;
  flex-direction: row;
  padding-bottom: 20px;
}

.access-social__inner .access-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 6px;
  box-sizing: border-box;
}
.access-social__inner .access-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
@media (max-width: 480px) {
  .access-social__inner .access-icon {
    width: 56px;
    height: 56px;
  }
}

/* FAQ */
.faq {
  background: transparent;
  background-color: #000;
  color: #fff;
  padding: 40px 0 60px;
}
.faq-nav {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto 18px;
}
.faq-nav ul {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin-top: 20px;
  padding: 10px;
  gap: 10px;
}
.faq-nav ul li {
  background: #fff;
  color: #000;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed var(--color-accent);
}
.faq-nav ul li:last-child {
  border-bottom: none;
}
.faq-nav ul li::after {
  content: none !important;
}
@media (min-width: 880px) {
  .faq-nav ul li { width: 100%; }
}
.faq-inner {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}
.faq-category {
  margin-bottom: 18px;
}
.faq-cat-title {
  font-size: var(--font-size-sm);
  color: #fff;
  margin: 25px 0 10px 0;
  text-align: left;
  letter-spacing: 0.1em;
}

.faq-cat-title span {
  color: var(--color-accent);
}
.faq-nav .faq-nav-check {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
  flex-shrink: 0;
}
.faq-nav .faq-nav-btn {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-left: 10px;
  flex-shrink: 0;
}
.faq-nav .faq-nav-label {
  flex: 1 1 auto;
  text-align: left;
}
.faq-nav li {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.faq-nav li.active {
  background: rgba(234,199,115,0.12);
}
.faq-list {
  display: block;
  color: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
li.faq-item {
    background-color: #fff;
}
.faq-item + .faq-item { margin-top: 8px; }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 12px 10px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  position: relative; /* for pseudo-element arrow */
}

.faq-q span {
  color: var(--color-accent);
  display: inline-block;
  margin-right: 8px;
  font-weight: 600;
}
.faq-q::before,
.faq-q::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 3px;
  background: var(--color-accent);
  transform-origin: center;
  transition: transform 0.18s ease, top 0.18s ease;
}
.faq-q::before {
  transform: translate(-2px, -1px) rotate(55deg);
}
.faq-q::after {
  transform: translate(4px, -1px) rotate(306deg);
}

.faq-q[aria-expanded="true"]::before {
  transform: translate(-2px, 1px) rotate(299deg);
}
.faq-q[aria-expanded="true"]::after {
  transform: translate(4px, 1px) rotate(60deg);
}
.faq-a {
  padding: 0 12px 12px 12px;
  font-size: var(--font-size-xs);
  line-height: 1.6;
  display: none;
  text-align: left;
}
.faq-a.open {
  display: block;
}

/* News */
.news{
  background: #000;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px 0;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  box-sizing: border-box;
}
.news-item {
  display: flex;
  gap: 12px;
  align-items: stretch;
  background: #fff;
  color: #000;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.news-thumb {
  width: 76px;
  flex: 0 0 76px;
  min-height: 76px;
  overflow: hidden;
  align-self: stretch;
  border-radius: 6px 0 0 6px;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.news-title {
  font-size: var(--font-size-sm);
  line-height: 1.4;
  text-align: left;
  margin-top: 5px;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 5px 5px 5px 0;
}
.news-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  box-sizing: border-box;
  white-space: nowrap;
}
.news-item time {
  color: #777;
  font-size: 1.2rem;
}

/* お知らせ　ピンク */
span.cate.cate01 {
  background: #d47777;
}
/* キャンペーン　黄色 */
span.cate.cate02 {
  background: #eac773;
}
/* 新作衣装　緑 */
span.cate.cate03 {
  background: #4f853e;
}
/* その他　グレー */
span.cate.cate04 {
  background: #8a8a8a;
}

@media (min-width: 880px) {
  .news-list { flex-direction: column; }
}

.info_table {
  font-weight: 400;
}
.info_wrap {
    width: 90%;
    margin: 0 auto;
    text-align: left;
}

@media (min-width: 880px) {
  .pc_fixed_buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .pc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 3px 15px rgba(0,0,0,.2);
    padding: 12px 18px;
    text-decoration: none;
    color: #fff;
    font-size: var(--font-size-xs);
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
    min-height: 50px;
  }

  .pc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
  }

  .pc-btn-line {
    background-color: #1e8214;
  }

  .pc-btn-web {
    background-color: #ba8f3d;
  }

  .pc-btn-icon {
    width: 1em;
    height: 1em;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pc-btn-icon img {
    width: auto;
    height: 1em;
  }
}

@media (max-width: 879px) {
  .pc_fixed_buttons {
    display: none;
  }
}

@media (max-width: 879px) {
  .sp_fixed_bnr_wrapper,
  .sp_fixed_footer_wrapper {
    position: fixed;
    bottom: 0;       
    left: 0;         
    right: 0;       
    z-index: 9999;    
   
    max-width:440px; 
    margin: 0 auto;   
  }
}

@media (min-width: 880px) {
  .sp_fixed_bnr_wrapper,
  .sp_fixed_footer_wrapper {
    position: static;
    max-width: none;
    margin: 0;
  }
  
  .sp_fixed_bnr {
    display: none;
  }
  
  footer {
    display: block;
    position: static;
  }
}

.sp_fixed_bnr {
  display: flex;
  width: 100%; 
  justify-content: space-between; 
  padding: 0;
  margin: 0;
}

@media (min-width: 880px) {
  .sp_fixed_bnr {
    display: none !important;
  }
}



@media (min-width: 880px) {
  footer {
    display: block;
    position: static;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1px 0 0;
  }
  
  .footer-content {
    text-align: left;
    padding: 0 20px;
  }
  
  .footer-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .footer-info {
    margin-bottom: 20px;
  }
  
  .footer-info p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #fff;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 50%;
    transition: opacity 0.2s;
  }
  
  .footer-social-icon:hover {
    opacity: 0.7;
  }
  
  .footer-social-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  
  p.copyright {
    padding: 10px 10px;
    border-top: 1px solid #333;
    margin-top: 20px;
    text-align: center;
  }
}
@media (max-width: 879px) {
  .sp_fixed_bnr {
    display: flex;
  }
  
  .footer-content {
    display: none;
  }
  p.copyright {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 300;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin: 0;
  }
  
  footer {
    background: #000;
  }
}



#page_top.page_top.pc {
  position: fixed;
  right: 22px;
  z-index: 1200;
  width: 52px;
  height: 52px;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  background: rgba(0,0,0,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 140ms ease, background 140ms ease;
  cursor: pointer;
}

@media (min-width: 880px) {
  #page_top.page_top.pc {
    bottom: 90px; 
  }
}


@media (max-width: 879px) {
  #page_top.page_top.pc {
    bottom: 98px; 
  }
  p.copyright {
  font-size: var(--font-size-sm);
  font-weight: 300;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin: 0 0 70px 0px;
}
}
#page_top.page_top.pc a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}
#page_top.page_top.pc:hover {
  transform: translateY(-6px);
  background: var(--color-accent);
}
#page_top.page_top.pc:focus-within {
  outline: 3px solid rgba(234,199,115,0.22);
  outline-offset: 4px;
}

@media (max-width: 768px) {

  #page_top.page_top.pc {
    display: flex;
    right: 16px;
    bottom: 78px; 
    width: 48px;
    height: 48px;
  border-radius: 4px;
  border: 2px solid var(--color-accent);
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .sp_fixed_bnr {
    display: flex;
  }
}

.sp_fixed_bnr li {
  flex: 1; 
}

.sp_fixed_bnr li a {
  display: flex;
  align-items: center; 
  justify-content: center; 
  text-align: center;
  padding: 12px 8px;
  font-size: var(--font-size-xs);
  color: #fff;
  text-decoration: none;
  height: 100%;
  min-height: 70px;
}

.sp_fixed_bnr li a.btn-web {
  background-color: #ba8f3d;
}

.sp_fixed_bnr li a.btn-line {
  background-color: #1e8214;
}

.sp_fixed_bnr .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.sp_fixed_bnr .btn-icon img {
  width: auto;
  height: 1em;
}

.sp_fixed_bnr li a span {
  display: inline-block;
  line-height: 1.2;
}

@media (max-width: 879px) {
  footer {
    margin-bottom: 10px;
  }
}


