@charset "UTF-8";
/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #002851;
  background: #fff;
  line-height: 1.8;
  letter-spacing: 1.6px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  nav.sp {
    display: flex !important;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --primary: #002851;
  --white: #ffffff;
  --bg-light: #e9eff4;
  --border-gray: #d9d9d9;
  --max-width: 1600px;
  --content-width: 1434px;
  --font-en: "Urbanist", sans-serif;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
}

/* ============================================
   Layout
   ============================================ */
.l-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 82px;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo-icon {
  width: 148px;
  height: auto;
}

.header__logo-icon img {
  width: 100%;
  height: 60px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 10px;
  padding-right: 40px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-item {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--primary);
  text-decoration: none;
  padding: 0 15px;
  white-space: nowrap;
}

.header__nav-item:hover {
  opacity: 0.7;
}

.header__nav-separator {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.header__nav-line {
  width: 100%;
  height: 1px;
  margin-top: 16px;
}

.header__nav-line img {
  width: 100%;
  height: auto;
}

.header__shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 248px;
  height: 42px;
  background: var(--primary);
  border-radius: 3px;
  text-decoration: none;
  margin-top: 4px;
}

.header__shop-btn-icon {
  width: 35px;
  height: 31px;
}

.header__shop-btn-text {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 3.2px;
  line-height: 90px;
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ============================================
   Section Heading (common)
   ============================================ */
.section__heading {
  text-align: center;
  margin-bottom: 40px;
}

.section__heading-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 64px;
  line-height: 90px;
  letter-spacing: 12.8px;
  color: var(--primary);
  text-align: center;
}

