@charset "UTF-8";
/*-----------
Root
-------------*/
:root {
  --color-yellow: #FBC240;
  --color-dark-gray: #25201B;
  --color-gray: #373737;
  --color-light-beige: #F9F6F0;
  --color-black: #333333;
  --logo-size-large: 120px;
  --logo-size-small: 60px;
  --large: 6rem;
  --medium: 4rem;
  --small: 2rem;
  --section-padding: 8rem 0;
  --transition: all 0.3s ease; }

@media screen and (max-width: 1024px) {
  :root {
    --large: 3.5rem;
    --medium: 3rem;
    --small: 1.5rem; } }
@media screen and (max-width: 640px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: 1rem;
    --section-padding: 4rem 0; } }
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/*-----------
Main Video
-------------*/
.mv {
  width: 100%;
  height: calc(100vh - 12rem);
  min-height: 680px;
  position: relative;
  overflow: hidden; }
  @media (max-width: 640px) {
    .mv {
      min-height: auto;
      height: 109vw; } }
  .mv .dim {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 100;
    width: 100%;
    padding-bottom: calc(100vh - 12rem);
    overflow: hidden; }
    @media (max-width: 640px) {
      .mv .dim {
        padding-bottom: 109vw; } }
  .mv .ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 300; }
    @media (max-width: 640px) {
      .mv .ttl {
        top: 56%; } }
    .mv .ttl h1 {
      margin: 0 0 1rem;
      line-height: 1.8;
      filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6)); }
    .mv .ttl p.eng {
      font-size: clamp(18px, calc( 14px + 1vw ), 36px);
      color: #FFF;
      filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6)); }
    .mv .ttl p.subhead {
      font-size: clamp(18px, calc( 12px + 1.5vw ), 48px);
      line-height: 1.6;
      filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
      margin: 3rem 0 6rem; }
      @media (max-width: 640px) {
        .mv .ttl p.subhead {
          margin: 2rem 0 4rem; } }
    .mv .ttl p.small {
      font-size: clamp(16px, calc( 13px + 0.75vw ), 28px);
      filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6)); }
  .mv video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1; }
    @media (max-width: 640px) {
      .mv video {
        height: 110vw; } }
  .mv .mute-button {
    position: absolute;
    bottom: 4%;
    right: 2%;
    z-index: 300;
    background-color: transparent;
    border: none;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
    cursor: pointer;
    transition: transform 0.3s ease-in; }
    .mv .mute-button img {
      display: block;
      width: 24px;
      height: 24px; }
    .mv .mute-button:hover {
      transform: scale(1.1); }

/*-----------
lead-copy
-------------*/
.lead-copy {
  width: 100%;
  position: relative;
  background: var(--color-yellow);
  padding: var(--large) 0;
  overflow: hidden;
  z-index: -2; }
  .lead-copy .botanical-pattern::before {
    background-position: 50% 22%;
    opacity: 0.6; }
  .lead-copy__txt {
    width: 95%;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--small); }
    .lead-copy__txt h2 {
      line-height: 1.8;
      color: var(--color-black);
      font-family: "Noto Serif JP", serif;
      font-weight: 700;
      font-size: clamp(20px, calc( 14px + 1.5vw ), 48px);
      font-style: normal; }
      @media (max-width: 1024px) {
        .lead-copy__txt h2 {
          font-size: clamp(21px, calc( -4px + 4vw ), 36px); } }

