@charset "UTF-8";
html {
  font-size: 62.5%; /* =10px=1rem */
}
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #383e45;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* モーダルが表示されたときにスクロールを無効にする */
.body-no-scroll {
  overflow: hidden;
}

@media (min-width: 700px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  display: block;
  text-decoration: none;
  color: #383e45;
}
ul {
  list-style: none;
}
.wrapper {
  max-width: 1166px;
  margin: 0 auto;
  padding: 0 25px;
}

/* コンテンツ間の余白 */
.content-pad {
  padding-top: 100px;
  padding-bottom: 40px;
}

/* サブタイトル */
.e-title {
  font-family: 'Lora', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 0.5;
  font-size: 15px;
  opacity: 0.5;
  line-height: 0.1;
}

.sub-title {
  font-size: 20px;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
}

/* 画像共通部分 */
.display {
  display: flex;
  flex-direction: column;
}
.visual {
  width: 100%;
  height: 100%;
  border-radius: 2.2rem;
  overflow: hidden;
  position: relative;
  /* margin-top: 30px; */
}

.visual-img {
  display: block;
  object-fit: cover;
}

@media (min-width: 700px) {
  .display {
    flex-direction: row;
    justify-content: space-between;
    height: 650px;
  }
  .visual {
    margin-top: 0;
  }
  .content-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* HEADER --------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 100;
}
@media (min-width: 980px) {
  .header {
    position: static;
  }
}
.header-container {
  height: 155px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  width: 80px;
  line-height: 0;
}
.header-logo a {
  display: block;
}
.main-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 50%;
  background: rgba(255, 255, 255, 0.8);
  /* background-image: linear-gradient(90deg, transparent 0%, #fff 70%); */
  transition: all 0.3s;
  z-index: 11;
}
.main-nav.slide {
  transform: translateX(-100%);
}
.main-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-size: 1.6rem;
}
.main-nav li {
  text-align: center;
  /* margin-left: 0; */
  height: 80px;
  /* line-height: 80px; */
}
.main-nav a {
  color: #383e45;
  display: block;
  position: relative;
}

.nav-hov a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  /* left: 0; */
  left: 10%;
  right: 10%;
  /* width: 100%; */
  width: 80%;
  height: 1.5px;
  background: #383e45;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.nav-hov a:hover::after {
  transform: scale(1, 1);
}
.insta-hov:hover {
  opacity: 0.7;
}

/* ヘッダーで隠れないように下のコンテンツにマージン */
.hd-margin {
  margin-top: 155px;
}

@media (min-width: 980px) {
  .main-nav {
    position: static;
    width: auto;
    background-color: initial;
  }
  .main-nav ul {
    flex-direction: row;
    font-size: 1.6rem;
  }
  .main-nav li {
    height: auto;
    line-height: inherit;
    margin: 0 0 0 50px;
  }
  .main-nav a {
    display: inline;
  }
  .hd-margin {
    margin-top: 0px;
  }
  .nav-hov a::after {
    width: 100%;
    right: 0;
    left: 0;
  }
}

/* ハンバーガーボタン */

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  position: relative;
  border: none;
  z-index: 99; /* メニューよりも前面に表示する */
}
.btn span,
.btn span::before,
.btn span::after {
  content: '';
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 2px;
  background: #c97263;
  position: absolute;
  transition: all 0.4s ease-out;
}
.btn span::before {
  bottom: 8px;
}
.btn span::after {
  top: 8px;
}
.btn.open span {
  transform: rotate(180deg);
}
.btn.open span::before {
  bottom: 0;
  width: 18px;
  transform: rotate(45deg) translate(2px, 6px);
}
.btn.open span::after {
  top: 0;
  width: 18px;
  transform: rotate(-45deg) translate(2px, -6px);
}
@media (min-width: 980px) {
  .btn {
    display: none;
  }
}
.key-visual {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 155px;
}
.key-visual-img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
}

