@charset "utf-8";

/* 共通レイアウトはここから */

body {
  color: #333;
  font-family: "Noto Serif JP", serif;
}

.en {
  font-family: "Lato", sans-serif;
}

img {
  width: 100%;
}

h1,
h4,
h5 {
  text-align: center;
}

h1 {
  font-size: 1.7rem;
  color: #006837;
}

h2 {
  font-size: 1.8rem;
  line-height: 1.3;
}

h3 {
  margin: 30px 0 15px;
  font-size: 1.35rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  margin: 10px 0 30px;
  font-size: 0.75rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav_list {
  display: flex;
  align-items: center;
  width: 25%;
}

.nav_list img {
  padding-right: 5px;
}


/* ハンバーガーメニューここから */

.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  align-items: center;
  height: 60px;
  width: 45px;
  padding: 10px 10px 10px 0;
  position: relative;
  z-index: 100;
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 1px;
  width: 22px;
  border-radius: 3px;
  background: #000;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.85);
  transition: 0.5s;
  padding: 30px 0 0 20px;
}

.nav_content ul {
  padding-top: 30px;
}

.nav_content ul li {
  padding: 30px 0 0 20px;
}

.nav_content ul li a {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
}

.nav_content ul li a:hover {
  text-decoration: underline;
  transition: 0.7s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
  left: 0%;
  /* メニューを画面に入れる */
}

/* ハンバーガーメニューここまで */

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 5%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.85);
  border: solid 1px #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: translateY(20%) rotate(-45deg);
}

footer {
  background-color: #f0e9d3;
}

.footer_contents {
  padding: 60px 40px;
}

.footer_contents h1 {
  padding-bottom: 20px;
}

.footer_contents ul {
  padding-bottom: 20px;
}

.footer_contents li {
  padding-bottom: 8px;
  font-size: 0.75rem;
}

.footer_contents small {
  font-size: 0.5rem;
}

/* 共通レイアウトはここまで */

/* HOMEはここから */
#top_area,
#story_area,
#blog_area,
#news_area {
  margin: 0 auto 50px;
}

#top_area {
  width: 95%;
}

#story_area,
#blog_area,
#news_area {
  width: 85%;
}

.img-frame {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.img-01,
.img-02,
.img-03,
.img-04,
.img-05,
.img-06,
.img-07,
.img-08,
.img-09,
.img-10,
.img-11 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-01 {
  background-image: url(../images/header_slid1-100.jpg);
  animation: slide-animation-01 24s infinite;
}

.img-02 {
  background-image: url(../images/header_slid2-100.jpg);
  animation: slide-animation-02 24s infinite;
}

.img-03 {
  background-image: url(../images/header_slid3-100.jpg);
  animation: slide-animation-03 24s infinite;
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1.0);
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
    transform: scale(1.15);
  }

  90% {
    opacity: 0
  }

  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}

@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
    transform: scale(1.1);
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: scale(1.0);
  }

  100% {
    opacity: 0;
  }
}

@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }

  60% {
    opacity: 0;
    transform: scale(1.0);
  }

  70% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.about_contents {
  font-size: 0.7rem;
  line-height: 1.5;
}


/* 初期状態: 画像は透明かつ位置がずれている */
.scroll-fade {
  opacity: 0;
  transform: translateX(100px);
  /* 初期位置は右側（右から表示） */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* 左から出てくる画像 */
.scroll-fade.left {
  transform: translateX(-100px);
  /* 左側から表示 */
}

/* 右から出てくる画像 */
.scroll-fade.right {
  transform: translateX(100px);
  /* 右側から表示 */
}

/* visibleクラスが追加されたら表示 */
.scroll-fade.visible {
  opacity: 1;
  transform: translateX(0);
  /* 最終的に中央に配置 */
}


.line-up li {
  margin-bottom: 30px;
}

.line-up p {
  writing-mode: vertical-rl;
  letter-spacing: .2em;
  font-size: 16px;
}

.line-up-wear,
.line-up-food,
.line-up-snack {
  position: relative;
  width: 75%;
}

.line-up-wear p,
.line-up-food p,
.line-up-snack p {
  position: absolute;
  top: 0;
  right: -8%;
}

.line-up-interior,
.line-up-drink {
  width: 75%;
  margin-left: auto;
  position: relative;
}

.line-up-interior p,
.line-up-drink p {
  position: absolute;
  top: 0;
  left: -8%;
}

#line-up_area {
  margin-bottom: 50px;
}

#line-up_area .access {
  margin-right: 28px;
}

.blog {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.blog2,
.blog3 {
  height: 81.5%;
}

.blog p {
  text-align: center;
  font-size: 0.7rem;
  margin-top: 5px;
}

.news_top {
  margin-top: 20px;
}

time {
  padding-right: 10px;
}

.news_top li {
  font-size: 0.75rem;
  padding-bottom: 12px;
}

.access {
  font-size: 0.75rem;
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.access::after {
  content: '';
  width: 75px;
  height: 12px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
}

.campaign {
  background-color: #006837;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 20px 15px;
}

.touroku {
  background-color: #fff;
  color: #000;
  padding: 8px 12px;
  width: fit-content;
  margin: 30px auto 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.touroku:hover {
  background-color: #000;
  color: #fff;
  transition: 0.7s;
}

/* HOMEはここまで */
/* STORYはここから */
.img-04 {
  background-image: url(../images/story-slide1-100.jpg);
  animation: slide-animation-01 24s infinite;
}

.img-05 {
  background-image: url(../images/story-slide2-100.jpg);
  animation: slide-animation-02 24s infinite;
}

.img-06 {
  background-image: url(../images/story-slide3-100.jpg);
  animation: slide-animation-03 24s infinite;
}

#story_top,
#products_top {
  width: 95%;
  margin: 15px auto;
}

#story_contents_area,
#company,
#blog,
#news {
  width: 88%;
  margin: 25px auto;
}

#story_top h2,
#company h4,
#products_top h2 {
  margin-bottom: 10px;
}

