@import url(reset.css);
img {
  vertical-align: bottom;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic Medium", "Meiryo", sans-serif;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.05em;
}



/* 共通画像スタイル */
.br-sp {
  display: block;
}

.br-spmin,
.br-tablet,
.br-pc {
  display: none;
}

h2 {
  text-align: center;
}

.text-red {
  color: #e60214;
}

.text-blue {
  color: #0268b4;
}

.text-orenge {
  color: #d39955;
}

.ttlsub {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.15em;
}

.title-with-decoration {
  position: relative;
  display: inline-block; /* タイトル画像の幅に合わせる */
}

.title-with-decoration .decoration-right {
  position: absolute;
  top: -30px;
  right: -25px;
  width: 40px;
  height: auto;
  z-index: 1;
}

.title-with-decoration .decoration-left {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 45px;
  height: auto;
  z-index: 1;
  transform: scale(-1, 1);
}

/* ファーストビュー */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  width: 100%;
  position: relative;
}

.hero-image-pc img,
.hero-image-sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f0f0f0;
}

/* ヒーローボタングループ共通 */
.hero-buttons {
  position: absolute;
  bottom: 55%;
  right: 5%;
  display: flex;
  flex-direction: column; /* 縦積み */
  gap: 10px;
  z-index: 10;
}

