@charset "UTF-8";

.coffee-tools-page {
    background-color: #fef8ea;
    color: #3f0011;
}

.coffee-tools-page .ct-hero {
    --ct-hero-bg-color: #3f0011;
    --ct-hero-bg-image: url(../img/coffeetools/coffee-tools-fv-pc.png);
    --ct-hero-overlay: rgba(0, 0, 0, 0.48);
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--ct-hero-bg-color);
    background-image: var(--ct-hero-bg-image);
    background-position: center right;
    background-size: cover;
}

.coffee-tools-page .ct-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: var(--ct-hero-overlay);
}

.coffee-tools-page .ct-hero__inner {
    position: relative;
    z-index: 2;
    padding: 120px 0 110px;
}

.coffee-tools-page .ct-kicker {
    margin: 0 0 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.16em;
    animation: ctHeroTextIn 860ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.coffee-tools-page .ct-hero h1,
.coffee-tools-page .ct-section h2 {
    margin: 0;
    font-family: "dnp-shuei-nmincho-std", "source-han-serif-jp-subset", "Times New Roman", "游明朝", "Yu Mincho", serif;
    font-weight: 500;
}

.coffee-tools-page .ct-hero h1 {
    color: #fff;
    font-size: 69px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    animation: ctHeroTextIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 240ms both;
}

.coffee-tools-page .ct-hero__lead {
    margin: 42px 0 0;
    color: #fff;
    font-size: 15px;
    line-height: 2.1;
    letter-spacing: 0.12em;
    animation: ctHeroTextIn 940ms cubic-bezier(0.22, 1, 0.36, 1) 380ms both;
}

.coffee-tools-page .ct-section {
    margin-top: 124px;
}

.coffee-tools-page .ct-intro {
    margin-top: 0;
    background: #fef8ea;
    padding: 162px 0 18px;
}

.coffee-tools-page .ct-section h2 {
    color: #3f0011;
    font-size: 38px;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-text {
    margin-top: 42px;
}

.coffee-tools-page .ct-text p,
.coffee-tools-page .ct-app__body p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.13em;
}

.coffee-tools-page .ct-text p:last-child,
.coffee-tools-page .ct-app__body p:last-child {
    margin-bottom: 0;
}

.coffee-tools-page .ct-intro__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    text-align: center;
}

.coffee-tools-page .ct-intro__visual {
    margin: 0;
    width: min(100%, 860px);
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-tools-page .ct-intro__visual img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
}

.coffee-tools-page .ct-intro__body {
    width: min(100%, 700px);
    text-align: center;
}

.coffee-tools-page .ct-intro__body h2 {
    text-align: center;
}

.coffee-tools-page .ct-intro__body h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin: 34px auto 0;
    background: rgba(63, 0, 17, 0.28);
}

.coffee-tools-page .ct-apps {
    margin-top: 0;
    padding-top: 108px;
    background: #fef8ea;
}

.coffee-tools-page .ct-apps .container {
    position: relative;
    padding-right: 56px;
    padding-left: 56px;
}

.coffee-tools-page .ct-app {
    max-width: 980px;
    margin: 0 auto;
    padding: 100px 0 0;
    border-top: 1px solid rgba(63, 0, 17, 0.16);
}

.coffee-tools-page .ct-app:first-child {
    border-top: 0;
}

.coffee-tools-page .ct-app + .ct-app {
    margin-top: 100px;
}

.coffee-tools-page .ct-app__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 28px;
}

.coffee-tools-page .ct-app__title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.coffee-tools-page .ct-app__icon {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    border-radius: 16px;
    display: none;
}

.coffee-tools-page .ct-app__header h2 {
    font-size: 32px;
    line-height: 1.2;
}

.coffee-tools-page .ct-app__body {
    position: relative;
    z-index: 4;
}

.coffee-tools-page .ct-app__subtitle {
    margin: 8px 0 0;
    color: rgba(63, 0, 17, 0.72);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.12em;
}

.coffee-tools-page .ct-app__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
    gap: 36px;
    align-items: center;
    margin-top: 0;
}

.coffee-tools-page .ct-app__visual {
    margin: 0;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    background: transparent;
}

.coffee-tools-page .ct-app:nth-child(odd) .ct-app__visual {
    justify-items: start;
}

