@charset "UTF-8";

/*-------------------------------------------
TOP-Mainvisual
-------------------------------------------*/
.mainvisual {
  height: 100vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mainvisual .fade-img img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.mainvisual .fade-img li {
  position: absolute;
  opacity: 0;
  animation: fade 15s infinite;
}

.mainvisual .fade-img li:nth-child(1) {
  animation-delay: 0s;
}

.mainvisual .fade-img li:nth-child(2) {
  animation-delay: 5s;
}

.mainvisual .fade-img li:nth-child(3) {
  animation-delay: 10s;
}

.mainvisual .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 350px;
  width: 60%;
}

.mainvisual .logo img {
  width: 100%;
  height: auto;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*-------------------------------------------
TOP-intro
-------------------------------------------*/
#intro {
  background-color: #e6b4b4;
  /* background-color: rgb(229, 185, 185); */
}

#intro .intro-text {
  margin: 0 auto;
  width: fit-content;
  padding: 20px;
}

#intro h2 {
  padding: 30px 0;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.1em;
}

#intro p {
  padding: 10px 0 40px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.08em;
}

article {
  text-align: center;
}

/*-------------------------------------------
TOP-point
-------------------------------------------*/
#point {
  background-color: #fffceb;
  padding: 20px;
}

#point .flex {
  display: flex;
  justify-content: space-between;
  margin: 70px auto 0;
  padding-bottom: 60px;
  max-width: 1000px;
}

#point .flex .point-text img {
  border-radius: 50%;
  width: 230px;
  height: 230px;
  object-fit: cover;
}

#point .flex .point-text p {
  width: 15em;
  padding-top: 25px;
}

/* 
.point01, .point02, .point03 {
  position: relative;
}

.picture .picture01 {
  position: absolute;
  left: 240px;
  top: 30px;
  max-width: 160px;
  width: 50%;
}

.picture .picture02 {
  position: absolute;
  right: 230px;
  top: 200px;
  width: 120px;
}

.picture .picture03 {
  position: absolute;
  left: 250px;
  top: 130px;
  width: 75px;
}

.picture .picture04 {
  position: absolute;
  right: 210px;
  bottom: 250px;
  width: 150px;
}
*/

@media (max-width: 768px) {
  #point .flex {
    display: block;
    padding-bottom: 30px;
  }

  #point .flex .point-text p {
    margin: 0 auto;
    line-height: 2em;
  }

  #point .point {
    margin-bottom: 40px;
  }

  /* 
  .picture .picture01 {
    left: 73%;
    top: 60%;
    max-width: 110px;
    width: 30%;
  }

  .picture .picture02 {
    left: 10%;
    top: 65%;
    width: 85px;
  }

  .picture .picture03 {
    left: 78%;
    top: 70%;
    width: 55px;
  }

  .picture .picture04 {
    left: 5%;
    top: 50%;
    width: 100px;
  }
  */
}

/* 
@media (max-width: 412px) {
  #point .flex .picture .picture01,
  #point .flex .picture .picture02,
  #point .flex .picture .picture03,
  #point .flex .picture .picture04 {
    display: none;
  }
}
*/

/*-------------------------------------------
TOP-season
-------------------------------------------*/
.season-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0;
  margin: 60px auto;
  list-style: none;
  max-width: 800px;
}

/* 各リストアイテムのスタイル */
.season-menu li {
  flex: 1 1 calc(33.333% - 40px); /* 3列表示、間隔を空ける */
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.season-menu li:hover {
  transform: translateY(-2px); /* ホバー時に少し浮かせる */
}

.season-menu .img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.season-menu .img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を縦横比を保ちながら切り取る */
  border-radius: 8px;
}

.season-menu .text {
  margin-top: 15px;
}

.season-menu .text h4 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.season-menu .text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

#season {
  position: relative;
}

/* 
.picture07 {
  position: absolute;
  width: 110px;
  left: 150px;
  top: 400px;
}

.picture06 {
  position: absolute;
  width: 150px;
  right: 100px;
  bottom: 0;
}

.picture05 {
  position: absolute;
  width: 180px;
  right: 80px;
  top: 500px;
}
*/

