@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 VISUAL 
------------------*/
.mv {
  height: 45vw;
  min-height: 400px;
  max-height: 700px;
  position: relative;
  display: flex;
  justify-content: flex-start; }
  @media (max-width: 640px) {
    .mv {
      height: auto;
      min-height: unset;
      flex-wrap: wrap-reverse; } }

.mv_ttl {
  margin: auto;
  font-feature-settings: 'palt';
  padding: 3vw;
  z-index: 100;
  max-width: 800px; }
  .mv_ttl h1 {
    margin-top: var(--medium);
    padding: 0;
    font-size: clamp(21px, calc( 13px + 2vw ), 60px);
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    font-feature-settings: 'palt'; }
    @media (max-width: 640px) {
      .mv_ttl h1 {
        font-size: clamp(21px, calc( -6px + 8vw ), 48px); } }
  .mv_ttl p {
    font-size: clamp(18px, calc( 15px + 0.8vw ), 32px);
    font-weight: 500;
    text-align: left; }
    @media (max-width: 640px) {
      .mv_ttl p {
        font-size: clamp(18px, calc( 5px + 3vw ), 30px); } }
    .mv_ttl p.eng {
      font-size: clamp(16px, calc( 14px + 0.5vw ), 24px);
      color: #FFF; }
  @media (max-width: 1200px) {
    .mv_ttl {
      padding: 6vw 3vw 0; } }
  @media (max-width: 1024px) {
    .mv_ttl {
      padding: 5vw 3vw 0; } }
  @media (max-width: 640px) {
    .mv_ttl {
      width: 100%;
      padding: 4rem 3rem 5rem; } }

.mv_right {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row; }
  @media (max-width: 1024px) {
    .mv_right {
      width: 40%;
      height: auto; } }
  @media (max-width: 640px) {
    .mv_right {
      flex-direction: column;
      width: 100%;
      min-height: auto; } }
  .mv_right__image {
    height: 100%;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    position: relative;
    overflow: hidden; }
    @media (max-width: 1024px) {
      .mv_right__image {
        aspect-ratio: unset;
        width: 100%;
        height: 100%; }
        .mv_right__image img {
          object-fit: cover;
          object-position: center;
          width: 100%;
          height: 100%; } }
    @media (max-width: 640px) {
      .mv_right__image {
        width: 100%;
        height: auto; } }

/* ------------------
PARTNERS
------------------*/
#partners {
  position: relative; }
  #partners .partners_txt {
    margin: 0 auto;
    text-align: center; }
    #partners .partners_txt img {
      width: 40%;
      max-width: 80px;
      margin-bottom: 3rem; }
    #partners .partners_txt > p {
      font-family: "Noto Serif JP", serif;
      font-weight: 400;
      font-style: normal;
      font-size: clamp(16px, calc( 12px + 1vw ), 32px);
      text-align: center; }

.partners_image {
  margin: var(--medium) 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative; }
  .partners_image .image-item img {
    height: 100%;
    object-fit: cover; }
  .partners_image .image-item:nth-child(2) {
    width: 50%; }
    .partners_image .image-item:nth-child(2) > p {
      font-size: 14px;
      color: var(--color-dark-gray);
      position: relative;
      bottom: 20px;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center; }
      @media (max-width: 640px) {
        .partners_image .image-item:nth-child(2) > p {
          font-size: 12px; } }
  .partners_image .image-item:nth-child(1), .partners_image .image-item:nth-child(3) {
    width: 24.2%; }
  @media (max-width: 640px) {
    .partners_image {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1rem; }
      .partners_image .image-item:nth-child(1),
      .partners_image .image-item:nth-child(3) {
        width: calc( (100% - 1rem) / 2 );
        order: 2; }
      .partners_image .image-item:nth-child(2) {
        width: 100%;
        order: 1; } }

/* ------------------
Business kodawari
------------------*/
.biz-kodawari {
  position: relative; }
  .biz-kodawari.botanical-pattern::before {
    background-position: 50% 68%; }
  .biz-kodawari .brand-logo {
    width: 10%;
    min-width: 100px; }
  .biz-kodawari__ttl {
    padding: calc( var(--large) + var(--large) ) 0 var(--large);
    position: relative;
    z-index: 1; }
    .biz-kodawari__ttl h2 {
      font-size: clamp(26px, calc( 21px + 1.3793103448275863vw ), 48px);
      font-weight: 500;
      margin-top: 2rem;
      color: var(--color-yellow); }
      @media (max-width: 640px) {
        .biz-kodawari__ttl h2 {
          width: 95%;
          margin: 2rem auto 0; } }

/*-----------
スペシャルティ
-------------*/
.specialty .specialty_ttl > .section-title {
  line-height: 1.5;
  margin-top: 1rem; }
