/*
Theme Name:  beLEGEND x eeevo
Theme URI:
Author:      eeevo
Author URI:
Description: beLEGEND Whey Protein LP — EN / TH bilingual landing page
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: belegend-eeevo
*/

/* =============================================================================
  Foundation
  ============================================================================= */

/* --- Variables --- */
:root {
  --color-primary:      #137628;
  --color-primary-dark: #0d5a1e;
  --color-accent:       #D3A34A;
  --color-accent-light: #e8c070;
  --color-bg:           #f4f7ed;
  --color-bg-section:   #eef5e6;
  --color-white:        #ffffff;
  --color-text:         #333333;
  --color-text-sub:     #666666;
  --color-border:       #d8e2cc;

  --font-base: 'Noto Serif', Georgia, serif;

  --container-width: 1100px;
  --container-pad:   clamp(20px, 5vw, 60px);

  --section-py: clamp(60px, 8vw, 100px);
}

/* --- Reset / Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* =============================================================================
  Layout
  ============================================================================= */

/* --- Container --- */
.l-container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* --- Section --- */
.l-section {
  padding-block: var(--section-py);
}

/* --- Footer --- */
.l-footer {
  background-image: url('image english page/footer-bg.png');
  background-size: 110%;
  background-position: center top;
  padding-top: 180px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
  margin-top: -200px;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}

.l-footer__logo-img {
  display: block;
  width: clamp(120px, 16vw, 200px);
  height: auto;
}

.l-footer__copyright {
  font-size: 12px;
  color: var(--color-text);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.l-footer__sns-link {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.l-footer__sns-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* =============================================================================
  Object - Component
  ============================================================================= */

/* --- Section Heading --- */
.c-section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.c-section-head__icon {
  display: block;
  width: 48px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 16px;
}

.p-about .c-section-head__icon {
  width: 32px;
}

.p-faq .c-section-head__icon {
  width: 40px;
}

.p-contact .c-section-head__icon {
  width: 36px;
}

/* --- Lightbox --- */
.c-lightbox-trigger {
  cursor: pointer;
}

.c-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.c-lightbox.is-open {
  display: flex;
}

.c-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.c-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.c-lightbox__close:hover {
  opacity: 1;
}

/* --- Fixed SNS Button --- */
.c-sns-fixed {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-sns-fixed:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.6);
}

.c-section-head__note {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 8px;
}

.c-section-head__subnote {
  font-size: 16px;
  color: var(--color-text-sub);
  margin-top: 6px;
  line-height: 1.8;
}

.c-section-head__footnote {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-top: 12px;
  line-height: 1.7;
  white-space: nowrap;
  width: max-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* --- Headings --- */
.c-heading {
  font-family: var(--font-base);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.c-heading--award {
  color: var(--color-text);
}

.c-heading--green {
  color: var(--color-text);
}

.c-heading--white {
  color: var(--color-white);
}

/* --- Italic Accent (gold) --- */
.u-italic-accent {
  font-style: italic;
  color: var(--color-accent);
}

.u-italic-accent--green {
  font-style: italic;
  color: var(--color-primary);
}

.u-italic-accent--white {
  font-style: italic;
  color: var(--color-accent-light);
}

/* --- Award Card --- */
.c-award-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.c-award-card__title {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-bg-section);
}

.c-award-card__text {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* --- Feature Item --- */
.c-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.c-feature-item--right {
  flex-direction: row-reverse;
  text-align: right;
}

.c-feature-item__num {
  font-family: var(--font-base);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

.c-feature-item__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  padding-top: 4px;
}

/* --- Step --- */
.c-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.c-step__num-wrap {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
}

.c-step__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.c-step__num {
  font-family: var(--font-base);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.c-step__img-wrap {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-step__desc {
  font-size: 16px;
  color: var(--color-text-sub);
  max-width: 260px;
  line-height: 1.7;
}

.c-step__desc-sub {
  font-size: 14px;
  white-space: nowrap;
}

/* --- Info Table --- */
.c-info-table {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  border-collapse: collapse;
}

.c-info-table__row {
  border-top: 1px solid var(--color-border);
}

.c-info-table__row:last-child {
  border-bottom: 1px solid var(--color-border);
}

.c-info-table__head {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  padding: 20px 24px;
  width: 160px;
  vertical-align: top;
  white-space: nowrap;
}

.c-info-table__data {
  font-size: 16px;
  color: var(--color-text-sub);
  padding: 20px 24px;
  line-height: 1.8;
  vertical-align: top;
}

/* --- Accordion --- */
.c-accordion {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.c-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  text-align: left;
}

.c-accordion__q {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-accordion__text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

.c-accordion__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.c-accordion__icon::before,
.c-accordion__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  transition: transform 0.3s;
}

.c-accordion__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-accordion__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-accordion.is-open .c-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-accordion__panel {
  display: block;
  padding: 0 16px 24px calc(16px + 32px + 16px);
}

.c-accordion__answer {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.9;
}

/* --- Button --- */
.c-btn {
  display: inline-block;
  padding: 14px 48px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.15s;
  cursor: pointer;
}

.c-btn--submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.c-btn--submit:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* --- Form Group --- */
/* CF7が<p>タグを挿入するため、<p>をflexコンテナにする */
.p-contact__form .c-form-group {
  margin-bottom: 16px;
}

.p-contact__form .c-form-group > p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin: 0;
  width: 100%;
}

.p-contact__form .c-form-group:has(textarea) > p {
  align-items: flex-start;
}

/* ラベル：左カラム固定幅・黒文字 */
.p-contact__form .c-form-group > p > label {
  flex: 0 0 140px;
  width: 140px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  margin: 0;
  line-height: 1.4;
}

.p-contact__form .c-form-group:has(textarea) > p > label {
  padding-top: 10px;
}

/* CF7 wrap span：右カラムとして伸張 */
.p-contact__form .c-form-group > p > .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
  display: block;
}

/* input / textarea */
.p-contact__form .c-form-group .wpcf7-form-control {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-base);
  background-color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.p-contact__form .c-form-group .wpcf7-form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 42, 0.2);
}

.p-contact__form .c-form-group textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 120px;
}