@media (max-width: 768px) {
  .season-menu li {
    flex: 1 1 calc(50% - 20px); /* 2列表示 */
  }
}

@media (max-width: 480px) {
  .season-menu li {
    flex: 1 1 100%; /* 1列表示 */
  }
}

/*-------------------------------------------
TOP-news
-------------------------------------------*/
#news {
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 0 10px;
}

#news ul {
  margin-top: 30px;
}

#news ul li {
  text-align: left;
  padding: 20px 0 15px;
  border-bottom: dotted 1.5px rgba(129, 119, 119, 0.3);
  display: flex;
  align-items: center; /* 横並びの際に中央揃え */
}

#news ul time {
  color: rgb(104, 104, 104);
  padding-right: 30px;
  white-space: nowrap; /* 日付が折り返されないように */
}

/* スマホ用（画面幅600px以下） */
@media screen and (max-width: 600px) {
  #news {
    max-width: 100%;
    padding: 0 15px;
  }

  #news ul li {
    flex-direction: column; /* スマホでは縦並び */
    align-items: flex-start;
  }

  #news ul li time {
    font-size: 12px;
    padding-right: 0;
    margin-bottom: 5px; /* 余白を追加 */
  }
}

/*-------------------------------------------
lineup
-------------------------------------------*/
.title {
  text-align: center;
}

.product-list {
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  flex-wrap: wrap;
  text-align: center;
  gap: 35px;
}

.product-list li {
  margin-bottom: 60px;
}

.product-list li a:hover {
  opacity: 0.8;
}

.product-list img {
  margin-bottom: 10px;
  vertical-align: top;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-list img:hover {
  transform: scale(1.01);
}

.product-list p {
  color: #333;
  font-size: 14px;
}

.link-text {
  display: block;
  margin-top: 40px;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 10px 0 100px;
}

.pagination li {
  padding: 0 20px;
}

#page {
  text-align: center;
  margin: 100px 0;
  padding: 0 20px;
}

#page p {
  display: inline-block;
  color: #757575;
  border-radius: 50%;
  border: 1px solid #dedede;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 10px;
}

#page a {
  display: inline-block;
  color: black;
  border-radius: 50%;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgb(229, 185, 185);
  color: white;
  transition: 0.3s ease-in-out;
  margin: 0 10px;
}

#page a:hover {
  background-color: #e9d8b7;
  color: #333;
}

@media (max-width: 990px) {
  /* 商品一覧の間隔を調整 */
  .product-list {
    gap: 10px;
    text-align: center;
    margin: 50px auto;
    max-width: 650px;
    justify-content: center;
  }
}

/*-------------------------------------------
item
-------------------------------------------*/
#item {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

#item .item-image {
  max-width: 400px;
  flex-shrink: 0;
  margin-right: 60px;
}

#item .item-image img {
  border-radius: 3px;
}

#item .item-info p {
  margin-bottom: 30px;
  line-height: 1.9;
}

#item .item-info .item-title {
  height: 60px;
  display: flex;
  align-items: center;
  border-top: solid 1px #c3c3c3;
  border-bottom: solid 1px #c3c3c3;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#item .item-info .price {
  font-size: 20px;
  font-weight: bold;
}

#item .item-info .price small {
  font-size: 0.95rem;
  color: #757575;
}

#item .item-info .order select {
  width: 100px;
  height: 30px;
  border: solid 1px #c3c3c3;
  padding: 0 10px;
}

#item .item-info input[type="submit"] {
  margin: 40px 0 0;
}

@media screen and (max-width: 896px) {
  #item {
    flex-direction: column;
  }

  #item .item-image {
    max-width: 100%;
    margin: 0 0 10px;
  }

  #item .item-info {
    padding: 0 16px;
  }
}

/*-------------------------------------------
cart
-------------------------------------------*/
#cart .empty {
  text-align: center;
  margin-top: 60px;
}

#cart form {
  margin: 60px 0 40px;
}

#cart table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px auto;
}

#cart table tr {
  border-bottom: 1px solid #ddd;
}

#cart table tr th {
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

#cart table td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}

#cart table img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

#cart select {
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100px;
}

