/*初期設定*/
*{padding:0; margin:0%;}
/*font-size:16PX*/
html{font-size:100%; overflow: auto;}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  padding-top: 80px;
  font-family: 'Noto Serif JP', serif;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open main,
body.menu-open section,
body.menu-open footer {
  pointer-events: none;
}
body.menu-open .header,
body.menu-open .mobile-menu {
  pointer-events: auto;
}
body.menu-open::before {
  content: "";
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 80px);
  background: transparent;
  z-index: 2400;
  pointer-events: auto;
}
/*各種font設定*/
li{
    list-style: none;}
a{
    text-decoration:none;}



/*header-layout*/

  /* ヘッダー */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    z-index: 3000;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
  }
  
  /* スクロール時の影 */
  .header.scrolled {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .header-inner {
    width:100%;
    padding:0 2%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }
  /* ロゴ */
  .logo img {
    height:70px;
    width:100%;
  }
  
  /* ナビ */

  .nav-menu{
    padding-right:3%;
  }
  .nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
  }
  



  /* 右 */
  .header-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
  }
  
  /* ハンバーガー */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger span {
    width: 25px;
    height: 2px;
    background: #000;
    display: block;
    transition: 0.3s;
  }
  
  /* モバイルメニュー */
  .mobile-menu {
    position: fixed;
  top: 80px;
  right: -100%;
  width: 75%;
  height: calc(100dvh - 80px);
  background: #fff;
  transition: right 0.35s ease;
  padding: 30px;
  z-index: 2500;

  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  }
  
  .mobile-menu ul {
    list-style: none;
  }
  
  .mobile-menu li {
    margin-bottom: 20px;
  }
  
  .mobile-menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
  }
  
  /* 開いた状態 */
  .mobile-menu.active {
    right: 0;
  }
  
  /* ハンバーガー変形 */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
  }


 /* mobile-menuを縦レイアウトにする */
.mobile-menu {
  display:none;
  flex-direction: column;
  height:95%;
  overflow-y: auto;
}

/* ===== 下エリア ===== */
.mobile-footer {
  border-top: 1px solid #ddd; /* ←区切り線 */
  padding: 20px 0;
}

/* SNS */
.sns {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.sns img{
  width:100%;
  max-height:48PX;
}

/* ロゴ */
.footer-logo img {
  width:60%;
  height:60%;
}

  /* レスポンシブ */
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  
    .header-icons {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
    .mobile-menu{
      display:flex;
    }
  }

  /* ===== メニューリンク共通 ===== */
.mobile-menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color:#000;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  /* ===== 下線（初期状態） ===== */
  .mobile-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #000;
  
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  /* ===== PC：ホバー ===== */
  .mobile-menu a:hover::after {
    transform: scaleX(1);
  }
  
  .mobile-menu a:hover {
    transform: translateX(5px);
    letter-spacing: 1px;
  }
  
  /* ===== スマホ：タップ時 ===== */
  .mobile-menu a:active::after {
    transform: scaleX(1);
  }
  
  .mobile-menu a:active {
    transform: translateX(5px);
    letter-spacing: 1px;
  }
  
  /* ===== タップ時の背景（押した感） ===== */
  body.menu-open {
    overflow: hidden;
  }
  
  .header {
    z-index: 3000;
  }
  
  .hamburger {
    position: relative;
    z-index: 4000;
  }
  
  .mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 75%;
    height: calc(100vh - 80px);
    background: #fff;
    transition: right 0.35s ease;
    padding: 30px;
    z-index: 2500;
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    right: 0;
  }

  























      /*ホーム画像設定*/
      .home-img{
        width:100%;
        height:fit-content;
      }
      .home-img img{
          width:100%;
          max-height:500Px;
          object-fit: cover;
          display: block;
      }





/* =========================
   VISION
========================= */

.vision-section {
  position: relative;
  display: grid;
  grid-template-columns: 46% 54%;
  grid-template-areas: "cards text";
  gap: 70px;
  padding: 90px 5vw 100px;
  color: #111;
  overflow: hidden;
}

.vision-left {
  grid-area: text;
  position: relative;
  z-index: 2;
}

.vision-right {
  grid-area: cards;
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px 64px;
}