/*-----------
Introduction
-------------*/
.intro {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--small); }
  .intro__txt {
    text-align: center; }
    .intro__txt h2 {
      font-size: clamp(21px, calc( 18px + 1vw ), 36px); }
    .intro__txt p {
      text-align: center;
      margin: var(--large) auto var(--medium); }
      .intro__txt p span {
        font-weight: 600; }
      @media (max-width: 1024px) {
        .intro__txt p.para {
          width: 92%; } }
      @media (max-width: 640px) {
        .intro__txt p.para {
          width: 100%; } }
    .intro__txt .points {
      width: 100%;
      max-width: 1080px;
      margin: auto;
      justify-content: center;
      gap: 24px;
      align-items: stretch; }
      @media (max-width: 1200px) {
        .intro__txt .points {
          width: 80%;
          gap: 20px; } }
      @media (max-width: 1024px) {
        .intro__txt .points {
          width: 60%;
          gap: 16px; } }
      @media (max-width: 640px) {
        .intro__txt .points {
          width: 80%;
          gap: 6px; } }
      .intro__txt .points__box {
        width: calc((100% - 72px) / 4);
        max-width: 210px;
        background: var(--color-light-beige);
        border-radius: 1rem;
        padding: 1.5rem;
        text-align: center; }
        .intro__txt .points__box.fadeUp:nth-child(2) {
          animation-delay: .2s; }
        .intro__txt .points__box.fadeUp:nth-child(3) {
          animation-delay: .4s; }
        .intro__txt .points__box.fadeUp:nth-child(4) {
          animation-delay: .6s; }
        @media (max-width: 1200px) {
          .intro__txt .points__box {
            width: calc((100% - 60px) / 4);
            max-width: 170px;
            padding: 0; } }
        @media (max-width: 1024px) {
          .intro__txt .points__box {
            width: calc((100% - 16px) / 2);
            max-width: 180px;
            padding: 0; } }
        @media (max-width: 640px) {
          .intro__txt .points__box {
            width: calc((100% - 6px) / 2);
            max-width: 160px;
            padding: 0; } }
        .intro__txt .points__box img {
          width: 100%;
          max-width: 120px;
          margin: auto; }
          @media (max-width: 1200px) {
            .intro__txt .points__box img {
              max-width: 80px;
              margin-top: 1rem; } }
        .intro__txt .points__box p {
          color: var(--color-black);
          margin: 1rem; }
          @media (max-width: 1200px) {
            .intro__txt .points__box p {
              margin: 0 .5rem 1rem; } }
          @media (max-width: 640px) {
            .intro__txt .points__box p {
              font-size: clamp(10px, calc( 6px + 1vw ), 14px); } }
  .intro .deco-beans {
    width: 30%;
    max-width: 800px;
    position: absolute;
    object-fit: contain;
    left: 0;
    bottom: 5%;
    filter: drop-shadow(-5px 4px 8px rgba(0, 0, 0, 0.3)); }
    @media (max-width: 1024px) {
      .intro .deco-beans {
        bottom: 38%; } }
    @media (max-width: 640px) {
      .intro .deco-beans {
        bottom: 50%; } }
  .intro .deco-plants {
    width: 30%;
    max-width: 800px;
    position: absolute;
    object-fit: contain;
    right: -1%;
    top: 8%;
    filter: drop-shadow(-24px 20px 50px rgba(0, 0, 0, 0.3)); }
    @media (max-width: 1024px) {
      .intro .deco-plants {
        top: 15%; } }
    @media (max-width: 640px) {
      .intro .deco-plants {
        top: 21%; } }

.padtop {
  padding-top: var(--large); }

/*-----------
Swiper
-------------*/
.swiper-wrapper {
  transition-timing-function: linear !important;
  width: 100%;
  height: 100%;
  display: flex; }

.swiper-slide {
  flex: 0 0 auto;
  width: auto;
  height: 100%; }
  .swiper-slide img {
    width: auto;
    height: 100%;
    object-fit: cover; }

.swiper-loop-wrapper {
  overflow: hidden;
  width: 100%;
  height: 480px; }
  @media (max-width: 640px) {
    .swiper-loop-wrapper {
      max-height: 240px; } }

.swiper-loop {
  width: 100%;
  height: 100%; }

/*-----------
こだわり Commitment
-------------*/
.kodawari {
  position: relative;
  margin-top: var(--small); }
  .kodawari.botanical-pattern::before {
    background-position: 50% 25%; }
  .kodawari__ttl {
    padding: calc( var(--large) + 40px ) 0 var(--medium);
    position: relative;
    z-index: 1; }