.coffee-tools-page .ct-app:nth-child(even) .ct-app__visual {
    justify-items: end;
}

.coffee-tools-page .ct-phone-frame {
    width: min(92%, 440px);
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: transparent;
    border-radius: 0;
}

.coffee-tools-page .ct-phone-frame img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.coffee-tools-page .ct-app:nth-child(odd) .ct-phone-frame {
    transform: translateX(-40px);
}

.coffee-tools-page .ct-app:nth-child(even) .ct-phone-frame {
    transform: translateX(40px);
}

.coffee-tools-page .ct-app__thumbs {
    position: absolute;
    right: clamp(78px, calc(50% - 166px), 116px);
    bottom: 9%;
    z-index: 3;
    display: flex;
    pointer-events: none;
}

.coffee-tools-page .ct-app:nth-child(even) .ct-app__thumbs {
    right: auto;
    left: clamp(78px, calc(50% - 166px), 116px);
}

.coffee-tools-page .ct-app__thumbs img {
    width: 124px;
    height: 124px;
    display: block;
    border: 2px solid #fef8ea;
    border-radius: 50%;
    object-fit: cover;
    background: #fef8ea;
}

@keyframes ctHeroTextIn {
    from {
        opacity: 0;
        filter: blur(3px);
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.coffee-tools-page.ct-motion-ready .ct-intro__visual {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(22px) scale(0.985);
}

.coffee-tools-page.ct-motion-ready .ct-intro__visual.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.coffee-tools-page .ct-app__store {
    margin: 42px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.coffee-tools-page .ct-app__store a {
    display: inline-block;
}

.coffee-tools-page .ct-app__store a:hover {
    opacity: 0.82;
}

.coffee-tools-page .ct-app__store img {
    display: block;
    width: 164px;
    height: auto;
}

.coffee-tools-page .ct-app__store-text {
    color: #3f0011;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    opacity: 0.64;
}

.coffee-tools-page .ct-app__detail-link {
    color: #3f0011;
}

.coffee-tools-page .ct-app__detail-link:hover {
    opacity: 0.72;
}

.coffee-tools-page.ct-app-detail-page {
    background: #fef8ea;
}

.coffee-tools-page .ct-detail-hero {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 0 48px;
    border-top: 0;
}

.coffee-tools-page .ct-detail-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90vw;
    height: 1px;
    background: rgba(63, 0, 17, 0.14);
    transform: translateX(-50%);
}

.coffee-tools-page .ct-detail-hero__inner {
    margin-top: 0;
    padding-right: 56px;
    padding-left: 56px;
}

.coffee-tools-page .ct-detail-hero .ct-kicker {
    color: rgba(63, 0, 17, 0.62);
    animation: none;
}

.coffee-tools-page .ct-detail-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 26px;
}

.coffee-tools-page .ct-detail-title img {
    width: 64px;
    height: 64px;
    border-radius: 15px;
}

.coffee-tools-page .ct-detail-title p {
    margin: 0;
    color: rgba(63, 0, 17, 0.68);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
}

.coffee-tools-page .ct-detail-hero h1,
.coffee-tools-page .ct-detail-section h2 {
    margin: 0;
    color: #3f0011;
    font-family: "dnp-shuei-nmincho-std", "source-han-serif-jp-subset", "Times New Roman", "游明朝", "Yu Mincho", serif;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-detail-hero h1 {
    font-size: 38px;
    line-height: 1.45;
}

.coffee-tools-page .ct-detail-copy {
    margin: 24px 0 0;
    color: #3f0011;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-detail-lead {
    max-width: 560px;
    margin: 18px 0 0;
    color: rgba(63, 0, 17, 0.82);
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.13em;
}

.coffee-tools-page .ct-detail-hero .ct-phone-frame {
    width: min(92%, 440px);
    min-width: 280px;
    transform: translateX(-40px);
}

.coffee-tools-page .ct-detail-hero .ct-app__thumbs {
    right: clamp(72px, calc(50% - 176px), 118px);
    bottom: 6%;
}

.coffee-tools-page .ct-detail-hero:nth-child(even) .ct-app__thumbs {
    left: clamp(72px, calc(50% - 176px), 118px);
    right: auto;
}

.coffee-tools-page .ct-detail-hero .ct-app__thumbs img {
    width: 150px;
    height: 150px;
}

.coffee-tools-page .ct-detail-section {
    margin-top: 0;
    padding: 0;
}

.coffee-tools-page .ct-difference {
    margin-top: 100px;
}

.coffee-tools-page .ct-detail-section .container,
.coffee-tools-page .ct-breadcrumb .container {
    max-width: 980px;
    padding-right: 56px;
    padding-left: 56px;
}

.coffee-tools-page .ct-detail-section + .ct-detail-section {
    position: relative;
    margin-top: 96px;
    padding-top: 96px;
    border-top: 0;
}

.coffee-tools-page .ct-detail-section + .ct-detail-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 90vw;
    height: 1px;
    background: rgba(63, 0, 17, 0.14);
    transform: translateX(-50%);
}

.coffee-tools-page .ct-detail-grid,
.coffee-tools-page .ct-final__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
    gap: 56px;
    align-items: center;
}

