@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.seo-h1, .seo-h2{
position:absolute;
width:1px;
height:1px;
overflow:hidden;
clip:rect(1px,1px,1px,1px);
}
html.invert-mode {
  filter: invert(1) hue-rotate(180deg);
}

html.invert-mode .service-item,
html.invert-mode .reason-item,
html.invert-mode .price-card,
html.invert-mode .faq-list {
  filter: invert(1) hue-rotate(180deg);
}
html.invert-mode .faq-item-preview h3,
html.invert-mode .faq-item-preview p {
  color: #e7e7e7;
}
.invert-mode .contact-line img {
  filter: invert(1) hue-rotate(180deg);
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
background: linear-gradient(
  180deg,
  #161616 0%,
  #1c1c1c 45%,
  #181818 100%
);
  color: #eaeaea;
  z-index: 0;
    transition: 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background:
    radial-gradient(
      800px 400px at 20% 10%,
      rgba(255,255,255,0.04),
      transparent 60%
    ),
    radial-gradient(
      600px 300px at 80% 70%,
      rgba(255,255,255,0.03),
      transparent 60%
    );
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

#menu-btn-check {
  display: none;
}
.menu-btn {
  display: none;
}

#headerBox {
    position: relative;
    width: 100%;
    height: 40vh; /* 元の高さ */
}

#headerBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
        background: linear-gradient(
  180deg,
  #161616b3 0%,
  #1c1c1caa 45%,
  #181818a3 100%
  );
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.516);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#headerBackground.fixed {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
}

#logo {
    position: fixed;
    top: 1.3vw;
    left: 2vw;
    width: 17vw;
    z-index: 102;
}

.menu-content {
    position: absolute;
    top: 50vh;
    left: 32vw;
    z-index: 101;
    font-size: 1.2vw;
}

.menu-content.fixed {
    position: fixed;
    top: 2vw;
    left: 32vw;
    z-index: 101;
}

/* ul, li */
.menu-content ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-content li {
    width: 10vw;
    text-align: center;
    letter-spacing: .2vw;
    font-weight: 200;
    list-style: none;
  }