.kodawari-box {
  max-width: 1280px;
  overflow-x: visible; }
  .kodawari-box li.flexbox {
    align-items: stretch;
    border-radius: 1rem;
    overflow: visible;
    margin-bottom: 6rem; }
    @media (max-width: 640px) {
      .kodawari-box li.flexbox {
        flex-direction: column;
        margin-bottom: 4rem; }
        .kodawari-box li.flexbox:last-child {
          margin-bottom: 2rem; } }
    .kodawari-box li.flexbox .kodawari-initial {
      width: 20px;
      border-radius: 1rem 0 0 1rem; }
      @media (max-width: 640px) {
        .kodawari-box li.flexbox .kodawari-initial {
          width: auto;
          height: 10px;
          border-radius: 1rem 1rem 0 0; } }
    .kodawari-box li.flexbox .kodawari-image {
      width: 30%; }
      .kodawari-box li.flexbox .kodawari-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
        @media (max-width: 640px) {
          .kodawari-box li.flexbox .kodawari-image img {
            object-position: bottom; } }
      @media (max-width: 640px) {
        .kodawari-box li.flexbox .kodawari-image {
          width: 100%;
          height: 260px; } }
    .kodawari-box li.flexbox .kodawari-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      border-radius: 1rem; }
      .kodawari-box li.flexbox .kodawari-content__ttl {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 0 1rem 0 0; }
        @media (max-width: 640px) {
          .kodawari-box li.flexbox .kodawari-content__ttl {
            border-radius: 0; } }
        .kodawari-box li.flexbox .kodawari-content__ttl h3 {
          color: var(--color-black);
          margin: 0;
          padding: 4rem 0 3.5rem 6rem;
          font-size: clamp(21px, calc( 18px + 1vw ), 36px);
          text-align: left; }
          @media (max-width: 1024px) {
            .kodawari-box li.flexbox .kodawari-content__ttl h3 {
              padding: 1rem 0 0.5rem 2rem; } }
          @media (max-width: 640px) {
            .kodawari-box li.flexbox .kodawari-content__ttl h3 {
              padding: 2rem 0 1rem 2rem; } }
        .kodawari-box li.flexbox .kodawari-content__ttl .icon {
          width: 120px;
          height: auto;
          margin: 0 1rem; }
          @media (max-width: 1024px) {
            .kodawari-box li.flexbox .kodawari-content__ttl .icon {
              width: 80px; } }
          @media (max-width: 640px) {
            .kodawari-box li.flexbox .kodawari-content__ttl .icon {
              margin: 0 0.5rem;
              width: 60px; } }
      .kodawari-box li.flexbox .kodawari-content__txt {
        margin: auto 6rem;
        padding: 2rem 0;
        border-radius: 0 0 1rem 0; }
        @media (max-width: 1024px) {
          .kodawari-box li.flexbox .kodawari-content__txt {
            margin: auto 2rem; } }
        @media (max-width: 640px) {
          .kodawari-box li.flexbox .kodawari-content__txt {
            padding: 3rem 0;
            border-radius: 0 0 1rem 1rem; } }
        .kodawari-box li.flexbox .kodawari-content__txt a {
          margin-top: var(--medium); }
          @media (max-width: 1200px) {
            .kodawari-box li.flexbox .kodawari-content__txt a {
              margin-top: 1.5rem; } }
          @media (max-width: 640px) {
            .kodawari-box li.flexbox .kodawari-content__txt a {
              width: 80%;
              margin: 1.5rem auto 0;
              display: block; } }

/*-----------
ブランドストーリー Brand Story
-------------*/
.brandstory {
  position: relative;
  margin-top: var(--small); }
  .brandstory.botanical-pattern::before {
    background-position: 50% 68%; }
  .brandstory .brand-logo {
    width: 10%;
    min-width: 100px; }
  .brandstory__ttl {
    padding: calc( var(--large) + var(--large) ) 0 var(--large);
    position: relative;
    z-index: 1; }
    .brandstory__ttl p {
      font-size: clamp(24px, calc( 22px + 0.5vw ), 32px);
      font-weight: 400;
      margin-top: var(--large); }
    .brandstory__ttl h2 {
      font-size: clamp(30px, calc( 26px + 1vw ), 48px);
      font-weight: 500; }
      @media (max-width: 640px) {
        .brandstory__ttl h2 {
          width: 90%;
          margin: 2rem auto 0; } }

.brandstory_intro {
  width: 100%;
  display: flex;
  background: var(--color-yellow);
  position: relative;
  align-items: stretch; }
  @media (max-width: 1200px) {
    .brandstory_intro {
      flex-wrap: wrap-reverse; } }
  .brandstory_intro .intro__image.left, .brandstory_intro .intro__image.right {
    width: 25%;
    display: flex;
    aspect-ratio: 1 / 1; }
    .brandstory_intro .intro__image.left img, .brandstory_intro .intro__image.right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
    @media (max-width: 1200px) {
      .brandstory_intro .intro__image.left, .brandstory_intro .intro__image.right {
        width: 50%;
        aspect-ratio: 1 / 1; } }
  @media (max-width: 1200px) {
    .brandstory_intro .intro__image .left {
      margin-right: auto; } }
  @media (max-width: 1200px) {
    .brandstory_intro .intro__image .right {
      margin-left: auto; } }
  .brandstory_intro .intro__txt {
    width: 50%;
    margin: auto;
    padding: 2rem;
    box-sizing: border-box; }
    .brandstory_intro .intro__txt p {
      color: var(--color-black);
      margin: 0; }
      .brandstory_intro .intro__txt p.eng-section-title {
        color: #764126;
        margin: 0; }
      .brandstory_intro .intro__txt p.p-reset {
        padding-top: var(--small);
        line-height: 1.5; }
        @media (max-width: 640px) {
          .brandstory_intro .intro__txt p.p-reset {
            text-align: left; } }
    .brandstory_intro .intro__txt h2 {
      color: var(--color-black); }
      @media (max-width: 1200px) {
        .brandstory_intro .intro__txt h2 {
          font-size: 32px;
          line-height: 2; } }
    @media (max-width: 1200px) {
      .brandstory_intro .intro__txt {
        width: 100%;
        padding: var(--large);
        order: -1; } }