/* submitボタン行 */
.p-contact__btn-wrap {
  text-align: center;
  margin-top: 32px;
  position: relative;
}

.p-contact__btn-wrap > p {
  margin: 0;
  line-height: 1;
}

/* CF7スピナーをボタンレイアウトから切り離す */
.p-contact__btn-wrap .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__form .wpcf7-submit,
.p-contact__form .c-btn--submit {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  box-sizing: border-box;
  padding: 14px 48px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  transition: background-color 0.2s, transform 0.15s;
  vertical-align: middle;
}

.p-contact__form .wpcf7-submit:hover,
.p-contact__form .c-btn--submit:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* =============================================================================
  Object - Project
  ============================================================================= */

/* --- Hero --- */
.p-hero {
  position: relative;
  line-height: 0;
}

.p-hero__lang {
  position: absolute;
  top: 20px;
  right: clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.p-hero__lang-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  line-height: 1;
}

.p-hero__lang-item:hover,
.p-hero__lang-item.is-active {
  color: var(--color-primary);
}

.p-hero__lang-sep {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1;
}

.p-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Award --- */
.p-award {
  position: relative;
  background-image: url('image english page/award-bg.png');
  background-size: cover;
  background-position: center -60px;
  background-repeat: no-repeat;
  padding-block: clamp(60px, 8vw, 100px);
}

.p-award__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.p-award__item {
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 48px);
}

.p-award__item:nth-child(1),
.p-award__item:nth-child(2) {
  position: relative;
  padding-bottom: calc(clamp(24px, 4vw, 40px) + 16px);
}

.p-award__item:nth-child(1)::after,
.p-award__item:nth-child(2)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(20px, 4vw, 48px);
  width: 200px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.p-award__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.p-award__text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.9;
}

/* --- Products --- */
.p-product {
  background-image: url('image english page/product-bg.png');
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center 400px;
  overflow: hidden;
}

.p-product__body {
  position: relative;
  padding-block: clamp(40px, 6vw, 72px);
}

.p-product__flavour {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 20%;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.p-product__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 40px);
}

.p-product__card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-product__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.p-product__card:hover .p-product__img {
  transform: scale(1.05);
}

/* --- Features --- */
.p-feature {
  background-color: var(--color-white);
}

.p-feature__head {
  white-space: nowrap;
}

.p-feature__title {
  white-space: nowrap;
}