.menu-content li a {
      text-decoration: none;
    color: #ffffff;
}
button {
  padding: 0;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

/* ボタンのスタイル */
.buttonNeumorphism {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6vw;
  aspect-ratio: 1;
  color: #f0f0f0;
  background: #1e1e1e;
  border-radius: 50%;
      color: inherit;
  text-decoration: none;
  position: absolute;
  top:  -1vw;
  left: 60vw;

  /* 影を整理 */
  box-shadow:
    0 .6vw 1.4vw rgba(0,0,0,0.55);

  /* 輪郭を作る */
  border: .1vw solid rgba(255,255,255,0.08);
}


@media (any-hover: hover) {
  .buttonNeumorphism {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .buttonNeumorphism:hover {
    transform: translateY(-2px);
    box-shadow:
      0 1.0vw 2.2vw rgba(0,0,0,0.65);
  }

.buttonNeumorphism:active {
  transform: translateY(0);
  box-shadow:
    inset 0 .3vw .6vw rgba(0,0,0,0.6);
}

}
.buttonNeumorphism svg,
.buttonNeumorphism i,
.buttonNeumorphism img {
  color: #f5f5f5;
  fill: #f5f5f5;
}
.contact-line {
  display: none;
}
.mail-sp {
  display: none;
}
.theme-toggle {
  position: fixed;
  right: 2vw;
  bottom: 2vw;

  width: 4vw;
  height: 4vw;

  border-radius: 50%;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4vw;

  backdrop-filter: blur(0.8vw);
  background: rgba(255,255,255,0.08);
  color: #fff;

  box-shadow:
    0 1vw 2vw rgba(0,0,0,0.3),
    inset 0 0 0 0.1vw rgba(255,255,255,0.15);

  transition: all 0.3s ease;
  z-index: 9999;
}

.theme-toggle:hover {
  transform: translateY(-0.4vw) scale(1.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}
invert-mode .theme-toggle {
  background: rgba(0,0,0,0.08);
  color: #000;

  box-shadow:
    0 1vw 2vw rgba(0,0,0,0.15),
    inset 0 0 0 0.1vw rgba(0,0,0,0.1);
}
.main-contents {
  position: relative;
  display: block;
}

.text-cut-svg {
  display: block;
  margin: 3vh 0 0 12vh;
}

.slogan {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-left: 15vh;
  font-size: 1.2vw;
  letter-spacing: 0.8vw;
  margin-left: 30vw;
  margin-top: -3vw;
}

.concept {
  display: flex;
  justify-content: center;
  width: 90vw;
  margin: 0 auto;
  text-align: center;
  padding: 1vw 0;
  margin-top: 12vw;
}
.concept {
  position: relative;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 0;

  background: radial-gradient(
    circle,
    rgba(74,162,137,0.85) 0%,
    rgba(74,162,137,0.55) 18%,
    rgba(74,162,137,0.35) 32%,
    rgba(74,162,137,0.20) 48%,
    rgba(74,162,137,0.10) 62%,
    rgba(74,162,137,0.04) 72%,
    rgba(74,162,137,0) 82%
  );

  filter: blur(40vw);
}


/* テキストは手前 */
.concept h2,
.concept p {
  position: relative;
  z-index: 1;
      background: linear-gradient(
  180deg,
  #161616 0%,
  #1c1c1c 45%,
  #181818 100%
  );
  color: #eaeaea;
}

.concept h2 {
  text-align: left;
  font-size: 3vw;
   font-family: 'M PLUS 1p', sans-serif;
   font-weight: 300;
   letter-spacing: 1vw;
   padding: 3vw 2vw 3vw 2vw;
}
.concept p {
  font-size: 1.2vw;
  width: 60vw;
  text-align: left;
    font-weight: lighter;
  letter-spacing: .2vw;
  padding: 3vw 2vw 3vw 0;
}

.reason-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 表示状態 */
.reason-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reason h2, .service h2, .news-title h2, .works h2, .price-overview h2 {
  width: 85vw;
  font-size: 3vw;
  text-align: center;
   font-family: 'M PLUS 1p', sans-serif;
   font-weight: 300;
  position:relative;
 padding-bottom:0.5rem;
 border-bottom:1px solid currentColor;
 margin: auto;
 letter-spacing: 1vw;
}
.reason h2::before, .service h2::before, .news-title h2::before, .works h2::before, .price-overview h2::before {
   content:'';
 position: absolute;
 top: 100%;
 left: 50%;
 transform: translateX(-50%) skew(-25deg);
 height: 15px;
 width: 15px;
 border-right: 1px solid currentColor;
     background: linear-gradient(
  180deg,
  #161616 0%,
  #1c1c1c 45%,
  #181818 100%
  ) !important;
 /*Lightning見出しデザイン設定のCSS対策*/
 border-left: none;
 border-top: unset;
 border-bottom: unset;
}
.service h2, .news-title h2, .works h2, .price-overview h2 {
  margin-bottom: 4vh;
}


.reason h2,
.service h2,
.news-title h2,
.works h2,
.price-overview h2, 
.faq-title h2 {
  width: 85vw;
  font-size: 3vw;
  text-align: center;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  margin: auto;
  letter-spacing: 1vw;
}

.reason h2::before,
.service h2::before,
.news-title h2::before,
.works h2::before,
.price-overview h2::before, 
.faq-title h2::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 15px;
  width: 15px;
  border-right: 1px solid currentColor;
  background: linear-gradient(
    180deg,
    #161616 0%,
    #1c1c1c 45%,
    #181818 100%
  ) !important;
  border-left: none;
  border-top: unset;
  border-bottom: unset;
}

.service h2,
.news-title h2,
.works h2,
.price-overview h2,
.faq-title h2  {
  margin-bottom: 4vh;
}
.reason {
  position: relative;
  top: -105vh;
  width: 90vw;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  margin-top: 10vw;

}

/* ===== 表示エリア ===== */
.reason-list {
  width: 85vw;
  min-height: 15vw;
  position: relative;
  list-style: none;
  margin-top: 3vw;
  height: 18vw;
  overflow: hidden;
}

/* ===== カード ===== */
.reason-item {
  width: 60vw;
  height: 10vw;
  padding: 3vw 4vw;
  border-radius: 4vw;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: absolute;
  left: 50%;
  top: 50%;

  background: #fff;
  box-shadow: 0 1vw 2vw rgba(0,0,0,0.15);

  transform: translate(-50%, -50%) translateX(40px);
  opacity: 0;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
      pointer-events: none;
      margin-left: 3vw;
}

.reason-item::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 4vw;
  border: 1px solid rgb(250, 250, 250);

  transform: translate(-1.2vw, -0.8vw);
  pointer-events: none;
}

.reason-item.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
    pointer-events: auto;
}