.text-img {
  position: absolute;
  bottom: 3%;
  right: 1%;
  max-width: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.ky-wrapper {
  padding: 0;
  margin: 0;
}

.sw-non {
  border-radius: none;
}

@media (min-width: 700px) {
  .key-visual {
    width: 65%;
  }
  .key-visual-img {
    height: 50vh;
    border-radius: 2.2rem;
    object-fit: cover;
    overflow: hidden;
  }
  .ky-wrapper {
    max-width: 1166px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

@media (min-width: 980px) {
  .key-visual {
    margin-top: 0px;
    /* width: 65%; */
  }
}

.fv-aria {
  display: flex;
  justify-content: flex-start;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.fv-logo {
  display: block;
  margin: 0 auto;
  width: 50%;
}

@media (min-width: 700px) {
  .fv-aria {
    justify-content: space-between;
    flex-direction: row;
  }
  .fv-logo {
    width: 45%;
    margin-top: 250px;
  }
}

@media (min-width: 980px) {
  .fv-logo {
    margin-top: 100px;
  }
}

/* オルについて */
.text-title {
  margin-bottom: 30px;
  margin-top: 5rem;
  font-size: 2.4rem;
  line-height: 2;
  display: inline-block;
  white-space: normal;
  font-weight: 300;
}

/* ボタン */
.about-btn {
  margin: 60px auto 0;
}
.about-btn a {
  display: block;
  padding: 5px 14px 5px 14px;
  font-size: 17px;
  letter-spacing: 0.07em;
  line-height: 2;
  background: #fff;
  border: 2px solid #c97263;
  border-radius: 20px;
  text-align: center;
  width: 20rem;
  transition: all 0.5s 0s ease;
  margin: 0 auto;
}
.about-btn a:hover {
  color: #fff;
  background-color: #c97263;
}
@media (min-width: 700px) {
  .text-title {
    font-weight: 500;
  }

  .about-oru {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .about-content {
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 50%; */
  }

  .visual-img {
    height: 100%;
    object-fit: cover;
  }
}
/* 取り扱い商品 */

.ref {
  list-style-type: circle;
  margin-left: 20px;
}
/* スライダーのサイズ */
.swiper {
  max-width: 1166px;
  margin: 20px auto;
  /* padding-bottom: 24px; */
}
/* ページネーションの位置調整 */
/* .swiper-pagination {
  bottom: 0 !important;
} */
/* 左右のナビゲーション */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: #aaa;
}
.swiper-slide {
  width: 100%;
  height: 100%;
  /* border-radius: 2.2rem; */
  overflow: hidden;
  position: relative;
}

.swiper img {
  /* aspect-ratio: 192/108; */
  aspect-ratio: 6/4;
  object-fit: cover;
  margin: auto;
}
.product-item {
  border-radius: 2.2rem;
  object-fit: cover;
  overflow: hidden;
}

/* 出展情報 */
/* 画像 */
.market-img {
  aspect-ratio: 1/1;
}
/* 高さ */
@media (min-width: 700px) {
  .market-hei {
    height: 500px;
  }
}
/* 出展場所・日時 */
.navi {
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: 3rem;
  border-spacing: 0;
}
.navi th,
td {
  display: block;
}
.navi th {
  text-align: left;
  padding: 30px 30px 0 30px;
}

.navi td {
  border-bottom: 1px solid #938d8d;
  padding: 0 30px 30px 30px;
}
.top-boder {
  border-top: 1px solid #938d8d;
}
/* SNS */
iframe {
  margin: 0 auto 12px !important;
}

/* バナー */
.online-shop-bn {
  max-width: 900px;
  margin: auto;
  /* background: #404040; */
}
.banner-title {
  margin-bottom: 30px;
  margin-top: 5rem;
  font-size: 2rem;
  line-height: 2;
  margin: auto;
  text-align: center;
}
.online-shop-bn :hover {
  opacity: 0.7;
}
/* フッター ーーーーーーーーーーーー*/
.footer-before {
  position: relative;
  height: 300px;
}
.wave-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
}

.footer-inner {
  background-color: #c97263;
  transform: translateY(-1px);
}

.footer-img {
  position: relative;
  transform: translateY(-10vh);
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 画像を下揃えにする */
  padding-bottom: 50px; /* 下の余白調整（必要に応じて変更） */
}

/* 画像 */
.fluff,
.eucal {
  position: relative;
  position: absolute;
}

.fluff {
  width: 22vw;
  left: 10%;
  max-width: 20rem;
  bottom: -60%; /* 下に移動（必要に応じて調整） */
}
.eucal {
  width: 22vw;
  right: 10%;
  max-width: 20rem;
  bottom: -40%; /* 下に移動（必要に応じて調整） */
}
/* ナビゲーション */
.container {
  padding: 15vh 10vh 5vh;
}
.font-white {
  color: #fff;
}
.font-white a {
  color: inherit;
}
.nav-item li {
  margin-bottom: 2.5rem;
}
.f-right {
  margin-top: 10rem;
}

.nav-item a {
  display: inline;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.nav-item a:hover::after {
  transform: scale(1, 1);
}
/* インスタロゴ */
.f-right {
  text-align: right;
}
.fa-instagram {
  font-size: 5rem;
}

.fa-instagram:hover {
  opacity: 0.7;
}

@media (min-width: 700px) {
  .container {
    padding: 15vh 15vw 5vh;
  }
}

@media (min-width: 1000px) {
  .fluff {
    bottom: 25%; /* 下に移動（必要に応じて調整） */
  }
  .eucal {
    bottom: 50%; /* 下に移動（必要に応じて調整） */
  }
  @media (min-width: 1400px) {
    .fluff {
      bottom: 50%; /* 下に移動（必要に応じて調整） */
    }
    .eucal {
      bottom: 100%; /* 下に移動（必要に応じて調整） */
    }
  }
}

/* フッター上部の波 */

/* about.html--------------------------------- */

.page-title {
  font-size: 25px;
  font-weight: 400;
}

.about-title {
  font-size: 1.5rem;
  margin-bottom: 13px;
}
.about-message {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.about-img {
  max-width: 650px;
  width: 100%;
  border-radius: 2.2rem;
}
.sec-margin {
  margin-bottom: 150px;
  padding: 0 20px; /* 追加のパディングでさらに余白を調整 */
}
.about-subimg {
  max-width: 500px;
  width: 100%;
  border-radius: 2.2rem;
  aspect-ratio: 580/440;
  height: fit-content;
  object-fit: cover;
}

.about-ilast {
  max-width: 100%;
  display: block;
}

/* 画像やテキストの幅を調整 */
.about-img,
.about-subimg,
.strawberry-img {
  margin: 0 auto;
}

.title-container {
  display: flex;
  align-items: center; /* テキストと画像を縦方向に揃える */
  justify-content: flex-start; /* コンテンツを左寄せにする */
  gap: 20px; /* テキストと画像の間にスペースを追加 */
}

.dot {
  margin-left: 5px; /* 少し間隔をあける */
}

.eucal-img {
  max-width: 80px; /* 画像の最大幅を指定 */
  height: auto; /* 画像の比率を維持しつつサイズを自動調整 */
}

.display-s {
  display: flex;
  flex-direction: column;
}

.display-soru {
  display: flex;
  flex-direction: column;
}

.strawberry-img {
  margin: 0; /* 余白をリセット */
  padding: 0; /* 内側の余白をリセット */
  width: 100px;
  height: 100px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .title-container {
    gap: 30px; /* 画面サイズが大きくなった時のスペースを調整 */
  }
}
/* profile */
.profile {
  background: #f0eff0;
  padding-top: 50px;
  padding-bottom: 50px;
  padding: auto !important;
  display: flex;
}

.pr-1 h3 + p {
  margin-bottom: 40px;
  font-size: 20px;
}

.profile-title {
  font-family: 'Syne Mono', monospace;
  font-weight: 400;
  font-style: normal;
  color: #cea870;
  font-size: 20px;
  margin-bottom: 40px;
  margin-top: 2rem;
}
.prof-img {
  width: 100%;
  max-width: 500px;
}

.about-text-content,
.about-text-content-s {
  margin: 0 auto;
  max-width: 600px;
}

@media (min-width: 980px) {
  .ab-main-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ab-main-title {
    max-width: 500px;
    margin: auto;
  }
  .text-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 150px;
  }

  .text-flex p {
    width: 60%;
  }

  .text-title {
    margin-top: 0px;
  }
  .margin-auto {
    margin: auto;
  }
  .about-text-content {
    padding-left: 100px;
  }

  .about-text-content-s {
    padding-right: 100px;
  }
  .display-soru {
    /* display: flex; */
    flex-direction: row;
    justify-content: space-between;
  }

  .display-s {
    flex-direction: row-reverse;
    align-items: center;
  }
  .p-display {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pr-1 {
    padding-left: 100px;
  }
  .prof-img {
    width: 40%;
  }
}

/* ページトップボタン */
.page-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #5b5b5b;
  color: #fff;
  cursor: pointer;
  position: fixed;
  right: 10%;
  bottom: 80px;
  z-index: 99;
}
.page-top:hover {
  background: #cea870;
}
.page-top::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  margin: 6px auto 0;
}
.hide {
  display: none;
}

/* contact--------------- */
.con-flex {
  display: flex;
  justify-content: row;
  align-items: flex-end;
  margin-bottom: 5rem;
}

.contact-illast {
  min-width: 50px;
  margin-left: 1rem;
}

.contact div {
  padding-bottom: 1.6rem;
  border-bottom: 1px dashed #cea870;
}
.contact label {
  display: block;
  padding: 1rem 0;
}
.contact input[type='text'],
.contact input[type='email'],
.contact select,
.contact textarea {
  width: 100%;
  max-width: 28em;
  padding: 0.4rem 0.8rem;
  border: 1px solid #2d2b2b;
  border-radius: 10px;
  color: #515151;
}
.contact input[type='text'],
.contact select {
  width: 14em;
}
.contact textarea {
  height: 8em;
  vertical-align: top;
}
input:focus,
select:focus,
textarea:focus {
  background-color: rgba(245, 233, 216, 0.42);
}
.contact input[type='submit'] {
  background: #fff;
  color: #2d2b2b;
  border: 1px solid #c97263;
  border-radius: 20px;
  padding: 0.6rem 2rem;
  margin: 2rem 0;
  position: relative;
  z-index: 50;
}
input[type='submit']:hover {
  background-color: #c97263;
  color: #fff;
}
/* select 選択肢除外 */
option[disabled] {
  display: none;
}
/* select 選択記号 */
.selectbox label {
  position: relative;
}
.selectbox label::before {
  content: '';
  position: absolute;
  width: 0.8em;
  height: 0.5em;
  background: #cea870;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: 120%;
  left: 12.5em;
  pointer-events: none; /* 疑似要素をクリック可能に */
}
.selectbox label::after {
  position: absolute;
  content: '';
  width: 0.8em;
  height: 0.5em;
  background: #cea870;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 145%;
  left: 12.5em;
  pointer-events: none; /* 疑似要素をクリック可能に */
}
/* PHP版追加 */
/* エラーメッセージ */
span.caution {
  display: block;
  color: #c66c6e;
  font-size: 1.4rem;
  font-weight: 500;
}

/* 入力内容確認ページ・thanksページ */
.confirm p,
.thanks p:last-child {
  background-color: #ead7bbd4;
  padding: 0.4rem 1rem;
}
.confirm div.btn {
  padding-bottom: 0;
  border: none;
}
.thanks p {
  margin-bottom: 1rem;
}

/* 戻るボタン */
.confirm input[name='btn_back'] {
  background-color: #bbb;
  margin-right: 0.6rem;
}
.confirm input[name='btn_back']:hover {
  background-color: #aaa;
}

@media (min-width: 800px) {
  .confirm input[name='btn_back'] {
    margin-right: 2rem;
  }
}

/* sweets----------------------  */
.ref {
  list-style-type: circle;
  margin-left: 20px;
}
.sw-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.sw-container img {
  aspect-ratio: 640/427;
  object-fit: cover;
}
.sw-container li {
  margin-bottom: 60px;
}

.item {
  text-align: center;
}
.sw-img {
  position: relative;
}

.sw-img::after {
  content: '';
  display: block;
  background-image: url(../img/add.svg);
  background-color: #fff;
  opacity: 0.8;
  background-size: cover;
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/* 文字サイズ */
.item h3 {
  font-size: 1.5rem;
  margin-top: 15px;
  font-weight: normal;
}
.sma-font {
  font-size: 1.4rem;
}
.sw-title {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.swiper p {
  font-size: 1.3rem;
}

@media (min-width: 700px) {
  .sw-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .item {
    cursor: pointer;
  }
}
.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: all 0.4s;
}
.modal-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  padding: 40px 6%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.modal-content {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}
.modal-text {
  color: #000;
  text-align: center;
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
}
.close {
  text-align: center;
  margin: 30px 0 10px;
}
.close span {
  padding: 10px 40px;
  text-align: center;
  color: #fff;
  background: #cea870;
  cursor: pointer;
}

/* external icon */
.external {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  box-shadow: -2px 2px 0 0 #066, -4px -4px 0 -2px #066, 4px 4px 0 -2px #066;
  box-shadow: #066;
  margin-left: -2px;
  margin-top: 1px;
}
.external::after,
.external::before {
  content: '';
  display: block;
  position: absolute;
  right: -4px;
}
.external::before {
  background: #066;
  transform: rotate(-45deg);
  width: 12px;
  height: 2px;
  top: 1px;
}
.external::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid #066;
  border-top: 2px solid #066;
  top: -4px;
}
/* swiper */

.swiper-pagination {
  position: relative; /* 必要に応じてpositionを調整 */
  bottom: -20px; /* スライダーの下に配置 */
  /* width: 30%; スライダーと同じ幅 */
  height: 10px; /* ページネーションの高さを調整 */
  text-align: center; /* 中央に配置 */
  background: none; /* 背景色を無効化（必要に応じて） */
  margin-top: 40px;
  margin-bottom: 40px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #aaa;
}
.swiper-pagination-bullet {
  width: 20px; /* 線の幅を設定 */
  height: 1.5px; /* 線の高さを設定 */
  border-radius: 0; /* 丸ではなく、四角形にする */
  background-color: #333; /* 線の色 */
  margin: 0 !important;
}

.swiper-container {
  overflow: visible; /* ページネーションを外に表示できるように */
}
