@charset "UTF-8";
/*
Theme Name: Fine Aqua Original Theme
Description: Figmaデザインを完全再現したテーマ
Version: 1.0
*/

/* ----------------------------------------------------------------------------
  1. Global Styles & Variables
---------------------------------------------------------------------------- */
:root {
    --color-main: #0070BF;
    --color-text-base: #333333;
    --color-text-accent: #133E83;
    --color-white: #FFFFFF;
    --color-bg-deco: #F1F5F9;
    --color-footer-bg: #F1F5F9;

    --font-ja: "Noto Sans JP", sans-serif;
    --font-en: "Jost", sans-serif;
    --font-mincho: "BIZ UDMincho", serif;

    --container-width: 1003px;
}

body {
    font-family: var(--font-ja);
    color: var(--color-text-base);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* ----------------------------------------------------------------------------
  2. Layout (Header, Drawer, Footer)
---------------------------------------------------------------------------- */
.l-header {
    position: absolute;
    /* MVに被せるため */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 0;
}

/* スクロール後などにクラスを付与して背景を出す想定 */
.l-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.l-header__inner {
    max-width: calc(var(--container-width) + 40px);
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    /* PC最大80px程度, SPは60px */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- 固定ページ用レイアウト (l-main) --- */
.l-main {
    padding-top: 80px;
    /* 固定ヘッダー分の余白 */
}

.l-main__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 30px 20px 60px;
    /* 上の余白を 60px から 30px に削減 */
}

.p-page-header {
    width: 100%;
    background-color: var(--color-bg-deco);
    padding: 60px 20px;
    margin: 0;
    /* ヘッダー直下に配置し、下の余白も一旦ゼロに */
    text-align: center;
    border-top: 1px solid #e0e6ed;
    border-bottom: 1px solid #e0e6ed;
    box-sizing: border-box;
}

.p-page-title {
    font-size: 2.5rem;
    color: var(--color-text-accent);
    font-family: var(--font-mincho);
    margin: 0;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.p-page-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-main);
    margin: 15px auto 0;
}

.p-page-content {
    line-height: 1.8;
}

/* --- 事業内容ページ用 (p-works) --- */
.p-works {
    margin-bottom: 60px;
    box-sizing: border-box;
}

.p-works *,
.p-works *::before,
.p-works *::after {
    box-sizing: border-box;
}

.p-works-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
}

.p-works-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* WordPressの自動整形（pタグ）が入った場合でもレイアウトを維持 */
.p-works-list>p,
.p-works-item {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0;
    /* WordPressのpタグマージンをリセット */
}

/* pタグで囲まれた場合の中のarticleを100%にする */
.p-works-list>p .p-works-item {
    width: 100%;
    box-shadow: none;
    border-radius: 0;
}

.p-works-item:hover {
    transform: translateY(-5px);
}

.p-works-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #f0f0f0;
    /* 画像がない時の仮背景 */
    display: block;
}

.p-works-content {
    padding: 25px;
    flex: 1;
}

.p-works-title {
    font-size: 20px;
    color: var(--color-text-accent);
    font-family: var(--font-mincho);
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.p-works-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {

    .p-works-list>p,
    .p-works-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {

    .p-works-list>p,
    .p-works-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }
}

/* --- よくある質問ページ用 (p-faq) --- */
.p-faq {
    margin-bottom: 60px;
}

.p-faq-card {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    /* カラム内の余白 */
    overflow: hidden;
}

.p-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-faq-item {
    padding: 10px 40px;
    border-bottom: 1px solid #eee;
}

.p-faq-item:last-child {
    border-bottom: none;
}

.p-faq-question {
    display: flex;
    gap: 15px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text-accent);
    margin-bottom: 15px;
    line-height: 1.5;
}

.p-faq-q-icon {
    color: var(--color-main);
    flex-shrink: 0;
}

.p-faq-answer {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-left: 0;
}