/* 背景 */
.about-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(194, 223, 255, 0.45) 0%,
      rgba(194, 223, 255, 0.12) 25%,
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(125, 180, 255, 0.28) 0%,
      rgba(125, 180, 255, 0.10) 28%,
      transparent 58%
    ),
    linear-gradient(
      135deg,
      #f8fbff 0%,
      #eef5fc 50%,
      #f8fbff 100%
    );
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-section::before {
  width: 900px;
  height: 900px;
  left: -450px;
  top: -450px;
  background:
    radial-gradient(
      circle,
      rgba(140, 190, 255, 0.18) 0%,
      rgba(140, 190, 255, 0.08) 40%,
      transparent 72%
    );
}

.about-section::after {
  width: 1000px;
  height: 1000px;
  right: -500px;
  bottom: -500px;
  background:
    radial-gradient(
      circle,
      rgba(120, 180, 255, 0.22) 0%,
      rgba(120, 180, 255, 0.08) 45%,
      transparent 75%
    );
}

/* タイトル */
.section-title {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #001b3f;
  margin: 0;
}

.section-title p {
  position: relative;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  padding-bottom: 12px;
  margin: 0;
  white-space: nowrap;
  color: #001b3f;
}

.section-title p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #1264d8;
}

.vision-left h3 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.8;
  font-weight: 900;
  margin: 0 0 44px;
}

.vision-text {
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 2;
  font-weight: 700;
  margin: 0 0 70px;
}

.vision-btn {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  background: #1b1b1b;
  color: #fff;
  text-decoration: none;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  padding: 32px 38px;
  transition: 0.3s;
}

.vision-btn span,
.arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: 0.3s;
}

.vision-btn:hover {
  background: #1264d8;
}

.vision-btn:hover span {
  transform: translateX(8px);
}

/* カード */
.vision-card {
  position: relative;
  display: block;
  color: #111;
  text-decoration: none;
}

.img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 28px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.vision-card:hover img {
  transform: scale(1.08);
}

.vision-card .en {
  color: #1264d8;
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 900;
  margin: 0 0 6px;
}

.vision-card h4 {
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1.35;
  font-weight: 900;
  padding-right: 60px;
  margin: 0;
}

.vision-card .arrow {
  position: absolute;
  right: 0;
  bottom: 18px;
  background: #1264d8;
  color: #fff;
  border: none;
  font-size: 24px;
}

.vision-card:hover .arrow {
  transform: translateX(8px);
}

/* スクロール表示アニメーション */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* タブレット */
@media (max-width: 1100px) {
  .vision-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "cards";
    gap: 70px;
  }

  .vision-text br {
    display: none;
  }
}

/* スマホ */
@media (max-width: 700px) {
  .vision-section {
    padding: 70px 20px 90px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "cards";
    gap: 48px;
  }

  .section-title {
    display: block;
    text-align: center;
    margin-bottom: 42px;
  }

  .section-title h2 {
    font-size: 58px;
  }

  .section-title p {
    display: inline-block;
    margin-top: 14px;
    font-size: 15px;
  }

  .vision-left h3 {
    font-size: 24px;
    line-height: 1.75;
  }

  .vision-text {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 56px;
  }

  .vision-btn {
    width: 100%;
    justify-content: space-between;
    padding: 24px;
    font-size: 16px;
  }

  .vision-right {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
















      

/* =========================
   水工舎について セクション
========================= */

.toptype-section {
  position: relative;
  padding: 140px 5vw 120px;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      #dfefff 0%,
      #f3f9ff 18%,
      #ffffff 42%
    );
}

.toptype-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background:
    linear-gradient(
      to bottom,
      rgba(223, 239, 255, 0),
      rgba(255, 255, 255, 0.55)
    );
  pointer-events: none;
}

.toptype-section::after {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  right: -720px;
  bottom: -720px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(120, 180, 255, 0.15) 0%,
      rgba(120, 180, 255, 0.05) 45%,
      transparent 72%
    );
  pointer-events: none;
}

.toptype {
  position: relative;
  z-index: 2;
  width:100%;
  margin: 0 auto;
  padding:4%;
}

/* タイトル */
.toptype-heading {
  margin-bottom: 70px;
  text-align: left;
}

.toptype-title {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 38px;
}