#cart input[value="再計算"],
#cart input[value="削除"] {
  width: 80px;
  border-radius: 4px;
  color: rgb(204, 125, 125);
  background-color: #fff;
  border: 1px solid #c3c3c3;
  margin: 0;
}

#cart input[value="再計算"]:hover,
#cart input[value="削除"]:hover {
  background: #e9d8b7;
  color: #333;
}

#cart .count {
  display: flex;
  align-items: center;
  gap: 40px;
}

#cart .count p {
  letter-spacing: 0.1em;
}

#cart .submit {
  padding: 8px 16px;
  background-color: #e5b9b9;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#cart .submit:hover {
  background-color: #d1a1a1;
}

#cart #toppage a {
  display: inline-block;
  text-align: center;
  padding: 15px 30px;
  background-color: #e5b9b9;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

#cart #toppage a:hover {
  background-color: #d1a1a1;
}

#cart p {
  font-size: 16px;
  color: #333;
}

#cart input[type="submit"]:disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
}

#cart .welcome {
  text-align: center;
  margin-top: 10px;
}

#cart .total-box {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
  margin-right: 25px;
}

@media (max-width: 900px) {
  #cart table thead {
    display: none;
  }

  #cart table tbody tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
  }

  #cart table tbody tr td {
    border: none;
    padding: 10px 0;
  }

  #cart table tbody tr td img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    margin-bottom: 10px;
  }

  #cart table tbody tr td:nth-child(1) {
    text-align: center;
  }

  #cart table tbody tr td:nth-child(2),
  #cart table tbody tr td:nth-child(3),
  #cart table tbody tr td:nth-child(4),
  #cart table tbody tr td:nth-child(5) {
    text-align: center;
  }

  #cart input[value="削除"] {
    margin: 0 auto;
  }

  #cart form {
    margin: 0;
  }
}

/*-------------------------------------------
customer
-------------------------------------------*/
#customer form {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

#customer .form1,
#customer .form2 {
  margin-bottom: 60px;
}

#customer .form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

#customer .form-label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  width: 200px;
}

#customer .form-input {
  display: flex;
  gap: 10px;
  width: 100%;
}

#customer input[type="text"],
#customer input[type="tel"],
#customer input[type="email"],
#customer input[type="number"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}

#customer select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  width: 99px;
}

#customer p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

#customer input[type="radio"] {
  margin-right: 10px;
}

#customer h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding-bottom: 5px;
  border-bottom: 2px solid #c3c3c3;
}

#customer .form1 h4 {
  margin-bottom: 40px;
}

#customer .form2 h4 {
  margin-bottom: 20px;
}

#customer .form2 p {
  margin-bottom: 20px;
  color: #757575;
  font-size: 14px;
}

@media (max-width: 900px) {
  #customer .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  #customer .form-label {
    width: 100%;
  }

  #customer .form-input {
    width: 100%;
    flex-direction: column;
  }

  #customer input[type="text"],
  #customer input[type="tel"],
  #customer input[type="email"],
  #customer input[type="number"],
  #customer select {
    width: 100%;
  }

  #customer h4 {
    font-size: 16px;
  }
}

/*-------------------------------------------
confirmation
-------------------------------------------*/
#confirmation .finalconfirmation {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 700px;
}

#confirmation h4 {
  font-size: 22px;
  font-weight: bold;
  border-bottom: 2px solid #c3c3c3;
  padding-bottom: 5px;
  margin-top: 30px;
}

#confirmation table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#confirmation table th,
#confirmation table td {
  border-bottom: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

#confirmation table th {
  background-color: #f7f7f7;
  font-weight: bold;
}

#confirmation table td {
  letter-spacing: 0.15em;
}

#confirmation table td img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

#confirmation table td input[type="hidden"] {
  display: none;
}

#confirmation .total {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  text-align: right;
  letter-spacing: 0.15em;
}

#confirmation .delivery-info p {
  font-size: 16px;
  margin: 10px 0;
  margin-top: 20px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  #confirmation table thead {
    display: none;
  }

  #confirmation table tbody tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
  }

  #confirmation table tbody tr td {
    border: none;
    padding: 10px 0;
  }

  #confirmation table tbody tr td img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    margin-bottom: 10px;
  }

  #confirmation table tbody tr td:nth-child(1) {
    text-align: center;
  }

  #confirmation table tbody tr td:nth-child(2),
  #confirmation table tbody tr td:nth-child(3),
  #confirmation table tbody tr td:nth-child(4),
  #confirmation table tbody tr td:nth-child(5) {
    text-align: center;
  }
}