/* ===== 背景グラデ ===== */
.reason-item:nth-child(1) {
  background: linear-gradient(135deg, #e9f7f2, #737c79);
}

.reason-item:nth-child(2) {
  background: linear-gradient(135deg, #eef3ff, #9b8f90);
}

.reason-item:nth-child(3) {
  background: linear-gradient(135deg, #fff3e6, #b18a8c);
}

/* ===== reason-card（背景数字用） ===== */
.reason-card {
  position: relative;
  z-index: 1;
}

.reason-item .reason-card::before {
  content: attr(data-num);
  position: absolute;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 12vw;
  color: rgba(0,0,0,0.06);
  pointer-events: none;

  transform: var(--base-transform);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ===== 初期位置 ===== */
.reason-item:nth-child(1) .reason-card::before {
  top: -2vw;
  left: -1vw;
  transform: rotate(-8deg);
}

.reason-item:nth-child(2) .reason-card::before {
  bottom: -2vw;
  right: -1vw;
  transform: rotate(6deg);
}

.reason-item:nth-child(3) .reason-card::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

/* ===== hover（必ず最後） ===== */
.reason-item:hover .reason-card::before {
  transform: scale(1.05) rotate(0deg) !important;
  opacity: 0.08;
}



/* テキスト */
.reason-item h3{
  font-size: 1.8vw;
  margin-bottom: 1.5vw;
  letter-spacing: .2vw;
  font-weight: 400;
  color: #222;
  position: relative;
  z-index: 1;
}

.reason-item p {
  font-size: 1.2vw;
  letter-spacing: .15vw;
  color: #444;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===== ナビ ===== */
.reason-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.reason-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  width: 10vw;
  height: 5vh;
  padding: .4vw;
  box-sizing: border-box;

  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}

.reason-switch-bg {
  position: absolute;
  top: 0;
  left: 0;

  width: calc(100% / 3);
  height: 100%;

  border-radius: 999px;
  background: #fff;

  transform: translateX(0);
  transition: transform 0.35s ease;

  pointer-events: none;
}

.reason-dot {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.reason-dot.is-active {
  color: #222;
  font-weight: 600;
}



.parallax-bg, .parallax-bg2 {
  position: relative;
  background-position: center;
      background-size: 100% auto; /* coverをやめる */
  background-repeat: no-repeat;
  will-change: background-position; 
  box-sizing: border-box;
  color: #FFF;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;

}

.parallax-bg {
    background-position: bottom;
  width: 100vw;
  height: 100vh;
  padding: 0vw 0 0vw 0;
  opacity: 0.9;
background-image: url(../image/analytics-1368293_1280.png);
filter: grayscale(90%);
}
.parallax-bg2 {
  background-image: url(../image/back.png);
  width: 100vw;
  height: 80vh;
    margin-top: -50vh; /* ← ここが肝 */
}
/* 全体に薄く色を載せる */
.parallax-bg::before, .parallax-bg2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(22,22,22,0.35) 0%,
      rgba(35, 35, 35, 0.45) 55%,
      rgba(36, 36, 36, 0.55) 100%
    );
}

/* 下端をさらに body に溶かす */
.parallax-bg::after, .parallax-bg2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40vh;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(22,22,22,0) 0%,
      rgba(22,22,22,0.4) 35%,
      rgba(28,28,28,0.7) 65%,
      rgb(26, 26, 26) 100%
    );
}


.service {
  position: relative;
  top: -100vh;
  width: 100vw;
  height: 0vh;
  text-align: center;
  margin: 0 auto;
  margin-top: 0vw;
}

.service a {
  text-decoration: none;
  color: #e5e5e5;
}
.service-list {
  width: 90vw;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw 12vw;
}
.service-item {
   width: 32vw;
   height: 8vw;
  position: relative;
    position: relative;

  box-shadow: 0 2vw 3vw rgba(0, 0, 0, 0.777);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  padding: 2vw 2vw;
  margin-top: 1vw;
  overflow: hidden;
  border-radius: 3vw;
  white-space: nowrap;
  overflow: visible; /* ← 重要：しっぽを出す */
    will-change: transform;

}
.service-item:nth-child(1) {
  background: linear-gradient(135deg, #668278, #737c79);
}
.service-item:nth-child(2) {
    background: linear-gradient(135deg, #988f9b, #676170);
}
.service-item:nth-child(3) {
   background: linear-gradient(135deg, #887575, #b18a8c); 
}
.service-item:nth-child(4) {
     background: linear-gradient(135deg, #87848e, #5b5b5b)
}
.service-item:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  border-style: solid;
  border-width: 2vw 0 0 2vw;
  border-color: transparent transparent transparent #737c79;
  translate: 100% -50%;
  transform: skew(0, 10deg);
  transform-origin: left;
}
.service-item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  border-style: solid;
  border-width: 2vw 2vw 0 0;
  border-color: transparent #988f9b transparent transparent;
  translate: -100% -50%;
  transform: skew(0, -10deg);
  transform-origin: right;
}
.service-item:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  border-style: solid;
  border-width: 0 0 2vw 2vw;
  border-color: transparent transparent transparent #b18a8c;
  translate: 100% calc(-50% - 0.4px);
  transform: skew(0, -10deg);
  transform-origin: left;
}
.service-item:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  border-style: solid;
  border-width: 0 2vw 2vw 0;
  border-color: transparent #87848e transparent transparent;
  translate: -100% calc(-50% - 0.4px);
  transform: skew(0, 10deg);
  transform-origin: right;
}
/* 初期状態：見えない＆中央から小さく */
.service-item {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-item:nth-child(2),.service-item:nth-child(4) {
  margin-top: 7vw;
}
/* 表示状態 */
.service-item.is-show {
  opacity: 1;
  transform: scale(1);
}

/* 表示状態 */
.service-item.is-show {
  opacity: 1;
  transform: scale(1);
}
.service-item h3 {
  font-size: 1.5vw;
  text-align: center;
  font-weight: 400;
  letter-spacing: .3vw;
}
.service-item p {
  font-size: 1vw;
  text-align: center;
  letter-spacing: .2vw;
}
.service-detail {
  font-size: 1.1vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  list-style: disc;
  list-style-position: inside;
    white-space: nowrap;
      margin-top: 1vw;
  text-align: center;
}
.service-detail li {
  width: 15vw;
  letter-spacing: .2vw;
}
/* 2×2の配置はそのまま想定 */


/* 線で描く四角グラデ枠 */
.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3vw; /* ← service-itemと同じ */
  padding: .05vw;       /* 線の太さ */

  background:
    conic-gradient(
      from 0deg,
  #ffffff,
  #eeeeee,
  #cccccc,
  #f7f7f7
    );

  /* 中抜き（線だけにする） */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  /* 線を描いていく表現 */
  clip-path: inset(0 100% 0 0 round 1vw);
  transition: clip-path 0.45s cubic-bezier(0.19,1,0.22,1);

  pointer-events: none;
}

/* hoverで一周描かれる */
@media (any-hover: hover) {
  .service-item:hover::before {
    clip-path: inset(0 0 0 0 round 1vw);
  }
}

.service-item:hover {
  transform: translateY(-0.6vw);
  box-shadow:
    0 1.4vw 2.6vw rgba(0, 0, 0, 0.6),
    inset 0 0.2vw 0.5vw rgba(255, 255, 255, 0.75);
}

.news-title {
  position: relative;
  margin-top: 5vw;
}

.newslist {
  max-width: 70%;
  margin: 0 auto 8vw auto;
  position: relative;
  height: 22vw;
  text-align: center;
  color: #141414;
  overflow-y: scroll; /* 縦スクロール */
  padding: 0;
}

.newslist::-webkit-scrollbar {
  width: 12px;
}

.newslist::-webkit-scrollbar-track {
  background: #c5c5c5;
}

.newslist::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 3px solid #f1f1f1;
}