/* ヒーローボタン共通 */
.hero-button {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-button img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.hero-button:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero-button:hover img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ表示制御 */
/* SP用画像（デフォルト表示） */
.hero-image-sp {
  display: block;
}

/* PC・タブレット用画像（最初は非表示） */
.hero-image-pc {
  display: none;
}
.hero-buttons-pc {
  display: none; /* 確実に非表示 */
}
/* SP用ボタンサイズ */
.hero-buttons-sp {
  bottom: 22%;
  right: 6%;
  gap: 5vw;
}

.hero-buttons-sp .hero-button img {
  width: 48vw;
}


/* 万博公式パートナーセクション */
.expo-partner {
  background-image: url(../img/expo_BG.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* 背景を固定 */
  min-height: 100vh;
  text-align: cover;
  color: black;
  padding-bottom: 30px;
}

.expo-partner .container {
  display: flex;
  flex-direction: column; /* 強制的に縦並び */
  align-items: center;
}

.partner-badge {
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  display: inline-block;
  padding: 20px 0px;
  border-radius: 20px;
  background: transparent;
}

.partner-badge p {
  margin-bottom: 50px;
}

/* 万博パートナーセクション下部の画像 */
.images_tablet,.images_PC{
  display: none;
}

.images_SP{
  display: block;
}

.brand-section-top{
      display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.brand-section-top img{
    display: block;
  width: 100%;}

.brand-section-top + .brand-section {
    margin-top: -1px;}

/* ブランド・商品セクション */

.brand-section {
  padding: 30px 0 0;
  background: #d9dee1;
  overflow: hidden;
}

.brand-PC {
  display: none;
}

.container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.white-frame {
  margin: 0 30px;
  border-radius: 30px;
  max-width: 1000px;
}

.brand-SP .container {
  background-color: white;
}

.brand-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

.brand-content .ttlsub {
  font-size: 12.5px;
}

.brand-text {
  font-size: 11.5px;
  line-height: 2;
  text-align: center;
}

.circle-image {
  width: 255px;
  height: 255px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 50px; /* 中央寄せ */
  display: block; /* ブロック要素として扱う */
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sns-top img {
  background-position: left;
  width:100%;
}

/* SNS口コミセクション */
.social-reviews {
  padding: 0 0 100px 0;
  background-image: url(../img/orenge_SP.png);
  background-size: contain;
  background-position: center;
  position: relative;
  width: 100%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 40px 13px 20px 13px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-card p {
  margin-bottom: 15px;
  text-align: center;
  font-size: 12.5px;
}

/* CVセクション */
.cv-section {
  padding: 100px 0 50px;
  text-align: center;
}

.container {
  padding: 0 20px;
}

/* バナー画像エリア */
.banner-link {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* 共通画像スタイル */
.banner-image {
  width: 100%;
  height: auto;
}

/* SP用画像（デフォルト表示） */
.banner-image-sp {
  max-width: 330px;
  display: block;
}

/* PC・タブレット用画像（最初は非表示） */
.banner-image-pc {
  max-width: 500px;
  display: none;
}

/* 横スクロールセクション */
.horizontal-scroll {
  padding: 60px 0;
  color: black;
  overflow: hidden;
}

/* スクロールコンテナ */
.scroll-wrapper {
  position: relative;
}

.scroll-container {
  display: flex;
  gap: 20px;
  animation: scrollLeft 60s linear infinite;
  width: calc((250px + 20px) * 20); /* (商品幅 + gap) × 20個（10個×2セット） */
  margin-top: 20px;
}

.scroll-container:hover {
  animation-play-state: paused;
}

/* 商品アイテム - スマホファースト */
.scroll-item {
  min-width: 250px;
  width: 250px;
  padding: 20px;
  flex-shrink: 0;
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
}

.scroll-item:hover {
  transform: translateY(-3px);
  background-color: #e8e8e8;
  border-radius: 10px;
}

/* 商品画像 */
.product-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* 実際の画像用スタイル */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 商品名 */
.product-name {
  font-size: 1rem;
  margin-bottom: 10px;
  color: black;
  flex-grow: 1;
}

/* 金額（右揃え） */
.product-price {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 0.9em;
  color: black;
  text-align: right;
}

.product-price span {
  font-size: 10px;
  font-family: "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic Medium", "Meiryo", sans-serif;
  font-weight: 100;
}

/* スクロールアニメーション（修正版） */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(- (250px + 20px) * 10));
  }
}

/* リンクのスタイル */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.product-link:hover {
  text-decoration: none;
  color: inherit;
}

/* 企業の想いセクション */
.company-vision {
  text-align: center;
  background-image: url(../img/company-vision-BG-SP.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding-top: 50px;
}

.company-vision p {
  margin-bottom: 50px;
}

.company-vision p:last-child {
  margin-bottom: 100px;
}

/* オンライン購入CVセクション */
.online-purchase {
  padding: 80px 0;
  background-image: url(../img/orenge.jpg);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.online-purchase h2,
.dealer-section h2 {
  font-family: "ToppanBunkyuMidashiGothicStdN-ExtraBold",
    "ToppanBunkyuMidashiGothic", "BIZ UDGothic", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
  color: white;
  font-weight: 900;
  font-size: 27px;
  text-align: left;
}

.online-purchase .container,
.dealer-section .container {
  max-width: 315px;
}

.online-purchase p,
.dealer-section p {
  font-size: clamp(0.688rem, 0.496rem + 0.96vw, 1.25rem);
  color: white;
  text-align: left;
  position: relative;
  padding-bottom: 5px;
}

.online-purchase p::after,
.dealer-section p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5); /* 半透明の白線 */
}

.online-purchase img,
.dealer-section img {
  width: 300px;
}

/* 画像ボタンのリンク */
.purchase-button-link {
  display: inline-block;
  margin-top: 30px;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* 画像ボタン */
.purchase-button-image {
  max-width: 430px;
  width: 100%;
  height: auto;
  border-radius: 17px;
  transition: all 0.2s ease;
}

/* ホバーアニメーション */
.purchase-button-link:hover {
  transform: translateY(-2px);
}

.purchase-button-link:hover .purchase-button-image {
  box-shadow: 0 10px 10px rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

/* クリック時のアニメーション */
.purchase-button-link:active {
  transform: translateY(-2px);
}

.purchase-button-link:active .purchase-button-image {
  transform: scale(1.02);
}

/* 代理店向けCVセクション */
.dealer-section {
  padding: 80px 0;
  background-image: url(../img/blue_SP.jpg);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.dealer-section p {
  color: white;
}

/* フッター */
.footer {
  background-image: url(../img/footer_SP_BG.jpg);
  color: white;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 200px 0 100px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* スマホでの順序: ABOUT → SUPPORT → INFO → 会社情報 */
.footer-content > .footer-section:nth-child(1) {
  order: 4;
} /* 会社情報 */
.footer-content > .footer-section:nth-child(2) {
  order: 1;
} /* ABOUT */
.footer-content > .footer-section:nth-child(3) {
  order: 2;
} /* SUPPORT */
.footer-content > .footer-section:nth-child(4) {
  order: 3;
} /* INFO */

.footer-section h3 {
  line-height: 1;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  font-family: "ToppanBunkyuMidashiGothicStdN-ExtraBold",
    "ToppanBunkyuMidashiGothic", "BIZ UDGothic", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
}

.footer-section .sub_ttl {
  font-size: 12px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  padding-bottom: 5px;
}

.footer-section .sub_ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-section ul {
  margin-top: 15px;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 11px;
}

.footer-section ul li a:hover {
  color: #fff;
}

.company-info {
  text-align: center;
  font-family: "DNP-ShueiMaruGothic-Std", "DNPShueiMaruGothicStd",
    "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic Medium", "Meiryo", sans-serif;
}

.footer p img.logo {
  display: block;
  width: 120px;
  height: auto;
  margin: 20px auto 20px auto;
}

.company-info .company-name {
  margin: 15px 0;
}

.company-info .address {
  margin-bottom: 15px;
  text-align: left;
}

.company-info .phone {
  text-align: left;
}

.Instagram_logo {
  text-align: center;
  margin: 80px 0;
}

.Instagram_logo img {
  width: 45px;
  height: auto;
}

.footer-bottom {
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 10px;
}

/* スクロールトップボタン */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #e60214;
  color: white;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(230, 2, 20, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* プログレスリング */
.scroll-top .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.scroll-top .progress-ring-circle {
  stroke-dasharray: 201; /* 2π * 32 */
  stroke-dashoffset: 201;
  transition: stroke-dashoffset 0.3s ease;
  opacity: 0.7;
}

/* コンテンツ（矢印+テキスト） */
.scroll-top .scroll-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.scroll-top .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  margin-bottom: 2px;
}

.scroll-top .scroll-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ホバーエフェクト */
.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  background: #c70012;
  box-shadow: 0 15px 35px rgba(230, 2, 20, 0.5);
}

.scroll-top:hover .arrow-icon {
  transform: translateY(-2px);
  animation: bounce 0.6s ease infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(-5px);
  }
}

/* 表示制御 */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top.show:hover {
  transform: translateY(-5px) scale(1.1);
}

/* レスポンシブデザイン */
@media (max-width: 960px) {
  /* タブレット：口コミ2つ横並び2段 */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ブランド・商品セクション：縦並び */

  .brand-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-content h3 {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 50px;
  }

  /* ドット */
  /* 1つ目のタイトルに装飾 */
  .brand-content .title-with-decoration::before {
    content: "";
    position: absolute;
    top: 55vh;
    left: -40vw;
    width: 160px;
    height: 160px;
    background-image: url(../img/blue_dot.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .brand-content .title-with-decoration::after {
    content: "";
    position: absolute;
    bottom: -20vh;
    right: -35vw;
    width: 120px;
    height: 120px;
    background-image: url(../img/red_dot.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* 1つ目の写真に装飾 */
  .circle-image::before {
    content: "";
    position: absolute;
    top: 100px;
    left: -35vw;
    width: 140px;
    height: 140px;
    background-image: url(../img/red_dot.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .circle-image .aaa::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -30vw;
    width: 100px;
    height: 100px;
    background-image: url(../img/blue_dot.png);
    background-size: contain;
    background-repeat: no-repeat;
  }


  /* その他の商品セクションに装飾 */
  .horizontal-scroll .title-with-decoration::before {
    content: "";
    position: absolute;
    top: 95vw;
    left: -45vw;
    width: 100px;
    height: 100px;
    background-image: url(../img/blue_dot.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .horizontal-scroll .title-with-decoration::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -40vw;
    width: 120px;
    height: 120px;
    background-image: url(../img/red_dot.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* パートナー画像：2x2 */
  .partner-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .company-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  /* スマートフォン：口コミ1つずつ4段 */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* パートナー画像：1列 */
  .partner-images {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/*  374px幅以下専用  */
@media (max-width: 374px) {
  .br-spmin {
    display: block;
  }

  .white-frame {
    margin: 0 20px !important;
  }

  .container {
    padding: 0 20px !important;
  }

  .partner-badge {
    font-size: 13px;
  }

  .circle-image {
    width: 120px !important;
    height: 120px !important;
  }

  .brand-content {
    grid-template-columns: 1fr !important;
  }

  .brand-content .ttlsub {
    font-size: 11.3px;
    letter-spacing: 0.1em;
  }

  .brand-text {
    font-size: 10px;
    line-height: 2;
    text-align: center;
  }

  .company-vision p {
    font-size: 13px;
  }

}

/* タブレット（521px〜960px） */
@media (min-width: 521px) and (max-width: 960px) {
  /* 共通部分 */
  .br-spmin {
    display: none;
  }

  .br-sp {
    display: none;
  }

  .br-tablet {
    display: block;
  }

  .br-pc {
    display: none;
  }

  /* ファーストビュー */
  /* SP用画像を非表示、PC用画像を表示 */
  .hero-image-sp {
    display: none;
  }
  
  .hero-image-pc {
    display: block;
  }
  

  .hero-buttons-pc {
    bottom: 20%;
    right: 6.5%;
    gap: 0.7vw;
    display: flex !important;
  }
  
  .hero-buttons-pc .hero-button img {
    width: 37vw;
    border-radius: 8px;
  }

  /* 万博パートナーセクション下部の画像 */
.images_SP,.images_PC{
  display: none;
}

.images_tablet{
  display: block;
}

  /* ブランド・商品セクション */
  .brand-content .ttlsub {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.15em;
  }

  .brand-text {
    font-size: 18px;
  }

  /* SNS口コミセクション */

  .social-reviews {
    background-image: url(../img/orenge.jpg);
  background-position: center;
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
  }

  .social-reviews .container {
    max-width: 650px;
  }
  .reviews-grid {
    gap: 50px;
  }

  /* CVセクション */
  .cv-section {
    padding: 100px 0;
  }

  /* SP用画像を非表示、PC用画像を表示 */
  .banner-image-sp {
    display: none;
  }

  .banner-image-pc {
    display: block;
    max-width: 500px;
  }

    /* その他の商品セクションに装飾 */
  .horizontal-scroll .title-with-decoration::before {
    top: 49vw;}

  /* 横スクロールセクション */
  .horizontal-scroll {
    padding-bottom: 100px;
  }

  .scroll-container {
    gap: 25px;
    width: calc(280px * 20 + 25px * 19);
  }

  .scroll-item {
    min-width: 260px;
    width: 260px;
    padding: 25px;
  }

  .product-image {
    height: 200px;
    margin-bottom: 18px;
  }

  .product-name {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .product-price {
    font-size: 0.7rem;
  }
  /* 企業の想い */
  .company-vision {
    background-image: url(../img/company-vision-BG-tablet.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }

  .company-vision .container {
    max-width: 550px;
  }

  /* オンライン購入CVセクション 横並び*/
  .online-purchase {
    padding: 50px 0;
    background-image: url(../img/orenge.jpg);
  }

  .online-purchase .container,
  .dealer-section .container {
    max-width: 650px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
  }

  .online-purchase .container p,
  .dealer-section .container p {
    font-size: 14px;
  }

  .online-purchase p::after,
  .dealer-section p::after {
    width: 500px;
  }

  .online-purchase h2,
  .dealer-section h2 {
    font-size: 34px;
  }

  .dealer-section {
    background-image: url(../img/blue.jpg);
  }

  /* フッター */
  .footer {
    padding: 250px 0 0;
    background-image: url(../img/footer_PC_BG.jpg);
    color: white;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }

  .footer-content {
    flex-direction: row;
    max-width: 900px;
    gap: 30px;
    padding: 0 50px;
  }

  /* タブレットでの順序: 会社情報 → ABOUT → SUPPORT → INFO */
  .footer-content > .footer-section:nth-child(1) {
    order: 1;
  } /* 会社情報 */
  .footer-content > .footer-section:nth-child(2) {
    order: 2;
  } /* ABOUT */
  .footer-content > .footer-section:nth-child(3) {
    order: 3;
  } /* SUPPORT */
  .footer-content > .footer-section:nth-child(4) {
    order: 4;
  } /* INFO */

  .footer-section h3 {
    font-size: 16px;
  }

  .footer p img.logo {
    width: 100px;
    margin-bottom: 10px;
  }

  .Instagram_logo {
    text-align: left;
    margin: 0 0 0 250px;
    width: 22px;
  }

  .footer-section .sub_ttl {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    font-size: 10px;
  }

  .company-info .company-name {
    margin: 15px 0;
  }

  .company-info .address {
    margin-bottom: 15px;
    text-align: left;
  }

  .company-info .phone {
    text-align: left;
  }

  .footer-bottom {
    text-align: right;
    font-size: 9px;
    padding: 0 60px 30px 0;
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-285px * 10 - 25px * 9));
  }
}

/* PC（961px〜） */
@media (min-width: 961px) {
  /* 共通部分 */
  .br-spmin,
  .br-sp,
  .br-tablet {
    display: none;
  }

  .br-pc {
    display: block;
  }

  .title-with-decoration .decoration-right {
    position: absolute;
    top: -30px; /* 上に少しはみ出させる */
    right: -25px; /* 右に少しはみ出させる */
    width: 40px; /* 飾りのサイズ調整 */
    height: auto;
    z-index: 1;
  }

  /* ファーストビュー */
  /* SP用画像を非表示、PC用画像を表示 */
 .hero-image-sp {
    display: none;
  }
  
  .hero-image-pc {
    display: block;
  }
  
  .hero-buttons-pc {
    bottom: 19%;
    right: 6%;
    gap: 15px;
    display: flex !important;
  }
  
  .hero-buttons-pc .hero-button img {
    width: 37vw;
    border-radius: 12px;
  }

  /* 万博パートナーセクション下部の画像 */
.images_SP,.images_tablet{
  display: none;
}

.images_PC{
  display: block;
}


  /* ブランド・商品セクション */
  .brand-SP {
    display: none;
  }

  .brand-PC {
    display: block;
    background-image: url(../img/about_PC_BG.jpg);
    background-position: top;
    background-repeat: no-repeat;
    min-height: 1200px;
  }

  .brand-PC .ttlsub {
    font-size: 17px;
    margin: 20px 0 20px 0;
  }

  .brand-PC p {
    font-size: 15px;
    line-height: 1.75;
  }

  .brand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
    padding: 130px 70px 0 70px;
  }

  .brand-content2 {
    padding: 20px 70px 0 70px;
  }

  /* SNS口コミセクション */
  .reviews-grid {
    gap: 15px;
  }

  /* CVセクション */
  .cv-section {
    padding: 80px 0;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* SP用画像を非表示、PC用画像を表示 */
  .banner-image-sp {
    display: none;
  }

  .banner-image-pc {
    display: block;
    max-width: 900px;
  }

  /* その他の商品セクションに装飾 */
  .horizontal-scroll .title-with-decoration::before {
    content: "";
    position: absolute;
    top: 95vw;
    left: -45vw;
    width: 100px;
    height: 100px;
    background-image: url(../img/blue_dot.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .horizontal-scroll .title-with-decoration::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -40vw;
    width: 120px;
    height: 120px;
    background-image: url(../img/red_dot.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* 横スクロールセクション */
  .horizontal-scroll {
    padding: 100px 0;
  }

  .container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .horizontal-scroll .container {
    width: 100vw;
    margin: 0 auto;
  }

  .scroll-container {
    gap: 30px;
    width: calc(220px * 20 + 30px * 19);
  }

  .scroll-item {
    min-width: 200px;
    width: 200px;
    padding: 20px;
  }

  .product-image {
    height: 150px;
    margin-bottom: 15px;
  }

  .product-name {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .product-price {
    font-size: 12px;
  }

  /* 企業の想い */
  .company-vision {
    background-image: url(../img/company-vision-BG-PC.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }

  .company-vision .container {
    max-width: 700px;
    margin: 0 auto;
  }

  .company-vision .ttlsub {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.15em;
  }

  /* オンライン購入CVセクション 横並び*/
  .online-purchase {
    background-image: url(../img/orenge.jpg);
  }

  .online-purchase .container,
  .dealer-section .container {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    overflow: hidden;
  }

  .online-purchase .container p,
  .dealer-section .container p {
    padding-top: 7px;
    font-size: 17px;
  }

  .online-purchase p::after,
  .dealer-section p::after {
    width: 1500px;
  }

  .online-purchase h2,
  .dealer-section h2 {
    font-size: 50px;
  }

  .dealer-section {
    background-image: url(../img/blue.jpg);
  }

  /* フッター */
  .footer {
    padding: 300px 0 0;
    background-image: url(../img/footer_PC_BG.jpg);
    color: white;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
  }

  .footer-content {
    flex-direction: row;
    max-width: 1000px;
    gap: 60px;
    padding: 0 50px;
  }

  /* PCでの順序: 会社情報 → ABOUT → SUPPORT → INFO */
  .footer-content > .footer-section:nth-child(1) {
    order: 1;
  } /* 会社情報 */
  .footer-content > .footer-section:nth-child(2) {
    order: 2;
  } /* ABOUT */
  .footer-content > .footer-section:nth-child(3) {
    order: 3;
  } /* SUPPORT */
  .footer-content > .footer-section:nth-child(4) {
    order: 4;
  } /* INFO */

  .footer-section h3 {
    font-size: 25px;
  }

  .footer p img.logo {
    width: 220px;
    margin-bottom: 5px;
  }

  .Instagram_logo {
    text-align: left;
    margin: 0 0 0 35%;
    width: 40px;
  }

  .footer-section .sub_ttl {
    font-size: 11px;
    margin-bottom: 7px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .company-info .company-name {
    margin: 15px 0;
  }

  .company-info .address {
    margin-bottom: 15px;
    text-align: left;
  }

  .company-info .phone {
    text-align: left;
  }

  .footer-bottom {
    text-align: right;
    font-size: 9px;
    padding: 0 60px 30px 0;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-230px * 10 - 30px * 9));
    }
  }
}
