@charset "UTF-8";

/*top logo*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/*topswiper*/
.hero-wrapper {
  max-width: 1040px;
  margin: 163px auto 0;
  padding: 0;
}

.hero-wrapper .swiper-wrapper {
  position: relative;
}

.hero-wrapper .swiper-slide {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0,0,0,0.6) !important; /* 白フラッシュ対策 */
}

/* 各スライド内で演出する */
.hero-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: scale(1.04); /* 拡大状態から1.08 */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /*transition: opacity 1.8s ease, transform 1.8s ease;*/
  aspect-ratio: 1040 / 434;
}

.swiper-slide-active .hero-slide {
  opacity: 1;
  transform: scale(1); /* ピッタリサイズに縮小 */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-img-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* PCだけ制御を分ける */
@media (min-width: 769px) {
  .hero-text {
    left: auto;
    transform: translateY(-50%);
    text-align: left;
  }

  .text-left {
    left: 90px;
  }

  .text-center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}

.hero-text h2 {
  font-size: 33px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 60px;
}

.hero-text p {
  font-size: 14px;
  font-weight:bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-text a {
  display: inline-block;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.hero-text a:hover {
  background-color: #fff;
}
/* ページネーションの全体 */
.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5; 
}

/* 選択中のスライドの丸 */
.swiper-pagination-bullet-active {
  background-color: #007aff;
  opacity: 1;
}


@media (max-width: 1024px) {
  .hero-wrapper {
   padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 0 15px;
    margin: 144px auto 0;
  }

  .hero-slide {
    /*aspect-ratio: 3 / 4;*/
    aspect-ratio: 5 / 6;
  }

  .hero-text {
    width:80%;
    padding: 20px 0;
  }

  .hero-text h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero-text p {
    font-size: 14px; 
    line-height: 1.7;
  }

  .hero-text a {
    font-size: 14px;
    padding: 10px 24px;
  }
}

.category-scroll-bar {
  padding: 35px 0 0;
}

.category-scroll-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.category-scroll-list {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.category-scroll-list li {
  flex: 0 0 calc(100% / 7);
  text-align: center;
}

.category-scroll-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}

.category-scroll-list li span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  max-width: 100px;
  line-height: 1.3;
}

.category-scroll-list li img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f2f2f2;
  margin-bottom: 15px;
}

.category-more-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #007acc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.category-more-button .more-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e0f0fb;
  color: #007acc;
  font-size: 32px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
.category-scroll-bar {
    padding: 25px 0 0;
}
  .category-scroll-inner {
    padding: 0;
    overflow-x: auto;
  }

.category-scroll-list li img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }
  .category-scroll-list {
    flex-wrap: nowrap;
    padding: 0 0 15px 15px;
    gap: 20px;
  }

  .category-scroll-list li {
    flex: 0 0 auto;
  }

  .category-scroll-list li a {
    width: 80px;
  }

.category-more-button .more-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-bottom: 8px;
 }
.category-scroll-list::after {
  content: "";
  flex: 0 0 5px;
  pointer-events: none;
  }
}

.promo-backcolor {
    background-color: #f8f8f8;
    padding:50px 0;
    margin-top:5px;
}
.promo-container {
  max-width: 1040px;
  margin: 0 auto;
}

.promo-product-wrapper {
  display: flex;
  gap: 30px;
}

.promo-banner-column {
  flex: 0 0 33%;
}

.promo-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.promo-product-item {
  border-radius: 8px;
  padding: 0;
  box-sizing: border-box;
}

.promo-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.promo-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  color: #fff;
  z-index: 2;
}

.promo-banner-overlay h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.banner-button {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 12px;
  border-radius: 24px;
  transition: background 0.3s;
}

.promo-grid-column {
  flex: 1;
}
.item-8top {
margin-top:8px;
}

