/* -----------------------------------
　　　　　　　reset
----------------------------------- */


/* -----------------------------------
　　　　　　　common
----------------------------------- */

:root {
    --color-main: #5aa9b5;
    --color-accent: #877e60;
    --color-text: #36322d;
    --color-bg: #ffffff;

    --color-read-bg: #fdf5e6;

    --margin-top:4%;

    --font-base-Gothic: "A-OTF A1 Gothic Std", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    --font-en: "Avenir", "Helvetica Neue", Arial, sans-serif;
    --font-size-p: 1.2rem;
}

@media screen and (max-width: 768px) {
    :root {
    --color-main: #5aa9b5;
    --color-accent: #877e60;
    --color-text: #36322d;
    --color-bg: #ffffff;

    --color-read-bg: #fdf5e6;

    --margin-top:4vh;
    --padding-sp:2vh;

    --font-base-Gothic: "A-OTF A1 Gothic Std", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    --font-en: "Avenir", "Helvetica Neue", Arial, sans-serif;
    --font-size-p: 1.9vh;
    }
}

#page_free {
    color: var(--color-text);
    font-family: var(--font-base-Gothic);
    font-weight: 500;
}

/* --------- CTAボタン --------- */

.cta-button {
    margin: var(--margin-top) 0 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 32px;
    background: var(--color-main);
    color: #fff!important;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border-radius: 0;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
    background: var(--color-main);
}

.cta-button:focus-visible {
    outline: 2px solid #222;
    outline-offset: 3px;
}

.lead-inner {
    text-align: center;
}

/* --------- アンカーナビ --------- */

.anchor-nav {
    width: 100%;
    max-width: 1100px;
    margin: 4% auto 0;
    background: #fff;
}

.anchor-list {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.anchor-item {
    flex: 1;
}

.anchor-item a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px 8px 28px;
    border-bottom: 1px solid #7f7f7f;
    color: #222 !important;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-sizing: border-box;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.anchor-item a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 45%;
    width: 10px;
    height: 10px;
    border-right: 1px solid #555;
    border-bottom: 1px solid #555;
    transform: translateY(-50%) rotate(45deg);
}

.anchor-item a:hover {
    opacity: 0.75;
    border-bottom-color: #555;
}

.anchor-item a:focus-visible {
    outline: 2px solid #333;
    outline-offset: 3px;
}

.anchor-nav.is-sticky {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 8px 0;
}

@media screen and (max-width: 768px) {
    .anchor-list {
    flex-direction: column;
    }
}


/* -----------------------------------
　　　　　　　リードエリア
----------------------------------- */

.can-feature-section {
    margin: var(--margin-top) 0 0 0;
}

.lead-section .lead-inner p {
    font-size: var(--font-size-p)!important;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .lead-section .lead-inner p {
    font-size: calc( var(--font-size-p) * 1.2 )!important;
    padding: var(--padding-sp) var(--padding-sp) 0 var(--padding-sp);
    }
}


/* -----------------------------------
　　　　　　　缶ビール説明
----------------------------------- */

.can-feature-section .section-intro {
    text-align: center;
}

.can-feature-section .section-intro h2 {
    margin: var(--margin-top) 0 0 0;
    text-align: center;
    font-weight: 600;
}

.can-feature-section .section-intro p {
    font-size: var(--font-size-p);
}

.feature-block {
    position: relative;
    width: 880px;
    margin: calc(var(--margin-top) * 1.5 ) auto 0;
}

.feature-title-image {
    position: absolute;
    top: -22px;
    left: 16px;
    z-index: 2;
}

.feature-title-image img {
    display: block;
    width: 320px;
    height: auto;
}

.feature-list {
    margin: 0;
    padding: 1em 2em 3.3em 2em;
    background-color: var(--color-read-bg);
    text-align: center;
    border-radius: 8px;
}

.feature-list .feature-item {
    margin: calc(var(--margin-top) * 1.5) 0 0 0;
}

.feature-list .feature-item h3 {
    margin: var(--margin-top) 0 0 0;
}

.feature-list .feature-item h3::before {
  content: "\25C6";
  display: inline-block;
  margin-right: 0.4em;
  font-size: 0.8em;
}

.feature-list .feature-item p {
    margin: var(--margin-top) 0 0 0;
}

@media screen and (max-width: 768px) {
    .feature-list {
    text-align: left;
    }

    .can-feature-section .section-intro p {
    padding: 0 var(--padding-sp);
    line-height: calc(var(--font-size-p) * 1.85);
    }

    .can-feature-section .section-intro h2 {
    font-size: 2.5vh;
    }

    .feature-block {
        width: 100%;
        max-width: 100%;
    }

    .feature-list .feature-item h3 {
    font-size: 2.3vh;
    }

    .feature-list .feature-item p {
    font-size: var(--font-size-p);
    margin: calc( var(--margin-top) / 2 ) 0 0 0;
    }
}

/* -----------------------------------
　　　　　　　ヘッドテキスト
----------------------------------- */

/* --------- ヘッド画像 --------- */

.hd-item-img {
    margin: var(--margin-top) 0 0 0;
}

/* --------- テキストヘッド --------- */

.section-heading {
  color: #877e60;
  position: relative;
  font-size: 1.8rem!important;
  font-weight: 700;
  margin: 80px auto 40px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: #877e60;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
    .section-heading {
    font-size: 2.3vh!important;
    text-align: center;
      margin: var(--margin-top) auto;
    }
}