.history-section {
  width: 100%;
  position: relative;
  overflow: hidden; }

.drip-svg {
  position: relative;
  width: 50%;
  margin: -1px auto 0;
  z-index: 10;
  line-height: 0;
  overflow: hidden; }
  .drip-svg img {
    display: block;
    width: 100%;
    height: auto; }
  @media (max-width: 640px) {
    .drip-svg .pc-only {
      display: none; } }
  .drip-svg .sp-only {
    display: none; }
    @media (max-width: 640px) {
      .drip-svg .sp-only {
        display: block; } }
  @media (max-width: 640px) {
    .drip-svg {
      width: 420px;
      overflow: hidden;
      margin: -1px 0; } }
  @media (max-width: 420px) {
    .drip-svg {
      margin: -1px 0 0 -8px; } }

.history {
  position: relative; }
  .history .vertical-line {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.2%;
    background: var(--color-yellow);
    height: 0;
    z-index: 0;
    transition: height 0.5s ease-out; }
    @media (max-width: 640px) {
      .history .vertical-line {
        width: 18px;
        left: 46px;
        transform: none; } }
    @media (max-width: 420px) {
      .history .vertical-line {
        top: -4px;
        left: 38px; } }
  .history .timeline {
    width: 100%;
    max-width: 1600px;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 auto var(--large);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease; }
    @media (max-width: 640px) {
      .history .timeline {
        flex-direction: column !important;
        align-items: flex-end; } }
    .history .timeline.visible {
      opacity: 1;
      transform: translateY(0); }
    .history .timeline .timeline__image {
      width: 40%;
      overflow: hidden;
      margin-left: auto;
      margin-right: var(--small); }
      @media (max-width: 1200px) {
        .history .timeline .timeline__image {
          width: 50%; } }
      @media (max-width: 640px) {
        .history .timeline .timeline__image {
          margin-right: 0;
          width: 80%; } }
      @media (max-width: 420px) {
        .history .timeline .timeline__image {
          width: 75%; } }
      .history .timeline .timeline__image img {
        width: 90%;
        height: auto;
        display: block;
        transition: transform 0.5s ease; }
        @media (max-width: 1200px) {
          .history .timeline .timeline__image img {
            height: 100%;
            object-fit: cover;
            object-position: center; } }
        @media (max-width: 640px) {
          .history .timeline .timeline__image img {
            width: 100%; } }
        .history .timeline .timeline__image img:hover {
          transform: scale(1.03); }
    .history .timeline .timeline__txt {
      width: 45%;
      box-sizing: border-box;
      margin-left: 5%;
      padding: var(--medium) var(--large);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      @media (max-width: 1024px) {
        .history .timeline .timeline__txt p {
          font-size: 14px; } }
      @media (max-width: 640px) {
        .history .timeline .timeline__txt {
          width: 80%;
          padding: var(--medium) var(--large) var(--large); } }
      @media (max-width: 420px) {
        .history .timeline .timeline__txt {
          width: 75%; } }
      .history .timeline .timeline__txt h3 {
        display: flex;
        /* Flexboxを有効化 */
        justify-content: center;
        /* 水平中央揃え */
        align-items: center;
        line-height: 1;
        font-size: 60px;
        text-align: center;
        color: var(--color-yellow);
        margin-bottom: var(--medium);
        gap: 8px; }
        @media (max-width: 1024px) {
          .history .timeline .timeline__txt h3 {
            font-size: 30px; } }
        @media (max-width: 420px) {
          .history .timeline .timeline__txt h3 {
            font-size: 26px;
            gap: 4px; } }
        .history .timeline .timeline__txt h3::before, .history .timeline .timeline__txt h3::after {
          content: '';
          display: block;
          width: 60px;
          height: 60px;
          background: url("../images/main/icon_botanical.svg") no-repeat center center;
          background-size: contain;
          flex-shrink: 0; }
          @media (max-width: 1024px) {
            .history .timeline .timeline__txt h3::before, .history .timeline .timeline__txt h3::after {
              width: 30px;
              height: 30px; } }
          @media (max-width: 420px) {
            .history .timeline .timeline__txt h3::before, .history .timeline .timeline__txt h3::after {
              width: 26px;
              height: 26px; } }
        .history .timeline .timeline__txt h3::after {
          transform: scaleX(-1); }
      .history .timeline .timeline__txt h3.nowadays {
        font-size: 52px;
        font-family: "Noto Serif JP", serif;
        font-weight: 400;
        font-style: normal;
        line-height: 1; }
        @media (max-width: 1024px) {
          .history .timeline .timeline__txt h3.nowadays {
            font-size: 26px; } }
        @media (max-width: 420px) {
          .history .timeline .timeline__txt h3.nowadays {
            font-size: 22px; } }
    .history .timeline::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 82px;
      aspect-ratio: 82 / 94;
      height: auto;
      background: url("../images/main/icon_beans.svg");
      background-size: contain;
      z-index: 999; }
      @media (max-width: 1024px) {
        .history .timeline::before {
          width: 60px;
          aspect-ratio: 60 / 72; } }
      @media (max-width: 640px) {
        .history .timeline::before {
          top: 50%;
          left: 20px;
          transform: none;
          width: 15%;
          min-width: auto; } }
      @media (max-width: 420px) {
        .history .timeline::before {
          width: 17%;
          left: 14px; } }
      .history .timeline::before img {
        width: 100%; }
  .history .fz-cup {
    position: relative;
    width: 30%;
    max-width: 180px;
    margin: 10rem auto 0;
    z-index: 800; }
    @media (max-width: 640px) {
      .history .fz-cup {
        margin: 6rem 0 0 -3rem;
        width: 10%; } }