@media (max-width: 1024px) {
 .promo-container {
   padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .promo-backcolor {
     padding: 30px 0 35px;
  }
  .promo-container {
     width: auto;
     padding: 0;
  }

  .promo-product-wrapper {
    flex-direction: column;
    gap: 20px;
  }

 .left15 {
   padding-left:15px;
  }

  .promo-grid-column {
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .promo-product-grid {
   display: flex;
   flex-wrap: nowrap;
   overflow-x: auto;
   gap: 16px;
   padding: 0 10px 15px;
   scroll-snap-type: x mandatory;
   -webkit-overflow-scrolling: touch;
  }
  .promo-grid-column {
    padding: 0 0 0 15px;
  }

  .promo-product-item {
    flex: 0 0 calc(100% / 2.8);
    min-width: 120px;
    scroll-snap-align: start;
 }

  .promo-banner-column {
    width: 100%;
    padding: 0 15px 0;
    order: 2;
  }
}

.product6-container {
    padding: 40px 0 40px;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .product6-container, .related-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 768px) {
    .product6-container {
        width: auto;
        padding: 30px 0 30px 15px;
    }
}
.product6-item {
    flex-basis: calc((100% - 120px) / 6);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .product6-item {
        flex: 0 0 auto;
        width: calc(100% / 3.5);
        min-width: 35%;
        box-sizing: border-box;
    }
}

.ranking-link {
  text-align: right;
  font-size: 12px;
  font-weight:700;
  margin: 15px 15px 0 0;
}

.ranking-link a {
  color: #0284ae;
}

.ranking-link a:hover {
  color: #0284ae;
}

.saller-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1040px;
  margin: 20px auto;
}

.saller-card {
  flex: 1 1 calc(50% - 10px);
  position: relative;
  background-size: cover;
  border-radius: 8px;
  height: 150px;
  color: #fff;
}
.bg-red {
  background-image: url("/assets/img/top/gooddesign.webp");
  background-position: bottom;
}

.bg-black {
  background-image: url("/assets/img/top/expressdelivery.webp");
  background-position: center;
}
.card-overlay {
  padding: 20px 25px;
  border-radius: 12px;
  width: 100%;
}

.card-label-en {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.card-overlay h2 {
  font-size: 14px;
  font-weight:bold;
  margin-bottom: 20px;
}

.card-overlay p {
  font-size: 20px;
  font-weight:bold;
  margin-bottom: 25px;
  line-height: 1.5;
}

.buy-button {
  background: #fff;
  color: #000;
  padding: 6px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight:bold;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .saller-section {
    padding:0 20px;
  }
}
/* スマホ対応 */
@media (max-width: 767px) {
  .saller-section {
    flex-direction: column;
    padding:0 15px;
  }

  .saller-card {
    flex: 1 1 100%;
    height: 320px;
  }
  .card-overlay {
    padding: 10px 25px 15px;
  }
}


.category-grid-section {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 15px;
}

@media (max-width: 1024px) {
    .category-grid-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  list-style: none;
}

.category-grid-item,
.toggle-more-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 5px 20px;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  /*border-right: 1px solid #e0e0e0;*/
}

.category-grid-item a,
.toggle-more-button a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-grid-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background-color: #f9f9f9;
  border-radius: 50%;
  margin-bottom: 15px;
}

.category-grid-item span,
.toggle-more-button span,
.toggle-close-button {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #222;
}

.more-button-circle {
  width: 90px;
  height: 90px;
  background-color: #e0f0fb;
  color: #007acc;
  font-size: 30px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  cursor: pointer;
}

.hidden {
  display: none;
}

.category-toggle-wrapper {
  text-align: center;
  margin-top: 20px;
}

#toggleCategoryBtn {
  padding: 8px 20px;
  font-size: 14px;
  background-color: #1497cb;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/*==============================
 PC (6 columns)
==============================*/
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }

.toggle-close-button {
    cursor: pointer;
    padding: 24px 5px 14px;
    text-align: center;
    border-left: solid 1px #e8e8e8;
    border-top: solid 1px #e8e8e8;
}

  .category-grid-item,
  .toggle-more-button {
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    /*border-right: 1px solid #e0e0e0;*/
  }

  .category-grid-item:nth-child(6n+1),
  .toggle-more-button:nth-child(6n+1) {
    border-left: none;
  }

  .category-grid-item:nth-child(6n),
  .toggle-more-button:nth-child(6n) {
    border-right: none;
  }

  .category-grid-item:nth-child(-n+6),
  .toggle-more-button:nth-child(-n+6) {
    border-top: none;
  }

  /* PC: 明示的に行う右列の例外補正 */
  .category-grid-item:nth-child(12),
  .category-grid-item:nth-child(18),
  .toggle-more-button:nth-child(12),
  .toggle-more-button:nth-child(18) {
    border-right: none;
  }
  .category-grid-item:nth-child(13),
  .toggle-more-button:nth-child(13) {
    border-left: 1px solid #e0e0e0;
  }
  .category-grid-item:nth-child(14),
  .toggle-more-button:nth-child(14) {
    border-left: none;
  }
  .category-grid-item:nth-child(20),
  .toggle-more-button:nth-child(20) {
    border-left: none;
  }
  .category-grid-item:nth-child(19),
  .toggle-more-button:nth-child(19) {
    border-left: 1px solid #e0e0e0;
  }
  .category-grid-item:nth-child(25),
  .toggle-more-button:nth-child(25) {
    border-left: 1px solid #e0e0e0;
  }
}
/*==============================
 SP (3 columns)
==============================*/
@media (max-width: 767px) {
  .category-grid-section {
    padding: 30px 15px;
  }
.toggle-close-button {
    cursor: pointer;
    padding-top: 15px;
    text-align: center;
    border-left: solid 1px #e8e8e8;
    border-top: solid 1px #e8e8e8;
}
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .category-grid-item,
  .toggle-more-button {
    padding: 14px 8px 10px;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: none;
  }

  .category-grid-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .more-button-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .category-grid-item span,
  .toggle-more-button span,
  .toggle-close-button span {
    font-size: 12px;
    font-weight: 500;
  }

  .category-grid-item:nth-child(3n+1),
  .toggle-more-button:nth-child(3n+1) {
    border-left: none;
  }

  .category-grid-item:nth-child(3n),
  .toggle-more-button:nth-child(3n) {
    border-right: none;
  }

  .category-grid-item:nth-child(-n+3),
  .toggle-more-button:nth-child(-n+3) {
    border-top: none;
  }

  /* SP: 明示的な補正 */
  .category-grid-item:nth-child(14),
  .category-grid-item:nth-child(17),
  .category-grid-item:nth-child(20),
  .category-grid-item:nth-child(23),
  .toggle-more-button:nth-child(14),
  .toggle-more-button:nth-child(17),
  .toggle-more-button:nth-child(20),
  .toggle-more-button:nth-child(23) {
    border-left: none;
  }

  .category-grid-item:nth-child(13),
  .category-grid-item:nth-child(16),
  .category-grid-item:nth-child(19),
  .category-grid-item:nth-child(22),
  .category-grid-item:nth-child(25),
  .toggle-more-button:nth-child(13),
  .toggle-more-button:nth-child(16),
  .toggle-more-button:nth-child(19),
  .toggle-more-button:nth-child(22), 
  .toggle-more-button:nth-child(25) {
    border-left: 1px solid #e0e0e0;
  }
}

.interior-style-section {
  background-color: #f8f8f8;
  padding:50px 20px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.style-more-button {
  width: 1040px;
  margin:30px auto 0;
}

.style-more-button a {
  background-color: #1497cb;
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 25px;
}

.style-grid {
  display: grid;
  max-width: 1040px;
  margin: 10px auto;
  gap: 50px 30px;
  grid-template-columns: repeat(4, 1fr);
}

.style-card {
  overflow: hidden;
}

.style-card img {
  width: 100%;
  aspect-ratio: 430 / 196;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5px;
}

.style-card:hover img {
  transform: scale(1.05);
}

.style-card h3 {
  font-weight: bold;
  font-size: 15px;
  margin: 15px 0 8px;
}
.style-link-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.style-link-card h3:hover {
  text-decoration: underline;
}

.style-card p.style-count {
  font-size: 12px;
  font-weight:bold;
  color: #0284ae;
  margin: 4px 0 6px;
}

.style-card p {
  font-size: 13px;
  color: #222;
}

@media (max-width: 1024px) {
.style-more-button {
  right: 55px;
  }
}

@media (max-width: 767px) {
.interior-style-section {
  padding:30px 0 30px 15px;
  margin-bottom:10px;
  margin-top: 10px;
}
  .style-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding:0 15px 15px 0;
    margin: 0 auto 10px;
    scroll-snap-type: x mandatory;
  }

  .style-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
    box-sizing: border-box;
    min-width: 250px;
    max-width: 320px;
  }
}

