@charset "UTF-8";
/* CSS Document */ :root {
  --col-main: #96C44D;
  --col-sub:  linear-gradient(90deg, #f9ffa6, #d29742);
  --col-text: #fff;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--col-text);
  overflow-x: clip;
  min-height: 100vh;
  font-feature-settings: "palt";
  background-image: url(./../img/bg_tile.webp);
  background-repeat: repeat;
}
ul, li {
  margin: 0;
  padding: 0;
}
li {
  list-style: none
}
a {
  text-decoration: none;
  color: inherit
}
img {
  max-width: 100%;
}
@media(min-width:769px) {
  .sp {
    display: none !important;
  }
}
@media(max-width:768px) {
  .pc {
    display: none !important;
  }
}
/*---------------------------
        
ヘッダー   

---------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 900;
  & .header_inner {
    background: var(--col-main);
    background-blend-mode: multiply;
    height: 13.68vw;
    position: relative;
  }
  & h1 img {
    width: 50.5vw;
    margin: auto;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  }
}
@media(min-width:769px) {
  header {
    & .header_inner {
      height: 78px;
    }
    & h1 img {
      width: 260px;
    }
  }
}
/*---------------------------
        
ナビ 

---------------------------*/
/* ハンバーガーメニュー */
#menu-button {
  position: absolute;
  right: 0;
  display: grid;
  place-items: center;
  place-content: center;
  width: min(13.68vw, 72px);
  height: min(13.68vw, 72px);
  border: none;
  cursor: pointer;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
}
/* バー */
.bar, .bar::before, .bar::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s;
  border-radius: 10px;
}
.bar {
  display: grid;
  &::before, &::after {
    content: "";
    grid-area: 1 / 1;
  }
  &::before {
    transform: translateY(-10px);
  }
  &::after {
    transform: translateY(10px);
  }
}
/* オープン時のバー */
.menu-open {
  & #menu-button {
    border-radius: 50%;
    width: min(11.68vw, 64px);
    height: min(11.68vw, 64px);
    right: min(3vw, 15px);
  }
  & .bar {
    background-color: transparent;
    &::before {
      transform: rotate(45deg);
      background-color: #fff;
    }
    &::after {
      transform: rotate(-45deg);
      background-color: #fff;
    }
  }
}
/* オーバーレイ */
#overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 997;
  transition: opacity 0.3s;
  /* オープン時のオーバーレイ */
  .menu-open & {
    visibility: visible;
    opacity: 1;
  }
}
/* メニュー */
#menu {
  position: fixed;
  background-image: url("../img/bg_melon.webp");
  background-repeat: no-repeat;
  background-size: 1445px;
  max-width: 402px;
  width: 100%;
  height: 100vh;
  max-height: 714px;
  aspect-ratio: 1 / 2;
  right: 0;
  top: 0;
  z-index: 998;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  & div {
    position: relative;
    width: 100%;
    height: fit-content;
    & ul {
      width: 100%;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      background-color: #3FAB11;
      & li {
        width: 100%;
        /*文字設定*/
        font-family: "Noto Serif JP", serif;
        font-size: min(4.97vw, 20px);
        font-weight: 700;
        line-height: 1.8;
        letter-spacing: 0.4px;
        color: #fff;
        text-align: center;
        &.nav_line {
          background: #fff;
          width: 100%;
          height: 2px;
        }
        & a {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          height: 80px;
        }
      }
    }
  }

  /*北海道LP佐藤*/
  .grNav_satouLi {
    background-image: url(./../img/bg_tile.webp);
    background-repeat: repeat;
    height: 152px;
  }
  .grNav_satouA {
    position: relative;
    width: 100%;
    height: 152px;
    background-image: url(./../img/bg_grNavi.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    & img {
      position: absolute;
    }
    .grNav_satou01 {
      top: 22px;
      right: 16.5px;
    }
    .grNav_satou02 {
      bottom: 0px;
      right: 94px;
      z-index: 99;
    }
    .grNav_satou03 {
      top: 17px;
      left: 0;
    }
  }

  .nav_title {
    & h2 {
      & img {
        margin: 28px 10px auto auto;
      }
    }
  }
  .bg__circle {
    position: absolute;
    z-index: -1;
    max-width: 1117px;
    width: 1117px;
    height: auto;
    top: -756px;
    right: -304px;
  }
}
/* オープン時のメニュー */
.menu-open #menu {
  transform: translateX(0);
}
/* body */
body {
  .menu-open & {
    overflow: clip;
  }
}