.total {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  letter-spacing: 0.15em;
}

/*-------------------------------------------
thanks
-------------------------------------------*/
#thanks .content {
  padding: 80px 0 0;
  text-align: center;
}

#thanks .content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

#thanks #toppage {
  margin: 20px auto;
  text-align: center;
}

#thanks #toppage a {
  display: inline-block;
  padding: 25px 0 13px;
  color: rgb(229, 185, 185);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  position: relative;
}

#thanks #toppage a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: rgb(229, 185, 185);
  transition: all 0.4s ease;
}

#thanks #toppage a:hover::before {
  width: 100%;
  left: 0;
}

/*-------------------------------------------
mypage
-------------------------------------------*/
#mypage form {
  margin: 60px 0 40px;
}

#mypage table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px auto;
  letter-spacing: 0.1em;
}

#mypage table tr th {
  padding: 10px 0;
  background-color: #fffceb;
  border-radius: 3px;
}

#mypage table td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

#mypage table img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 900px) {
  #mypage table thead {
    display: none;
  }

  #mypage table tbody tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
  }

  #mypage table tbody tr:first-child {
    border: none;
  }

  #mypage table tbody th {
    display: none;
  }

  #mypage table tbody tr td {
    border: none;
    padding: 10px 0;
  }

  #mypage table tbody tr td img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    margin-bottom: 10px;
  }

  #mypage h4 {
    text-align: center;
  }

  #mypage table {
    margin: 0 auto;
  }
}

/*-------------------------------------------
Member registration
-------------------------------------------*/
/* フォーム全体のスタイル */
.confirmation {
  max-width: 450px;
  margin: 50px auto;
}

/* 各グループのスタイル */
.form-group-2 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ラベルのスタイル */
.form-label-2 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  width: 150px;
}

/* 入力フィールドのスタイル */
.form-input-2 {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* 入力フィールドの基本スタイル */
.confirmation input[type="text"],
.confirmation input[type="tel"],
.confirmation input[type="email"],
.confirmation input[type="number"],
.confirmation input[type="password"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}

/* 名前（姓・名）フィールドの特別なスタイル */
.confirmation input[type="text"]:nth-child(1),
.confirmation input[type="text"]:nth-child(2) {
  width: 48%;
}

@media (max-width: 768px) {
  .confirmation {
    padding: 0 15px;
  }

  .form-group-2 {
    flex-direction: column;
    align-items: stretch;
  }

  .form-label-2 {
    width: 100%;
    margin-bottom: 5px;
  }
  .confirmation input[type="text"]:nth-child(1),
  .confirmation input[type="text"]:nth-child(2) {
    width: 100%;
  }
}

/* スマートフォン以上（480px以上） */
@media (max-width: 480px) {
  .confirmation {
    padding: 0 10px;
  }

  .form-group-2 {
    flex-direction: column;
    align-items: stretch;
  }

  .form-label-2 {
    width: 100%;
  }
  .confirmation input[type="text"]:nth-child(1),
  .confirmation input[type="text"]:nth-child(2) {
    width: 100%;
  }
}

/*-------------------------------------------
welcome
-------------------------------------------*/
.welcome {
  text-align: center;
  margin: 20px auto;
}

.welcome h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.welcome p {
  font-size: 14px;
  color: #666;
  margin: 25px 0;
}

.welcome .button {
  display: inline-block;
  padding: 25px 0 13px;
  color: rgb(229, 185, 185);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  position: relative;
  margin-bottom: 25px;
}

.welcome .button::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: rgb(229, 185, 185);
  transition: all 0.4s ease;
}

.welcome .button:hover::before {
  width: 100%;
  left: 0;
}

.empty {
  margin: 0 auto 50px;
  text-align: center;
}

.welcome .sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .welcome .sp_br {
    display: block;
    line-height: 1.8;
  }
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 896px) {

  .site-title {
    margin-bottom: 26px;
  }
}