.newslist::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.newslist ul {
  padding-left: 0;
  margin: 0;
  list-style: none;

  /* li を中央に寄せる */
  display: flex;
  flex-direction: column; /* 縦スクロール */
  align-items: center;    /* 子要素を中央寄せ */
}

/* li を横並びで中央揃え */
.newslist li {
  display: flex;
  flex-direction: row;  /* 横並び */
  justify-content: center; /* li 内の子要素を中央に */
  align-items: center;  /* 縦中央揃え */
  gap: 2vw;             /* 日付とタイトルの間隔 */
  padding: 1rem 0;
}

.news-item time,
.newslist li a {
  text-decoration: none;
  color: rgb(40, 40, 40);
  font-size: 1.3vw;
}

/* Swiper */
.works-swiper {
  position: relative;
  width: 98vw;
  height: 35vh;
  padding: 6vw 3vw 8vw 3vw;
  margin-top: 4vw;
}
.swiper-slide {
  box-sizing: border-box;
  overflow: visible;
}
.works-swiper .swiper-slide {
  width: fit-content; /* カードの幅に合わせる */
  flex-shrink: 0;     /* 縮まない */
}
/* card */
.work-card {
  height: 25vh;
  display: block;
  background: #e2e2e2;
  position: relative;
  z-index: 1;
  transition: transform .4s ease, box-shadow .4s ease;
  transform-origin: center center; /* ★追加 */
}

.work-card:hover {
  z-index: 20;
  transform: scale(1.1); /* ★上下に均等にはみ出す */
}
.works-swiper .swiper-button-prev,
.works-swiper .swiper-button-next {
  color: #333333;
}
/* media */
.media {
  position: relative;
  overflow: visible;
}

.media img,
.media video {
  max-height: 25vh;  /* 親の高さに合わせる */
  max-width: auto;   /* はみ出さない */
  object-fit: contain; /* アスペクト比を維持 */
  display: block;
}
.invert-mode .media img,
.invert-mode .media video {
  filter: invert(1) hue-rotate(180deg);
}
/* ===== WEBだけトリミング表示 ===== */
.category-web .media img,
.category-web .media video {
  width: 25vw;
  height: 25vh;
  object-fit: cover;
  object-position: top;
}

/* video hover */
.media .gif {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
}

.work-card.is-gif:hover .gif {
  opacity: 1;
}
.swiper,
.swiper-wrapper,
.swiper-slide {
  overflow: visible !important;
}

.sub-contents {
background:
  linear-gradient(
    180deg,
    #ececec 0%,
    #e3e3e3 45%,
    #dadada 100%
  );
  padding: 5vw 0;
}
.news-title h2, .works h2, .faq-title h2 {
  color: #141414;
}
.news-title h2::before{
    background:  #e6e6e6 !important;
}
.works h2::before {
      background:  #e2e2e2 !important;
}
.faq-title h2::before {
      background:  #e0e0e0 !important;  
}
.price-overview {
    padding: 10vw 0;
}
.price-overview__list {
  max-width: 85vw;
  display: flex;
  justify-content: center;
  gap: 4vw; 
  margin: 0 auto;
}


/* カード本体 */
.price-card {
  flex: 1;
  margin-top: 2vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.516);
}
.price-card:nth-child(1) {
  background: linear-gradient(135deg, #668278, #737c79);
  border-radius: 53% 47% 49% 51% / 56% 44% 54% 46%;
    padding: 6vw 3vw 2vw 3vw;
}
.price-card:nth-child(2) {
  background: linear-gradient(135deg, #988f9b, #676170);
  border-radius: 50% 50% 50% 50% / 54% 46% 54% 46%;
   padding: 5vw 3vw 2vw 3vw;
}
.price-card:nth-child(3) {
  background: linear-gradient(135deg, #887575, #b18a8c);
  border-radius: 52% 48% 51% 49% / 55% 45% 53% 47%;
  padding: 5vw 3vw 2vw 3vw;
}
/* =========================
   キラっと光るレイヤー
========================= */
.price-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.5) 50%,
    transparent 60%
  );
  opacity: 0;

  /* 自動でキラッ（全体周期） */
  animation: shine 5.5s ease-in-out infinite;
}

/* =========================
   カードごとにタイミングをずらす
========================= */
.price-card:nth-child(1)::after {
  animation-delay: 0s;
}

.price-card:nth-child(2)::after {
  animation-delay: 1.8s;
}

