/* 共通のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --font-color: #222;
  --dry-color: #f7931e;
  --wet-color: #29abe2;
  --background-color-red: #fde4c7;
  --background-color-blue: #c7e0fd;
}

/* 基本のフォント設定 */
body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--font-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: #fdf6ee;
  background-image: linear-gradient(#fde4c7be, #fde4c7be),
  url('../img/noise.png');
  background-repeat: repeat;
  background-size: 100px;
  text-align: justify;
}

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

.d-flex{
  display: flex;
}

.pc{
    display: block;
}

.sp{
    display: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
}

.header__logo{
    position: relative;
    display: block;
    width: 15%;
    line-height: 0;
}

.header__logo-img{
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s;
}

.header__logo-img--light{
    position: absolute;
    inset: 0;
    opacity: 0;
}

/* 背景が濃い（ヒーローなど）ときは白ロゴ */
.header.is-dark-bg .header__logo-img--light{ opacity: 1; }
.header.is-dark-bg .header__logo-img--dark{ opacity: 0; }

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

.header__link{
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 15px;
    border-radius: 40px;
    transition: background-color 0.3s, color 0.3s;
    background-color: white;
    width: 150px;
    color: #222;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header__link--contact{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: auto;
    padding: 12px 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f7931e, #d44114);
    box-shadow: 0 4px 14px rgba(212, 65, 20, .45);
    border: 2px solid #fff;
    animation: headerContactPulse 1.8s ease-in-out infinite;
}

.header__link--contact .material-symbols-outlined{
    font-size: 1.1em;
}

.header__link--contact:hover{
    background: linear-gradient(135deg, #ffa733, #e5512a);
    color: #fff;
}

@keyframes headerContactPulse{
    0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(212, 65, 20, .45); }
    50% { transform: scale(1.04); box-shadow: 0 6px 22px rgba(212, 65, 20, .6); }
}

.page_top{
    text-align: center;
    height: auto;
    background: url('../img/top_hp_bg01.png') no-repeat center center / cover;
    align-items: center;
    justify-content: center;
}

.mv {
    position: relative
}

.mv img{
    position: relative;
    bottom: 0;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px; /* 下の余白、必要に応じて調整 */
    padding-top: 80px;
}

.movie{
  display: block;
  margin: 20px auto;
}

/* キャンペーン概要 */
.campaign-summary {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  margin: 40px auto 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  text-align: center;
}

