@charset "UTF-8";

/* ==============================================
   1. Font Loading
   ============================================== */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NotoSansJP-SemiBold.woff2") format("woff2"),
    url("../fonts/NotoSansJP-SemiBold.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Outfit-Regular.woff2") format("woff2"),
    url("../fonts/Outfit-Regular.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Outfit-Medium.woff2") format("woff2"),
    url("../fonts/Outfit-Medium.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Outfit-SemiBold.woff2") format("woff2"),
    url("../fonts/Outfit-SemiBold.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Outfit-Bold.woff2") format("woff2"),
    url("../fonts/Outfit-Bold.woff") format("woff");
  font-display: block;
}

/* ==============================================
   2. Basic Settings
   ============================================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

.inner {
  width: 1000px;
  max-width: 94%;
  margin: 0 auto;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a[href^="tel:"] {
  pointer-events: none;
}

.sp_only {
  display: none !important;
}

.pc_only {
  display: block !important;
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  body {
    font-size: 13px;
  }

  .inner {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}