.price-card:nth-child(3)::after {
  animation-delay: 3.6s;
}

/* =========================
   アニメーション
========================= */
@keyframes shine {
  0% {
    left: -150%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    left: 150%;
    opacity: 0;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}



/* 中身 */
.price-card__title {
  font-size: 1.6vw;
  text-align: center;
  font-weight: 300;
  letter-spacing: .3vw;
}

.price-card__lead {
  letter-spacing: .2vw;
  margin-top: .5vw;
  margin-bottom: 1vw;
  font-size: 1vw;
}
.price-card__items {
  padding-left: 1em;
  font-size: 1.2vw;
}
.price-card li {
  list-style: none;
  letter-spacing: .3vw;
  font-size: 1vw;
}
.price-card__price {
  margin-top: 1vw;
  font-size: 1.2vw;
}
.button-17 {
  width: 19vw;
  margin-left: 70vw;
}
.button-17 a {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8vw;
  letter-spacing: 0.1em;
  color: #f3f3f3;
  font-weight: 400;
  display: block;
  position: relative;
  rotate: -0deg;
  transform: skewX(-0deg);
  box-sizing: border-box;
  max-width: 20vw;
  text-align: right; 
  padding: .4vh 1.6vw;
  margin: 2.4vw;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button-17 a::after {
  content: "";
  display: block;
  position: absolute;
  width: 19vw;      /* 元のまま */
  height: .2vh;       /* 少し太く */
  bottom: 0;

  background: linear-gradient(
    90deg,
    #656565 0%,
    #b9b9b9 35%,
    #e7e7e7 50%,
    #ededed 65%,
    #9f9f9f 100%
  );

  transition: all 0.3s;
}


.button-17 a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}

@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}
.faq-preview {
      margin: 0 auto;
    padding: 0 4vw;
   background: #e0e0e0;
  padding: 5vw 0;
}


.faq-list {
  width: 85vw;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    margin-top: 5vw;
}

.faq-item-preview {
  width: 65vw;
  margin: 0 auto;
    background: #fff;
    border-radius: 2vw;
    padding: 3vw;
    margin-bottom: 2vw;
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.05);
}
/* 1 */
.faq-item-preview:nth-of-type(1) {
  background: linear-gradient(
    135deg,
    rgba(141, 176, 164, 0.47),
    rgba(127, 168, 154, 0.412)
  );
}

/* 2 */
.faq-item-preview:nth-of-type(2) {
  background: linear-gradient(
    135deg,
    rgba(180, 165, 185, 0.47),
    rgba(168, 158, 184, 0.412)
  );
}

/* 3 */
.faq-item-preview:nth-of-type(3) {
  background: linear-gradient(
    135deg,
    rgba(183, 159, 159, 0.47),
    rgba(195, 153, 155, 0.412)
  );
}
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.05),
    transparent
  );
  transform: skewX(-20deg);
}
.faq-item-preview h3 {
    font-size: 1.6vw;
    margin-bottom: 1.5vw;
    color: #2e2e2e;
    font-weight: 100;
    letter-spacing: .1vw;
}

.faq-item-preview p {
    font-size: 1.2vw;
    line-height: 1.6;
    color: #252525;
    letter-spacing: .1vw;
}
.faq-preview .button-17 {
  width: 19vw;
  margin-left: 39vw;
}

.faq-preview .button-17 a {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8vw;
  letter-spacing: 0.1em;
  color: #1e1e1e;
  font-weight: 400;
  display: block;
  position: relative;
  rotate: -0deg;
  transform: skewX(-0deg);
  box-sizing: border-box;
  max-width: 20vw;
  text-align: right; 
  padding: .4vh 1.6vw;
  margin: 2.4vw;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-preview .button-17 a::after {
  content: "";
  display: block;
  position: absolute;
  width: 19vw;      /* 元のまま */
  height: .2vh;       /* 少し太く */
  bottom: 0;

  background: linear-gradient(
    90deg,
     #7a7a7a 0%,   /* 濃いダークグレー */
    #515151 25%,  /* 中間の光沢 */
    #282828 50%,  /* 中央のシャドウ */
    #444444 75%,  /* 光沢戻り */
    #b2b2b2 100%  /* 端は少し暗め */
  );

  transition: all 0.3s;
}



/* =========================
  CONTACT SECTION
========================= */

.contact-section {
  background: #e0e0e0;
  color: #141414;
  padding: 8vw 5vw 6vw 5vw;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 3vw;
  letter-spacing: 1vw;
     font-family: 'M PLUS 1p', sans-serif;
  font-weight: 600;
  margin-bottom: 3vw;
  text-align: center;
}

/* =========================
  FORM BASE
========================= */

.contact-form {
  width: 100%;
}

/* 共通ラベル（縦並び用） */
.contact-form label {
  display: block;
  margin-bottom: 2vw;
  text-align: left;
  font-size: 1.2vw;
  color: #1d1d1d;
}

/* =========================
  横並び：問い合わせ種別
========================= */

.contact-row {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 1.5vw;
  width: 100%;
  margin-bottom: 1.5vw;
  box-sizing: border-box;
}

.contact-label-horizontal {
  flex: 0 0 180px;
  font-size: 1.2vw;
  color: #eaeaea;
  text-align: right;
  margin-top: 0.6vw; /* selectと視覚的に揃える */
}

/* =========================
  INPUT / TEXTAREA / SELECT
========================= */

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1.5vw;
  margin-top: 0.5vw;
  background: #cbcbcb;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  color: #252525;
  font-size: 1.1vw;
  box-sizing: border-box;
  outline: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* 横並びselectだけ margin-topを消す */
.contact-row select {
  margin-top: 0;
}

/* select 矢印カスタム */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1.2vw center;
  background-size: 1.2vw;
  padding-right: 3vw;
}