.section__heading-ja {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 10px;
  color: var(--primary);
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   Hero Section (TOP page)
   ============================================ */
.hero {
  position: relative;
  padding-top: 200px;
  overflow: hidden;
}

.hero__top {
  position: relative;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__title {
  position: absolute;
  top: -80px;
  right: 160px;
  z-index: 1;
  width: 210px;
}

.hero__side {
  position: absolute;
  right: 60px;
  top: -80px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 320px;
  z-index: 1;
}

.hero__side-line {
  width: 1px;
  height: 100%;
  background: var(--primary);
}

.hero__side-text {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: var(--primary);
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.hero__decorative-images {
  position: absolute;
  right: 200px;
  top: 0;
  display: flex;
  gap: 12px;
}

.hero__decorative-images img {
  width: 84px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__catch {
  display: inline-block;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 4px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.hero__image {
  position: relative;
  width: 90%;
  max-width: 1420px;
  height: auto;
  aspect-ratio: 1420/530;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8eef5 0%, #d1dce8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  opacity: 0.8;
}

.hero__badge {
  position: absolute;
  right: 50px;
  bottom: 30px;
  width: 160px;
  height: auto;
  aspect-ratio: 160/160;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: rotate(21.88deg);
}

.hero__badge-text {
  font-family: "Noto Sans JP", var(--font-ja), sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 4px;
  transform: rotate(-10deg);
}

/* ============================================
   About Section (TOP page)
   ============================================ */
.about {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.about__content {
  margin: 0 auto;
  position: relative;
}

.about__inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about__image {
  width: 43%;
  height: 100%;
}

.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 30px;
  line-height: 56px;
  letter-spacing: 2px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;
}

.about__text-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__text {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.6px;
  text-align: center;
  color: var(--primary);
}

.about__sub {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.6px;
  color: var(--primary);
  text-align: center;
  margin-top: 60px;
}

.about__illustration {
  position: absolute;
  left: -200px;
  bottom: 0;
  width: 800px;
  opacity: 0.15;
  pointer-events: none;
}

.about__btn {
  text-align: right;
  margin-top: 60px;
}

/* ============================================
   Works Section (TOP page)
   ============================================ */
.works {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
}

.works__inner {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 60px;
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
}

.works__content {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.works__left {
  flex: 1;
}

.works__right {
  width: 50%;
  flex-shrink: 0;
}

.works__right-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.works__right-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.works__brand {
  margin-bottom: 30px;
}

.works__brand img {
  max-width: 614px;
}

.works__name {
  font-family: var(--font-ja);
  font-weight: bold;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: 1.6px;
  color: var(--primary);
  padding: 20px 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  text-align: center;
  margin-top: 20px;
}

.works__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
  margin-top: 20px;
  max-width: 698px;
}

.works__shop {
  margin-top: 60px;
}

.works__shop-label {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
}
.works__shop-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 247/7;
  background-image: url(../images/icon-arrow-line.png);
  background-size: cover;
}

.works__shop-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.works__shop-links a {
  width: 100%;
}

.works__shop-links-row {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

/* ============================================
   Promotion Section (TOP page)
   ============================================ */
.promotion {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.promotion__banner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--primary);
  padding: 24px 40px;
  margin-bottom: 60px;
  border-radius: 3px;
}

.promotion__banner-text {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 26px;
  line-height: 50px;
  letter-spacing: 2px;
  color: var(--white);
  text-align: center;
}

.promotion__content {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.promotion__left {
  flex: 1;
  text-align: center;
}

.promotion__text {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
  margin-bottom: 60px;
  text-align: center;
}

.promotion__partner {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 20px 30px;
  display: inline-block;
  margin-bottom: 60px;
}

.promotion__partner img {
  max-width: 562px;
  height: auto;
}

.promotion__partner-placeholder img {
  width: 100%;
  height: auto;
}

.promotion__right {
  position: relative;
  width: 33%;
  height: auto;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.promotion__service-item {
  width: 48%;
  height: auto;
  aspect-ratio: 1/1;
}
.promotion__service-item:nth-child(3) {
  width: 100%;
  aspect-ratio: auto;
  display: flex;
  justify-content: center;
}
.promotion__service-item:nth-child(3) img {
  width: 48%;
}

.promotion__btn {
  margin-top: 20px;
  text-align: center;
}

/* ============================================
   Contact Section (TOP page)
   ============================================ */
.contact-section {
  padding: 80px 0 100px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.contact-section__inner {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.contact-section__icon {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section__icon img {
  display: block;
  margin: 0 auto;
}

.contact-section__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.contact-section__image {
  width: 50%;
  height: auto;
}
.contact-section__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-section__text-area {
  width: 50%;
  height: auto;
  text-align: center;
}

.contact-section__text {
  flex: 1;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 1.6px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}

.contact-section__illustration {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 700px;
  opacity: 0.15;
  pointer-events: none;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.8;
}

.btn--primary {
  width: 400px;
  height: 77px;
  background: var(--primary);
  color: var(--white);
  border-radius: 3px;
  font-size: 20px;
  letter-spacing: 2px;
}

.btn--primary .btn__arrow {
  width: 32px;
  height: 32px;
}

.btn--outline {
  height: 77px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 3px;
  padding: 0 30px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1.6px;
}

.btn--outline-large {
  width: 450px;
  height: 77px;
}

.btn--outline-half {
  width: 50%;
  height: 77px;
}

.btn--submit {
  width: 529px;
  height: 66px;
  background: var(--primary);
  color: var(--white);
  border-radius: 3px;
  font-size: 24px;
  letter-spacing: 2px;
  border: none;
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__arrow svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   Footer
   ============================================ */
.page-top {
  text-align: right;
  padding: 0 96px 12px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-top a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 1px;
}

.page-top__arrow {
  width: 48px;
  height: 13px;
  transform: rotate(180deg);
}

.footer {
  background: var(--primary);
  padding: 80px 0 0px;
  color: var(--white);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 96px;
  text-align: right;
}

.footer__top {
  display: inline-block;
  text-align: left;
}

.footer__logo {
  display: block;
  text-align: left;
  margin-bottom: 30px;
}

.footer__logo-icon {
  width: auto;
  height: auto;
}

.footer__info-area {
  flex: 1;
}

.footer__company-name {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__address {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 3px;
  color: var(--white);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 30px;
}

.footer__nav-item {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  padding: 0 10px;
}

.footer__nav-item:first-child {
  padding-left: 0;
}

.footer__nav-item:hover {
  opacity: 0.7;
}

.footer__nav-separator {
  font-size: 15px;
  color: var(--white);
  opacity: 0.5;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
}

.footer__copyright {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 16px;
  line-height: 90px;
  letter-spacing: 3.2px;
  color: var(--white);
  text-align: center;
}

/* ============================================
   Page Header (subpages)
   ============================================ */
.page-header {
  padding-top: 220px;
  padding-bottom: 60px;
  padding-right: 5%;
  text-align: center;
  max-width: 460px;
  margin: 0 0 0 auto;
}

.page-header--history {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0;
  max-width: 290px;
  margin: 0;
}

.page-header__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 64px;
  line-height: 90px;
  letter-spacing: 12.8px;
  color: var(--primary);
}

.page-header__ja {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 10px;
  color: var(--primary);
  margin-top: 16px;
}

/* ============================================
   Company Page
   ============================================ */
.company-section {
  padding: 0 0 120px;
  position: relative;
  overflow: hidden;
}

.company-section .l-inner {
  position: relative;
  z-index: 1;
}

.company-overview {
  margin-bottom: 80px;
}

.company-overview__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
}

.company-overview__title span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  margin-left: 12px;
}

.company-table {
  width: 100%;
  max-width: 892px;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--border-gray);
}

.company-table tr:first-child {
  border-top: 1px solid var(--border-gray);
}

.company-table th {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 39px;
  letter-spacing: 1.6px;
  color: var(--primary);
  text-align: left;
  padding: 16px 20px;
  width: 200px;
  vertical-align: top;
}

.company-table td {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
  padding: 16px 20px;
}

.company-table__note {
  font-size: 14px;
  line-height: 24px;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
}

.company-notes {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.2px;
  color: var(--primary);
  opacity: 0.8;
  margin-top: 20px;
}

/* Company History */
.company-history {
  margin-top: 30px;
}

.company-history__inner {
  display: flex;
  justify-content: space-between;
}

.company-history__image {
  width: 70%;
  margin-left: -82px;
}

.company-history__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 40px;
}

.company-history__title span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  margin-left: 12px;
}

.history-list {
  position: relative;
  padding-left: 30px;
}

.history-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--primary);
}

.history-list__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 12px 0;
  position: relative;
}

.history-list__item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 0;
}

.history-list__year {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.6px;
  color: var(--primary);
  white-space: nowrap;
  min-width: 80px;
}

.history-list__text {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
}

.company-illustration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;
  opacity: 0.08;
  pointer-events: none;
}