.swiper-wrapper {
  display: flex;
}

.slider-fullwidth {
  width: 100%;
  overflow: hidden;
  margin-top:50px;
  margin-bottom: 50px;
}

/*.mySwiper {
  padding-right: 0; 
}*/

.mySwiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
  max-width: 90%;
  box-sizing: border-box;
}
.bg-pink { background-color: #f8e8e8; }
.bg-green { background-color: #f3f8e8; }
.bg-blue { background-color: #e8f4f8; }

.slide-block {
  display: flex;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
}

.slide-image {
  flex: 1;
  min-width: 0;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-text {
  width: 440px;
  flex-shrink: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.slider-column-heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}

.slider-column-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  letter-spacing: 1.5px;
}

.slider-column-item-button {
  display: inline-block;
  padding: 4px 20px;
  background-color:#fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 25px;
  margin-top: 25px;
  width: fit-content;
  max-width: 100%;
}

.slider-column-item-button:hover {
  background-color: #000;
  color:#fff;
}

/* モバイル対応：縦並び */
@media (max-width: 768px) {

.slider-fullwidth {
   margin-top: 20px;
    margin-bottom: 20px;
  }

.mySwiper .swiper-slide {
  max-width: 100%;
}

  .slide-block {
    flex-direction: column;
    min-height: auto;
  }

  .slide-text {
    width: 100%;
    padding: 35px 20px 85px;
  }

  .slide-image {
    width: 100%;
  }

  .swiper-slide {
    max-width: 100%;
  }
  .swiper-pagination-fraction {
    font-size: 13px;
    font-weight:700;
    text-align: left;
    margin-left: 25px;
    margin-bottom:25px;
  }

  .swiper-pagination-current::before {
    content: "<　";
  }

  .swiper-pagination-total::after {
    content: "　>";
  }
}

.top-feature-section {
  background-color: #f8f8f8;
  padding: 50px 15px;
  margin-bottom: 50px;
}

.top-feature-container {
  max-width: 1040px;
  margin: 0 auto;
  padding:10px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
  box-sizing: border-box;
}

.feature-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}

.feature-image {
  overflow: hidden;
  position: relative;
}

.feature-image img {
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5px 5px 0 0;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-body {
  padding: 20px 20px 20px 25px;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.8;
  letter-spacing: 1px;
}

.feature-meta {
  font-size: 11px;
  text-align: right;
  padding-top: 10px;
  font-weight: 700;
  color: #0284ae;
}

.feature-card:hover .feature-meta {
  color: #0da5d6;
}
.hidden {
  display: none;
}

.show-more-button {
  display: block;
  margin: 30px auto 20px;
  padding: 14px 26px;
  font-size: 14px;
  background-color:#1397cb;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.3s;
  border-radius: 25px;
}

.show-more-button:hover {
  background-color: #d0d0d0;
}
@media (max-width: 1024px) {
  .top-feature-section {
     padding-left: 20px;
     padding-right: 20px;
    }
.feature-image {
  /*width: 232px;
  height: 138px;*/
  }
.feature-image img {
    transform: none !important;        /* ← 拡大を完全に無効化 */
    border-radius: 5px 5px 0 0 !important;
}

.feature-card:hover .feature-image img {
    transform: none !important;        /* ← hoverしても無効 */
  }
.feature-body {
  padding: 20px;
  }
}

@media (max-width: 768px) {
  .top-feature-section {
     padding:30px 0 30px 15px;
    margin-bottom: 30px;
    }

  .feature-body {
    padding: 20px 16px 20px 20px;
  }
  .top-feature-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 0 20px 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

.feature-image {
  overflow: hidden;
  position: relative;
}

/*.feature-image img {
    transform: none !important;       
    border-radius: 5px 5px 0 0 !important;
}

.feature-card:hover .feature-image img {
    transform: none !important;       
  }*/

  .feature-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 225px;
    max-width: 265px;
    box-sizing: border-box;
  }

  .show-more-button {
    display: none;
  }

  .top-feature-container {
    grid-template-columns: none !important;
  }
}

.faq-layout {
  display: flex;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 40px;
  padding: 25px 0 0;
  box-sizing: border-box;
}
.qa-container {
  max-width: 700px;
  width: 100%;
}
.qa-set {
  margin-bottom: 20px;
}
.qa-list {
  margin-top: 10px;
}
.qa-list h3 {
  font-weight: 600;
  font-size: 14px;
  color: #383838;
  letter-spacing: 2px;
  padding-right: 35px;
}
.qa-list dl {
  position: relative;
  margin: 0 0 20px;
  padding: 22px 25px;
  cursor: pointer;
  border: solid 1px #ececec;
  border-radius: 10px;
}
.qa-list dl dt {
  position: relative;
  margin: 0;
  padding-left: 40px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
}
.qa-list dl dd p {
  margin-top: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 25px 5px 10px;
  background-color: #FFF;
  border-radius: 5px;
  border-top: solid 1px #f2f2f2;
}
.qa-list dd p a {
  font-weight: 600;
  color: #1d6ca3;
}
.qa-list dl::before {
  position: absolute;
  top: 25px;
  right: 30px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #3285bf;
  border-right: 2px solid #3285bf;
}
.qa-list dl dt::before {
  font-size: 18px;
  line-height: 1;
  position: absolute;
  top: 2px;
  left: 3px;
  font-weight: 600;
  content: 'Q.';
  color: #3285bf;
}

/* アウトレットバナー */
.banner-column {
  width: 300px;
  padding-top: 55px;
}
.banner-outlet {
  display: block;
  position: relative;
  background: url('/assets/img/top/outletsale_swiper.webp') center/cover no-repeat;
  border-radius: 8px;
  width: 100%;
  height: 178px;
  color: #fff;
  text-decoration: none;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 85%;
}
.banner-discount {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.banner-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}
.banner-note {
  font-size: 13px;
  line-height: 1.5;
  margin: 5px 0 0;
}

@media (max-width: 1024px) {
  .faq-layout {
    padding-left: 20px;
    padding-right: 20px;
  }
.banner-discount {
  font-size: 16px;
}
.banner-title {
  font-size: 26px;
  line-height: 1.2;
  margin: 7px 0;
}
.banner-note {
  font-size: 11px;
  line-height: 1.5;
  margin: 5px 0 0;
}
}
@media screen and (max-width: 767px) {
  .faq-layout {
    flex-direction: column;
    gap: 0;
    padding: 0 15px 25px;
  }
  .banner-column {
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
  .banner-outlet {
    height: 160px;
  }
.banner-discount {
  font-size: 18px;
}
.banner-title {
  font-size: 26px;
}
.banner-note {
  font-size: 13px;
 }
}

.about-box {
  background-color: #f7f7f7;
  padding:50px 15px 20px;
}

.about-inner {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 40px;
}

.about-logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.about-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.8;
}

.about-text h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 13px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #3285bf;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-align: left;
}

/* SP対応 */
@media screen and (max-width: 767px) {
  .about-inner {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 10px;
  }

  .about-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .about-logo img {
    width: 90px;
    height: 90px;
  }

  .about-text h3 {
    text-align: center;
    font-size: 16px;
  }

  .about-text p {
    font-size: 14px;
  }

  .read-more-btn {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}
