/* 基本設定 */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Helvetica Neue", Arial, sans-serif; line-height: 1.6; color: #333; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-black { background-color: #000; color: #fff; }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.font-bold { font-weight: bold; }

/* スマホ表示 */
@media (max-width: 768px) {
    .why-description { font-size: 15px; }
    .contact-title-img { margin: 0 auto; }
    .info-item { text-align: center; margin-bottom: 20px; }
    .info-label { margin: 0 auto 10px; }
    .grid-3 { grid-template-columns: 1fr; }
    .nav { display: block; }
    .menu-btn { display: block; background: none; border: none; cursor: pointer; }
    .menu-btn span { display: block; width: 30px; height: 2px; background: #fff; margin: 6px 0; }
    .section-padding { padding: 40px 0; }
}

/* fv */
.fv {
    margin-top: 60px;
}
picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* ヘッダー */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 9999;
}
.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
.header-inner {display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}
.nav-list { 
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px; 
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}
.nav-list a { 
    color: #181818;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* ハンバーガーメニュー */
@media screen and (max-width: 768px) {

.nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    gap: 20px;
    text-align: center;
    background: #fff; 
}

.nav-list a {
    color: #414141;
    text-shadow: none;
}
.nav-list.active {
    display: flex;
    opacity: 0.9;
    flex-direction: column;
}

/* ハンバーガーボタン表示（PCでは非表示にしたいなら） */
.menu-btn {
    display: block;
    position: relative;
    z-index: 200;
}

.menu-btn span {
display: block;
width: 30px;
height: 2px;
background: #000;
margin: 6px 0;
transition: 0.3s;
}

/* ×に変形 */
.menu-btn.active span:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
opacity: 0;
}

.menu-btn.active span:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
}

@media screen and (min-width: 769px) {
.menu-btn {
    display: none;
}

.nav-list {
    display: flex;
}
}

/* ボタン */
.btn-yellow {
    display: inline-block; background: #fff100; color: #000;
    padding: 15px 80px; text-decoration: none; font-weight: bold; border-radius: 4px;
    margin-top: 6px;
}
.btn-blue {
    display: inline-block; background: #00c2e0; color: #fff;
    padding: 15px 60px; text-decoration: none; font-weight: bold;
    border-radius: 4px; 
}

/* ヒーローエリア */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content { padding: 30px 0; }
.hero-subtext { color: #fff; font-weight: bold; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ページトップボタン */
.page-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; background: #fff;
    border-radius: 50%; border: none; cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none; align-items: center; justify-content: center;
}
.page-top .arrow {
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #00c2e0; /* 水色▲ */
}

.flex-container {
    display: flex;
    align-items: center; /* 上下中央を揃える */
    justify-content: space-between;
    gap: 40px;
}

.features-text {
    flex: 1;
}

.features-text p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}
.heading-img { 
    margin: 30px auto 20px;
    max-width: 90%; 
    display: block;
}
img.heading-img { text-align: center; }

/* ボタンの中央寄せ設定 */
.btn-center {
    text-align: center;
    width: 100%;
}

.features-images {
    flex: 1;
}

.product-summary-img {
    width: 100%;
    height: auto;
}

/* --- スマホ --- */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column; 
        text-align: center;
    }

    .features-images {
        margin-top: 40px;
        order: 2; 
    }
    
    .features-text {
        order: 1;
    }

    .features-text p {
        text-align: center;
    }
}

.why-description {
    color: #fff;
    margin: 20px 0 30px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
}

.heading-img-q {
    margin: 0 auto 50px;
    display: block;
    max-width: 350px;
}