/*-----------
法人のお客様 Business Banner
-------------*/
.bnr_business {
  margin-top: var(--large);
  background: url("../images/main/bg_business.jpg");
  background-size: cover;
  background-position: left center; }
  @media (max-width: 640px) {
    .bnr_business {
      background-position: left 25% center; } }
  .bnr_business .business_txt {
    text-align: left;
    padding-bottom: var(--small);
    margin-left: 16%; }
    .bnr_business .business_txt h2 {
      font-weight: 400;
      text-align: left;
      line-height: 2.4;
      margin-bottom: var(--medium); }
      @media (max-width: 640px) {
        .bnr_business .business_txt h2 {
          font-size: min(5vw, 21px);
          text-align: center;
          line-height: 1.8; } }
    @media (max-width: 640px) {
      .bnr_business .business_txt {
        margin-left: 0;
        margin: auto;
        padding: 0 1rem 0 2rem;
        text-align: center; } }

/*-----------
おいしい淹れ方 Brew Guides
-------------*/
.brewguides {
  background: url("../images/main/bg_brew-guides.jpg");
  background-size: cover;
  background-position: right bottom; }
  @media (max-width: 640px) {
    .brewguides {
      padding: 0 0 var(--section-padding);
      background: #373737; } }
  .brewguides .guides {
    margin: 0 auto;
    text-align: center; }
  .brewguides .tab-menu {
    width: 100%;
    padding-top: 4rem; }
    @media (max-width: 640px) {
      .brewguides .tab-menu {
        flex-direction: column; } }
    .brewguides .tab-menu .brew-style {
      width: calc( 100% / 3 );
      touch-action: manipulation; }
      @media (max-width: 640px) {
        .brewguides .tab-menu .brew-style {
          width: 90%; } }
    .brewguides .tab-menu li.brew-style {
      position: relative;
      cursor: pointer;
      font-weight: 600;
      transition: color 0.3s ease;
      text-align: center;
      margin-bottom: 6rem;
      			/*&.fadeUp {
      					&:nth-child(2) {
      						animation-delay: .2s;
      					}
      
      					&:nth-child(3) {
      						animation-delay: .2s;
      					}
      
      					&:nth-child(4) {
      						animation-delay: .4s;
      					}
      					&:nth-child(4) {
      						animation-delay: .4s;
      					}
      					&:nth-child(4) {
      						animation-delay: .4s;
      					}
      			}*/ }
      @media (max-width: 640px) {
        .brewguides .tab-menu li.brew-style {
          margin-bottom: 5rem; } }
      .brewguides .tab-menu li.brew-style .tab-icon {
        position: absolute;
        top: -3rem;
        left: 50%;
        transform: translate(-50%);
        opacity: 0;
        tansition: opacity 0.3s ease; }
      .brewguides .tab-menu li.brew-style:hover, .brewguides .tab-menu li.brew-style.active {
        color: var(--color-yellow); }
        .brewguides .tab-menu li.brew-style:hover .tab-icon, .brewguides .tab-menu li.brew-style.active .tab-icon {
          opacity: 1; }

.tab-content-box .tab-content {
  display: none; }
  .tab-content-box .tab-content.active {
    display: block; }
  @media (max-width: 640px) {
    .tab-content-box .tab-content {
      margin: var(--section-padding) 0 0; } }
.tab-content-box .guides-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  @media (max-width: 640px) {
    .tab-content-box .guides-content {
      flex-direction: column-reverse; } }
  .tab-content-box .guides-content__txt {
    width: 50%;
    background: var(--color-dark-gray); }
    @media (max-width: 640px) {
      .tab-content-box .guides-content__txt {
        width: 100%; } }
    .tab-content-box .guides-content__txt .guides-item {
      margin: var(--medium);
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: calc(100% - (var(--medium) + var(--medium)));
      gap: 1.5rem;
      font-feature-settings: 'palt'; }
      .tab-content-box .guides-content__txt .guides-item .btn {
        margin: var(--small) 0 var(--small) var(--small);
        text-align: center;
        width: 60%;
        max-width: 240px; }
        @media (max-width: 640px) {
          .tab-content-box .guides-content__txt .guides-item .btn {
            margin: var(--small) auto;
            width: 100%;
            max-width: auto; } }
    .tab-content-box .guides-content__txt .items-content {
      justify-content: flex-start;
      align-items: center;
      gap: var(--small); }
      .tab-content-box .guides-content__txt .items-content img {
        width: 20%;
        max-width: 80px; }
        @media (max-width: 1024px) {
          .tab-content-box .guides-content__txt .items-content img {
            width: 15%;
            min-width: 40px; } }
      .tab-content-box .guides-content__txt .items-content span {
        color: var(--color-yellow);
        font-weight: 500; }
        .tab-content-box .guides-content__txt .items-content span span {
          font-size: 80%; }
  .tab-content-box .guides-content__image {
    width: 50%;
    background: #FFF;
    color: var(--color-black); }
    @media (max-width: 640px) {
      .tab-content-box .guides-content__image {
        width: 100%; } }
    .tab-content-box .guides-content__image .swiper-container {
      width: 100%;
      height: 100%; }
      @media (max-width: 640px) {
        .tab-content-box .guides-content__image .swiper-container {
          height: auto !important;
          min-height: unset; } }
      @media (max-width: 640px) {
        .tab-content-box .guides-content__image .swiper-container .swiper-wrapper {
          height: auto !important;
          align-items: stretch !important; } }
      @media (max-width: 640px) {
        .tab-content-box .guides-content__image .swiper-container .swiper-slide {
          display: block;
          height: auto !important;
          font-size: 14px; } }
      .tab-content-box .guides-content__image .swiper-container .swiper-slide__image {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%; }
        @media (max-width: 640px) {
          .tab-content-box .guides-content__image .swiper-container .swiper-slide__image {
            height: auto;
            min-height: 0;
            display: block; } }
        .tab-content-box .guides-content__image .swiper-container .swiper-slide__image img {
          width: 100%;
          object-fit: contain; }
          @media (max-width: 640px) {
            .tab-content-box .guides-content__image .swiper-container .swiper-slide__image img {
              max-height: 60vh; } }
      .tab-content-box .guides-content__image .swiper-container .swiper-slide__txt {
        text-align: left;
        padding: 0 var(--medium) calc(var(--small) + var(--medium)); }
        @media (max-width: 640px) {
          .tab-content-box .guides-content__image .swiper-container .swiper-slide__txt {
            padding: 0 var(--medium) var(--small);
            font-size: 14px; } }
        .tab-content-box .guides-content__image .swiper-container .swiper-slide__txt p {
          font-size: 14px !important;
          text-indent: -1em;
          padding-left: 1em; }
          @media (max-width: 640px) {
            .tab-content-box .guides-content__image .swiper-container .swiper-slide__txt p {
              font-size: 14px; } }
      .tab-content-box .guides-content__image .swiper-container .swiper-pagination-progressbar {
        background: #FFF; }
      .tab-content-box .guides-content__image .swiper-container .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--color-yellow); }
      .tab-content-box .guides-content__image .swiper-container .swiper-button-next, .tab-content-box .guides-content__image .swiper-container .swiper-button-prev {
        color: var(--color-yellow); }
        .tab-content-box .guides-content__image .swiper-container .swiper-button-next::after, .tab-content-box .guides-content__image .swiper-container .swiper-button-prev::after {
          font-size: 25px; }
        .tab-content-box .guides-content__image .swiper-container .swiper-button-next:hover, .tab-content-box .guides-content__image .swiper-container .swiper-button-prev:hover {
          color: var(--color-black); }
        .tab-content-box .guides-content__image .swiper-container .swiper-button-next.swiper-button-disabled, .tab-content-box .guides-content__image .swiper-container .swiper-button-prev.swiper-button-disabled {
          opacity: 0;
          pointer-events: none; }

@media (max-width: 640px) {
  .for-sp-box {
    padding: var(--section-padding) 0 0;
    background: url("../images/main/bg_brew-guides.jpg");
    background-size: cover;
    background-position: center; } }

/*-----------
動画 Videos
-------------*/
.videos_wrap {
  width: 90%;
  max-width: 1620px;
  margin: var(--large) auto 0; }
  .videos_wrap .videos {
    width: 32%; }
    @media (max-width: 1024px) {
      .videos_wrap .videos {
        width: calc(49% - .5rem); } }
    @media (max-width: 640px) {
      .videos_wrap .videos {
        width: 100%; } }
    .videos_wrap .videos p {
      margin: 1rem 0 2rem; }
    .videos_wrap .videos .youtube {
      width: 100%;
      position: relative;
      padding-top: 56.25%;
      height: 0; }
      .videos_wrap .videos .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0; }
  @media (max-width: 1024px) {
    .videos_wrap {
      gap: .5rem; } }