/* =========================
  HOVER / FOCUS
========================= */

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  transform: translateY(-3px);
  border-color: #4aa289;
}

/* =========================
  DIVIDER
========================= */

.contact-divider {
  width: 100%;
  height: 1px;
  border: none;
  background: rgba(33, 33, 33, 0.427);
  margin: 1.5vw 0 2.5vw;
  box-sizing: border-box;
}

/* =========================
  SUBMIT BUTTON
========================= */

.contact-form button {
  display: block;
  margin: 3vw auto 0;
  padding: 1vw 3vw;
  background: #4aa289;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.2vw;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  background: #369173;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 4vw 0 2vw;
  background: #1a1a1a;
  color: #eaeaea;
}

/* ロゴ・名前 */
.footer-identity {
  width: 90vw;
  margin: 0 auto 3vw;
  text-align: left; /* 左寄せ */
}
.footer-identity img {
  width: 20vw;
}

/* お問い合わせ */
.footer-contact {
  width: 90vw;
  margin: 0 auto 4vw;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
}

.contact-card {
  position: relative;
  flex: 1 1 200px;
  padding: 2vw;
  background: #262626;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: .4vw;
  z-index: 1;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* 奥の薄い枠 */
.contact-card::before {
  content: "";
  position: absolute;
  top: 8px; 
  left: 8px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: .4vw;
  z-index: -1;
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* ホバー演出：白 */
.contact-card:hover {
  transform: translate(-4px,-4px);
  background: #fff;
  color: #111; /* 文字を濃く */
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.contact-card:hover::before {
  transform: translate(4px,4px);
  border-color: rgba(255,255,255,0.4); /* 少し薄めの白枠 */
  background: rgba(255,255,255,0.1); /* ほんのり白背景で奥行き感 */
}

.contact-text {
  margin: 0 auto;
  display: block;
  font-weight: 100;
  margin-top: 0.5vw;
  font-size: 1.2vw;
  letter-spacing: .2vw;
}


/* テキスト */
.contact-label {
  display: block;
    font-size: 2vw;
   font-family: 'M PLUS 1p', sans-serif;
   font-weight: 300;
   letter-spacing: 1vw;
  opacity: 0.7;
}


/* 下段 */
.footer-bottom {
  width: 90vw;
  margin: 0 auto;
  padding-top: 2vw;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ナビ */
.footer-nav ul {
  display: flex;
  gap: 2vw;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1vw;
  opacity: 0.7;
}

.footer-nav a:hover {
  opacity: 1;
}

/* コピーライト */
.copyright {
  font-size: 1vw;
  opacity: 0.5;
}



  @media only screen and (max-width: 600px) {
 * {
    font-weight: bold;
  }

  body {
    padding: 0;
    margin: 0;
  }


  .header-box, .header-box.fixed {
    display: none;
  }


.background {
height: 800vw;
}


#headerBackground {
  display: none;
}

#headerBackground.fixed {
display: none;
}


#headerBox {
    height: 10vh;
  }

  #logo {
    width: 40vw;
    top: 4vw;
    left: 4vw;
  }

  /* ハンバーガー */
  .menu-btn {
    display: flex;
    position: fixed;
    top: 4vw;
    right: 4vw;
    width: 8vw;
    height: 6vw;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }

  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    display: block;
    position: absolute;
    width: 7vw;
    height: 0.5vw;
    background: #fff;
    transition: 0.3s;
  }

  .menu-btn span::before {
    bottom: 2vw;
  }

  .menu-btn span::after {
    top: 2vw;
  }

  #menu-btn-check:checked ~ .menu-btn span {
    background: transparent;
  }

  #menu-btn-check:checked ~ .menu-btn span::before {
    transform: rotate(45deg);
    bottom: 0;
  }

  #menu-btn-check:checked ~ .menu-btn span::after {
    transform: rotate(-45deg);
    top: 0;
  }
   .mail-pc {
    display: none;
  }


.menu-content.fixed  {
top: 0;
left: 0;
z-index: 90;
}
  /* メニュー本体 */
  .menu-content {
    position: fixed;
    inset: 0;
    background: rgba(30,30,30,0.95);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }

  #menu-btn-check:checked ~ .menu-content {
    transform: translateX(0);
  }

  .menu-content ul {
    display: block;
    padding: 20vw 0 0;
    text-align: center;
  }

  .menu-content li {
    width: 90vw;
border-bottom: max(1px, .2vw) solid #fff;
    margin: 0 auto;
    padding-top: 5vw;
  }

  .menu-content li a {
    display: block;
    padding: 6vw 0;
    font-size: 5vw;
    font-weight: 200;
    letter-spacing: .5vw;
  }