h6 {
  text-align: center;
  font-size: 1.5rem;
  margin: 20px 0;
}

.story_contents {
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 15px 0;
}

table {
  font-size: 0.75rem;
}

th {
  font-weight: normal;
  padding: 10px 0;
  width: 20%;
}

td {
  padding: 10px 0 10px 5px;
}

/* STORYはここまで */
/* PRODUCTSはここから */

.img-07 {
  background-image: url(../images/products-slide7-100.jpg);
  animation: slide-animation-products 40s infinite;
}

.img-08 {
  background-image: url(../images/products-slide8-100.jpg);
  animation: slide-animation-products 40s infinite 8s;
}

.img-09 {
  background-image: url(../images/products-slide9-100.jpg);
  animation: slide-animation-products 40s infinite 16s;
}

.img-10 {
  background-image: url(../images/products-slide10-100.jpg);
  animation: slide-animation-products 40s infinite 24s;
}

.img-11 {
  background-image: url(../images/products-slide11-100.jpg);
  animation: slide-animation-products 40s infinite 32s;
}

@keyframes slide-animation-products {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: scale(1.0);
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
    transform: scale(1.15);
  }

  100% {
    opacity: 0;
  }
}

aside {
  margin: 40px 0 50px;
}

aside ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  gap: 15px 0;
}

aside ul li {
  font-size: 0.8rem;
  text-decoration: underline solid 1px;
  text-underline-position: under;
}

.thema1 {
  grid-column: 1/3;
}

.thema2 {
  grid-column: 3/5;
}

.thema3 {
  grid-column: 5/7;
}

.thema4 {
  grid-row: 2/3;
  grid-column: 2/4;
}

.thema5 {
  grid-row: 2/3;
  grid-column: 4/6;
}

#products {
  width: 90%;
  margin: auto;
}

.comment {
  margin: 40px 0;
}

#products h4 {
  font-size: 1.1rem;
}

.products_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
  margin: 30px 0 50px;
}

.products_contents p,
.comment {
  font-size: 0.7rem;
  text-align: center;
}

.products_contents img {
  height: 100%;
}

/* PRODUCTSはここまで */
/* BLOG・NEWSはここから */

#blog h4,
#news h4 {
  margin-bottom: 30px;
}

.blog_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 40px 10px;
}

.blog_contents p {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.5;
  width: 90%;
}

.blog_contents img {
  height: 85%;
  margin-bottom: 8px;
}

.news_contents {
  margin-top: 20px;
}

.news_contents li {
  font-size: 0.75rem;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}

.news_contents li time {
  margin-bottom: 5px;
}

/* BLOG・NEWSはここまで */
/* INFOはここから */

#info {
  width: 90%;
  margin: 50px auto;
}

#info h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  padding: 20px 0 20px 15px;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}

/* コンテナ */
.container {
  margin: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
}

.container #zipcode {
  background-color: rgba(225, 225, 225, 0.4);
  border-radius: 8px;
  border: 1px solid #000;
  margin-right: 25px;
}

/* 地図表示のスタイル */
iframe #map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  border: none;
}

/* ステータスメッセージ */
#status {
  font-size: 0.9em;
  color: #333;
  margin-top: 10px;
}

/* ボタン */
button {
  background-color: #006837;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 10px 0;
}

button:hover {
  background: #fff;
  color: #006837;
  border: 1px solid #006837;
  transition: 0.7s;
}

/* 入力フィールド */
input[type="text"] {
  padding: 10px;
  font-size: 16
}

iframe {
  width: 100%;
}

/* 最寄り店舗リストのスタイル */
#nearestStoresContainer {
  margin: 30px 0;
}

#nearestStoresContainer h2 {
  font-size: 1.2rem;
}

#nearestStoresList {
  list-style-type: none;
  padding-left: 0;
}

#nearestStoresList li {
  font-size: 1em;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

#nearestStoresList li:last-child {
  border-bottom: none;
}

/* INFOはここまで */

/* MEMBERSHIPはここから */

#loginpage {
  margin: 40px auto;
  width: 80%;
}

#loginpage h2 {
  margin-bottom: 30px;
}

#loginpage p {
  margin-bottom: 5px;
}

#loginpage input {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
  display: block;
  width: fit-content;
  margin-bottom: 20px;
  padding: 15px;
  outline: none;
}

#loginpage input:focus {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-input-placeholder {
  color: rgba(225, 225, 225, 0.4);
}

:-moz-placeholder {
  color: rgba(225, 225, 225, 0.4);
}

::-moz-placeholder {
  color: rgba(225, 225, 225, 0.4);
}

:-ms-input-placeholder {
  color: rgba(225, 225, 225, 0.4);
}

.login {
  position: relative;
  display: block;
  margin: 30px 0;
  padding: 10px 17px;
  width: fit-content;
  font-size: 1.2em;
  background: #006837;
  color: #fff;
}

.login:hover {
  background: #fff;
  color: #006837;
  border: 1px solid #006837;
  transition: 0.7s;
}

/* MEMBERSHIPはここまで */

/* CONTACTはここから */

#form {
  width: 90%;
  margin: 50px auto;
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 100%;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: 15px;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: rgb(231, 200, 159);
  color: #42210b;
  font-size: 11px;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 16px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 16px;
}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 20px;
  width: fit-content;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.Form-Btn:hover {
  background: #006837;
  transition: 0.7s;
}


/* CONTACTはここまで */