.specialty__content {
  width: 100%; }
  .specialty__content .specialty-block {
    width: 100%;
    align-items: stretch;
    justify-content: center; }
    .specialty__content .specialty-block.reversed {
      flex-direction: row-reverse; }
    @media (max-width: 640px) {
      .specialty__content .specialty-block {
        flex-direction: column; } }
    .specialty__content .specialty-block img {
      width: 50%;
      height: auto;
      object-fit: cover;
      object-position: right center; }
      @media (max-width: 640px) {
        .specialty__content .specialty-block img {
          width: 100%; } }
    .specialty__content .specialty-block .specialty-txt {
      width: 50%;
      padding: 0 var(--large);
      display: flex;
      flex-direction: column;
      justify-content: center; }
      @media (max-width: 640px) {
        .specialty__content .specialty-block .specialty-txt {
          width: 100%;
          padding: var(--large) var(--medium); } }
      .specialty__content .specialty-block .specialty-txt__wrap {
        max-width: 680px; }
        .specialty__content .specialty-block .specialty-txt__wrap.posi-right {
          margin-right: auto; }
        .specialty__content .specialty-block .specialty-txt__wrap.posi-left {
          margin-left: auto; }
        .specialty__content .specialty-block .specialty-txt__wrap > ul li p {
          text-indent: -1.4em;
          padding-left: 1em; }
      .specialty__content .specialty-block .specialty-txt h3 {
        text-align: left;
        color: var(--color-yellow);
        font-size: clamp(21px, calc( 19px + 0.5vw ), 30px);
        margin-bottom: 2rem; }
    .specialty__content .specialty-block:nth-child(1) {
      margin-bottom: 8rem; }
      @media (max-width: 640px) {
        .specialty__content .specialty-block:nth-child(1) {
          margin-bottom: 2rem; } }

/*-----------
エスプレッソ認証
-------------*/
.espresso-cert {
  background: url("../images/business/bg_espresso-certification.jpg");
  background-size: cover; }
  .espresso-cert .cert_ttl {
    text-align: center; }
    .espresso-cert .cert_ttl .espresso-logo {
      width: 10%;
      min-width: 100px;
      margin-bottom: var(--large); }
  .espresso-cert .cert_content {
    margin-top: var(--large);
    align-items: stretch; }
    @media (max-width: 640px) {
      .espresso-cert .cert_content {
        flex-direction: column; } }
    .espresso-cert .cert_content img {
      width: 50%; }
      @media (max-width: 640px) {
        .espresso-cert .cert_content img {
          width: 100%; } }
    .espresso-cert .cert_content__txt {
      width: 50%;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem; }
      @media (max-width: 640px) {
        .espresso-cert .cert_content__txt {
          width: 100%; } }
      .espresso-cert .cert_content__txt > p.para-space {
        margin-bottom: 4rem; }
        @media (max-width: 640px) {
          .espresso-cert .cert_content__txt > p.para-space {
            margin-bottom: 2rem; } }

/*-----------
品質は味方
-------------*/
.our-quality {
  background: url("../images/business/bg_quality.jpg");
  background-size: cover;
  background-position: center;
  text-align: left; }
  @media (max-width: 640px) {
    .our-quality {
      background: url("../images/business/bg_quality_sp.jpg"); } }
  .our-quality p {
    color: #FFF;
    margin-bottom: 1rem; }
    @media (max-width: 640px) {
      .our-quality p {
        padding-top: 4rem; } }
  .our-quality h2 {
    text-align: left;
    letter-spacing: .3rem; }
    @media (max-width: 640px) {
      .our-quality h2 {
        padding-bottom: 4rem;
        font-size: 18px; } }

.max-760 {
  max-width: 760px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center; }

/*-----------
商品紹介 our coffee beans
-------------*/
#our-coffee-beans {
  position: relative; }
  #our-coffee-beans .beans_ttl {
    position: relative;
    z-index: 1; }
    #our-coffee-beans .beans_ttl > .section-title {
      line-height: 1.5;
      margin-top: 1rem; }
  #our-coffee-beans .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) {
      #our-coffee-beans .deco-left1 {
        width: 40%;
        overflow: hidden;
        top: 1%;
        left: -10%; } }
  #our-coffee-beans .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) {
      #our-coffee-beans .deco-left2 {
        width: 45%; } }
  #our-coffee-beans .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) {
      #our-coffee-beans .deco-right {
        top: 3%; } }
    @media (max-width: 640px) {
      #our-coffee-beans .deco-right {
        display: none; } }

.botanical-pattern::before {
  background-position: 50% 30%; }