.p-faq-a-icon {
    color: #cc0000;
    /* Aの色を少しアクセントに */
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .p-faq-item {
        padding: 25px 20px;
    }

    .p-faq-question {
        font-size: 16px;
    }

    .p-faq-answer {
        font-size: 14px;
    }
}

/* --- 会社概要ページ用 (p-company) --- */
.p-company-card {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

.p-company-table {
    width: 100%;
    border-collapse: collapse;
}

.p-company-table th,
.p-company-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.p-company-table tr:last-child th,
.p-company-table tr:last-child td {
    border-bottom: none;
}

.p-company-table th {
    background-color: var(--color-bg-deco);
    color: var(--color-text-accent);
    width: 25%;
    font-weight: bold;
    font-family: var(--font-mincho);
}

.p-company-table td {
    color: var(--color-text-base);
}

.p-company-map {
    margin-top: 40px;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background-color: #f0f0f0;
}

.p-company-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {

    .p-company-table th,
    .p-company-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .p-company-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .p-company-table td {
        padding-top: 5px;
    }
}

/* --- リーガルページ用 (p-legal) --- */
.p-legal-content {
    line-height: 2;
    color: var(--color-text-base);
}

.p-legal-content h2 {
    font-size: 22px;
    color: var(--color-text-accent);
    margin: 40px 0 20px;
    padding: 5px 0 5px 15px;
    border-left: 5px solid var(--color-main);
    font-family: var(--font-mincho);
}

.p-legal-content p {
    margin-bottom: 20px;
}

.p-legal-content ul,
.p-legal-content ol {
    margin-bottom: 20px;
    padding-left: 1.5em;
}

.p-legal-content li {
    margin-bottom: 10px;
}

/* 特商法テーブル */
.p-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.p-legal-table th,
.p-legal-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.p-legal-table th {
    background-color: var(--color-bg-deco);
    color: var(--color-text-accent);
    width: 30%;
    font-weight: bold;
    font-family: var(--font-mincho);
}

.p-legal-table tr:last-child th,
.p-legal-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .p-legal-content h2 {
        font-size: 20px;
    }

    .p-legal-table th,
    .p-legal-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .p-legal-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .p-legal-table td {
        padding-top: 5px;
    }
}

/* --- ご利用の流れページ用 (p-flow) --- */
.p-flow {
    margin-bottom: 80px;
    padding: 20px 0;
    box-sizing: border-box;
}

.p-flow *,
.p-flow *::before,
.p-flow *::after {
    box-sizing: border-box;
}

.p-flow-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    /* 両端揃えから中央揃えに変更して安定させる */
    position: relative;
    width: 100%;
}

/* PC用コネクタライン */
@media (min-width: 1025px) {
    .p-flow-list::before {
        content: "";
        position: absolute;
        top: 80px;
        /* アイコンの中心付近に調整 */
        left: 100px;
        right: 100px;
        height: 2px;
        background-image: linear-gradient(to right, var(--color-main) 50%, rgba(255, 255, 255, 0) 0%);
        background-position: top;
        background-size: 15px 100%;
        background-repeat: repeat-x;
        z-index: 0;
        opacity: 0.2;
    }
}

/* WordPressが挿入する p タグへの対策 */
.p-flow-list>p,
.p-flow-item {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 50px 30px 40px;
    width: calc(25% - 30px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border: 1px solid rgba(0, 112, 191, 0.05);
    margin: 0;
    /* Pタグのマージンをリセット */
    min-height: 380px;
}

/* pタグで囲まれた場合の中の要素を100%にする */
.p-flow-list>p .p-flow-item {
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
    min-height: auto;
}

.p-flow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 112, 191, 0.12);
    border-color: var(--color-main);
}

.p-flow-item::before {
    content: attr(data-step);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(0, 112, 191, 0.05);
    font-family: 'Inter', sans-serif;
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.p-flow-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-bg-deco) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.p-flow-icon {
    font-size: 36px;
    color: var(--color-main);
    transition: transform 0.3s ease, color 0.3s ease;
}