/*-----------
商品紹介 Products
-------------*/
#products {
  position: relative; }
  #products .products_ttl {
    position: relative;
    z-index: 1; }
  #products .deco-left1 {
    width: 20%;
    max-width: 400px;
    position: absolute;
    object-fit: contain;
    left: 0;
    top: 3%;
    filter: drop-shadow(-5px 4px 8px rgba(0, 0, 0, 0.3)); }
    @media (max-width: 640px) {
      #products .deco-left1 {
        width: 40%;
        overflow: hidden;
        top: 1%;
        left: -9%; } }
  #products .deco-left2 {
    width: 20%;
    max-width: 400px;
    position: absolute;
    object-fit: contain;
    left: 0;
    bottom: 0;
    filter: drop-shadow(-5px 4px 8px rgba(0, 0, 0, 0.3)); }
    @media (max-width: 640px) {
      #products .deco-left2 {
        width: 45%; } }
  #products .deco-right {
    width: 25%;
    max-width: 400px;
    position: absolute;
    object-fit: contain;
    right: 0;
    top: 15%;
    filter: drop-shadow(-24px 20px 50px rgba(0, 0, 0, 0.3)); }
    @media (max-width: 1024px) {
      #products .deco-right {
        top: 3%; } }
    @media (max-width: 640px) {
      #products .deco-right {
        display: none; } }