.why-label {
    background-color: #eeeeee;
    color: #000000;
    padding: 12px 10px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;
}
.why-label span {
    display: inline-block;
    background: linear-gradient(transparent 60%, #fff100 60%);
    line-height: 1.6;
    font-weight: bold;
}

.why-item img {
    width: 100%;
    display: block;
}


.why-fast p {
    margin-top: 2em;
}

.why-fast p a {
    color: #07b4fe;
}

@media (max-width: 768px) {
    .grid-3 {
        gap: 30px;
    }
    .why-description {
        font-size: 15px;
        padding: 0 10px;
    }
}
.why-description {
    color: #fff;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
}
.heading-img-q {
    margin: 0 auto 50px;
    display: block;
    max-width: 360px; 
}

.cat-card {
    background-color: #fff100;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 30px;
}
.cat-content {
    padding: 20px;
}
.cat-label {
    height: 30px; 
    margin: 0 auto 15px;
}
.cat-card p {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}
.cat-card p a {
    color: #1A0DAB;
    text-decoration: none;
}
.cat-card p a:hover {
    text-decoration: underline;
}

#contact-form-section {
    background-color: #e8e8e8;}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 3em;
  color: #333;
  text-align: left;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq__list {
  padding: 0;
  margin: 0;
}

.faq__item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform .3s ease;
}

.faq__item dt {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  margin: 0;
}

.faq__item dt::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  transition: all .3s ease;
}
.faq__item dd {
    margin: 0;
    padding-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s ease, opacity .3s ease, padding-top .3s ease;
}

.faq__item.is-open dd {
    opacity: 1;
}

.faq__item.is-open dt::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq__item:hover {
  transform: translateY(-3px);
}

/* 会社情報 */
.company-visual {
    background: url('../images/contact-bg.jpg') no-repeat center/cover;
    padding: 100px 0;
}
.contact-title-img {
    margin-left: 0;
    max-width: 360px;
}

.address-bar {
    background-color: #fff100;
    padding: 40px 0;
}
.info-item {
    text-align: left;
}
.info-label {
    height: 20px;
    margin-bottom: 10px;
    display: block;
}
.info-item p {
    font-weight: bold;
    color: #000;
}

/* フッターセクション */
.footer {
    background-color: #000000;
    padding: 20px 0;
    border-top: 1px solid #cacaca;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: #fff;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin: 0;
}

.thanks {
    padding-top: 100px;
}

.thanks h3 {
    font-size: 24px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .copyright {
        font-size: 12px;
    }
    .footer-links {
    flex-direction: column;
    gap: 10px;
    }
}

/* ===== スマホ3カラム ===== */
@media screen and (max-width: 768px) {

/* 共通：3カラムを縦並び */
.grid-3 {
display: flex !important;
flex-direction: column !important;
gap: 24px !important;
}

/* 速さの理由 */
.why-item {
width: 100%;
}

.why-item img {
width: 100%;
height: auto;
}

.why-label {
font-size: 16px;
padding: 14px 10px;
}

/* 取り扱いカテゴリー */
.cat-card {
width: 100%;
margin-top: 0;
}

.cat-main-img {
width: 100%;
display: block;
}

.cat-content {
padding: 16px;
}

/* 連絡先 */
.address-bar .info-item {
width: 100%;
text-align: center;
}

.address-bar .info-label {
margin: 0 auto 12px;
}

/* ボタン調整 */
.btn-yellow,
.btn-blue {
width: 90%;
padding: 15px 20px;
text-align: center;
}
}