.p-flow-item:hover .p-flow-icon {
    transform: scale(1.1);
    color: var(--color-text-accent);
}

.p-flow-badge {
    background-color: var(--color-main);
    color: var(--color-white);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    display: inline-block;
}

.p-flow-title {
    font-size: 19px;
    font-weight: bold;
    color: var(--color-text-accent);
    margin: 0 0 15px;
    text-align: center;
    font-family: var(--font-mincho);
    width: 100%;
}

.p-flow-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    width: 100%;
}

@media (max-width: 1024px) {

    .p-flow-list>p,
    .p-flow-item {
        width: calc(50% - 20px);
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .p-flow-list {
        gap: 40px;
    }

    .p-flow-list>p,
    .p-flow-item {
        width: 100%;
        max-width: 400px;
        min-height: auto;
    }

    .p-flow-item::after {
        display: none;
        /* ドットラインをSPでは一旦非表示にしてシンプルにする */
    }
}

.c-hamburger {
    width: 44px;
    height: 44px;
    position: relative;
    background-color: #133E83;
    border: none;
    cursor: pointer;
    z-index: 210;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 0;
}

.c-hamburger__line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-white);
    position: static;
    transition: 0.3s;
}

.l-header.is-scrolled .c-hamburger__line {
    background-color: var(--color-white);
}

/* Open State */
.is-drawer-open .c-hamburger__line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.is-drawer-open .c-hamburger__line:nth-child(2) {
    opacity: 0;
}

.is-drawer-open .c-hamburger__line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Drawer Menu */
.l-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background-color: #5675A8;
    z-index: 200;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.l-drawer.is-active {
    right: 0;
}

.l-drawer__inner {
    position: relative;
    padding: 60px 40px;
}

.l-drawer__list {
    width: 100%;
    padding: 0;
    margin-top: 30px;
}

.l-drawer__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.l-drawer__item a {
    display: block;
    padding: 12px 0;
    color: var(--color-white);
}

.l-drawer__en {
    display: block;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.l-drawer__ja {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.l-drawer__close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 210;
}

.l-drawer__close-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    top: 50%;
}

.l-drawer__close-line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.l-drawer__close-line:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

/* --- ミネラルウォーター詳細ページ用 (p-product-detail) --- */
.p-product-detail {
    margin-bottom: 80px;
}

.p-product-detail__back {
    margin-bottom: 30px;
}

.p-product-detail__back-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.p-product-detail__back-link:hover {
    opacity: 0.7;
}

.p-product-detail__back-link::before {
    content: "←";
    margin-right: 8px;
}

.p-product-detail__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.p-product-detail__img-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--color-bg-deco);
}

.p-product-detail__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.p-product-detail__content {
    flex: 1.2;
}

.p-product-detail__title {
    font-size: 32px;
    color: var(--color-text-accent);
    font-family: var(--font-mincho);
    margin: 0 0 10px;
    font-weight: bold;
    line-height: 1.4;
}