.campaign-summary__ttl {
  display: inline-block;
  font-size: 1.4em;
  font-weight: 700;
  color: #d44114;
  border-bottom: 3px solid var(--dry-color, #f7931e);
  padding-bottom: 6px;
  margin-bottom: 18px;
}

.campaign-summary__period {
  display: inline-block;
  background: var(--dry-color, #f7931e);
  color: #fff;
  font-weight: 700;
  font-size: 1.05em;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.campaign-summary__text {
  font-size: 1em;
  line-height: 1.9;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 24px;
}

.campaign-summary__note {
  display: inline-block;
  margin-top: 8px;
  font-size: .82em;
  color: #666;
}

.countdown {
  background: linear-gradient(135deg, #f7931e, #d44114);
  border-radius: 14px;
  padding: 20px;
  color: #fff;
  max-width: 560px;
  margin: 0 auto;
}

.countdown__label {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 12px;
}

.countdown__timer {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.countdown__unit {
  background: rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 68px;
}

.countdown__num {
  display: block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.countdown__cap {
  font-size: .8em;
}

.countdown__end {
  margin-top: 12px;
  font-size: .9em;
  opacity: .9;
}

.countdown__ended {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 0;
}

.countdown.is-ended {
  background: #888;
}

.fixed-buttons {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-evenly;
  gap: 16px;
  padding: 16px 0;
  background: rgba(255,255,255,0.9);
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s;
}

.fixed-button-dry, .fixed-button-wet {
  position: relative;
  display: inline-block;
  background: var(--dry-color, #f7931e);
  width: 400px;
  color: #fff;
  font-size: 1.1em;
  padding: 14px 32px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.fixed-button-wet {
  background: var(--wet-color, #29abe2);
}

.fixed-button-dry:hover ,.fixed-button-wet:hover {
  opacity: 0.8;
}

a.fixed-button-dry span, a.fixed-button-wet span {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  display: block;

  width: 300px;
  padding: 0.2rem 0;

  color: #d44114;
  border: 2px solid #d44114;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.fixed-button-dry span:before,
a.fixed-button-dry span:after,
a.fixed-button-wet span:before,
a.fixed-button-wet span:after {
  position: absolute;
  left: calc(50% - 10px);

  content: "";
}

a.fixed-button-dry span:before,
a.fixed-button-wet span:before {
  bottom: -10px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}

a.fixed-button-dry span:after,
a.fixed-button-wet span:after {
  bottom: -7px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.dry, .wet {
  text-align: center;
  padding: 60px 0px;
}

.dry-bg, .wet-bg{
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dry-content{
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border: #c1272d solid 4px;
  border-radius: 30px;
  margin-top: 0;
}

.dry-content .content-label,
.wet-content .content-label{
  display: block;
  width: fit-content;
  margin: 0px auto 0;
  padding: 10px 42px;
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  background: #c1272d;
  border-radius: 0 0 20px 20px;
  letter-spacing: .05em;
}

.wet-content .content-label{
  background: #2e3192;
}

.dry-content img{
  width: 60%;
  padding-top: 12px;
}

.dry-content h3 {
  border-top: 2px solid #c1272d;
  padding: 10px 0;
  margin: 8px 0;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}


.dry-content span{
  display: block;
  font-size: 0.8em;
  color: #c1272d;
}

.dry-content p{
  padding: 30px;
  line-height: 1.8;
}

.wet{
  background-image: linear-gradient(#c7e0fdbf, #c7e0fdbf),
  
}

.dry img, .wet img {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.wet-content{
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border: #2e3192 solid 4px;
  border-radius: 30px;
}

.wet-content img{
  padding-top: 12px;
}

.wet-content h3 {
  border-top: 2px solid #2e3192;
  padding: 10px 0;
  margin: 8px 0;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}

.wet-content span{
  display: block;
  font-size: 0.8em;
  color: #2e3192;
}

.wet-content p{
  padding: 30px;
  line-height: 1.8;
  text-align: center;
}

.dry-content, .wet-content {
  text-align: center;
}

.contact {
  display: inline-flex;      /* ここをinline-flexに */
  align-items: center;   
  margin: 50px auto 50px auto; /* 上に32px、左右中央寄せ、下0 */
  padding: 20px 40px;
  background: #c1272d;
  color: #fff;
  border-radius: 50px;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  text-align: center;
  border: 2px solid white;
}

.contact:hover {
  background:#9b1e23;
  color: #fff;
}

.shop-list {
  margin: 60px auto;
  text-align: center;
}
.shop-list h2 {
  font-size: 2em;
  margin-bottom: 32px;
  font-weight: bold;
  color: #c1272d;
  margin-top: 100px;
}
.shop-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.shop-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  width: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}
.shop-card__img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.shop-card__body {
  padding: 16px 20px 0 20px;
  width: 100%;
}
.shop-card__name {
  font-size: 1.2em;
  margin: 16px 0 20px 0;
  font-weight: bold;
  color: var(--font-color, #222);
}
.shop-card__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.shop-card__btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.shop-card__btn.detail {
  background: var(--primary-color, #3498db);
  color: #fff;
}
.shop-card__btn.contact-shop {
  background: #fff;
  color: var(--primary-color, #3498db);
  border: 2px solid var(--primary-color, #3498db);
}
.shop-card__btn.detail:hover {
  background: var(--secondary-color, #2ecc71);
}
.shop-card__btn.contact-shop:hover {
  background: var(--primary-color, #3498db);
  color: #fff;
}

footer {
  text-align: center;
  padding: 20px 0;
  background: #f8f8f8;
  color: #666;
  font-size: 0.9em;
  margin-top: 40px;
}

/* FAQアコーディオン */
.faq {
  margin: 100px auto;
  max-width: 850px;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #c1272d;
  padding: 40px 24px;
}
.faq h2 {
  font-size: 2em;
  color: #c1272d;
  text-align: center;
  font-weight: bold;
}

.faq h2:nth-of-type(2) {
  padding-bottom: 30px;
  padding-top: 100px;
}

.faq_txt{
  padding: 0 20px 20px 20px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border-radius: 12px;
  border: 1px solid #eee;
  background: #faf7f2;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-note {
  text-align: center;
  color: #666;
  font-size: .9em;
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: bold;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
  color: #333;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-question__text {
  flex: 1;
}
.faq-question[aria-expanded="true"] {
  background: #fde4c7;
}
.faq-question .material-symbols-outlined {
  margin-left: auto;
  color: #c1272d;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(90deg);
}

.faq-badge {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: .95em;
  color: #fff;
}
.faq-badge--q { background: #c1272d; }
.faq-badge--a { background: #f7931e; }

.faq-answer {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: #fff;
  color: #333;
  font-size: 1em;
  line-height: 1.9;
  border-top: 1px dashed #e5ddd2;
  animation: fadeIn 0.3s;
}
.faq-answer[hidden] {
  display: none;
}
.faq-answer__body {
  flex: 1;
  min-width: 0;
}
.faq-answer__body p {
  margin-bottom: 12px;
}
.faq-answer__body p:last-child {
  margin-bottom: 0;
}
.faq-answer__body strong {
  color: #c1272d;
}
.faq-answer__body .movie {
  margin: 12px auto 0;
  max-width: 100%;
}
.inner-wear {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
}
.inner-wear__img {
  width: 40%;
  max-width: 220px;
  flex-shrink: 0;
  align-self: center;
}
.inner-wear__text {
  flex: 1;
  padding: 50px;
}
.inner-wear__text p:last-child {
  margin-bottom: 0;
}

.faq-choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 18px 0;
}
.faq-choice + .faq-choice {
  border-top: 1px solid #eee;
}
.faq-choice__img {
  width: 46%;
  max-width: 320px;
  flex-shrink: 0;
  display: block;
}
.faq-choice__text {
  flex: 1;
  min-width: 200px;
}
.faq-choice__text p:last-child {
  margin-bottom: 0;
  padding-right: 30px;
}
.faq-choice__ttl {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.05em;
  color: #c1272d;
}
.faq-choice__ttl span {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c1272d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85em;
}

.faq-answer .step-cards {
  margin-top: 8px;
}
.faq-answer .step-card__title {
  padding: 0;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ドライスーツとは？ 解説 */
.drysuit-lead {
  max-width: 680px;
  margin: 16px auto 32px;
  padding: 20px 24px;
  background: #fde4c7;
  border-radius: 14px;
  font-size: 1.05em;
  line-height: 1.9;
  text-align: center;
}
.drysuit-lead strong {
  color: #c1272d;
  font-weight: bold;
}

.drysuit-subttl {
  margin: 48px 0 20px;
  padding-bottom: 8px;
  font-size: 1.35em;
  font-weight: bold;
  color: #c1272d;
  text-align: center;
  border-bottom: 3px solid var(--dry-color, #f7931e);
}

.compare-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}
.compare-table th,
.compare-table td {
  border: 1px solid #e5ddd2;
  padding: 12px 14px;
  text-align: center;
  vertical-align: middle;
}
.compare-table thead th {
  background: #faf7f2;
  color: #333;
  font-weight: bold;
}
.compare-table thead th.is-dry {
  background: #c1272d;
  color: #fff;
}
.compare-table tbody th {
  background: #faf7f2;
  color: #333;
  white-space: nowrap;
}
.compare-table td.is-dry {
  background: #fff5e9;
  color: #c1272d;
  font-weight: bold;
}

.drysuit-reco {
  max-width: 620px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.drysuit-reco li {
  position: relative;
  background: #faf7f2;
  border-radius: 10px;
  padding: 14px 16px 14px 46px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.drysuit-reco li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c1272d;
  color: #fff;
  font-size: 0.85em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 手順カード型レイアウト */
.steps {
  margin: 60px auto;
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 40px 24px;
}
.steps h2 {
  font-size: 2em;
  color: #c1272d;
  margin-bottom: 32px;
  text-align: center;
  font-weight: bold;
}
.step-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: center;
  align-items: stretch;
}
.step-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  width: calc((100% - 88px) / 3);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-top: 0;
  transition: box-shadow 0.2s;
}
/* カード間の矢印 */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 16px;
  border-color: transparent transparent transparent var(--dry-color, #f7931e);
}
.step-card__number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: #c1272d;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.30);
  z-index: 2;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #c1272d;
  color: #fff;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -32px auto 16px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  position: static;
}
.step-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 16px 16px 0 0;
}

.step-card__body {
  flex: 1;
  margin-top: 0;
  padding: 16px;
  text-align: center;
}
.step-card__title {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  color: #c1272d;
  white-space: nowrap;
}
.step-card p {
  font-size: 0.95em;
  color: #333;
  padding: 0px;
  text-align: left;
}

/* ドライスーツのメリットカード */
.merit-section {
  margin: 60px auto;
  max-width: 1000px;
  border-radius: 20px;
  padding: 40px 24px;
}
.merit-section h2 {
  font-size: 2em;
  color: #c1272d;
  margin-bottom: 32px;
  text-align: center;
  font-weight: bold;
}
.merit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.merit-card {
  background: #faf7f2;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  width: 210px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 16px 16px;
  text-align: justify;
}
.merit-icon {
  font-size: 2.2em;
  margin-bottom: 12px;
  display: block;
}
.merit-card h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #c1272d;
}
.merit-card p {
  font-size: 0.98em;
  color: #333;
}

/* 特典カード型レイアウト */
.benefit-section {
  margin: 60px auto;
  max-width: 1000px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 24px;
    border: 4px solid #c1272d;
}
.benefit-section h2 {
  font-size: 2em;
  color: #c1272d;
  margin-bottom: 32px;
  text-align: center;
  font-weight: bold;
}
.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.benefit-card {
  background: #faf7f2;
  border-radius: 16px;
  width: 230px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 16px 16px;
  text-align: justify;
  margin-bottom: 40px;
}
.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: flex;
}
.benefit-card h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #c1272d;
}
.benefit-card p {
  font-size: 0.98em;
  color: #333;
}

.faq-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  gap: 24px;
  padding-bottom: 50px;
}

.faq-img img {
  display: block;
  margin: 0;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

  .page_top{
    background: url('../img/top_sp.png') no-repeat center top / 100% 100%;
    aspect-ratio: 1180 / 1561;
    height: auto;
}
 a.fixed-button-dry span, a.fixed-button-wet span{
  width: 190px;
 }

 .container{
  width: 90%;
 }

 .header{
  padding: 14px 0px;
  left: 5%;
  transform: none;
  width: 90%;
  justify-content: flex-start;
 }

 body{
  padding-bottom: 64px;
  padding-bottom: calc(64px + env(safe-area-inset-bottom));
 }

 .header__logo{
  width: 28%;
  max-width: 100px;
 }

 .header__nav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 10px rgba(0,0,0,0.12);
  z-index: 1000;
 }

 .header__link{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  max-width: none;
  width: auto;
  font-size: 0.85em;
  padding: 10px 4px;
  text-align: center;
  white-space: nowrap;
  color: #d44114;
  border: 2px solid #d44114;
  box-shadow: none;
 }

 .header__link--contact{
  padding: 12px 4px;
  font-size: 0.85em;
  gap: 1px;
  color: #fff;
  border-color: #fff;
 }

 .contact{
  white-space: nowrap;
  font-size: 1em;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f7931e, #d44114);
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(212, 65, 20, .45);
 }

 .contact:hover{
  background: linear-gradient(135deg, #ffa733, #e5512a);
 }

 .dry img, .wet img{
  width: 90%;
 }

 .dry, .wet {
  padding: 30px 0px;
 }

 .dry-content img, .wet-content img{
  padding-top: 10px;
 }

 .dry-content h3, .wet-content h3{
  padding: 8px 0;
  margin: 8px 0;
  font-size: 1.1em;
 }

 .dry-content span, .wet-content span{
  margin-top: 4px;
  line-height: 1.5;
 }

 .dry-content p, .wet-content p{
  padding: 20px 16px;
 }

 .movie{
  width: auto;
  height: auto;
}

   .shop-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .shop-card {
    width: 100%;
    max-width: none;
  }

  .shop-card__buttons{
    display: block;
  }

  .shop-list h2 {
    margin-top: 60px;
  }

  .shop-card__name{
    margin: 0px 0 16px 0;
  }

  .shop-card__btn.contact-shop{
    margin-top: 10px;
  }

  .shop-card__btn.detail{
    width:-webkit-fill-available;
  }

  .shop-card__btn{
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .faq {
    padding: 24px 4vw;
    margin: 0 auto;
  }
  .faq-question {
    font-size: 1em;
    padding: 16px 16px 16px 12px;
  }
  .faq-answer {
    font-size: 0.95em;
    padding: 14px 12px;
    gap: 8px;
  }
  .faq-question {
    gap: 8px;
  }
  .faq-badge {
    width: 26px;
    height: 26px;
    font-size: .85em;
  }
  .inner-wear {
    flex-direction: column;
    gap: 14px;
  }
  .inner-wear__img {
    width: 62%;
    max-width: 200px;
  }
  .inner-wear__text {
    padding: 0px;
  }
  .faq-choice {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .faq-choice__img {
    width: 100%;
    max-width: 100%;
  }

  .drysuit-lead {
    padding: 16px 16px;
    font-size: 1em;
    text-align: left;
  }
  .drysuit-subttl {
    margin: 36px 0 16px;
    font-size: 1.15em;
  }
  .compare-table {
    font-size: 0.9em;
    min-width: 540px;
  }
  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
  }
  .compare-table thead th {
    white-space: nowrap;
  }

  .step-cards {
    flex-direction: column;
    gap: 34px;
    align-items: center;
  }
  .step-card {
    width: 100%;
    min-width: 0;
  }
  .step-card:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -26px;
    transform: translateX(50%);
    border-width: 16px 11px 0 11px;
    border-color: var(--dry-color, #f7931e) transparent transparent transparent;
  }

  .faq-img{
    display: block;
  }

  .faq-answer-inner img{
    width: 100%;
    margin: 0 auto;
  }

  .faq-answer p{
    padding-left: 0;
    padding-bottom: 10px;
  }

  .faq-img {
    margin: 0 auto;
  }

  .merit-cards {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .merit-card {
    width: 90%;
    min-width: 0;
    margin: 0 auto;
  }
  .benefit-cards {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 30px;
  }
  .benefit-card {
    width: 90%;
    min-width: 0;
    margin: 0 auto;
  }

  .campaign-summary {
    padding: 24px 18px;
    border-radius: 12px;
    margin-bottom: 32px;
  }
  .campaign-summary__period {
    font-size: .95em;
    padding: 7px 16px;
  }
  .campaign-summary__text {
    font-size: .95em;
    line-height: 1.8;
  }
  .countdown__timer {
    gap: 6px;
  }
  .countdown__unit {
    min-width: 0;
    flex: 1;
    padding: 8px 4px;
  }
  .countdown__num {
    font-size: 1.5em;
  }
}