@charset "UTF-8";
/* ===== 汎用コンテナ ===== */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ===== Page Hero ===== */
.page-hero {
  aspect-ratio: 1920/540;
}
@media screen and (max-width: 768px) {
  .page-hero {
    aspect-ratio: 768/300;
  }
}
@media screen and (max-width: 480px) {
  .page-hero {
    aspect-ratio: 480/308;
  }
}

/* ===== Businessページ共通タイトル（枠付き） ===== */
.biz-page-title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 64px;
  padding: 20px 40px;
  box-shadow: 3px 7px 6px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .biz-page-title {
    font-size: 22px;
    max-width: 400px;
    padding: 16px 32px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .biz-page-title {
    font-size: 20px;
    max-width: 320px;
    padding: 14px 24px;
    margin-bottom: 40px;
  }
}

/* ===== 総代理店事業 イントロ ===== */
.section-biz-intro {
  padding: 140px 0 180px;
}
@media screen and (max-width: 768px) {
  .section-biz-intro {
    padding: 80px 0 120px;
  }
}
@media screen and (max-width: 480px) {
  .section-biz-intro {
    padding: 60px 0 80px;
  }
}

.biz-intro-text {
  font-size: 16px;
  line-height: 2;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .biz-intro-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .biz-intro-text {
    font-size: 13px;
  }
}

/* ===== 私たちの強み STRENGTHS ===== */
.section-biz-strengths {
  padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .section-biz-strengths {
    padding: 0 0 60px;
  }
}
@media screen and (max-width: 480px) {
  .section-biz-strengths {
    padding: 0 0 40px;
  }
}

.biz-strengths-subtitle {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .biz-strengths-subtitle {
    font-size: 14px;
  }
}

.biz-strengths-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .biz-strengths-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .biz-strengths-title {
    font-size: 22px;
  }
}

.biz-strengths-line {
  width: 100px;
  height: 4px;
  background: #34C8DC;
  margin: 0 auto 64px;
}
@media screen and (max-width: 768px) {
  .biz-strengths-line {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .biz-strengths-line {
    margin-bottom: 40px;
  }
}

.biz-strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 5%;
}
@media screen and (max-width: 768px) {
  .biz-strengths-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .biz-strengths-grid {
    gap: 24px;
  }
}

.biz-strengths-card {
  border: 1px solid #e0e0e0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.biz-strengths-card-title {
  background: #7C93E7;
  color: #fff;
  font-size: clamp(17px, 1.7vw, 19px);
  font-weight: 500;
  text-align: center;
  padding: 24px 20px;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.biz-strengths-card-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 8px solid #7C93E7;
}
@media screen and (max-width: 768px) {
  .biz-strengths-card-title {
    font-size: 16px;
    padding: 20px 16px;
  }
}
@media screen and (max-width: 480px) {
  .biz-strengths-card-title {
    font-size: 15px;
    padding: 16px 14px;
  }
}

.biz-strengths-card-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  padding: 28px 24px 24px;
}
@media screen and (max-width: 768px) {
  .biz-strengths-card-text {
    font-size: 14px;
    padding: 24px 20px 20px;
  }
}
@media screen and (max-width: 480px) {
  .biz-strengths-card-text {
    font-size: 13px;
    padding: 20px 16px 16px;
  }
}

.biz-strengths-card-img {
  padding: 0 24px 24px;
}
.biz-strengths-card-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .biz-strengths-card-img {
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 480px) {
  .biz-strengths-card-img {
    padding: 0 16px 16px;
  }
}

/* ===== 取り扱い商品 PRODUCT ===== */
.section-biz-product {
  padding: 160px 0;
}
@media screen and (max-width: 768px) {
  .section-biz-product {
    padding: 100px 0;
  }
}
@media screen and (max-width: 480px) {
  .section-biz-product {
    padding: 80px 0;
  }
}

.biz-product-subtitle {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .biz-product-subtitle {
    font-size: 14px;
  }
}

.biz-product-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .biz-product-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .biz-product-title {
    font-size: 22px;
  }
}

.biz-product-line {
  width: 100px;
  height: 4px;
  background: #34C8DC;
  margin: 0 auto 64px;
}
@media screen and (max-width: 768px) {
  .biz-product-line {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .biz-product-line {
    margin-bottom: 40px;
  }
}

.biz-product-banners {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5vw;
}
@media screen and (max-width: 768px) {
  .biz-product-banners {
    gap: 6vw;
  }
}

.biz-product-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 商品ラインナップ ===== */
.section-biz-lineup {
  padding: 160px 0 240px;
  background: rgba(234, 236, 248, 0.4);
}
@media screen and (max-width: 768px) {
  .section-biz-lineup {
    padding: 100px 0 160px;
  }
}
@media screen and (max-width: 480px) {
  .section-biz-lineup {
    padding: 80px 0 120px;
  }
}

.biz-lineup-category {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .biz-lineup-category {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .biz-lineup-category {
    font-size: 16px;
  }
}

.biz-lineup-grid {
  max-width: 1100px;
  margin: 0 auto 100px;
}
.biz-lineup-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
@media screen and (max-width: 768px) {
  .biz-lineup-grid--3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.biz-lineup-grid--2col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .biz-lineup-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 480px) {
  .biz-lineup-grid--2col {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .biz-lineup-grid {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 480px) {
  .biz-lineup-grid {
    margin-bottom: 60px;
  }
}

.biz-lineup-card {
  display: block;
  background: #fff;
  overflow: hidden;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  aspect-ratio: 340/353;
}
.biz-lineup-card:hover {
  opacity: 0.8;
}

.biz-lineup-img {
  aspect-ratio: 340/211;
  overflow: hidden;
}
.biz-lineup-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.biz-lineup-name {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px 4px;
}
@media screen and (max-width: 768px) {
  .biz-lineup-name {
    font-size: 14px;
    padding: 10px 12px 4px;
  }
}

.biz-lineup-link {
  font-size: 13px;
  color: #333;
  text-align: right;
  padding: 0 16px 12px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .biz-lineup-link {
    font-size: 12px;
    padding: 0 12px 10px;
  }
}

/* ===== OFFICIAL SNS ===== */
.biz-sns-box {
  max-width: 1100px;
  margin: 60px auto 0;
  background: #EAE7E7;
  padding: 48px 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .biz-sns-box {
    padding: 36px 28px;
    margin-top: 48px;
  }
}
@media screen and (max-width: 480px) {
  .biz-sns-box {
    padding: 28px 20px;
    margin-top: 40px;
  }
}

.biz-sns-title {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .biz-sns-title {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .biz-sns-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.biz-sns-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .biz-sns-list {
    gap: 36px;
  }
}
@media screen and (max-width: 480px) {
  .biz-sns-list {
    gap: 28px;
  }
}

.biz-sns-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.biz-sns-account {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .biz-sns-account {
    gap: 12px;
  }
}

.biz-sns-icon {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .biz-sns-icon {
    width: 40px;
    height: 40px;
  }
}

.biz-sns-name {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .biz-sns-name {
    font-size: 14px;
  }
}

.biz-sns-qr {
  width: 84px;
  flex-shrink: 0;
}
.biz-sns-qr img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .biz-sns-qr {
    width: 72px;
  }
}
@media screen and (max-width: 480px) {
  .biz-sns-qr {
    width: 60px;
  }
}