.products_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto; }
  @media (max-width: 1200px) {
    .products_wrapper {
      width: 100%;
      flex-wrap: nowrap;
      overflow-x: scroll;
      scrollbar-width: none;
      justify-content: flex-start;
      padding-left: 10%;
      padding-right: 5%; } }
  @media (max-width: 640px) {
    .products_wrapper {
      gap: 1.2rem; } }
  .products_wrapper li.products-item {
    width: calc(25% - 2rem);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    margin-bottom: 4rem; }
    .products_wrapper li.products-item:hover .item-image {
      transform: scale(1.05);
      transition: transform 0.4s ease; }
    @media (max-width: 1200px) {
      .products_wrapper li.products-item {
        min-width: 300px; } }
    @media (max-width: 640px) {
      .products_wrapper li.products-item {
        min-width: 220px; } }
    .products_wrapper li.products-item.fadeUp:nth-child(2) {
      animation-delay: .2s; }
    .products_wrapper li.products-item.fadeUp:nth-child(3) {
      animation-delay: .4s; }
    .products_wrapper li.products-item.fadeUp:nth-child(4) {
      animation-delay: .6s; }
    .products_wrapper li.products-item .item-initial {
      width: 100%;
      height: 20px; }
    .products_wrapper li.products-item .content_wrapper {
      width: 88%;
      display: flex;
      flex-direction: column;
      flex: 1;
      margin: 2rem auto 1rem; }
      .products_wrapper li.products-item .content_wrapper .item-image {
        width: 100%;
        transition: transform 0.4s ease;
        margin: 1rem auto; }
        .products_wrapper li.products-item .content_wrapper .item-image img {
          width: 100%;
          height: 100%; }
      .products_wrapper li.products-item .content_wrapper .item-content {
        display: flex;
        flex-direction: column;
        flex: 1; }
        .products_wrapper li.products-item .content_wrapper .item-content__ttl {
          text-align: center; }
          .products_wrapper li.products-item .content_wrapper .item-content__ttl p.eng-title-regular {
            line-height: 1;
            font-size: 14px; }
            @media (max-width: 640px) {
              .products_wrapper li.products-item .content_wrapper .item-content__ttl p.eng-title-regular {
                font-size: 12px; } }
          .products_wrapper li.products-item .content_wrapper .item-content__ttl h3 {
            font-family: "Quattrocento", "Noto Serif JP", serif;
            font-weight: 400;
            font-style: normal;
            text-align: center;
            font-size: 17.5px;
            color: var(--color-yellow);
            margin: .5rem 0 1rem; }
            @media (min-width: 1280px) {
              .products_wrapper li.products-item .content_wrapper .item-content__ttl h3 {
                font-size: 20px; } }
            .products_wrapper li.products-item .content_wrapper .item-content__ttl h3 span {
              letter-spacing: 0; }
            @media (max-width: 640px) {
              .products_wrapper li.products-item .content_wrapper .item-content__ttl h3 {
                font-size: 16px; } }
        .products_wrapper li.products-item .content_wrapper .item-content__desc {
          flex-grow: 1;
          display: flex; }
          .products_wrapper li.products-item .content_wrapper .item-content__desc p {
            flex: 1;
            text-align: justify;
            height: 100%; }
      .products_wrapper li.products-item .content_wrapper .item-rating {
        width: 80%;
        margin: 2rem auto; }
        @media (max-width: 640px) {
          .products_wrapper li.products-item .content_wrapper .item-rating {
            width: 100%; } }
        .products_wrapper li.products-item .content_wrapper .item-rating .rating {
          width: 100%;
          display: flex;
          flex-direction: row;
          align-items: center;
          gap: 1rem; }
          .products_wrapper li.products-item .content_wrapper .item-rating .rating .label {
            width: calc( 38% - 1rem );
            margin-right: 1rem; }
            @media (max-width: 640px) {
              .products_wrapper li.products-item .content_wrapper .item-rating .rating .label {
                width: 38%; } }
          .products_wrapper li.products-item .content_wrapper .item-rating .rating .beans-set {
            display: flex;
            flex-direction: row;
            width: 62%;
            justify-content: space-between; }
            .products_wrapper li.products-item .content_wrapper .item-rating .rating .beans-set .bean {
              width: 24px;
              height: 24px;
              background: url("../images/main/icon_onebean.svg") center/contain no-repeat; }
              @media (max-width: 640px) {
                .products_wrapper li.products-item .content_wrapper .item-rating .rating .beans-set .bean {
                  width: 20px;
                  height: 20px; } }
              .products_wrapper li.products-item .content_wrapper .item-rating .rating .beans-set .bean.inactive {
                background: url("../images/main/icon_onebean_white.svg") center/contain no-repeat; }
      .products_wrapper li.products-item .content_wrapper .origin p {
        font-size: 14px;
        border-top: 1px solid var(--color-light-beige);
        border-bottom: 1px solid var(--color-light-beige);
        text-align: center;
        padding: 1rem; }
        @media (max-width: 640px) {
          .products_wrapper li.products-item .content_wrapper .origin p {
            font-size: 12px; } }
      .products_wrapper li.products-item .content_wrapper .btn {
        display: block;
        text-align: center;
        width: 90%;
        margin: 0 auto 2rem;
        padding: 1.4rem 1.5rem; }
        .products_wrapper li.products-item .content_wrapper .btn span {
          font-size: 80%;
          font-weight: 300;
          font-feature-settings: 'palt';
          margin-top: 5px;
          display: block; }
        @media (max-width: 640px) {
          .products_wrapper li.products-item .content_wrapper .btn {
            width: 100%; } }