.p-product-detail__lead {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.p-product-detail__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.p-product-detail__table th,
.p-product-detail__table td {
    padding: 15px 20px;
    border: 1px solid #eee;
    font-size: 15px;
}

.p-product-detail__table th {
    background-color: var(--color-bg-deco);
    color: var(--color-text-accent);
    text-align: left;
    width: 30%;
    font-weight: bold;
}

.p-product-detail__btns {
    display: flex;
    gap: 20px;
}

.p-product-detail__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.p-product-detail__btn--primary {
    background-color: var(--color-main);
    color: var(--color-white);
    border: 1px solid var(--color-main);
}

.p-product-detail__btn--primary:hover {
    background-color: var(--color-text-accent);
    border-color: var(--color-text-accent);
}

.p-product-detail__btn--outline {
    background-color: var(--color-white);
    color: var(--color-text-accent);
    border: 1px solid var(--color-text-accent);
}

.p-product-detail__btn--outline:hover {
    background-color: var(--color-bg-deco);
}

@media (max-width: 960px) {
    .p-product-detail__inner {
        flex-direction: column;
        gap: 30px;
    }

    .p-product-detail__img-wrap,
    .p-product-detail__content {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .p-product-detail__btns {
        flex-direction: column;
        gap: 15px;
    }

    .p-product-detail__title {
        font-size: 24px;
    }

    .p-product-detail__table th {
        width: 40%;
    }
}

/* --- 画像プレースホルダー (読み込みエラー時) --- */
img.is-error {
    background-color: var(--color-bg-deco);
    position: relative;
    min-height: 100px;
    display: block;
    width: 100%;
    border-radius: inherit;
}

/* 親要素に対してプレースホルダーを表現する */
figure:has(img.is-error),
div:has(> img.is-error),
.p-product-img:has(img.is-error),
.p-testimonial-img:has(img.is-error) {
    position: relative;
    background-color: var(--color-bg-deco);
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    overflow: hidden;
    border-radius: inherit;
}

figure:has(img.is-error)::after,
div:has(> img.is-error)::after,
.p-product-img:has(img.is-error)::after,
.p-testimonial-img:has(img.is-error)::after {
    content: "画像が入ります";
    font-size: 14px;
    color: #999;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* --- お客様の声ページ用 (p-testimonial) --- */
.p-testimonial {
    margin-bottom: 80px;
}

.p-testimonial-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
}

.p-testimonial-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.p-testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: calc(50% - 15px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.p-testimonial-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--color-bg-deco);
}

.p-testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-testimonial-card:hover .p-testimonial-img img {
    transform: scale(1.05);
}

.p-testimonial-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-testimonial-name {
    font-size: 20px;
    color: var(--color-text-accent);
    font-family: var(--font-mincho);
    margin: 0 0 15px;
    font-weight: bold;
}

.p-testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-base);
    margin: 0;
    position: relative;
    font-style: italic;
}

.p-testimonial-text::before {
    content: "“";
    font-size: 40px;
    color: rgba(0, 112, 191, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.p-testimonial-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .p-testimonial-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .p-testimonial-card {
        width: 100%;
        max-width: 450px;
    }

    .p-testimonial-content {
        padding: 25px;
    }

    .p-testimonial-text {
        font-size: 16px;
    }
}

/* --- お問い合わせページ用 (p-contact) --- */
.p-contact-container {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto 80px;
}

.p-contact-form__item {
    margin-bottom: 30px;
}

.p-contact-form__item label {
    display: block;
    font-weight: bold;
    color: var(--color-text-accent);
    margin-bottom: 10px;
    font-size: 16px;
}

.c-form-required {
    background-color: #e74c3c;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(0, 112, 191, 0.1);
}

.wpcf7-textarea {
    height: 200px;
}

.p-contact-form__submit {
    text-align: center;
    margin-top: 40px;
}

.wpcf7-response-output {
    margin: 30px 0 0 !important;
    padding: 15px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    text-align: center !important;
}

.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .p-contact-container {
        padding: 40px 20px;
    }
}

/* --- お水製品案内ページ用 (p-product) --- */
.p-product-info {
    margin-bottom: 80px;
}

.p-product-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.p-product-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.p-product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--color-bg-deco);
}

.p-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-product-badge {
    display: inline-block;
    background-color: rgba(177, 156, 217, 0.15);
    color: #6a5acd;
    /* 少し濃いめのパープル */
    font-size: 11px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.p-product-title {
    font-size: 18px;
    color: var(--color-text-accent);
    font-family: var(--font-mincho);
    margin: 0 0 10px;
    font-weight: bold;
    line-height: 1.4;
}

.p-product-spec {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.p-product-btn-wrap {
    margin-top: auto;
}

.p-product-btn-wrap .c-btn-product {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1024px) {
    .p-product-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .p-product-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --- お客様の声ページ用 (p-testimonial) --- */
.p-testimonial {
    margin-bottom: 80px;
}

.p-testimonial-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
}

.p-testimonial-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.p-testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: calc(50% - 15px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.p-testimonial-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--color-bg-deco);
}

.p-testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-testimonial-card:hover .p-testimonial-img img {
    transform: scale(1.05);
}

.p-testimonial-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-testimonial-name {
    font-size: 20px;
    color: var(--color-text-accent);
    font-family: var(--font-mincho);
    margin: 0 0 15px;
    font-weight: bold;
}

.p-testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-base);
    margin: 0;
    position: relative;
    font-style: italic;
}