.beans_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto; }
  @media (max-width: 1200px) {
    .beans_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) {
    .beans_wrapper {
      gap: 1.2rem; } }
  .beans_wrapper li.beans-item {
    width: calc((100% - 8rem) / 5);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    margin-bottom: 4rem; }
    .beans_wrapper li.beans-item:hover .item-image {
      transform: scale(1.05);
      transition: transform 0.4s ease; }
    @media (max-width: 1200px) {
      .beans_wrapper li.beans-item {
        min-width: 300px; } }
    @media (max-width: 640px) {
      .beans_wrapper li.beans-item {
        min-width: 220px; } }
    .beans_wrapper li.beans-item.fadeUp:nth-child(2) {
      animation-delay: .2s; }
    .beans_wrapper li.beans-item.fadeUp:nth-child(3) {
      animation-delay: .4s; }
    .beans_wrapper li.beans-item.fadeUp:nth-child(4) {
      animation-delay: .6s; }
    .beans_wrapper li.beans-item.fadeUp:nth-child(5) {
      animation-delay: .8s; }
    .beans_wrapper li.beans-item .beans-content_wrapper {
      width: 88%;
      display: flex;
      flex-direction: column;
      flex: 1;
      margin: 3rem auto 1rem; }
      .beans_wrapper li.beans-item .beans-content_wrapper .beans-ttl {
        text-align: center; }
        .beans_wrapper li.beans-item .beans-content_wrapper .beans-ttl p.eng-title-regular {
          line-height: 1;
          font-size: 14px; }
          @media (max-width: 640px) {
            .beans_wrapper li.beans-item .beans-content_wrapper .beans-ttl p.eng-title-regular {
              font-size: 12px; } }
        .beans_wrapper li.beans-item .beans-content_wrapper .beans-ttl h3 {
          font-family: "Quattrocento", "Noto Serif JP", serif;
          font-weight: 400;
          font-style: normal;
          text-align: center;
          font-size: 16px;
          color: var(--color-yellow);
          margin: 1rem 0 0; }
          @media (min-width: 1280px) {
            .beans_wrapper li.beans-item .beans-content_wrapper .beans-ttl h3 {
              font-size: 17px; } }
          @media (max-width: 1200px) {
            .beans_wrapper li.beans-item .beans-content_wrapper .beans-ttl h3 {
              font-size: 18px; } }
          @media (max-width: 640px) {
            .beans_wrapper li.beans-item .beans-content_wrapper .beans-ttl h3 {
              font-size: 16px; } }
      .beans_wrapper li.beans-item .beans-content_wrapper .beans-image {
        width: 100%;
        transition: transform 0.4s ease;
        margin: 1rem auto 2rem;
        text-align: center; }
        .beans_wrapper li.beans-item .beans-content_wrapper .beans-image img {
          width: 80%;
          max-width: 200px; }
      .beans_wrapper li.beans-item .beans-content_wrapper .btn {
        display: block;
        text-align: center;
        width: 90%;
        margin: 0 auto 2rem;
        padding: 1.4rem 1.5rem; }
        .beans_wrapper li.beans-item .beans-content_wrapper .btn span {
          font-size: 80%;
          font-weight: 300;
          font-feature-settings: 'palt';
          margin-top: 5px;
          display: block; }
        @media (max-width: 640px) {
          .beans_wrapper li.beans-item .beans-content_wrapper .btn {
            width: 100%; } }

/* ------------------
Modal Pop Up
------------------*/
#modal-100percento-arabica, #modal-kave, #modal-forte, #modal-espresso-blend, #modal-kave-decaf {
  display: none !important; }

