@font-face {
  font-family: 'Charter';
  src: url('../fonts/charter-roman.ttf') format('truetype');
}

/* brand nav section */
.nav-container::-webkit-scrollbar {
  display: none;
}

.nav-container {
  position: relative;
  background-color: white;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-container .slick-prev {
  left: 0;
  margin-top: 5px;
}

.nav-container .slick-prev::before {
  color: #413622;
  content: '◀︎';
  font-size: 33px;
  line-height: 0;
}

.nav-container .slick-next {
  right: 0;
  margin-top: 5px;
  margin-right: 10px;
}

.nav-container .slick-next::before {
  color: #413622;
  content: '▶︎';
  font-size: 33px;
  line-height: 0;
}

.nav-main {
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  font-family: 'Charter';
}

.nav-main li {
  display: inline-block;
  white-space: normal;
}

.nav-main a {
  text-decoration: none;
  color: #413622;
  font-weight: bold;
  font-size: 22px;
  padding: 13px 20px;
  display: block;
}

.nav-main a:hover {
  opacity: 0.7;
}
section.top-key-visual-section {
  aspect-ratio: 384 / 149;
}
.top-key-visual-section .frame {
  position: relative;
  height: 100%;
}

.top-key-visual-section .frame-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.top-key-visual-section .image-container {
  /* position: absolute;
  top: 15%;
  left: 20%;
  width: 60%;
  height: 80%;
  overflow: hidden; */
  z-index: 1;
  height: 100%;
}

.top-key-visual-section .slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-key-visual-section .slider a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* ← 切り替えスピードここで調整 */
  z-index: 0;
}

.top-key-visual-section .slider a.active {
  opacity: 1;
  z-index: 1;
}

.top-key-visual-section .slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.top-key-visual-section .slider img.active {
  /* opacity: 1; */
}

.top-key-visual-section .indicators {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.indicator {
  background-color: #7A4143;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.top-key-visual-section .indicator {
  width: 8px;
  height: 8px;
  margin: 0 5px;
}

.indicator.active {
  background-color: #B39C7C;
}

/* center link section */

.center-link-section {
  /* background-color: #f8f6f3; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-link-row {
  display: flex;
  justify-content: center;
  height: 240px;
}

.center-link-row .center-link-item:nth-child(1) {
  /* width: 25%; */
  height: 100%;
}

.center-link-row .center-link-item:nth-child(2) {
  /* width: 50%; */
}

.center-link-row .center-link-item:nth-child(3) {
  /* width: 25%; */
}

.center-link-row .center-link-item {
  position: relative;
  overflow: hidden;
}

.center-link-row .center-link-item img {
  margin: 0 auto;
  height: 100% !important;
  width: auto;
}

.center-link-item-bottom {
  position: relative;
  overflow: hidden;
}

.center-link-item:hover img {
  opacity: 0.7;
}

/* new arrival section */

.new-arrival-section {
  /* background-color: #f8f6f3; */
  /* padding: 20px; */
  min-width: 750px;
}

.new-arrival-section h2 {
  text-align: center;
  margin: 20px 0;
  font-size: 30px;
  color: #b39c7c;
  background: #133A20;
  padding: 5px;
}

.new-arrival-visual {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 64px auto 40px;
  max-width: 1100px;
}

.new-arrival-image {
  max-width: 100%;
  height: auto;

}

.new-arrival-bird {
  position: absolute;
  right: 0;
}

.new-arrival-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-items: baseline;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.new-arrival-item {
  flex: 0 1 calc(25% - 20px);
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-width: 240px;
  height: 354px;
  min-width: 240px;
}

.new-arrival-item a.item-link {
  text-decoration: none;
}

.new-arrival-item a.item-link:hover {
  opacity: 0.7;
}

.new-arrival-item-img {
  width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
}

.new-arrival-item img {
  height: auto;
  display: block;
  width: 100%;
}

.new-arrival-info {
  padding: 10px 0;
}

.new-arrival-info h3 {
  font-size: 16px;
  color: #413622;
  /* margin: 0 0 10px 0; */
  height: 46px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
}

.price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-container .favorite {
  cursor: pointer;
  display: inline-block;
  background-image: url('../img/item_favorite.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.price-container .favorite.active {
  background-image: url('../img/item_favorite_active.svg');
}


.view-more {
  width: 100%;
  text-align: center;
  padding: 25px 0;
}

.view-more a:hover {
  opacity: 0.7;
}

/* recommend section */

.recommend-section {
  background-color: #55060a;
  /* height: 674px; */
  flex-direction: column;
  display: flex;
  /* justify-content: space-around; */
}

.recommend-section h2 {
  text-align: center;
  margin: 0;
  font-size: 30px;
  color: #B39C7C;
  padding: 5px;
}

.recommend-visual {
  text-align: center;
  padding: 32px 0;
}

.recommend-visual img {
  margin: auto;
}

.recommend {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.recommend-container {
  display: flex;
  width: calc(100% + 40px);
  margin-left: -20px;
  overflow: hidden;
}

.recommend-slider {
  overflow-x: hidden;
  overflow-y: hidden;
  -ms-overflow-style: none;
  /* scrollbar-width: none; */
  white-space: nowrap;
  /* height: 240px; */
  /* touch-action: pan-x; */
  /* scroll-behavior: smooth; */
  padding: 0 20px;
  display: flex;
  justify-content: center;
  /* width: auto; */
}

.recommend-slider .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 0 7px;
  height: 240px;
  aspect-ratio: 1;
}

.recommend-slider-item {
  display: inline-block;
  /* max-width: 240px; */
  /* max-height: 240px; */
  /* margin-right: 7px; */
  margin: 0 5px;
}

.recommend-slider-item:hover {
  opacity: 0.7;
}

.recommend-slider-item img {
  width: 240px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.view-more {
  text-align: center;
  /* margin-top: auto; */
  width: auto;
}

.view-more a {
  background-color: #b39c7c;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  font-family: 'orpheuspro';
  letter-spacing: .1em;
  font-style: italic;
  padding: 5px 20px;
  font-size: 16px;
  margin-top: 20px;

}

.view-more img {
  /* max-width: 100%; */
  height: 16px;
  margin: auto;
  width: 143px;
}


/* movie section */

.movie-section {
  text-align: center;
  margin: 30px 0 0;
  height: auto;
  width: 100%;
}

.movie-section iframe {
  aspect-ratio: 16 / 9;
  width: 744px;
  height: auto;
}

.instagram-section {
  text-align: center;
  margin-top: 30px;
}

.instagram-section-inner {
  width: 744px;
  margin: 0 auto;
}

.instagram-section-inner {
  width: 744px;
  margin: 0 auto;
}

.instagram-section-inner .instagram-title {
  max-width: 90%;
  margin: 0 auto;
}

.instagram-section #sbi_images {
  padding: 3px !important;
}

.instagram-section .view-more {
  padding-bottom: 0;
}

/* ask section */

section.recommend-section.ask {
  margin-top: 10px;
}