.p-feature__img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Quality --- */
.p-award .c-section-head {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.p-quality {
  position: relative;
  background: linear-gradient(to bottom right, #8ac799 0%, #f7f7ec 55%);
  background-size: 90% 55%;
  background-repeat: no-repeat;
  background-position: left 260px;
  overflow: visible;
}

.p-quality__flag {
  position: absolute;
  bottom: 45%;
  left: 0px;
  width: clamp(220px, 32vw, 800px);
  height: auto;
  opacity: 0.9;
  z-index: 1;
}

.p-quality .l-container {
  position: relative;
  z-index: 1;
}

.p-quality__block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(16px, 2vw, 24px);
  background: #fff;
  border-radius: 12px;
  padding: clamp(16px, 2.5vw, 28px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.p-quality__block--bottom {
  margin-bottom: 0;
}

.p-quality__subtitle {
  font-family: var(--font-base);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.p-quality__desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.9;
}

.p-quality__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.p-howto .c-section-head__icon {
  width: 26px;
}

/* --- How To Drink --- */
.p-howto {
  background-image: url('image english page/how_bg.png');
  background-repeat: no-repeat;
  background-position: center 190px;
  background-size: 130%;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.p-howto__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

/* --- Ratio --- */
.p-ratio {
  background-image: url('image english page/ratio-bg.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 0;
  padding-top: 80px;
}

.p-ratio .c-section-head__subnote {
  margin-top: 24px;
}

.p-ratio .c-heading {
  white-space: nowrap;
  font-size: 34px;
}

.p-ratio__img-wrap {
  text-align: center;
  margin-top: clamp(24px, 4vw, 48px);
}

.p-ratio__img {
  display: block;
  max-width: 70%;
  height: auto;
  margin-inline: auto;
}

/* --- About / Get To Know Us --- */
.p-about {
  background-image: url('image english page/belegend-logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* --- FAQ --- */
.p-faq {
  background-image: url('image english page/faq-bg.png');
  background-size: 110% auto;
  background-repeat: no-repeat;
  background-position: center 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.p-faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- Contact --- */
.p-contact {
  padding: 0;
}

.p-contact .c-heading--white {
  color: var(--color-accent);
}

.p-contact .u-italic-accent--white {
  color: var(--color-text);
}

.p-contact__inner {
  background-image: url('image english page/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding-top: var(--section-py);
  padding-bottom: calc(var(--section-py) + 70px);
}

.p-contact__inner .l-container {
  position: relative;
  z-index: 1;
}

.p-contact__form {
  max-width: 600px;
  margin-inline: auto;
}


/* =============================================================================
  Object - Utility
  ============================================================================= */

.u-text-center {
  text-align: center;
}

.u-color-accent {
  color: var(--color-accent);
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================================
  Responsive
  ============================================================================= */

@media (max-width: 768px) {

  /* --- Hero --- */
  .p-hero__img {
    width: 100%;
  }

  .p-hero__lang {
    top: 12px;
    right: 12px;
    gap: 6px;
  }

  .p-hero__lang-item,
  .p-hero__lang-sep {
    font-size: 18px;
  }

  /* --- Award --- */
  .p-award {
    padding-top: 80px !important;
  }

  .p-award__grid {
    grid-template-columns: 1fr;
  }

  /* --- Product --- */
  .p-product {
    background-position: bottom;
  }

  .p-product__grid {
    grid-template-columns: 1fr;
  }

  .p-product__card {
    height: auto;
  }

  .p-product__flavour {
    width: 130px;
    top: 12px;
    right: 12px;
  }

  /* --- Feature --- */
  .p-feature__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-feature__list:first-child {
    order: 0;
  }

  .p-feature__visual {
    order: -1;
    text-align: center;
  }

  .p-feature__list:last-child {
    order: 1;
  }

  .p-feature__title {
    white-space: normal;
    font-size: 20px;
  }

  .c-feature-item--right {
    flex-direction: row;
    text-align: left;
  }

  /* --- Quality --- */
  .p-quality {
    background-size: 100% 60%;
  }

  .p-quality__flag {
    width: clamp(140px, 40vw, 220px);
    bottom: auto;
    top: -40px;
    left: -20px;
  }

  .p-quality__block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-quality__block--bottom .p-quality__img-wrap {
    order: -1;
  }

  .p-quality__img {
    height: 180px;
  }

  /* --- How To Drink --- */
  .p-howto {
    padding-bottom: clamp(60px, 10vw, 100px);
    background-size: 200%;
    background-position: center bottom;
  }

  .p-howto .c-section-head__icon {
    width: 20px;
  }

  .p-howto__steps {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .c-step__img-wrap {
    width: 180px;
    height: 180px;
  }

  /* --- Ratio --- */
  .p-ratio .c-heading {
    white-space: normal;
    font-size: 26px;
  }

  .c-section-head__footnote {
    white-space: normal;
    left: auto;
    transform: none;
    width: auto;
  }

  .p-ratio__img {
    max-width: 100%;
  }

  /* --- About --- */
  .c-info-table {
    display: block;
    overflow-x: auto;
  }

  .c-info-table__head {
    white-space: normal;
    min-width: 100px;
  }

  /* --- FAQ --- */
  .p-faq {
    background-size: 200% auto;
  }

  /* --- Contact --- */
  .p-contact__form .c-form-group > p {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .p-contact__form .c-form-group > p > label {
    flex: none;
    width: auto;
  }

  .p-contact__form .c-form-group > p > .wpcf7-form-control-wrap {
    width: 100%;
  }

  .p-contact__form .c-form-group:has(textarea) > p > label {
    padding-top: 0;
  }

  .p-contact__btn-wrap {
    text-align: center;
  }

  .p-contact__btn-wrap > p {
    text-align: center;
  }

  .p-contact__inner {
    padding-bottom: var(--section-py);
  }

  /* --- Quality --- */
  .p-quality__desc {
    font-size: 16px;
  }

  /* --- Footer --- */
  .l-footer {
    margin-top: -60px;
    padding-top: 40px;
    background-size: 110%;
    background-position: center;
    padding-bottom: 0px;
  }

  .l-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .l-footer__logo-img {
    width: 140px;
    margin-inline: auto;
  }

  /* --- Fixed SNS --- */
  .c-sns-fixed {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
  }

  .c-sns-fixed svg {
    width: 20px;
    height: 20px;
  }
}