.coffee-tools-page .ct-detail-grid--reverse {
    grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
}

.coffee-tools-page .ct-detail-section h2 {
    font-size: 32px;
    line-height: 1.35;
}

.coffee-tools-page .ct-detail-section__body p,
.coffee-tools-page .ct-pro-card p {
    margin: 28px 0 0;
    color: rgba(63, 0, 17, 0.82);
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.13em;
}

.coffee-tools-page .ct-point-list,
.coffee-tools-page .ct-feature-list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.coffee-tools-page .ct-point-list li,
.coffee-tools-page .ct-feature-list li {
    position: relative;
    padding: 0 0 0 22px;
    color: #3f0011;
    font-family: futura-pt, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 550;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-point-list li + li,
.coffee-tools-page .ct-feature-list li + li {
    margin-top: 10px;
}

.coffee-tools-page .ct-point-list li::before,
.coffee-tools-page .ct-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b8843d;
}

.coffee-tools-page .ct-difference-image,
.coffee-tools-page .ct-step-shot {
    margin: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.coffee-tools-page .ct-difference-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 360px;
    object-fit: cover;
    border-radius: 6px;
}

.coffee-tools-page .ct-step-list {
    list-style: none;
    margin: 56px 0 0;
    padding: 0;
}

.coffee-tools-page .ct-step-list li {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(220px, 280px);
    gap: 48px;
    align-items: start;
    padding: 0;
    border-top: 0;
}

.coffee-tools-page .ct-step-list li + li {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid rgba(63, 0, 17, 0.12);
}

.coffee-tools-page .ct-step-list__text {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    align-items: baseline;
}