/* 引用符の装飾 */
.p-testimonial-text::before {
    content: "“";
    font-size: 40px;
    color: rgba(0, 112, 191, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.p-testimonial-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .p-testimonial-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .p-testimonial-card {
        width: 100%;
        max-width: 450px;
    }

    .p-testimonial-content {
        padding: 25px;
    }

    .p-testimonial-text {
        font-size: 16px;
    }
}

/* --- お知らせページ専用の調整 --- */
.l-main .p-news {
    padding-top: 0;
}

.l-main .p-news__list {
    margin-bottom: 40px;
}

/* ----------------------------------------------------------------------------
  7. Common Components (Pagination, etc.)
---------------------------------------------------------------------------- */
.p-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.p-pagination .nav-links {
    display: flex;
    gap: 10px;
}

.p-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    background: var(--color-white);
    color: var(--color-text-base);
    font-size: 14px;
    transition: all 0.3s;
}

.p-pagination .page-numbers.current,
.p-pagination .page-numbers:hover {
    background-color: var(--color-main);
    color: var(--color-white);
    border-color: var(--color-main);
}

.p-pagination .page-numbers.prev,
.p-pagination .page-numbers.next {
    width: auto;
    padding: 0 15px;
}

.p-pagination ul.page-numbers {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- 特許についてページ用 (p-patent) --- */
.p-patent {
    margin-bottom: 80px;
}

.p-patent-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
}

.p-patent-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px 60px;
    max-width: 900px;
    margin: 0 auto 60px;
    border: 1px solid rgba(0, 112, 191, 0.05);
}

.p-patent-title {
    font-size: 24px;
    color: var(--color-text-accent);
    font-family: var(--font-mincho);
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-bg-deco);
    text-align: center;
}

.p-patent-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.p-patent-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-base);
}

.p-patent-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-main);
    font-weight: bold;
    font-size: 20px;
}

.p-patent-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .p-patent-card {
        padding: 40px 25px;
    }

    .p-patent-title {
        font-size: 20px;
    }
}

/* Footer */
.l-footer {
    background-color: #f5f7fa;
    padding: 0;
    font-size: 12px;
}

/* Overlay */
.c-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.c-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.l-footer__top {
    border-bottom: 1px solid #dde4ee;
    padding: 50px 0;
}

.l-footer__top-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.l-footer__info {
    flex: 1;
    background: #fff;
    border: 1px solid #dde4ee;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 420px;
}

.l-footer__logo {
    flex-shrink: 0;
    width: 130px;
}

.l-footer__address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.7;
    color: #444;
}

.l-footer__cta {
    flex: 1;
    text-align: center;
    padding-top: 10px;
}