.modal-box {
  padding: 5rem 6rem; }
  @media (max-width: 1024px) {
    .modal-box {
      padding: 5rem 2rem; } }
  @media (max-width: 640px) {
    .modal-box {
      padding: 2rem; } }
  .modal-box .beans-detail {
    justify-content: center; }
    @media (max-width: 640px) {
      .modal-box .beans-detail {
        flex-direction: column; } }
    .modal-box .beans-detail__image {
      width: 40%;
      text-align: center; }
      @media (max-width: 640px) {
        .modal-box .beans-detail__image {
          width: 100%; } }
      .modal-box .beans-detail__image 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 0; }
        @media (min-width: 1280px) {
          .modal-box .beans-detail__image h3 {
            font-size: 20px; } }
        @media (max-width: 640px) {
          .modal-box .beans-detail__image h3 {
            font-size: 21px; } }
      .modal-box .beans-detail__image p.memo {
        color: #FFF; }
      .modal-box .beans-detail__image img {
        width: 80%;
        max-width: 200px; }
        @media (max-width: 640px) {
          .modal-box .beans-detail__image img {
            max-width: 100px; } }
    .modal-box .beans-detail__txt {
      width: 60%;
      color: #FFF; }
      @media (max-width: 640px) {
        .modal-box .beans-detail__txt {
          width: 95%;
          margin: 2rem auto 0; } }
      .modal-box .beans-detail__txt .beans-rating {
        width: 80%;
        max-width: 200px;
        margin: var(--medium) 0; }
        @media (max-width: 640px) {
          .modal-box .beans-detail__txt .beans-rating {
            width: 100%;
            margin: var(--medium) auto; } }
        .modal-box .beans-detail__txt .beans-rating .b-rating {
          width: 100%;
          display: flex;
          flex-direction: row;
          align-items: center;
          gap: 1rem; }
          .modal-box .beans-detail__txt .beans-rating .b-rating .b-label {
            width: calc( 38% - 1rem ); }
            @media (max-width: 640px) {
              .modal-box .beans-detail__txt .beans-rating .b-rating .b-label {
                width: 38%; } }
          .modal-box .beans-detail__txt .beans-rating .b-rating .b-icon-set {
            display: flex;
            flex-direction: row;
            width: 62%;
            justify-content: space-between; }
            .modal-box .beans-detail__txt .beans-rating .b-rating .b-icon-set .b-icon {
              width: 24px;
              height: 24px;
              background: url("../images/main/icon_onebean.svg") center/contain no-repeat; }
              @media (max-width: 640px) {
                .modal-box .beans-detail__txt .beans-rating .b-rating .b-icon-set .b-icon {
                  width: 20px;
                  height: 20px; } }
              .modal-box .beans-detail__txt .beans-rating .b-rating .b-icon-set .b-icon.inactive {
                background: url("../images/main/icon_onebean_white.svg") center/contain no-repeat; }
  .modal-box .lot {
    border-top: 1px solid var(--color-light-beige);
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; }
    .modal-box .lot .lot-child {
      width: calc( 50% - .5rem ); }
      .modal-box .lot .lot-child > p {
        font-size: 80%; }
      .modal-box .lot .lot-child > p span {
        color: var(--color-yellow);
        font-weight: 500;
        margin: 0 4px; }

@media (max-width: 640px) {
  .modaal-inner-wrapper {
    padding: 80px 10px; } }

.modaal-close {
  right: 100px !important;
  top: 100px !important; }
  @media (max-width: 640px) {
    .modaal-close {
      right: 20px !important;
      top: 20px !important; } }
  .modaal-close:hover {
    background: var(--color-dark-gray) !important;
    border: 1.5px solid var(--color-yellow) !important; }

.modaal-close::before,
.modaal-close::after {
  background-color: var(--color-yellow) !important; }

/* ------------------
NEWS　新着情報
------------------*/
#news {
  position: relative; }

.news_list {
  width: 90%;
  max-width: 800px;
  margin: var(--medium) auto var(--large); }
  .news_list > li.news_item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-light-beige); }
    .news_list > li.news_item:nth-last-child(1) {
      border: none; }
    .news_list > li.news_item > a p.news_date {
      margin-bottom: 1rem; }
    .news_list > li.news_item .news_title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem; }
    .news_list > li.news_item .n-arrow {
      margin-left: auto;
      width: 1.6rem; }
      .news_list > li.news_item .n-arrow svg {
        display: block;
        width: 100%;
        height: auto;
        stroke: currentColor;
        stroke-width: 3;
        transition: stroke 0.3s; }
        .news_list > li.news_item .n-arrow svg:hover {
          stroke: var(--color-yellow); }

.news_more {
  width: 90%;
  margin: 0 auto;
  text-align: center; }

/* ------------------
NEWS　ARCHIVE / SINGLE
------------------*/
.news-common {
  position: relative; }
  .news-common .archive-wrapper {
    margin: var(--large) auto; }
  .news-common .news-wrapper {
    margin: var(--large) auto;
    padding: var(--medium); }
    .news-common .news-wrapper h1 {
      font-family: "Quattrocento", "Noto Serif JP", serif;
      font-weight: 500;
      font-style: normal;
      font-size: 24px;
      line-height: 1.5;
      padding: 1rem 0 .5rem;
      border-bottom: 1px solid var(--color-light-beige); }
    .news-common .news-wrapper .news-content {
      margin: var(--medium) 0; }
  .news-common > .yellow-bar-20 {
    position: relative; }
    .news-common > .yellow-bar-20::before {
      top: auto;
      bottom: 0; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem; }

.pagination li a {
  text-decoration: none;
  color: #FFF;
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-weight: normal; }

.pagination li .current {
  font-family: "Quattrocento", serif;
  font-weight: 700;
  color: var(--color-yellow); }

.pagination li.dots {
  pointer-events: none; }

/* ------------------
パンクズリスト breadcrumb
------------------*/
.breadcrumb {
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 90%;
  margin: 2rem 0; }

.breadcrumb a {
  text-decoration: none;
  color: #FFF;
  font-weight: 300;
  font-size: 90%; }

.breadcrumb a:hover {
  font-weight: 300;
  font-size: 90%;
  text-decoration: underline;
  color: var(--color-yellow); }

.breadcrumb .current-item {
  color: var(--color-yellow); }