.coffee-tools-page .ct-step-list span {
    display: inline-block;
    margin: 0;
    color: #b8843d;
    font-family: futura-pt, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-step-list h3 {
    margin: 0;
    color: #3f0011;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-step-list p {
    grid-column: 2;
    margin: 12px 0 0;
    color: rgba(63, 0, 17, 0.82);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.1em;
}

.coffee-tools-page .ct-step-shot img {
    display: block;
    width: auto;
    max-width: 280px;
    max-height: 360px;
    margin: 0 auto;
    object-fit: contain;
}

.coffee-tools-page .ct-final {
    padding-bottom: 96px;
}

.coffee-tools-page .ct-final__grid {
    align-items: start;
}

.coffee-tools-page .ct-pro-note {
    max-width: 760px;
    margin: 36px 0 0;
    padding: 24px 28px;
    border: 1px solid rgba(63, 0, 17, 0.14);
    border-radius: 6px;
    color: rgba(63, 0, 17, 0.72);
    font-family: futura-pt, "Helvetica Neue", Arial, sans-serif;
}

.coffee-tools-page .ct-pro-note h3 {
    margin: 0;
    color: #3f0011;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-pro-note p {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-bottom-cta {
    margin-top: 72px;
    text-align: center;
}

.coffee-tools-page .ct-bottom-cta h2 {
    margin: 0;
    color: #3f0011;
    font-size: 26px;
    line-height: 1.45;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-bottom-cta p {
    max-width: 640px;
    margin: 18px auto 24px;
    color: rgba(63, 0, 17, 0.82);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-app__visual-link {
    display: block;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.coffee-tools-page .ct-cta-back {
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: rgba(63, 0, 17, 0.72);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.coffee-tools-page .ct-detail-back {
    margin-top: 56px;
    text-align: center;
}

.coffee-tools-page .ct-policy-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
}

.coffee-tools-page .ct-policy-links a {
    color: rgba(63, 0, 17, 0.68);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.coffee-tools-page .ct-store-badge {
    display: inline-block;
    text-decoration: none;
}

.coffee-tools-page .ct-store-badge img {
    display: block;
    width: 164px;
    height: auto;
}

.coffee-tools-page .ct-related {
    margin-top: 76px;
    padding-top: 0;
    border-top: 0;
}

.coffee-tools-page .ct-related__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.coffee-tools-page .ct-related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 14px 0;
    color: #3f0011;
    background: transparent;
    line-height: 1.5;
    text-decoration: none;
    font-family: futura-pt, "Helvetica Neue", Arial, sans-serif;
}

.coffee-tools-page .ct-related-card:hover {
    opacity: 0.72;
}

.coffee-tools-page .ct-related-card img {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 8px;
}

.coffee-tools-page .ct-related-card__text {
    display: grid;
    gap: 2px;
}

.coffee-tools-page .ct-related-card strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.05em;
}

.coffee-tools-page .ct-related-card small {
    color: rgba(63, 0, 17, 0.68);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.05em;
}

.coffee-tools-page .ct-breadcrumb {
    margin-top: 0;
    padding: 0;
    background: #fef8ea;
}

.coffee-tools-page .ct-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(63, 0, 17, 0.55);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.coffee-tools-page .ct-breadcrumb a {
    color: rgba(63, 0, 17, 0.62);
    text-decoration: none;
}

.coffee-tools-page .ct-breadcrumb a::after {
    content: "/";
    margin-left: 12px;
    color: rgba(63, 0, 17, 0.34);
}

.coffee-tools-page footer {
    margin-top: 0;
}

.coffee-tools-page footer .fade {
    opacity: 1;
}

.coffee-tools-page footer .fuukeiArea {
    flex-direction: column;
    background: linear-gradient(180deg, #fef8ea 0%, #f8eedf 52%, #ebdfd4 100%);
}

.coffee-tools-page .ct-footer-lead {
    margin-top: 0;
    color: #3f0011;
    text-align: center;
}

.coffee-tools-page .ct-footer-lead h2 {
    margin: 54px 0 0;
    color: #3f0011;
    font-family: "dnp-shuei-nmincho-std", "source-han-serif-jp-subset", "Times New Roman", "游明朝", "Yu Mincho", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.2em;
}

.coffee-tools-page .ct-footer-lead p {
    margin: 0;
    color: #3f0011;
    font-size: 15px;
    line-height: 2.1;
    letter-spacing: 0.13em;
}

.coffee-tools-page.ct-festival-page {
    background: #fef8ea;
}

.coffee-tools-page.ct-festival-page #contents {
    padding-top: 70px;
}

.coffee-tools-page .ct-fes-hero {
    padding: 36px 0 30px;
    background: linear-gradient(180deg, #fef8ea 0%, #f8eedf 100%);
}

.coffee-tools-page .ct-fes-hero__inner {
    max-width: 900px;
    text-align: center;
}

.coffee-tools-page .ct-fes-hero .ct-kicker {
    margin-bottom: 16px;
    color: rgba(63, 0, 17, 0.62);
    animation: none;
}

.coffee-tools-page .ct-fes-hero h1 {
    margin: 0;
    color: #3f0011;
    font-family: "dnp-shuei-nmincho-std", "source-han-serif-jp-subset", "Times New Roman", "游明朝", "Yu Mincho", serif;
    font-size: clamp(32px, 6.6vw, 56px);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: 0.06em;
}

.coffee-tools-page .ct-fes-hero__lead {
    max-width: 720px;
    margin: 26px auto 0;
    color: rgba(63, 0, 17, 0.82);
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.1em;
}

.coffee-tools-page .ct-offer-code {
    width: fit-content;
    max-width: 100%;
    margin: 30px auto 0;
    padding: 14px 22px;
    border: 1px solid rgba(63, 0, 17, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.42);
}

.coffee-tools-page .ct-offer-code span,
.coffee-tools-page .ct-offer-code strong {
    display: block;
    font-family: futura-pt, "Helvetica Neue", Arial, sans-serif;
}

.coffee-tools-page .ct-offer-code span {
    color: rgba(63, 0, 17, 0.58);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.coffee-tools-page .ct-offer-code strong {
    margin-top: 4px;
    color: #3f0011;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.05em;
}

.coffee-tools-page .ct-fes-apps {
    padding: 56px 0 38px;
}

.coffee-tools-page .ct-fes-apps h2 {
    margin: 0;
    color: #3f0011;
    font-family: "dnp-shuei-nmincho-std", "source-han-serif-jp-subset", "Times New Roman", "游明朝", "Yu Mincho", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-align: center;
}

.coffee-tools-page .ct-fes-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.coffee-tools-page .ct-fes-card {
    display: grid;
    grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(63, 0, 17, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.36);
}

.coffee-tools-page .ct-fes-card__image {
    display: block;
    width: 100%;
    max-height: 190px;
    object-fit: contain;
}

.coffee-tools-page .ct-fes-card__body {
    min-width: 0;
}

.coffee-tools-page .ct-fes-badge {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fff;
    background: #9b6a2f;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.06em;
}

.coffee-tools-page .ct-fes-card h3 {
    margin: 13px 0 0;
    color: #3f0011;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.06em;
}

.coffee-tools-page .ct-fes-card p {
    margin: 8px 0 0;
    color: rgba(63, 0, 17, 0.76);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 0.06em;
}

.coffee-tools-page .ct-fes-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fef8ea;
    background: #3f0011;
    font-family: futura-pt, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
}

.coffee-tools-page .ct-fes-button:hover {
    color: #fef8ea;
    opacity: 0.84;
}

.coffee-tools-page .ct-fes-note {
    padding: 22px 0 90px;
}

.coffee-tools-page .ct-fes-note p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(63, 0, 17, 0.62);
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.06em;
    text-align: center;
}

@media (max-width: 1024px) {
    .coffee-tools-page .ct-hero {
        --ct-hero-bg-image: url(../img/coffeetools/coffee-tools-fv-tablet.png);
        background-position: center center;
    }

    .coffee-tools-page .ct-hero h1 {
        font-size: 54px;
        line-height: 1.35;
    }

    .coffee-tools-page .ct-app {
        max-width: 900px;
    }

    .coffee-tools-page .ct-app__content {
        gap: 48px;
    }

    .coffee-tools-page .ct-fes-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .coffee-tools-page.ct-festival-page #contents {
        padding-top: 54px;
    }

    .coffee-tools-page .ct-fes-hero {
        padding: 20px 0 24px;
    }

    .coffee-tools-page .ct-fes-hero__inner,
    .coffee-tools-page .ct-fes-apps .container,
    .coffee-tools-page .ct-fes-note .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .coffee-tools-page .ct-fes-hero .ct-kicker {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .coffee-tools-page .ct-fes-hero h1 {
        font-size: clamp(31px, 9.5vw, 42px);
        line-height: 1.25;
        letter-spacing: 0.03em;
    }

    .coffee-tools-page .ct-fes-hero__lead {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.85;
        letter-spacing: 0.06em;
    }

    .coffee-tools-page .ct-fes-hero__lead br {
        display: none;
    }

    .coffee-tools-page .ct-offer-code {
        width: 100%;
        margin-top: 24px;
        padding: 13px 16px;
    }

    .coffee-tools-page .ct-offer-code strong {
        font-size: 15px;
    }

    .coffee-tools-page .ct-fes-apps {
        padding: 40px 0 24px;
    }

    .coffee-tools-page .ct-fes-apps h2 {
        font-size: 24px;
    }

    .coffee-tools-page .ct-fes-app-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }

    .coffee-tools-page .ct-fes-card {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 14px;
        min-height: 178px;
        padding: 16px;
    }

    .coffee-tools-page .ct-fes-card__image {
        max-height: 146px;
    }

    .coffee-tools-page .ct-fes-badge {
        padding: 5px 8px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .coffee-tools-page .ct-fes-card h3 {
        margin-top: 10px;
        font-size: 17px;
        letter-spacing: 0.04em;
    }

    .coffee-tools-page .ct-fes-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .coffee-tools-page .ct-fes-button {
        min-height: 44px;
        margin-top: 14px;
        padding: 8px 14px;
        font-size: 15px;
    }

    .coffee-tools-page .ct-fes-note {
        padding: 20px 0 64px;
    }

    .coffee-tools-page .ct-fes-note p {
        text-align: left;
    }

    .coffee-tools-page .ct-hero {
        min-height: 100svh;
        --ct-hero-bg-image: url(../img/coffeetools/coffee-tools-fv-sp.png);
        background-position: center top;
    }

    .coffee-tools-page .ct-hero__inner {
        padding: 106px 20px 88px;
    }

    .coffee-tools-page .ct-kicker {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .coffee-tools-page .ct-hero h1 {
        max-width: 100%;
        font-size: clamp(25px, 7.8vw, 45px);
        line-height: 1.35;
        letter-spacing: 0.04em;
    }

    .coffee-tools-page .ct-hero__lead {
        margin-top: 34px;
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0.09em;
    }

    .coffee-tools-page .ct-hero__lead br:nth-of-type(n+2) {
        display: none;
    }

    .coffee-tools-page .ct-section {
        margin-top: 76px;
    }

    .coffee-tools-page .ct-intro {
        background: #fef8ea;
        padding: 8px 0 38px;
    }

    .coffee-tools-page .ct-section h2 {
        font-size: 26px;
        line-height: 1.35;
    }

    .coffee-tools-page .ct-text {
        margin-top: 34px;
    }

    .coffee-tools-page .ct-text p,
    .coffee-tools-page .ct-app__body p {
        font-size: 15px;
        line-height: 1.9;
        letter-spacing: 0.08em;
    }

    .coffee-tools-page .ct-intro__layout {
        display: flex;
        flex-direction: column;
        gap: 38px;
    }

    .coffee-tools-page .ct-intro__visual {
        width: 100%;
        min-height: auto;
    }

    .coffee-tools-page .ct-intro__visual img {
        min-height: 0;
    }

    .coffee-tools-page .ct-apps {
        margin-top: 0;
        padding-top: 100px;
    }

    .coffee-tools-page .ct-apps .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .coffee-tools-page .ct-app {
        max-width: none;
        padding: 0 0 60px;
        border-top: 0;
        border-bottom: 1px solid rgba(63, 0, 17, 0.16);
    }

    .coffee-tools-page .ct-app + .ct-app {
        margin-top: 60px;
    }

    .coffee-tools-page .ct-app__header {
        display: flex;
        order: 1;
        margin: 0 0 28px;
    }

    .coffee-tools-page .ct-app__title {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .coffee-tools-page .ct-app__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0;
        border-radius: 14px;
    }

    .coffee-tools-page .ct-app__header h2 {
        font-size: 27px;
        line-height: 1.2;
    }

    .coffee-tools-page .ct-app__subtitle {
        font-size: 14px;
    }

    .coffee-tools-page .ct-app__content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
    }

    .coffee-tools-page .ct-app__body {
        display: contents;
    }

    .coffee-tools-page .ct-app__visual {
        order: 2;
        width: 100%;
        min-height: 430px;
        margin: 0 0 17px;
        justify-items: center;
    }

    .coffee-tools-page .ct-app:nth-child(odd) .ct-app__visual,
    .coffee-tools-page .ct-app:nth-child(even) .ct-app__visual {
        justify-items: center;
    }

    .coffee-tools-page .ct-phone-frame {
        width: min(82%, 300px);
        min-width: 240px;
        transform: none;
    }

    .coffee-tools-page .ct-app:nth-child(odd) .ct-phone-frame,
    .coffee-tools-page .ct-app:nth-child(even) .ct-phone-frame {
        transform: none;
    }

    .coffee-tools-page .ct-app__thumbs {
        right: max(50px, calc(50% - 104px));
        left: auto;
        bottom: 4%;
    }

    .coffee-tools-page .ct-app:nth-child(even) .ct-app__thumbs {
        right: auto;
        left: max(50px, calc(50% - 104px));
    }

    .coffee-tools-page .ct-app__thumbs img {
        width: 97px;
        height: 97px;
    }

    .coffee-tools-page .ct-app__text {
        order: 3;
    }

    .coffee-tools-page .ct-app__store {
        order: 4;
        margin-top: 30px;
        gap: 18px;
    }

    .coffee-tools-page .ct-app__store img {
        width: 142px;
    }

    .coffee-tools-page .ct-app__detail-link {
        font-size: 14px;
    }

    .coffee-tools-page .ct-detail-hero {
        padding: 36px 0 36px;
        border-bottom: 0;
    }

    .coffee-tools-page .ct-breadcrumb {
        margin-top: 24px;
        padding-top: 0;
    }

    .coffee-tools-page .ct-detail-hero__inner,
    .coffee-tools-page .ct-detail-section .container,
    .coffee-tools-page .ct-breadcrumb .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .coffee-tools-page .ct-detail-hero__inner,
    .coffee-tools-page .ct-detail-grid,
    .coffee-tools-page .ct-detail-grid--reverse,
    .coffee-tools-page .ct-final__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .coffee-tools-page .ct-detail-hero__body {
        display: contents;
    }

    .coffee-tools-page .ct-detail-hero h1 {
        order: 2;
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.35;
    }

    .coffee-tools-page .ct-detail-copy {
        order: 3;
        margin-top: -18px;
        font-size: 20px;
        line-height: 1.55;
    }

    .coffee-tools-page .ct-detail-lead {
        order: 4;
        margin-top: -16px;
        font-size: 15px;
        line-height: 1.9;
        letter-spacing: 0.08em;
    }

    .coffee-tools-page .ct-detail-hero__visual {
        order: 1;
    }

    .coffee-tools-page .ct-detail-hero .ct-phone-frame img {
        width: min(100%, 330px);
        max-height: 430px;
    }

    .coffee-tools-page .ct-detail-hero .ct-app__thumbs {
        right: max(22px, calc(50% - 156px));
        left: auto;
        bottom: 0;
    }

    .coffee-tools-page .ct-detail-hero .ct-app__thumbs img {
        width: 136px;
        height: 136px;
    }

    .coffee-tools-page .ct-detail-hero .ct-app__store {
        display: none;
    }

    .coffee-tools-page .ct-detail-section {
        padding: 0;
    }

    .coffee-tools-page .ct-detail-section + .ct-detail-section {
        margin-top: 64px;
        padding-top: 64px;
    }

    .coffee-tools-page .ct-difference {
        margin-top: 64px;
    }

    .coffee-tools-page .ct-detail-section h2 {
        font-size: 28px;
    }

    .coffee-tools-page .ct-point-list li,
    .coffee-tools-page .ct-feature-list li,
    .coffee-tools-page .ct-step-list p {
        font-size: 15px;
    }

    .coffee-tools-page .ct-step-list li {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0;
    }

    .coffee-tools-page .ct-step-list li + li {
        margin-top: 48px;
        padding-top: 48px;
    }

    .coffee-tools-page .ct-step-list__text {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 10px;
        align-items: baseline;
    }

    .coffee-tools-page .ct-step-shot img {
        width: auto;
        max-width: 72vw;
        max-height: 420px;
        margin: 0 auto;
    }

    .coffee-tools-page .ct-store-badge {
        display: inline-block;
    }

    .coffee-tools-page .ct-store-badge span {
        display: block;
        margin-top: 9px;
    }

    .coffee-tools-page .ct-related {
        margin-top: 64px;
        padding-top: 0;
    }

    .coffee-tools-page .ct-related__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .coffee-tools-page .ct-related-card {
        border: 0;
    }

    .coffee-tools-page .ct-detail-back {
        margin-top: 64px;
    }

    .coffee-tools-page .ct-app:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .coffee-tools-page footer .fuukeiArea {
        min-height: 0;
    }

    .coffee-tools-page .ct-footer-lead {
        margin-top: 0;
    }

    .coffee-tools-page .ct-footer-lead h2 {
        margin-top: 38px;
        font-size: 20px;
        line-height: 1.75;
    }

    .coffee-tools-page .ct-footer-lead p {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0.08em;
    }

}

@media (prefers-reduced-motion: reduce) {
    .coffee-tools-page .ct-kicker,
    .coffee-tools-page .ct-hero h1,
    .coffee-tools-page .ct-hero__lead {
        animation: none;
    }

    .coffee-tools-page.ct-motion-ready .ct-intro__visual,
    .coffee-tools-page.ct-motion-ready .ct-intro__visual.is-visible {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}