/* ============================================
   Contact Page (form)
   ============================================ */
.contact-page-section {
  padding: 0 0 120px;
}

.contact-form {
  max-width: 864px;
  margin: 0 auto;
}

.contact-form__note {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.6px;
  color: #000;
  margin-bottom: 10px;
}

.form-group__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 21px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
}

.form-group__input {
  width: 100%;
  height: 66px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 3px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--primary);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group__input:focus {
  border-color: var(--primary);
}

.form-group__textarea {
  width: 100%;
  min-height: 260px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 3px;
  padding: 20px;
  font-size: 16px;
  color: var(--primary);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-group__textarea:focus {
  border-color: var(--primary);
}

.contact-form__submit {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   Privacy Policy Page
   ============================================ */
.privacy-section {
  padding: 0 0 120px;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 82px;
}

.privacy-content p {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
  margin-bottom: 20px;
}

.privacy-content h2 {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
  margin: 40px 0 16px;
}

.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.privacy-content ul li {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: var(--primary);
  list-style: disc;
  margin-bottom: 4px;
}

/* ============================================
   Responsive (tablet)
   ============================================ */
@media screen and (max-width: 1024px) {
  .header {
    background: transparent;
  }
  .header__inner {
    padding: 0 0 0 10px;
  }
  .header__logo-icon {
    width: 100px;
  }
  .header__logo-icon img {
    height: auto;
  }
  .header__right {
    display: none;
  }
  .header__nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 375px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    z-index: 150;
    padding: 140px 40px 40px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }
  .header__nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: var(--primary);
  }
  .header__nav.is-open {
    right: 0;
  }
  .header__nav .header__nav-separator {
    display: none;
  }
  .header__nav .header__nav-item {
    font-size: 16px;
    padding: 20px 0;
    color: var(--primary);
    border-bottom: 1px dashed var(--border-gray);
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
  }
  .header__nav .header__nav-item:first-of-type {
    border-top: 1px dashed var(--border-gray);
  }
  .header__nav-logo {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    z-index: 2;
  }
  .header__nav-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 2;
  }
  .header__nav-close::before,
  .header__nav-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
  }
  .header__nav-close::before {
    transform: rotate(45deg);
  }
  .header__nav-close::after {
    transform: rotate(-45deg);
  }
  .header__shop-btn-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 57px;
    background: var(--primary);
    border-radius: 3px;
    text-decoration: none;
    margin-top: 40px;
    position: relative;
    z-index: 1;
  }
  .header__shop-btn-sp .header__shop-btn-icon {
    width: 28px;
    height: 26px;
  }
  .header__shop-btn-sp .header__shop-btn-text {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 3.2px;
    color: var(--white);
  }
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 140;
  }
  .nav-overlay.is-open {
    display: block;
  }
  .hamburger {
    width: 22px;
    height: 16px;
    display: flex;
    position: relative;
    z-index: 200;
    background: var(--primary);
    padding: 16px 12px;
    box-sizing: content-box;
  }
  .hamburger span {
    background: var(--white);
    height: 1px;
  }
  .hamburger.is-active span {
    background: var(--white);
  }
  .hero {
    padding-top: 160px;
  }
  .hero__top {
    width: 100%;
    padding: 0 18px;
  }
  .hero__title {
    width: 120px;
    margin-bottom: 20px;
    right: 0;
  }
  .hero__title h1 img {
    width: 100%;
    max-width: 200px;
  }
  .hero__side {
    position: absolute;
    right: 18px;
    top: 0;
    height: 227px;
    gap: 8px;
  }
  .hero__side-text {
    font-size: 14px;
    line-height: 24px;
  }
  .hero__catch {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 20px;
  }
  .hero__image {
    width: calc(100% - 36px);
    aspect-ratio: 339/318;
    height: auto;
  }
  .hero__badge {
    width: 100px;
    height: 100px;
    top: 0;
    right: 0;
  }
  .hero__badge-text {
    font-size: 18px;
    letter-spacing: 3px;
  }
  .section__heading {
    margin-bottom: 24px;
  }
  .section__heading-en {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 8px;
  }
  .section__heading-ja {
    font-size: 14px;
    letter-spacing: 6px;
    margin-top: 8px;
  }
  .about {
    padding: 80px 0 60px;
  }
  .about__content {
    padding: 0 18px;
  }
  .about__inner {
    flex-direction: column;
    gap: 30px;
  }
  .about__image {
    width: 100%;
    order: 1;
  }
  .about__text-area {
    width: 100%;
    order: 2;
  }
  .about__text-area > .about__title {
    order: 1;
  }
  .about__text-area > .img-sp {
    order: 2;
    margin-top: -30px;
    margin-left: -5%;
  }
  .about__text-area > .about__text-area {
    order: 3;
  }
  .about__text-area > .about__btn {
    order: 4;
  }
  .about__title.sp {
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: 0 0 20px auto;
    letter-spacing: 4px;
    text-align: start;
  }
  .about__text {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    margin-top: 20px;
  }
  .about__btn {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .works {
    padding: 60px 0;
  }
  .works__inner {
    width: calc(100% - 36px);
    padding: 30px 24px;
  }
  .works__content {
    flex-direction: column;
    gap: 30px;
    margin-top: 24px;
  }
  .works__left {
    order: 2;
  }
  .works__right {
    width: 100%;
    order: 1;
  }
  .works__right-image {
    height: auto;
    aspect-ratio: 296/197;
  }
  .works__left-image {
    text-align: center;
    margin-bottom: 16px;
  }
  .works__name {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 0;
    margin-top: 16px;
  }
  .works__desc {
    font-size: 14px;
    line-height: 26px;
    margin-top: 16px;
  }
  .works__shop {
    margin-top: 40px;
  }
  .works__shop-label {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .works__shop-links {
    gap: 12px;
  }
  .works__shop-links-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .btn--outline {
    height: 57px;
    font-size: 16px;
  }
  .btn--outline-large {
    width: 100%;
    height: 57px;
    padding: 0;
  }
  .btn--outline-half {
    width: 100%;
    height: 57px;
  }
  .promotion {
    padding: 60px 0 80px;
  }
  .promotion__banner {
    width: calc(100% - 36px);
    margin: 0 auto 40px;
    padding: 16px 20px;
  }
  .promotion__banner-text {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1px;
  }
  .promotion__content {
    flex-direction: column;
    padding: 0 18px;
    gap: 40px;
  }
  .promotion__left {
    width: 100%;
    display: contents;
  }
  .promotion__text {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0;
    text-align: left;
    order: 1;
  }
  .promotion__partner {
    padding: 0px 20px;
    margin-bottom: 0;
    order: 2;
  }
  .promotion__partner img {
    max-width: 100%;
  }
  .promotion__right {
    width: 100%;
    gap: 12px;
    justify-content: center;
    order: 3;
  }
  .promotion__service-item {
    width: calc(50% - 6px);
    max-width: 150px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .promotion__service-item:nth-child(3) {
    width: calc(50% - 6px);
    max-width: 150px;
    aspect-ratio: 1/1;
    display: block;
  }
  .promotion__service-item:nth-child(3) img {
    width: 100%;
  }
  .promotion__btn {
    width: 100%;
    margin-top: 0;
    order: 4;
  }
  .contact-section {
    padding: 60px 0 80px;
  }
  .contact-section__inner {
    padding: 0;
    width: 100%;
  }
  .contact-section__icon img {
    width: 60px;
    height: auto;
  }
  .contact-section__body {
    flex-direction: column;
    gap: 30px;
  }
  .contact-section__image {
    width: 100%;
    margin: 0 auto;
  }
  .contact-section__text-area {
    width: 100%;
  }
  .contact-section__text {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 24px;
  }
  .btn--primary {
    width: 100%;
    max-width: 296px;
    height: 57px;
    font-size: 16px;
  }
  .page-top {
    padding: 0 18px 12px;
    text-align: center;
  }
  .footer {
    padding: 40px 0 0;
  }
  .footer__inner {
    padding: 0 18px;
    text-align: center;
  }
  .footer__top {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer__logo {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 24px;
    order: 2;
  }
  .footer__logo-icon {
    display: inline-block;
  }
  .footer__info-area {
    text-align: center;
    display: contents;
  }
  .footer__company-name {
    font-size: 13px;
    letter-spacing: 2px;
    order: 3;
  }
  .footer__address {
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 22px;
    order: 4;
  }
  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 24px;
    order: 1;
  }
  .footer__nav-separator {
    display: none;
  }
  .footer__nav-item {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 4px 0;
  }
  .footer__bottom {
    padding-top: 24px;
  }
  .footer__copyright {
    font-size: 12px;
    line-height: 60px;
  }
  .l-inner {
    padding: 0 18px;
  }
  /* Page Header (subpages) */
  .page-header {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .page-header__en {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 6px;
  }
  .page-header__ja {
    font-size: 14px;
    letter-spacing: 4px;
    margin-top: 12px;
  }
  .page-header--history {
    max-width: none;
    padding: 0;
  }
  /* Company Page */
  .company-section {
    padding: 0 0 80px;
  }
  .company-overview {
    margin-bottom: 60px;
  }
  .company-overview__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .company-overview__title span {
    font-size: 16px;
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .company-table th {
    display: block;
    width: 100%;
    padding: 12px 0 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
  }
  .company-table td {
    display: block;
    width: 100%;
    padding: 4px 0 12px;
    font-size: 14px;
    line-height: 24px;
  }
  .company-notes {
    font-size: 12px;
    line-height: 20px;
  }
  .company-history {
    margin-top: 0px;
  }
  .company-history__inner {
    display: flex;
    flex-direction: column;
  }
  .company-history__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .company-history__title span {
    font-size: 16px;
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .company-history__image {
    width: 100%;
    margin-left: -18px;
    margin-top: 30px;
  }
  .history-list {
    padding-left: 20px;
  }
  .history-list__item {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
  .history-list__item::before {
    left: -24px;
    top: 16px;
    width: 8px;
    height: 8px;
  }
  .history-list__year {
    font-size: 14px;
  }
  .history-list__text {
    font-size: 14px;
    line-height: 24px;
  }
  /* Contact Page */
  .contact-page-section {
    padding: 0 0 80px;
  }
  .contact-form {
    padding: 0;
  }
  .contact-form__note {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group__label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .form-group__required {
    width: 40px;
    height: 18px;
    font-size: 12px;
  }
  .form-group__input {
    height: 50px;
    font-size: 14px;
    padding: 0 16px;
  }
  .form-group__textarea {
    min-height: 200px;
    font-size: 14px;
    padding: 16px;
  }
  .contact-form__submit {
    margin-top: 40px;
  }
  .btn--submit {
    width: 100%;
    max-width: 296px;
    height: 57px;
    font-size: 16px;
  }
  /* Privacy Page */
  .privacy-section {
    padding: 0 0 80px;
  }
  .privacy-content {
    padding: 0;
  }
  .privacy-content p {
    font-size: 14px;
    line-height: 26px;
  }
  .privacy-content h2 {
    font-size: 16px;
    line-height: 26px;
    margin: 30px 0 12px;
  }
  .privacy-content ul {
    padding-left: 20px;
  }
  .privacy-content ul li {
    font-size: 14px;
    line-height: 26px;
  }
}
/* ============================================
   Responsive (mobile - 480px以下)
   ============================================ */
@media screen and (max-width: 480px) {
  .hero__title {
    top: -70px;
    right: 80px;
  }
  .hero__side {
    display: flex;
    height: 180px;
    top: -70px;
  }
  .hero__catch {
    text-align: center;
    margin-bottom: 80px;
  }
  .promotion__service-item {
    width: calc(50% - 6px);
    max-width: 130px;
  }
  .promotion__service-item:nth-child(3) {
    width: calc(50% - 6px);
    max-width: 130px;
  }
}/*# sourceMappingURL=style.css.map */