.mail-pc {
  display: none;
}
.contact-line {
  display: block;
    display: flex;
    position: fixed;
    top: 1.5vw;
    left: 63vw;
      box-shadow:
    0 .6vw 1.4vw rgba(0,0,0,0.55);
        aspect-ratio: 1;
        border-radius: 3vw;
    z-index: 100;

}
.contact-line img {
  width: 10vw;
  height: auto;
}

/* メールボタンをハンバーガー横に固定 */

    .mail-sp {
    display: block;
    display: flex;
    position: fixed;
    top: 1.5vw;
    left: 75vw;
    width: 10vw;
    aspect-ratio: 1;
    z-index: 100;
  }

      .theme-toggle {
      width: 12vw;
      height: 12vw;
      font-size: 6vw;
    right: 3vw;
    bottom: 8vw;
  }
.text-cut-svg {
  margin: 15vh 0 0 4vw;
}

.slogan {
  font-weight: lighter;
  font-size: 2.5vw;
  margin-left: 22vw;
  margin-top: 0vw;
}

.concept {
  display: block;
  width: 90vw;
  margin-top: 20vw;
  margin-bottom: 15vw;
}
.concept h2 {
  font-size: 6vw;
  text-align: center;
  background: none;
  background: #161616;
  margin-bottom: -1vw;
}
.concept {
  padding: 3vw 4vw;
}
.concept p {
  font-size: 3.3vw;
  width: 80vw;
  padding: 5vw;
          background: linear-gradient(
  180deg,
  #161616 0%,
  #1c1c1c 45%,
  #181818 100%
  );
}
/* にじみの正体 */
  .bg-glow {
    filter: blur(3vw);
  }

.reason h2, .service h2, .news-title h2, .works h2, .price-overview h2, .faq-title h2 {
  font-size: 6vw;
}
.reason {
  top: -100vw;
  width: 100vw;
  margin-top: 10vw;
}

/* ===== 表示エリア ===== */
.reason-list {
  width: 100vw;
  min-height: 40vw;
  height: 50vw;
  margin-top: 10vw;
}

/* ===== カード ===== */
.reason-item {
  width: 80vw;
  height: 38vw;
  padding: 2vw 4vw;
  border-radius: 10vw;
      margin-left: 1vw;
}
.reason-item::before {
  border-radius: 10vw;
  border: 0.3vw solid rgb(250, 250, 250);
    transform: translate(-3vw, -2vw);
}
.reason h3 {
  font-size: 4vw;
}
.reason p {
  font-size: 3vw;
  width: 70vw;
  font-weight: 300;
}
.reason-switch {
  width: 30vw;
  height: 4vh;
}

.parallax-bg, .parallax-bg2 {
  position: relative;
  background-position: center;
      background-size: 100% auto; /* coverをやめる */
  background-repeat: no-repeat;
  will-change: background-position; 
  box-sizing: border-box;
  color: #FFF;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;

}

.parallax-bg {
    background-position: bottom;
  width: 100vw;
  height: 90vw;
    background-size: cover;
  padding: 0vw 0 0vw 0;
  opacity: 0.9;
background-image: url(../image/analytics-1368293_1280.png);
filter: grayscale(90%);
}
.parallax-bg2 {
  background-image: url(../image/back.png);
  width: 100vw;
  height: 190vw;
    background-size: cover;
    margin-top: -30vh; /* ← ここが肝 */
}
.service {
  width: 100vw;
  top: -200vw;
  height: 20vw;
}
.service-list {
    flex-direction: column;
    gap: 6vw;
    margin: 0 auto;
}
  .service-item {
    width: 70vw;
    height: 26vw;
    padding: 5vw 5vw 5vw 5vw;
    border-radius: 10vw;
    margin-top: 5vw;
  }
  
  .service-item::before {
    border-radius: 10vw;
  }
  .service-item:nth-child(1), .service-item:nth-child(3)  {
    margin-left: 0vw;
}
.service-item:nth-child(2), .service-item:nth-child(4) {
  margin-left: 0vw;
  margin-top: 5vw;
}

  .service h3 {
    font-size: 4vw;
  }
  .service p {
    font-size: 2.8vw;
    font-weight: 100;
  }
    .service ul {
    width: 80vw;
    text-align: center;
  }
  .service-detail {
    max-width: 80vw;
  font-size: 4vw;
  justify-content: center;   /* ← これだけ残す */
  gap: 1vw 1vw;              /* 少し余白あった方が安定 */
  white-space: normal;
  margin-top: 4vw;
  margin-left: -5vw;
  }

  .service ul li {
    font-size: 3vw;
    font-weight: 200;
    white-space: nowrap;
  }

  .service-detail li {
        width: auto;                   /* ← flex時の指定を殺す */
    min-width: 0;
    text-align: center;
    list-style-position: inside;
  padding-left: .6vw;
  }
  .service-item:nth-child(1)::after {
  border-width: 7vw 0 0 7vw;
  translate: 90% -50%;
    border-color: transparent transparent transparent #73807a;
}
.service-item:nth-child(2)::after {
  border-width: 7vw 7vw 0 0;
  translate: -90% -50%;
    border-color: transparent #918895 transparent transparent;
}
.service-item:nth-child(3)::after {
  border-width: 0 0 7vw 7vw;
  translate: 90% calc(-50% - 0.4px);
    border-color: transparent transparent transparent #a88688;
}
.service-item:nth-child(4)::after {
  border-width: 0 7vw 7vw 0;
  translate: -90% calc(-50% - 0.4px);
    border-color: transparent #85808b transparent transparent;
}
  .newslist li {
    flex-wrap: wrap;          /* 幅が狭い場合は折り返し */
    justify-content: center;  /* 中央揃え */
    align-items: center;      /* 縦中央揃え */
    gap: 0.5rem;              /* 日付とタイトルの間隔を少し狭く */
  }

  .news-item time,
  .newslist li a {
    display: inline-block;    /* 縦揃え安定用 */
    vertical-align: middle;   /* 縦位置を揃える */
    line-height: 1.4;         /* 行の高さを統一 */
    font-size: 2.8vw;         /* 小さい画面用に文字サイズ調整 */
    font-weight: 100;
    letter-spacing: .4vw;
  }

  .works-swiper {
    overflow: hidden; /* ★ここ重要 */
  }
  .category-web .media img,