.main {
  background-image: url(./../img/bg_melon.webp);
  background-position: top 37px left 0px;
  background-size: 1415px;
}
/*---------------------------
        
コンテンツ

---------------------------*/
/* キービジュアル */
.kv_wrap {
  width: 100%;
  height: 220vw;
  position: relative;
  background-image: url(../img/bg_fv_sp.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow: hidden;
  & img {
    width: 100vw !important;
  }
  &.kv_bg_leaf {
    position: absolute;
  }
  & .kv_ttl_txt {
    margin-top: 4.65vw;
    & h2 {
      font-size: 8.15vw;
      text-align: center;
      text-shadow: 0px 0px 13px #016AA5;
      font-weight: 700;
      line-height: 1.4;
      letter-spacing: 2.28px;
    }
  }
  & .kv_ttl_main {
    position: absolute;        
    top: 32vw;
    width: 47.6vw;
    height: auto;
    right: 2.9vw;
    z-index: 99;
  }
  & .kv_ttl_link {
    position: absolute;
    top: 29.6vw;
    width: 52vw;
    height: auto;
    left: 0;
    z-index: 99;
  }
  .kv_ttl_label {
    position: absolute;
    z-index: 99;
    top: 18vw;
    right: 1vw;
    width: 25.8vw;
    height: auto;
  }
  .kv_ttl_food {
    position: absolute;
    bottom: 38vw;
    z-index: 0;
  }
  .kv_ttl_day {
    position: absolute;
    bottom: 45.4vw;
    right: 0;
    width: 49.25vw;
    height: auto;
  }
  & .kv_texttbox_1 {
    position: relative;
    color: #47312C;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    & div {
      margin: auto 0 37.5vw;
    }
    & p {
      font-size: max(4.2vw, 17px);
      line-height: 1.5;
      text-align: center;
      font-weight: 700;
    }
  }
  .kv_texttbox_day {
    background: linear-gradient(90deg, rgba(99, 152, 53, 0.00) 0%, rgba(99, 152, 53, 0.70) 25%, #639835 50%, rgba(99, 152, 53, 0.70) 75%, rgba(99, 152, 53, 0.00) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
    padding: 8px 5px;
    & .kv_txt_colon {
      font-size: min(4vw, 16px);
      font-weight: 700;
      line-height: 1.8;
      letter-spacing: 1.6px;
    }
    & p {
      font-size: min(4.98vw, 20px);
      font-weight: 700;
      line-height: 1.7;
      letter-spacing: 2px;
    }
    & .kv_txt_day {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 4px;
      & p {
        font-size: min(4.98vw, 20px);
        font-weight: 700;
        line-height: 1.7;
        letter-spacing: 2px;
      }
      & .txt_days {
        font-size: min(3vw, 12px);
        font-weight: 900;
        line-height: 170%;
        letter-spacing: 1.2px;
      }
      & .circle_days {
        color: #396B0D;
        background: #fff;
        border-radius: 50%;
        font-size: min(3vw, 12px);
        font-weight: 900;
        line-height: 1.7;
        letter-spacing: -0.1px;
        width: 21px;
        height: 21px;
      }
    }
  }
}
/* 商品 */
#Product1, #Product2, #Product3 {
  position: relative;
}
#Product1 {
  .product_head {
    & .product01_head_main {
      width: 100%;
      height: auto;
      margin-top: 7.9vw;
    }
  }
  /*クロワッサン01*/
  & .product_detail01 {
    .product01_p {
      margin-top: 63vw !important;
    }
  }
  & .product01_food01 {
    position: absolute;
    z-index: -1;
    top: -74.5vw;
    width: 100vw;
  }
  /*クロワッサン02*/
  & .product_detail02 {
    .product01_p {
      margin-top: 94vw !important;
    }
  }
  & .product01_food02 {
    position: absolute;
    z-index: -2;
    width: 100vw;
    top: -90vw;
  }
  & .product01_food02_p {
    margin-top: 13.7vw;
    margin-left: 11vw;
  }
  /*クロワッサン03*/
  & .product_detail03 {
    & .product01_p {
      margin-top: 69.5vw;
    }
  }
  & .product01_food03 {
    position: absolute;
    z-index: -2;
    top: -63.6vw;
    left: 0;
    width: 100%;
  }
}
#Product2 {
  padding-bottom: 11.7vw;
  /*タイトル*/
  & .product_head {
    display: inline-block;
    & .product_head_sub {
      display: inline-block;
      margin-top: 12.5vw;
      width: 100vw;
    }
    .product01_p {
      margin-top: 2vw !important;
    }
  }
  & .product02_food01 {
    position: absolute;
    z-index: auto;
    width: 100vw;
    bottom: 27vw;
    z-index: 2;
  }
  & .product_detail04 {
    .product01_p {
      position: relative;
      margin-top: 94vw !important;
      z-index: 99;
    }
  }
}
#Product3 {
  background-image: url(./../img/bg_satou_sp.webp), url(./../img/bg_tile.webp);
  background-repeat: no-repeat, repeat;
  background-size: cover, 100%;
  padding-bottom: 11.7vw;
  /*タイトル*/
  & .product_head {
    display: inline-block;
    & .product_head_sub {
      display: inline-block;
      width: 100vw;
      & img {
        padding-top: 2.22vw;
      }
    }
    & .product02_head_main {
      display: inline-block;
      width: 19.6vw;
      height: auto;
      margin: -1vw 8vw 0;
      & img {
        width: 100%;
      }
    }
  }
  & .product03_food01 {
    position: absolute;
    z-index: auto;
    width: 100vw;
    top: 56.2vw;
    z-index: 2;
  }
  & .product_detail04 {
    & .product02_p {
      position: relative;
      z-index: 97;
      margin-top: 33vw;
    }
  }
  & .product_food02 {
    display: inline-block;
    margin-top: 10.5vw;
  }
  & .product_detail05 {
    & .product02_p {
      position: relative;
      z-index: 96;
      margin-top: -16vw;
    }
  }
}
.product_head {
  display: flex;
  & img {
    padding-top: 10px;
  }
  & .product_head_sub {
    width: 24.6vw;
    height: auto;
  }
  & .product01_head_main {
    width: 39.2vw;
    height: auto;
    margin-top: 7px;
  }
}
.product01_p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.98vw;
  padding: 5.97vw 3.8vw;
  margin: 0 5.97vw;
  border: 2px solid #3FAB11;
  background: #F7F6E7;
  box-shadow: 4px 4px 0px 0px #3FAB11;
  & p {
    text-align: center;
    color: #47312C;
    font-size: 3.98vw;
    line-height: 1.5;
    font-weight: 700;
    width: 80.1vw;
  }
  & .txt__colorGr {
    color:  #008406;
    font-weight: 900;
  }
}
.product02_p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.98vw;
  padding: 5.97vw 3.8vw;
  margin: 0 5.97vw;
  border: 2px solid #C29504;
  background: #F7F6E7;
  box-shadow: 4px 4px 0px 0px #C29504;
  & p {
    text-align: center;
    color: #47312C;
    font-size: 3.98vw;
    line-height: 1.5;
    width: 80.1vw;
    font-weight: 700;
  }
  & .txt__colorPk {
    color: #DA5283;
    font-weight: 900;
  }
}
/* フッター */
footer {
  font-family: "Noto Serif JP", serif;
  padding: 40px 30px;
  color: #3FAB11;
  background: #FFF7C0;
  position: relative;
  & div {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 0.48px;
    margin-bottom: 10px;
    width: 100%;
    display: inline-block;
    position: relative;
  }
  & ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-bottom: 20px;
    & li {
      width: 45px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: #3FAB11;
      position: relative;
      & a {
        display: block;
        width: 100%;
        height: 100%;
        & img {
          width: 20px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }
      }
      &:nth-child(2) img {
        width: 18px;
      }
    }
  }
  & p {
    display: table;
    color: #47312C;
    margin: auto;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.7px;
  }
}
@media(min-width:769px) {
  .main {
    background-size: 100%;
  }
  .kv_wrap {
   background-image: url(../img/bg_fv_pc.webp);
   height: 54.17vw;
    & .kv_ttl_txt {
      margin-top: 1.6vw;
      & h2 {
        font-size: 2.8vw;
      }
    }
    & .kv_ttl_main {
      top: 9vw;
      width: 23.3vw;
      left: 38.5vw;
    }
    & .kv_ttl_sub {
      position: absolute;
      top: 0;
      width: 7.9vw;
      height: auto;
      left: 39.5vw;
      transform: translateX(-50%);
      z-index: 99;
    }
    .kv_ttl_label {
      top: 1.6vw;
      right: 22.5vw;
      width: 11.1vw;
    }
    .kv_ttl_link {
      top: 0;
      left: 12.4vw;
      width: 22vw;
      height: auto;
    }
    .kv_ttl_food {
      bottom: 7.5vw;
    }
    & .kv_texttbox_1 {
      height: 42.8vw;
      & div {
        margin: auto 0 3vw;
      }
      & p {
        font-size: 1.3vw;
      }
    }
    .kv_ttl_day {
      bottom: 10.7vw;
      width: 26.5vw;
    }
  }
  /* 商品 */
  #Product1 {
    .product_head {
      & .product01_head_main {
        position: absolute;
        top: 3.7vw;
        right: 8.3vw;
        width: 36.8vw;
        height: auto;
        margin-top: 0;
        z-index: 99;
      }
    }
    /*クロワッサン01*/
    & .product_detail01 {
      .product01_p {
        margin-top: 0 !important;
        position: absolute;
        z-index: 99;
        top: 35vw;
        left: 8.4vw;
      }
    }
    & .product01_food01 {
      position: absolute;
      z-index: -1;
      top: 1.9vw;
      width: 86.1vw;
    }
    /*クロワッサン02*/
    & .product_detail02 {
      .product01_p {
        margin-top: 0 !important;
        position: relative;
        top: 80.8vw;
        left: 54.3vw;
      }
    }
    & .product01_food02 {
      position: absolute;
      z-index: -2;
      width: 66.94vw;
      margin: 0;
      top: 47vw;
      left: 16.6vw;
    }
    & .product01_food02_p {
      margin-top: 13.7vw;
      margin-left: 11vw;
    }
    /*クロワッサン03*/
    & .product_detail03 {
      & .product01_p {
        margin-top: 94.5vw;
        margin-left: 8.2vw;
        p {
          width: 31.1vw !important;
        }
      }
    }
    & .product01_food03 {
      position: absolute;
      z-index: -2;
      top: -12.6vw;
      left: 44.7vw;
      width: 55.7vw;
    }
  }
  #Product2 {
    padding-bottom: 4.2vw;
    /*タイトル*/
    & .product_head {
      display: inline-block;
      & .product_head_sub {
        display: inline-block;
        margin-top: 11.5vw;
        margin-left: 9.3vw;
        width: 68.28vw;
      }
      .product01_p {
        position: absolute;
        top: 31.9vw;
        left: 64vw;
        margin-top: 0 !important;
        p {
          width: 26.9vw;
        }
      }
    }
    & .product02_food01 {
      width: 67.1vw;
      bottom: 0;
      left: 16.6vw;
      z-index: 2;
    }
    & .product_detail04 {
      .product01_p {
        position: relative;
        margin-top: 31.5vw !important;
        margin-left: 54.5vw;
        z-index: 99;
      }
    }
  }
  #Product3 {
    background-image: url(./../img/bg_satou_pc.webp), url(./../img/bg_tile.webp);
    background-repeat: no-repeat, repeat;
    background-size: cover, 100%;
    padding-bottom: 4.2vw;
    /*タイトル*/
    & .product_head {
      & .product_head_sub {
        margin-top: 1vw;
      }
      & .product02_head_main {
        position: relative;
        top: -1.5vw;
        left: 11.1vw;
        width: 8.4vw;
        margin: 0;
        & img {
          width: 100%;
        }
      }
    }
    & .product03_food01 {
      position: absolute;
      z-index: auto;
      width: 54.9vw;
      top: 8.9vw;
      left: 10vw;
      z-index: auto;
    }
    & .product_detail04 {
      & .product02_p {
        position: relative;
        z-index: 97;
        margin-top: -31.5vw;
        left: 54.4vw;
      }
    }
    & .product_food02 {
      width: 66.9vw;
      margin: 14vw 0 0 16.5vw;
    }
    & .product_detail05 {
      & .product02_p {
        position: relative;
        z-index: 96;
        top: -1.4vw;
        left: 54.3vw;
        margin-top: -15vw;
        p {
          line-height: 1.5 !important;
        }
      }
    }
  }

  .product01_p {
    width: fit-content;
    gap: 1.11vw;
    padding: 1.67vw 1.1vw;
    margin: 0;
    & p {
      font-size: 1.25vw;
      width: 34.6vw;
    }
  }
  .product02_p {
    width: fit-content;
    gap: 1.11vw;
    padding: 1.67vw 1.1vw;
    margin: 0;
    & p {
      font-size: 1.25vw;
      line-height: 1.7;
      width: 34.6vw;
    }
  }
  /* フッター */
  footer {
    padding: 40px 120px;
    & div {
      font-size: 26px;
      letter-spacing: 0.52px;
      margin-bottom: 20px;
    }
    & ul {
      & li {
        width: 70px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: #3FAB11;
        position: relative;
        & a {
          display: block;
          width: 100%;
          height: 100%;
          & img {
            width: 40px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
          }
        }
        &:nth-child(2) img {
          width: 35px;
        }
      }
    }
    & p {
      font-size: 14px;
      line-height: 1.8;
      letter-spacing: 0.7px;
    }
  }
}
/*---------------------------
        
改行

---------------------------*/
.sm {
  display: block;
}
.md {
  display: none;
}
@media(min-width:769px) {
  .sm {
    display: none;
  }
  .md {
    display: block;
  }
}
/*---------------------------
        
ボタン　ホバー

---------------------------*/
a:hover {
  opacity: 0.7;
}
/*---------------------------
        
アニメーション

---------------------------*/
.op0 {
  opacity: 0;
}
/* ポップアップ */
.anim_box.popup.is-animated {
  animation: popup 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: .5s;
  &.txtbox2 {
    animation-delay: 1.25s;
  }
}
.anim02_box.popup.is-animated {
  animation: popup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: .5s;
  &.txtbox2 {
    animation-delay: .5s;
  }
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}
/*
@media(min-width:769px) {
  .kv_wrap .anim_box.popup.is-animated {
    animation-delay: 1.75s;
  }
}
*/
/* フェードイン */
.anim_box.fadein.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0;
  &.kv_ttl {
    animation-delay: .75s;
  }
  &.kv_catch {
    animation-delay: 1.5s;
  }
}
.anim02_box.fadein.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: .5s;
}
.anim03_box.fadein.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: .5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードアップ */
.anim_box.fadeup.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: .5s;
}
.anim02_box.fadeup.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: .5s;
}
.anim03_box.fadeup.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: .5s;
}
@keyframes fadeup {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}