.l-footer__cta-h3 {
    font-size: 20px;
    color: #133E83;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

.l-footer__cta-text {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.l-footer__nav {
    padding: 40px 0;
    border-bottom: 1px solid #dde4ee;
}

.l-footer__nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.l-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    line-height: 1;
}

.l-footer__nav-item {
    margin-bottom: 16px;
}

.l-footer__nav-item:last-child {
    margin-bottom: 0;
}

.l-footer__nav-item a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.l-footer__bottom {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.l-footer__copyright {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.l-footer__subnav {
    display: flex;
    gap: 24px;
}

.l-footer__subnav a {
    font-size: 12px;
    color: #888;
    text-decoration: none;
}

/* ----------------------------------------------------------------------------
  4. Main Visual & Sections
---------------------------------------------------------------------------- */
.p-mv {
    height: 701px;
    background-image: url('img/mv-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.p-mv__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-mv__copy-wrap {
    flex: 1;
}

.p-mv__copy {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-accent);
    /* 白い光彩（シャドウ）を強化して可読性を向上 */
    text-shadow:
        0 0 15px #fff,
        0 0 30px #fff,
        0 0 45px #fff;
    margin: 0;
    font-family: var(--font-mincho);
    /* 明朝体適用 */
}

.p-mv__product {
    width: 450px;
    flex-shrink: 0;
    text-align: right;
    margin: 0;
}

.p-mv__product img {
    max-height: 600px;
    width: auto;
}

/* News */
.p-news {
    padding: 30px 0;
    background-color: var(--color-white);
}

.p-news__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.c-sec-title {
    margin-bottom: 30px;
    color: var(--color-text-accent);
    font-size: 24px;
}

.p-news__list {
    border-top: 1px solid #ddd;
}

.p-news__item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.p-news__link {
    display: flex;
    gap: 128px;
    /* PCでの間隔調整 */
    align-items: center;
}

.p-news__date {
    font-size: 14px;
    width: 100px;
    flex-shrink: 0;
    font-weight: bold;
    /* 日付を太字に */
}

.p-news__btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.c-btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 263px;
    padding: 15px 20px;
    border: 1px solid var(--color-text-accent);
    color: var(--color-text-accent);
    font-weight: 500;
    font-size: 16px;
    font-family: var(--font-mincho);
    /* 明朝体適用 */
    background: transparent;
    text-decoration: none;
    position: relative;
}

.c-btn-product::after {
    content: "・";
    position: absolute;
    right: 20px;
    font-size: 20px;
    line-height: 1;
    color: var(--color-text-accent);
}

.p-news .c-btn-product {
    width: 200px;
    padding: 12px 20px;
    font-size: 14px;
}

.p-news .c-btn-product::after {
    right: 15px;
    font-size: 18px;
}

/* Product */
.p-product {
    padding: 30px 0;
    background-color: var(--color-white);
}

.p-product__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-product--generator .p-product__inner {
    flex-direction: row-reverse;
}

.p-product__img {
    width: 45%;
    margin: 0;
}

.p-product__content {
    width: 50%;
    text-align: center;
}

.p-product__label {
    font-size: 14px;
    color: var(--color-main);
    font-weight: bold;
}

.p-product__title {
    font-size: 38px;
    font-family: var(--font-mincho);
    color: var(--color-text-accent);
    margin: 8px 0 30px;
}

.p-product__features {
    margin-bottom: 30px;
    line-height: 2;
    text-align: left;
}

.p-product__features {
    padding: 20px 0;
    margin: 20px 0 30px;
    background-color: rgba(42, 142, 185, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-product__feature-item {
    position: relative;
    padding: 0px 20px 0px 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.p-product__feature-num {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-product__feature-num::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-deco);
    border-radius: 50% 50% 0 50%;
    transform: rotate(45deg);
}

/* Deco dots for number circles */
.p-product__feature-num::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-bg-deco);
    border-radius: 50%;
    box-shadow: 12px 15px 0 -1px var(--color-bg-deco);
}

.p-product__feature-num span {
    position: relative;
    z-index: 1;
    color: var(--color-text-accent);
    font-weight: bold;
    font-size: 18px;
    font-family: var(--font-en);
}

/* Feature ( 実力 ) */
.p-feature {
    padding: 30px 0;
    background-image: url('img/bg_water_splash.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.p-feature__title {
    font-size: 32px;
    color: var(--color-text-accent);
    margin-bottom: 10px;
}

.p-feature__lead {
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--color-text-accent);
}

.p-feature__box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.p-feature__text {
    flex: 1;
    text-align: left;
}

.p-feature__h3 {
    font-size: 20px;
    color: var(--color-main);
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-main);
    display: inline-block;
}

.p-feature__desc {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.p-feature__diagram {
    width: 250px;
    flex-shrink: 0;
    margin: 0;
}

/* Athletes */
.p-athletes {
    padding: 30px 0;
    background-color: var(--color-white);
}

.p-athletes__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.p-athletes__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    /* ボックス間の間隔を 80px に */
}

.p-athletes__row--reverse {
    margin-bottom: 0;
    gap: 40px;
}

.p-athletes__content {
    flex: 1;
}

.p-athletes__h2,
.p-athletes__h3 {
    font-size: 22px;
    color: var(--color-text-accent);
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-text-accent);
    display: block;
    /* 115pxをブロック全体にかけるために inline-block から変更 */
    width: 100%;
}