.category-web .media video {
  width: 85vw;
}
  .swiper {
    overflow: hidden !important;
  }
  .price-overview h2 {
    margin-bottom: 10vw;
  }
  .price-card {
    width: 70vw;
    margin: 0 auto;
  }
  .price-card:nth-child(1) {
  background: linear-gradient(135deg, #668278, #737c79);
  border-radius: 53% 47% 49% 51% / 56% 44% 54% 46%;
    padding: 12vw 1vw 10vw 1vw;
}
.price-card:nth-child(2) {
  background: linear-gradient(135deg, #988f9b, #676170);
  border-radius: 50% 50% 50% 50% / 54% 46% 54% 46%;
   padding: 10vw 1vw 10vw 1vw;
}
.price-card:nth-child(3) {
  background: linear-gradient(135deg, #887575, #b18a8c);
  border-radius: 52% 48% 51% 49% / 55% 45% 53% 47%;
   padding: 10vw 1vw 10vw 1vw;
}
  .price-overview__list {
    flex-direction: column;
  }
.price-card__title {
  font-size: 4vw;
  font-weight: 200;
  letter-spacing: .3vw;
}

.price-card__lead {
  font-weight: 200;
  font-size: 2.8vw;
}
.price-card__items {
  padding-left: 1em;
  font-size: 1.2vw;
}
.price-card li {
  font-weight: 200;
  font-size: 3vw;
}
.price-card__price {
  margin-top: 1vw;
  font-size: 3vw;
}
.button-17 {
  width: 100%;
  margin-left: 20vw;
}
.faq-preview .button-17 {
  width: 100%;
  margin-left: -2vw;
}
.button-17 a, .faq-preview .button-17 a {
  font-size: 4vw;
  max-width: 40vw;
}
.button-17 a::after, .faq-preview .button-17 a::after  {
  width: 40vw;
}
.faq-preview {
  padding-top: 12vw;
  margin-bottom: -1vw;
}
.faq-list {
  margin: 10vw auto 8vw auto;
}
.faq-item-preview {
  width: 80vw;
}
.faq-item-preview h3 {
  font-size: 3vw;
}
.faq-item-preview p {
  font-size: 2.8vw;
  font-weight: 100;
}
 /* SECTION */
  .contact-section {
    padding: 20vw 6vw;
  }

  /* TITLE */
  .contact-title {
    font-size: 6vw;
    letter-spacing: 0.4em;
    margin-bottom: 6vw;
  }

  /* 横並び → 縦 */
  .contact-row {
    flex-direction: column;
    gap: 2vw;
    margin-bottom: 5vw;
  }

  .contact-label-horizontal {
    flex: none;
    text-align: left;
    margin-top: 0;
    font-size: 4vw;
    color: #1d1d1d;
  }

  /* INPUT */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 3.5vw;
    font-size: 4vw;
    font-weight: 300;
    letter-spacing: .3vw;
  }

  /* SELECT 矢印 */
  .contact-form select {
    background-position: right 3vw center;
    background-size: 4vw;
    padding-right: 10vw;
  }
.contact-form label {
  font-size: 3.8vw;
  font-weight: 200;
  letter-spacing: .3vw;
}
  /* DIVIDER */
  .contact-divider {
    margin: 5vw 0;
  }

  /* BUTTON */
  .contact-form button {
    width: 100%;
    padding: 4vw;
    font-size: 4.5vw;
    margin-top: 6vw;
  }

  /* ===== FOOTER ===== */
  .footer-identity img {
    width: 40vw;
  }
  .footer-contact {
    width: 90vw;
    margin: auto;
    flex-direction: column;
    gap: 8vw 0;
    margin-bottom: 10vw;
  }

  .contact-card {
    flex: 0;
    margin-right: 3vw;
    max-height: 7vh;
    padding: 7vw 5vw 6vw 6vw;
  }



  .contact-label {
    font-size: 4vw;
    letter-spacing: 0.4em;
  }

  .contact-text {
    font-size: 3vw;
    font-weight: lighter;
    margin-top: 2vw;
    white-space: nowrap;
  }

  .footer-bottom {
    width: 98vw;
    flex-direction: column;
    gap: 4vw;
    text-align: center;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4vw;
  }

  .footer-nav a {
    font-size: 3.8vw;
    font-weight: 100;
    letter-spacing: .4vw;
  }

  .copyright {
    font-size: 3vw;
  }
}


