@charset "UTF-8";

/* 表示切替 */
.pc { display: block !important; width: 100%; }
.sp { display: none !important; width: 100%; }
@media only screen and (max-width: 750px) {
  .pc { display: none !important; width: 100%; }
  .sp { display: block !important; width: 100%; }
}

/* ヘッダー周り */
.white { background-color: #fff; }

.white a {
  display: block;
  line-height: 0;
}

.white img {
  display: block;
  vertical-align: bottom;
}


/* =========================
   ヘッダー画像切り替え
========================= */

.white .top-pc {
  display: block !important;
  width: 100%;
  height: auto;
}

.white .top-sp {
  display: none !important;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 750px) {
  .white .top-pc {
    display: none !important;
  }

  .white .top-sp {
    display: block !important;
  }
}



/* ヒーローエリア */
.topContents-pc { width: 100%; max-width: 2000px; margin: 0 auto; }
.box1 { position: relative; overflow: hidden; height: 400px; }
.box1 img {
  position: absolute;
  top: 150px;
  left: 50%;
  width: 2000px;
  height: 400px;
  margin-top: -150px;
  margin-left: -1000px;
}

/* ホバー画像 */
.hover-img { transition: opacity 0.3s ease; }
.hover-img:hover { opacity: 0.5; }

/* トップへ戻るボタン */
.gotop {
  display: block;
  width: 60px; height: 60px;
  box-sizing: border-box;
  background-image: linear-gradient(to right, #ff7e00 0%, #ff3200 100%);
  background-color: #fff;
  border: 1px solid #fff;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 10000;
  transform: skew(-15deg);
  transition: all 0.5s ease;
}
.gotop::before {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 25%; height: 25%;
  top: 28%; left: 0; right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}
.gotop:hover { opacity: 1; transform: scale(1.2, 1.2); }

/* テーブル */
.link-table {
  width: 100%;
  max-width: 800px;   /* PCで最大800px */
  margin: 0 auto;     /* 中央寄せ */
}
.link-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.link-table table,
.link-table tr,
.link-table td {
  border: none;
}
.link-table td { padding: 0; }
.link-table img { width: 100%; height: auto; display: block; }
.link-table img.pc,
.link-table img.sp {
  display: block !important;
  width: 100%;
  height: auto;
}

/* 見出し文字 */
.heading {
  font-size: 2rem;      /* 見出しサイズ */
  font-weight: 700;     /* 太字 */
  line-height: 1.3;
  margin: 1rem 0;
}
@media (max-width: 768px) { .heading { font-size: 1.0rem; } }

/* 画像表示 */
.img-resp { width: 100%; height: auto; display: block; }
@media (min-width: 769px) { .img-resp { width: 800px; margin: 0 auto; } }

/* 全体のリンクをホバーで半透明に */
a { transition: opacity .2s ease; }
a:hover, a:focus { opacity: .6; }

/* 画像リンクも滑らかに */
a img { transition: opacity .2s ease; }

/* 商品説明部分 */
.two-col {
  max-width: 800px;
  width: 100%;
  margin: 5px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.col-media img { width: 100%; height: auto; display: block; }

.col-text { text-align: left; }
.points {
  margin: 0 0 8px 1.2em;
  padding: 0;
  text-align: left;
}
.points li {
  list-style-type: square; /* ■ */
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 6px;
}

.ribbon-title {
  display: inline-block;
  font-size: 2.0rem;
  font-weight: 700;
  color: #ffffff;
  background: #f29a21;
  border: 2px solid #f29a21;
  border-radius: 999px;
  padding: 8px 16px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.lead { margin: 0 0 10px; color: #444; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ribbon-title { font-size: 1.1rem; }
}

/* 縦中央揃え */
.two-col { align-items: center; }

/* スマホで文字小さく */
@media (max-width: 768px) {
  .ribbon-title { font-size: 0.9rem; }
  .lead { font-size: 1.0rem; }
  .points li { font-size: 0.6rem; line-height: 1.0; }
}

/* 単品商品 */
.two-col.img-left {
  max-width: 800px;
  width: 65%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.col-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.col-text {
  text-align: left;
}

/* 見出し1：角丸背景 */
.ribbon-title2 {
  display: block;
  margin: 0 auto 10px;
  padding: 10px 16px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  background: #e15041;
  border: 2px solid #e15041;
  border-radius: 999px;
  line-height: 1.2;
}

/* 見出し2：背景なし */
.plain-title {
  margin: 0 0 8px;
  font-size: 2.0rem;
  font-weight: 700;
  color: #202742;
}

/* サブ見出し・本文・価格 */
.sub {
  margin: 0 0 10px;
  color: #666;
  font-size: 1.5rem;
}

.body {
  margin: 0 10px 8px;
  color: #444;
  line-height: 1.5;
  font-size: 1rem;
}

.price {
  margin: 6px 0 0;
}

.price .amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
}

.price .tax {
  margin-left: 6px;
  color: #666;
  font-size: 0.95rem;
}

/* 中央揃え */
.ribbon-title2,
.plain-title,
.sub,
.price {
  text-align: center;
}

/* スマホでは1カラムにカラム落ち */
@media (max-width: 768px) {
  .two-col.img-left {
    grid-template-columns: 1fr; /* 1カラムに */
    gap: 12px;
  }
  .ribbon-title2 {
    font-size: 1.1rem;
    padding: 8px 12px;
  }
  .plain-title {
    font-size: 1rem;
  }
  .sub {
    font-size: 1.0rem;
    line-height: 1.6;
  }

  .body {
    font-size: 0.7rem; /* 任意の別サイズに変更 */
    line-height: 1.3;
  }

  /* 既存の .price .amount はそのまま */
  .price .amount {
    font-size: 1.3rem;
  }

  .two-col.img-left .col-media img {
    width: 90%;        /* 画像を拡大 */
    max-width: none;
    display: block;
    margin-left: 0%;   /* 左寄せ・中央寄せはここで調整 */
    border-radius: 6px;
    object-fit: cover;
  }
}

/* 3列2段バッジ */
.feature-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 20px auto;
}

/* 角丸背景＋太字テキスト */
.feature-badge {
  --badge-color: #0ea4c9;      /* デフォルト色（変更しなければこの色） */
  background: var(--badge-color);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 8px;
  border-radius: 999px;
  line-height: 1.4;
  box-sizing: border-box;
}

/* スマホ：2列 */
@media (max-width: 768px) {
  .feature-badges {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .feature-badge {
    font-size: 0.95rem;
    padding: 8px 6px;
  }
}

/* テキストリンク */
.sub-link {
  color: #000000;           /* 好きな固定色に */
  text-decoration: none;    /* aタグの下線を消す（<u>だけを残す） */
}

.sub-link:link,
.sub-link:visited,
.sub-link:hover,
.sub-link:active {
  color: #666;           /* どの状態でも同じ色 */
  text-decoration: none;
}

/* 2カラムレイアウト-SETアイテムバージョン- */
.two-col.set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch; /* 各セルを同じ高さに */
}

/* 各ボックス：縦並び＋ボタンを下に寄せる準備 */
.set-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
}

/* 中身を中央寄せ（任意） */
.set-item > * {
  margin-left: auto;
  margin-right: auto;
}

/* 商品画像 */
.set-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* 角丸背景 見出し */
.ribbon-titleset {
  display: inline-block;
  margin: 0 0 10px;
  padding: 10px 16px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  background: #e15041;
  border: 2px solid #e15041;
  border-radius: 999px;
  line-height: 1.2;
}

/* サブ見出し */
.subset {
  margin: 0 0 10px;
  color: #666;
  font-size: 1.5rem;
}

/* 価格ブロック */
.priceset {
  margin: 6px 0 10px;
}

/* 金額・税込表記 */
.priceset .amountset {
  font-size: 1.5rem;
  font-weight: 800;
  color: black;
}

.priceset .taxset {
  margin-left: 6px;
  color: #666;
  font-size: 0.9rem;
}

/* CTAボタン画像：一番下に配置 */
.cta {
  margin-top: auto; /* ここで上下の余りを吸収して最下部へ */
}

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

/* スマホでも2カラム維持＋文字小さめ */
@media (max-width: 768px) {
  .two-col.set {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ribbon-titleset {
    font-size: 1.1rem;
    padding: 8px 12px;
  }
  .subset {
    font-size: 0.95rem;
  }
  .priceset .amountset {
    font-size: 1.3rem;
  }
}

/* フルセット用の見出し */

/* ベース色（必要ならここだけ変更） */
:root {
  --lead-color: #00bcd4; /* 画像と似た水色 */
}

/* 全体のラッパー */
.lead-banner {
  text-align: center;
  margin: 20px 0;
}

/* 上の▼▼▼部分 */
.lead-banner__triangles {
  color: var(--lead-color);
  font-size: 18px;        /* ▼の大きさ */
  letter-spacing: 15px;   /* ▼同士の間隔 */
  line-height: 1;
  margin-bottom: 15px;    /* 帯とのすき間 */
}

/* 下の帯＋見出しテキスト */
.lead-banner__body {
  display: inline-block;
  padding: 12px 150px;
  background: var(--lead-color);
  color: #fff;
  font-size: 2.0rem;
  font-weight: 700;
}

/* ▼ スマホ用サイズ調整 ▼ */
@media (max-width: 768px) {
  .lead-banner {
    margin: 16px 0;
  }

  .lead-banner__triangles {
    font-size: 12px;       /* ▼小さく */
    letter-spacing: 8px;   /* 間隔も狭める */
    margin-bottom: 6px;
  }

  .lead-banner__body {
    padding: 8px 30px;     /* 左右＆上下の余白を減らす */
    font-size: 1.2rem;     /* 文字サイズ小さく */
  }
}


/* ▼ ボックステキスト用 ▼ */
.boxed-text {
  display: inline-block;
  padding: 12px 120px;
  border: 4px solid #2b5f8a;
  color: #2b5f8a;
  font-weight: 700;
  font-size: 2.0rem;
  border-radius: 4px;
  text-align: center;
  background: transparent;
  box-sizing: border-box;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@media (max-width: 768px) {
  .boxed-text {
    padding: 8px 70px;
    font-size: 1.0rem;
    border-width: 3px;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
  }
}


/* ▼ ボックステキスト用2 ▼ */
.boxed-text2 {
  display: inline-block;
  padding: 12px 80px;
  border: 4px solid #39a9c2;
  color: #39a9c2;
  font-weight: 700;
  font-size: 2.0rem;
  border-radius: 4px;
  text-align: center;
  background: transparent;
  box-sizing: border-box;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@media (max-width: 768px) {
  .boxed-text2 {
    padding: 8px 30px;
    font-size: 1.0rem;
    border-width: 3px;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
  }
}


/* ▼ 2WAYボックステキスト用 ▼ */
.boxed-text3 {
  display: inline-block;
  padding: 12px 80px;
  border: 4px solid #e15041;
  color: #e15041;
  font-weight: 700;
  font-size: 2.0rem;
  border-radius: 4px;
  text-align: center;
  background: transparent;
  box-sizing: border-box;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@media (max-width: 768px) {
  .boxed-text3 {
    padding: 8px 30px;
    font-size: 1.0rem;
    border-width: 3px;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
  }
}



/* 区切り線 */
hr.hr-wide {
  border: none;
  border-bottom: 3px dotted #999;
  width: 100%;
  max-width: 800px;   /* PCで最大800px */
  margin: 16px auto;  /* 中央寄せ */
}

/* フッター */
.footer {
  background-image: url(../image/air-fotter.png);
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* 横幅いっぱい */
  text-align: center;
}
.footer img { margin-top: 6rem; }
.footer a { color: #fff; line-height: 3rem; text-decoration: none; }
.footer a:hover { color: darkorange; opacity: 0.9; }

/* 共通：中央寄せ */
.text-center {
  text-align: center;
}

/* ジャンプナビ：2列グリッド（旧tableレイアウトの置き換え） */
.jump-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* ジャンプナビ：3列グリッド */
.jump-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.jump-grid-2col a,
.jump-grid-3col a {
  display: block;
}

.jump-grid-2col img,
.jump-grid-3col img {
  width: 100%;
  height: auto;
  display: block;
}

/* ページ本文h1（セクション見出しとは別） */
.page-title {
  display: none; /* SEO用の非表示h1。見た目に影響させたくない場合 */
}