.toptype-title h2 {
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #001b3f;
  margin: 0;
}

.toptype-title p {
  position: relative;
  display: inline-block;
  font-size: clamp(15px, 1.6vw, 24px);
  font-weight: 800;
  color: #001b3f;
  padding-bottom: 10px;
  margin: 0;
  white-space: nowrap;
}

.toptype-title p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #1264d8;
}

.toptype .lead {
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 2;
  color: #001b3f;
  font-weight: 700;
  margin: 0;
}

/* グリッド */
.toptype-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* カード */
.toptype-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 28px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 80, 160, 0.06);

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

.toptype-box:nth-child(1) {
  animation-delay: 0.1s;
}

.toptype-box:nth-child(2) {
  animation-delay: 0.25s;
}

.toptype-box:nth-child(3) {
  animation-delay: 0.4s;
}

.toptype-box:nth-child(4) {
  animation-delay: 0.55s;
}

.toptype-box:nth-child(n+5) {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toptype-box h3 {
  font-size: 17px;
  line-height: 1.7;
  color: #111;
  margin: 0 0 12px;
  font-weight: 800;
}

.toptype-box h3 img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
}

.toptype-box p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .toptype-section {
    padding: 110px 5vw 100px;
  }

  .toptype-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .toptype .lead br {
    display: none;
  }
}

@media (max-width: 600px) {
  .toptype-section {
    padding: 80px 20px;
  }

  .toptype-heading {
    margin-bottom: 45px;
  }

  .toptype-title {
    display: block;
    margin-bottom: 28px;
    text-align: center;
  }

  .toptype-title h2 {
    font-size: 56px;
  }

  .toptype-title p {
    margin-top: 14px;
    font-size: 16px;
  }

  .toptype .lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .toptype-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .toptype-box {
    padding: 24px;
  }

  .toptype-box h3 img {
    height: 150px;
  }
}


















































/*news欄*/

.news-section {
  position: relative;
  padding: 120px 5%;
  overflow: hidden;

  background:
    linear-gradient(
      to bottom,
      #f7fbff 0%,
      #eef6ff 45%,
      #ffffff 100%
    );
}
/* =========================
   背景の波
========================= */

.news-section::before,
.news-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* 左上 */
.news-section::before {
  width: 900px;
  height: 900px;
  top: -450px;
  left: -450px;

  background:
    radial-gradient(
      circle,
      rgba(120,180,255,0.16) 0%,
      rgba(120,180,255,0.06) 42%,
      transparent 72%
    );
}

/* 右下 */
.news-section::after {
  width: 1200px;
  height: 1200px;
  right: -700px;
  bottom: -700px;

  background:
    radial-gradient(
      circle,
      rgba(120,180,255,0.18) 0%,
      rgba(120,180,255,0.05) 45%,
      transparent 75%
    );
}
.news-heading,
.news-tabs,
.news-slider,
.more-wrap {
  position: relative;
  z-index: 2;
}

.section-title  h2{
  text-align: center;
  font-size:4.4rem;
  letter-spacing: 2px;
  margin-bottom: 35px;
  color: #0f1d35;
}

.news-tabs {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 45px;
}

.tab {
  min-width: 130px;
  padding: 13px 28px;
  border: 1px solid #2b6fd6;
  background: #fff;
  color: #111;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: .3s;
}
/* 共通 active */
.tab.active {
  color: #fff;
  transform: translateY(-2px);
}