/*-----------
証 certification
-------------*/
#certification {
  padding: 0;
  position: relative; }

.cert_wrap {
  padding: 8rem 0; }
  @media (max-width: 640px) {
    .cert_wrap {
      padding: 4rem 0; } }
  .cert_wrap p {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%; }

.cert_box {
  width: 90%;
  max-width: 1440px;
  gap: 2rem;
  padding: 3% 2% 3% 3%;
  margin: 0 auto;
  background: var(--color-light-beige);
  border-radius: 1rem;
  align-items: flex-start;
  justify-content: center; }
  @media (max-width: 640px) {
    .cert_box {
      gap: 1rem;
      padding: 3%; } }
  .cert_box li.cert {
    width: calc((100% - (2rem * 6)) / 7);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; }
    @media (max-width: 1024px) {
      .cert_box li.cert {
        width: calc((100% - (2rem * 3)) / 4); } }
    @media (max-width: 640px) {
      .cert_box li.cert {
        width: calc((100% - 2rem) / 3); } }
    .cert_box li.cert .cert-image {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem; }
      @media (max-width: 640px) {
        .cert_box li.cert .cert-image {
          margin-bottom: 0; } }
      .cert_box li.cert .cert-image img {
        width: 100%;
        height: auto; }
    .cert_box li.cert .cert-txt {
      width: 100%; }
      .cert_box li.cert .cert-txt p {
        color: var(--color-black);
        font-size: 14px; }
        @media (max-width: 640px) {
          .cert_box li.cert .cert-txt p {
            font-size: 9px; } }
