@charset "utf-8";

/*----------------------------------------
共通設定
----------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  margin: 0 auto;
  color: #5C4033;
  font-style: normal;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  background-color: #fff;
}

section {
  padding-top: 8%;
  padding-bottom: 8%;
}

/*----------------------------------------
文字基本設定
----------------------------------------*/
h1 {
  font-style: normal;
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
}

h2 {
  margin-bottom: 8%;
  font-size: 3.2rem;
  text-align: center;
}

h3 {
  font-size: 2.4rem;
}

p {
  font-size: 1.6rem;
  line-height: 2.0;
  text-align: center;
}

a {
  display: block;
  color: #5C4033;
  font-size: 1.6rem;
  text-align: center;
}

nav a,
address,
dl,
ul li {
  font-size: 1.6rem;
  text-align: center;
}

small {
  font-size: 1.2rem;
}

.uppercase {
  text-transform: uppercase;
}

/* コンテンツ幅
----------------------------------------*/
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.width_lg {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.width_md {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* 段落設定
----------------------------------------*/
.sp_only_display,
.sp_only_display_sm {
  display: none;
}

/* ボタン基本設定
----------------------------------------*/
.main_btn {
  max-width: 320px;
  margin: 8% auto 0;
  padding: 8px 24px;
  background-color: #5C4033;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  border-radius: 50px;
  cursor: pointer;
}

a.main_btn {
  color: #FFF;
}

a:hover {
  transform: translateY(-5px);
}

a.no_hover:hover {
  transform: none;
}

/* header
----------------------------------------*/
header {
  display: flex;
  position: fixed;
  z-index: 10;
  width: 100%;
  padding: 10px 30px;
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
}

header h1 {
  display: flex;
  height: 70px;
  padding-left: 64px;
  align-items: center;
  background-image: url(../images/logo.svg);
  background-size: 56px;
  background-position: 0 5px;
  background-repeat: no-repeat;
}

header h1 a {
  font-size: 4.0rem;
}

.btn {
  z-index:100;
  padding: 16px;
  background-color: #5C4033;
  border-radius: 50%;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}

.btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 6px;
  background-color: #fff;
  transition: 0.5s;
}

.btn span:last-child {
  margin-bottom: 0;
}

.btn.active span:nth-child(1) {
  background-color: #fff;
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.btn.active span:nth-child(2) {
  opacity: 0;
}

.btn.active span:nth-child(3) {
  background-color: #fff;
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1;
  width: 100vw;
  height: 100dvh;
  padding-top: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.5s;
}

.menu.active {
  right: 0;
}

.menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu ul li {
  margin-bottom: 2%;
  text-align: center;
}

/* nav.global
----------------------------------------*/
.global {
  margin-left: auto;
}

.global ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.global li a {
  display: block;
  padding: 0 20px;
  line-height: 1.5;
}

li.nav_btn_yellow a,
li.nav_btn_brown a {
  display: flex;
  width: 300px;
  margin: 2% auto 0;
  padding: 20px 20px;
  justify-content: center;
  gap: 16px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  border-radius: 50px;
  cursor: pointer;
}

li.nav_btn_yellow img,
li.nav_btn_brown img {
  width: 32px;
}

.nav_btn_yellow a {
  background-color: #f7c35f;
  border: 2px solid #5C4033;
}

.nav_btn_brown a {
  background-color: #5C4033;
}

.nav_btn_brown p {
  color: #fff;
}

/* .fv
----------------------------------------*/
.fv {
  position: relative;
  z-index: 1;
  padding-bottom: 6%;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.fv_message {
  padding-top: 120px;
  font-size: 4.0rem;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.can-carousel {
  width: 100%;
  margin: 4rem 0;
}

.can-track {
  display: flex;
  gap: 4rem;
  animation: scrollCans 20s linear infinite;
}

.can-track img {
  width: clamp(120px, 18vw, 320px);
  height: auto;
  flex-shrink: 0;
  transform: rotate(14deg);
}

/* アニメーション */
@keyframes scrollCans {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section.mission
----------------------------------------*/
.mission {
  position: relative;
  margin-top: -120px;
  padding: 4rem 1rem;
  overflow: hidden;
}

.mission h2 {
  margin-bottom: 0%;
  padding-top: 24%;
}

.mission .p_margin {
  margin-top: 6%;
  margin-bottom: 4%;
}

/* section.product_list
----------------------------------------*/
.product_list_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product_list .width_lg {
  padding-right: 4%;
  padding-left: 4%;
}

.product_list_items img {
  max-width: 150px;
  margin-bottom: 8%;
}

.product_item p {
  margin-top: 8%;
  margin-bottom: 20%;
  font-size: 2rem;
  text-transform: uppercase;
}

/* section.product_detail
----------------------------------------*/
.product_detail h3 {
  margin-bottom: 2%;
  font-size: 3.2rem;
  text-transform: uppercase;
}

.product_detail img {
  max-width: 150px;
}

img.can_small {
  max-width: 150px;
}

.product_detail .sub_title {
  margin-bottom: 5%;
  font-size: 2.0rem;
  text-align: center;
}

.product_detail p {
  text-align: left;
}

div.slick-initialized .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4%;
}

.slick-list,
.slider_left,
.item_info_row {
  display: flex;
  flex-wrap: wrap;
}

.slider_left {
  margin-bottom: 8%;
  justify-content: center;
  align-items: flex-end;
}

.slider_item dl {
  margin-top: 4%;
}

.slider_item dl .item_info_row {
  line-height: 2.0;
}

/* section.choose_flavor
----------------------------------------*/
.flavor_options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.choose_flavor img {
  max-width: 200px;
}

.flavor_option p {
  margin-top: 6%;
  font-size: 2.0rem;
}

/* section.online_store
----------------------------------------*/
.online_store img {
  max-width: 800px;
  text-align: center;
}

.online_store p.main_btn {
  color: #fff;
}

/* section.social_media
----------------------------------------*/
.social_media {
  padding-bottom: 20%;
  background-color: #FAD4DA;
}

.social_media .p_margin {
  margin-top: 4%;
}

.social_media_icon a {
  display: flex;
  justify-content: center;
  column-gap: 16px;
}

.social_media img {
  max-width: 32px;
}

.social_media .main_btn {
  max-width: 360px;
  padding: 20px 20px;
  border-radius: 50px;
}

.social_media_icon p {
  color: #fff;
}

/* footer
----------------------------------------*/
footer {
  padding-top: 8%;
  background-color: #DCF6F9;
}

.index footer section {
  padding: 0;
}

footer h2 {
  margin-bottom: 2%;
}

footer img {
  max-width: 120px;
}

footer p {
  font-size: 2.4rem;
  line-height: 2.5;
}

nav.local {
  margin-top: 3%;
  margin-bottom: 4%;
}

.local ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2%;
}

.local_primary {
  margin-bottom: 1%;
}

.local_secondary a {
  font-size: 1.4rem;
}

hr {
  height: 1px;
  background-color: #5C4033;
  border: 0;
  opacity: 0.5;
}

.alcohol_notice {
  margin-top: 1rem ;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}

small {
  display: block;
  line-height: 2.0;
  text-align: center;
}

/* 背景グラデーション
----------------------------------------*/
.bg_lemon_to_berry {
  background: linear-gradient(to bottom, #FFF6B2, #FFD5DB);
}

.bg_berry_to_grape {
  background: linear-gradient(to bottom, #FFD5DB, #EADAF5);
}

.bg_grape_to_pine {
  background: linear-gradient(to bottom, #EADAF5, #FFE3CC);
}

.bg_pine_to_cherry {
  background: linear-gradient(to bottom, #FFE3CC, #FAD4DA);
}

.bg_cherry_to_melon {
  background: linear-gradient(to bottom, #FAD4DA, #E1F5D2);
}

.bg_melon_to_peach {
  background: linear-gradient(to bottom, #E1F5D2, #DCF6F9);
}


/* 背景ウェーブ
----------------------------------------*/
.bg_wave_bottom {
  --mask:
    radial-gradient(87.21px at 50% calc(100% - 117px), #000 99%, #0000 101%) calc(50% - 78px) 0/156px 100%,
    radial-gradient(87.21px at 50% calc(100% + 78px), #0000 99%, #000 101%) 50% calc(100% - 39px)/156px 100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}

/* 背景泡
----------------------------------------*/
.bubble_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

/* それぞれ異なる位置・大きさ・アニメ速度・開始タイミング */
.bubble:nth-child(1) {
  left: 10%;
  width: 8px;
  height: 8px;
  animation-duration: 5s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  left: 20%;
  width: 14px;
  height: 14px;
  animation-duration: 7s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  left: 30%;
  width: 10px;
  height: 10px;
  animation-duration: 6s;
  animation-delay: 0.5s;
}

.bubble:nth-child(4) {
  left: 40%;
  width: 16px;
  height: 16px;
  animation-duration: 8s;
  animation-delay: 2s;
}

.bubble:nth-child(5) {
  left: 50%;
  width: 9px;
  height: 9px;
  animation-duration: 5.5s;
  animation-delay: 1.8s;
}

.bubble:nth-child(6) {
  left: 60%;
  width: 11px;
  height: 11px;
  animation-duration: 6.5s;
  animation-delay: 0.7s;
}

.bubble:nth-child(7) {
  left: 70%;
  width: 13px;
  height: 13px;
  animation-duration: 7.2s;
  animation-delay: 1.2s;
}

.bubble:nth-child(8) {
  left: 80%;
  width: 7px;
  height: 7px;
  animation-duration: 5s;
  animation-delay: 2.5s;
}

.bubble:nth-child(9) {
  left: 90%;
  width: 15px;
  height: 15px;
  animation-duration: 9s;
  animation-delay: 0.3s;
}

.bubble:nth-child(10) {
  left: 95%;
  width: 10px;
  height: 10px;
  animation-duration: 6.8s;
  animation-delay: 1.4s;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-300px);
  }
}

/* @media
----------------------------------------*/
@media screen and (max-width: 900px) {
  .online_store img {
   max-width: 800px;
  }
}

@media screen and (max-width: 800px) {
  .flavor_options {
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
  }

  .online_store img {
   max-width: 700px;
  }
}

@media screen and (max-width: 740px) {
  header {
    padding: 10px 10px;
  }

  header h1 {
    height: 50px;
    padding-left: 40px;
    background-size: 36px;
  }

  header h1 a {
    font-size: 2.4rem;
  }

  .btn {
    top: 20px;
    right: 20px;
  }

  .fv_message {
    padding-top: 100px;
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .product_detail h3 {
    font-size: 2.4rem;
  }

  .width_lg,
  .width_md {
    padding-right: 4%;
    padding-left: 4%;
  }

  .product_detail .width_md {
    padding-right: 8%;
    padding-left: 8%;
  }

  .product_list_items {
    align-items: center;
  }

  .product_list_items::after {
    content: "";
    display: block;
    visibility: hidden;
    width: 150px;
    height: 288px;
    margin-bottom: 8%;
    flex: 0 0 auto;
  }

  .online_store img {
   max-width: 600px;
  }
  
  .sp_only_display {
    display: inline-block;
  }

  .sp_only_hidden {
    display: none;
  }

  .online_store img {
   max-width: 500px;
  }

  nav.local {
    margin-top: 8%;
    margin-bottom: 8%;
  }

  .local ul {
    margin-bottom: 6%;
    flex-direction: column;
  }

  .local ul li {
    margin-bottom: 2%;
  }
}

@media screen and (max-width: 500px) {
  .online_store img {
   max-width: 400px;
  }

  .product_list_items {
    justify-content: center;
    gap: 8%;
  }
}

@media screen and (max-width: 440px) {
  .btn {
    padding: 10px;
  }

  .online_store img {
    max-width: 300px;
   }

   .sp_only_display_sm {
    display: inline-block;
   }

  .sp_only_hidden_sm {
    display: none;
  }

  section {
    padding-top: 12%;
    padding-bottom: 12%;
  }

  footer {
    padding-top: 14%;
  }
}