/* --- ボタンの共通設定 --- */
.btn-contact, .btn-yellow, .btn-blue, .page-top {
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/* --- 1. お問い合わせボタン（ヘッダー）*/
.btn-contact {
    background-color: #00c2e0;
    color: #fff !important;
    padding: 12px 20px;         /* ボタンの内側の余白 */
    border-radius: 20px;        /* 角を少し丸くする */
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    line-height: 1;            /* 行の高さを調整 */
    transition: all 0.3s ease; /* アニメーションを滑らかに */
}
.btn-contact:hover {
    background-color: #02b0cb; /* ホバー時に少し暗い青にする */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* 軽い影をつける */
    transform: translateY(-2px); /* 2pxほど上に浮かせる */
    opacity: 1;                 /* もし全体に不透明度の設定があっても1で固定 */
}

/* --- 2. 黄色のボタン（メインのアクション）*/
.btn-yellow:hover {
    background-color: #f1c40f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* --- 3. 青色のボタン（詳細お問合せ） */
.btn-blue:hover {
    background-color: #2980b9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* --- 4. ページトップボタン  */
.page-top:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* --- ナビゲーションのテキストリンク --- */
.nav-list a:not(.btn-contact):hover {
    color: #f1c40f; 
    opacity: 0.7;
}

/* =========================
メインユニフォーム価格
========================= */
.main-uniform {
  background: #f5f7f8;
  padding: 180px 20px;
}

.main-uniform__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.main-uniform__head {
  text-align: center;
  margin-bottom: 60px;
}

.main-uniform__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #32adc7;
}

.main-uniform__lead {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.main-uniform__body {
  display: flex;
  align-items: center;
  gap: 60px;
}

.main-uniform__image,
.main-uniform__content {
  flex: 1;
}

.main-uniform__image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.main-uniform__title {
  font-size: 32px;
  margin-bottom: 16px;
}

.main-uniform__lead {
  margin-bottom: 24px;
  line-height: 1.8;
  color: #555;
}

.main-uniform__price {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.shipping-note {
  font-size: 14px;
  color: #333;
  margin-top: 16px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}
/* 補足情報エリア */
.main-uniform__info {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block {
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.info-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2bb3c0;
}

.info-text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}
.btn-primary {
  position: relative;
  overflow: hidden;
    display: inline-block; 
  background: #2bb3c0;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

/* SP */
@media screen and (max-width: 768px) {
  .main-uniform__inner {
    flex-direction: column;
    gap: 30px;
  }
  .main-uniform__body {
    flex-direction: column;
    gap: 40px;
  }

  .main-uniform__title {
    font-size: 24px;
    text-align: center;
  }

  .main-uniform__lead {
    text-align: center;
  }
}
/* 価格テーブル */
.price-title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #32adc7;
  text-align: center;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #e2e6ea;
}

.price-table th {
  background: #e9eef2;
  font-weight: 700;
}

.price-table tr:nth-child(even) td {
  background: #f8fafb;
}
.price-table th:first-child,
.price-table td:first-child {
  width: 30%;
}
.price-best {
  font-weight: 700;
  color: #2bb3c0;
  font-size: 16px;
}

.price-note {
  font-size: 12px;
  color: #666;
  margin-top: 12px;
  line-height: 1.6;
}
.price-tax {
  font-size: 13px;
  color: #666;
}

.price-table td {
  line-height: 1.6;
}
.main-uniform__cta {
  text-align: center;
  margin-top: 30px;
}

/* =========================
ブランケット・ジャージ用カスタムレイアウト
========================= */

@media screen and (min-width: 769px) {
  /* 画像と価格を縦に並べる（横幅をフルに使う） */
  .main-uniform__body.is-stack {
    flex-direction: column;
    gap: 30px;
  }

  /* 画像のサイズが大きすぎないよう調整 */
  .main-uniform__body.is-stack .main-uniform__image {
    width: 100%;
    max-width: 600px; /* お好みのサイズに調整してください */
    margin: 0 auto;
  }

  .main-uniform__body.is-stack .main-uniform__content {
    width: 100%;
  }

  /* テーブルを横に2つ並べる設定 */
  .flex-tables {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .flex-tables .price-table {
    flex: 1;
  }
  
  /* 横並び時の文字サイズ微調整 */
  .flex-tables .price-table th, 
  .flex-tables .price-table td {
    font-size: 13px;
    padding: 10px 5px;
  }
}

/* SP時は標準の縦並びに戻る（既存のCSSで対応） */
@media screen and (max-width: 768px) {
  .flex-tables {
    display: block;
  }
  .flex-tables .price-table {
    margin-bottom: 30px;
  }
}

/* 取り扱いアイテムページ items.html */
.items-detail {
  background: #f5ffff;
  padding: 100px 20px;
}
.items-slider h1 {
  text-align: center;
  color: #2bb3c0;
  font-size: 34px;
  letter-spacing: 2px;
  margin-top: 60px;
}
.items-detail__lead {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 10px;
}
.item-card a {
  text-decoration: none;
  color: #555;
}

.item-wave01 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #f5ffff;
}

.item-wave02 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #f5f7f8;
}

.item-wave01 svg,.item-wave02 svg {
  display: block;
  width: 100%;
  height: 120px;
}
@media screen and (max-width: 768px) {
.items-slider h1 {
  font-size: 28px;
  margin: 60px 0;
}
}