.p-athletes__text {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.p-athletes__img-wrap {
    width: 300px;
    flex-shrink: 0;
    margin-left: 40px;
}

.p-athletes__photo-wrap {
    width: 350px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}

.p-athletes__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Voices */
.p-voice {
    padding: 30px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.p-voice__bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    opacity: 0.3;
    pointer-events: none;
}

.p-voice__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.p-voice__title {
    font-size: 32px;
    color: var(--color-text-accent);
    margin-bottom: 15px;
    text-align: center;
}

.p-voice__lead {
    font-size: 14px;
    color: #333;
    margin-bottom: 70px;
    text-align: left;
}

.p-voice__list {
    display: flex;
    flex-wrap: nowrap;
    /* PCでは絶対に折り返さない */
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: stretch;
    /* 高さを揃える */
}

.p-voice__card {
    background: #EEF4FB;
    border-radius: 10px;
    width: calc(33.333% - 14px);
    text-align: left;
    position: relative;
    padding: 20px 20px 30px;
    margin-top: 50px;
    box-sizing: border-box;
}

.p-voice__user-img {
    position: absolute;
    top: -50px;
    right: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.p-voice__user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.p-voice__tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #bbb;
    padding: 2px 14px;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    color: #333;
}

.p-voice__name {
    display: block;
    font-size: 18px;
    color: var(--color-text-accent);
    margin-bottom: 12px;
    font-weight: bold;
}

.p-voice__card hr {
    border: none;
    border-top: 1px solid #C8D8EC;
    margin: 0 0 15px;
}

.p-voice__comment {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

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

.c-btn-more {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    border-radius: 30px;
    font-family: var(--font-mincho);
}

/* Maker */
.p-maker {
    padding: 30px 0;
    background-color: transparent;
    /* 背景を透明に */
}

.p-maker__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.p-maker__h2 {
    font-size: 24px;
    color: var(--color-text-accent);
    margin: 0 0 5px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-text-accent);
    display: inline-block;
    /* block から戻し、幅を制限 */
    width: auto;
    padding-right: 50px;
    /* 半分くらいの長さに見えるよう調整 */
}

.p-maker__text {
    font-size: 14px;
    color: #666;
    margin: 20px 0 25px;
}

.c-btn-external {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: 1px solid var(--color-text-accent);
    color: var(--color-text-accent);
    font-size: 14px;
    font-family: var(--font-mincho);
    background: transparent;
    text-decoration: none;
    gap: 10px;
}

/* Info Wrap (Maker + About Background) */
.p-info-wrap {
    background-image: url('img/bg_company_wave.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 20px 0;
    /* 全体の余白微調整 */
}

/* About Preview */
.p-about-preview {
    padding: 30px 0;
    background: transparent;
    /* 個別背景を削除 */
}

.p-about-preview__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.p-about-preview__img {
    flex: 1;
    margin: 0;
}

.p-about-preview__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 380px;
    /* 右側のテキスト高さに合わせる概算。SPでは解除 */
}

.p-about-preview__content {
    flex: 1;
    /* padding: 40px 0; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-about-preview__h2 {
    font-size: 32px;
    color: var(--color-text-accent);
    margin-top: 0;
    margin-bottom: 0px;
}

.p-about-preview__text {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.p-about-preview__btn-wrap {
    margin-top: 0;
}

/* CTA */
.p-cta {
    background-color: #E6F0F9;
    padding: 30px 0;
}

.p-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.p-cta__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--color-white);
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.p-cta__banner-icon {
    width: 50px;
}

.p-cta__banner-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text-accent);
}