/* ALL → 青 */
.tab[data-filter="all"].active {
  background: linear-gradient(135deg, #4d7df0, #005cc8);
  box-shadow: 0 10px 20px rgba(0, 92, 200, .25);
  border-color: #005cc8;
}

/* NEWS → 黒 */
.tab[data-filter="news"].active {
  background: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  border-color: #111;
}

/* TOPICS(FAQ) → オレンジ */
.tab[data-filter="event"].active {
  background: orangered;
  box-shadow: 0 10px 20px rgba(255, 69, 0, .25);
  border-color: orangered;
}

.tab:hover {
  transform: translateY(-2px);
}

.news-slider {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.news-slider.dragging {
  cursor: grabbing;
}

.news-list {
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  will-change: transform;
}

.news-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.news-card a {
  display: block;
  color: #111;
  text-decoration: none;
}

.news-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-info {
  position: relative;
  padding: 24px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.news-date {
  color: #777;
  font-size: 14px;
}

.news-category {
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.news-category.news {
  background: #111;
}

.news-category.event {
  background:orangered;
}

.news-info h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.news-arrow {
  display: none;
}

/* NEWSはリンク無効 */
.news-card[data-category="news"] a {
  pointer-events: none;
  cursor: default;
}

/* もっと見る */
.more-wrap {
  text-align: center;
  margin-top: 45px;
}

#moreBtn {
  min-width: 220px;
  padding: 16px 35px;
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

#moreBtn:hover {
  transform: translateY(-2px);
  opacity: .8;
}

/* もっと見る後：縦リスト */
.news-section.list-mode .news-slider {
  overflow: visible;
  cursor: default;
}

.news-section.list-mode .news-list {
  display: block;
  transform: none !important;
}

.news-section.list-mode .news-card {
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #e5e5e5;
}

.news-section.list-mode .news-img {
  display: none;
}

.news-section.list-mode .news-card a {
  display: block;
}

.news-section.list-mode .news-info {
  display: grid;
  grid-template-columns: 120px 100px 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 24px 10px;
}

.news-section.list-mode .news-meta {
  display: contents;
}

.news-section.list-mode .news-info h3 {
  font-size: 16px;
  font-weight: 700;
}

.news-section.list-mode .news-arrow {
  display: block;
  font-size: 22px;
  text-align: right;
}

.news-section.list-mode .news-card[data-category="news"] .news-arrow {
  display: none;
}
#closeBtn {
  min-width: 220px;
  padding: 16px 35px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  display: none;
  margin-top: 18px;
}

#closeBtn:hover {
  background: #000;
  color: #fff;
}
.news-slider {
  touch-action: pan-y;
  user-select: none;
}

.news-list {
  user-select: none;
}
/* 横スクロール時のブラウザ矢印・バー対策 */
.news-slider {
  scrollbar-width: none;
}

.news-slider::-webkit-scrollbar {
  display: none;
}

/* スマホ */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .news-tabs {
    gap: 10px;
  }

  .tab {
    min-width: auto;
    padding: 10px 20px;
    font-size: 13px;
  }

  .news-card {
    flex: 0 0 260px;
  }

  .news-img {
    height: 170px;
  }

  .news-section.list-mode .news-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news-section.list-mode .news-arrow {
    display: none;
  }
}































































/* ===== 全体 フッター ===== */

.footer {
  background: #f7f7f7;
  padding: 60px 0 30px;
}

.footer-container {
  width:100%;
  margin: 0 auto;
  padding: 0 5%;
}

/* PCでもグリッド維持 */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* タイトル */
.footer-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
}

/* ＋ */
.footer-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* 開いたら回転 */
.footer-col.active .footer-title::after {
  transform: translateY(-50%) rotate(45deg);
}

/* ===== アコーディオン ===== */
/* アコーディオン本体 */
.footer-col ul {
  max-height: 0;          
  overflow: hidden;

  opacity: 0;
  transform: translateY(-10px);

  margin-top: 0;

  transition:
    max-height 0.7s ease,
    transform 0.6s ease,
    opacity 0.55s ease;

  pointer-events: none;
  will-change: max-height, transform, opacity;
}

/* 開いた時 */
.footer-col.active ul {
  max-height: 300px;  /* ←中身より大きければOK */

  opacity: 1;
  transform: translateY(0);

  margin-top: 10px;

  pointer-events: auto;
}



/* ===== リンク ===== */
.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  opacity: 0.6;
}
/* 各ブロックの高さを詰める */
.footer-col {
  padding: 0;
  border-bottom: 1px solid #ddd;
}
.footer-title {
  padding: 15px 0;
  margin: 0;
}
/* ===== SNS ===== */
.footer-sns {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
.footer-sns img{
  width:100%;
  mAx-height:48PX;
}
/* PC左寄せ / スマホ中央 */
@media (max-width: 768px) {
  .footer-grid {
    display: block;
  }

  .footer-col {
    border-bottom: 1px solid #ddd;
  }

  .footer-sns {
    justify-content: center;
  }

  .copy {
    text-align: center;
  }
}

/* コピー */
.copy {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}