.p-cta__banner-note {
    font-size: 12px;
    color: #666;
}

.p-cta__contact {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-cta__contact-h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.p-cta__contact-text {
    font-size: 12px;
    margin-bottom: 15px;
}

.c-btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-main);
    color: var(--color-white);
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-mincho);
}


/* ----------------------------------------------------------------------------
  5. Responsive Adjustments
---------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }

    .p-mv__copy {
        font-size: 48px;
    }

    .p-mv__product {
        width: 350px;
    }

    .p-product__inner {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .l-header {
        padding: 5px 0;
    }

    .l-header__inner {
        height: 60px;
    }

    .c-hamburger {
        /* margin-right: 15px; */
        /* 右端にくっつかないように */
    }

    .p-mv {
        height: auto;
        padding: 100px 0 100px;
        /* 上の方の余計な余白 100px -> 60px */
    }

    .p-mv__inner {
        flex-direction: column;
        text-align: center;
        padding-top: 0;
    }

    .p-mv__copy-wrap {
        margin: 0 0 30px;
        /* キャッチコピーの位置と余白 */
    }

    .p-mv__copy {
        font-size: 32px;
        /* キャッチコピーのサイズ調整 */
        line-height: 1.4;
    }

    .p-mv__product {
        width: 100%;
        max-width: 320px;
        /* 画像が大きすぎないように */
        margin: 0 auto;
        text-align: center;
    }

    .p-mv__product img {
        max-height: 350px;
    }

    .p-product__inner {
        flex-direction: column;
    }

    .p-product--generator .p-product__inner {
        flex-direction: column;
    }

    .p-product__img,
    .p-product__content {
        width: 100%;
    }

    .p-product__img {
        margin: 0 auto 0px;
        max-width: 200px;
        text-align: center;
        /* 画像が大きすぎないように */
    }

    .p-feature__box {
        flex-direction: column;
        padding: 20px;
    }

    .p-feature__diagram {
        width: 100%;
        /* 特別に width: 100% 指定 */
        max-width: none;
    }

    .p-athletes__row {
        flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
    }

    .p-athletes__img-wrap {
        margin: 30px 0 0;
    }

    .p-athletes__row--reverse {
        flex-direction: column-reverse;
    }

    .p-athletes__photo-wrap {
        width: 280px;
        height: 280px;
    }

    .p-voice__list {
        flex-wrap: wrap;
    }

    .p-voice__card {
        width: 100%;
    }

    .p-about-preview__inner {
        flex-direction: column;
    }

    .p-about-preview__img img {
        max-height: none;
    }

    .p-about-preview__content {
        padding: 20px 0;
    }

    .p-cta__inner {
        flex-direction: column;
    }

    .p-news__link {
        gap: 20px;
        /* SPではPCの128pxを上書き */
    }

    /* Footer Mobile */
    .l-footer__top-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }

    .l-footer__info {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .l-footer__nav-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .l-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }

    .l-footer__subnav {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* SPボタン最大幅制限 */
    .c-btn-product,
    .c-btn-more,
    .c-btn-contact {
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .c-btn-external {
        width: 100%;
        max-width: 130px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .p-mv__copy {
        font-size: 36px;
    }

    .p-product__title {
        font-size: 28px;
    }

    .c-btn-product {
        width: 100%;
    }
}

/* 
 *  Drawer Close Icon Styles
 */
.l-drawer__close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 210;
}

.l-drawer__close-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    top: 50%;
}

.l-drawer__close-line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.l-drawer__close-line:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}