* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #fff;
}

#renew{
 position:absolute; 
  z-index:9999;
  width:100%;
  height:10000px;
  top:0;
  left:0;
  background-color:#ffffff;
}

.hero{
  width: 100%;
  height: 100vh;
  background-image: url('images/keyvis1.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1000px;
  padding-inline: 10px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlider 18s infinite ease-in-out;
  pointer-events: none;
}

.hero-slider .slide1 {
  background-image: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/a2V5dmlzMQ.png?cmsp_timestamp=20260512085850');
  animation-delay: 0s;
}

.hero-slider .slide2 {
  background-image: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/a2V5dmlzMg.png?cmsp_timestamp=20260512085850');
  animation-delay: 6s;
}

.hero-slider .slide3 {
  background-image: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/a2V5dmlzMw.png?cmsp_timestamp=20260512085850');
  animation-delay: 12s;
}

@keyframes fadeSlider {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  10% {
    opacity: 1;
    transform: scale(1.02);
  }

  33% {
    opacity: 1;
    transform: scale(1.06);
  }

  43% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1000px) {
  .header {
    padding-left: calc((100% - 980px) / 2);
    padding-right: calc((100% - 980px) / 2);
  }
}

.header-logo img {
  height: 25px;
  width: auto;
}

.header-logo img:first-child {
  display: inline-block;
  margin-right: 10px;
}

.header-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 10px;
}

.header-nav a {
  cursor: pointer !important;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: normal;
  transition: color 0.3s ease;
  /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); */
}

.header-nav a:hover {
  color: #f87b33;
  /* エンジ色 */
}

.header-nav a.btn-online {
  background-color: #e60012;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 700;
  text-shadow: none;
  display: inline-block;
  margin-left: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-nav a.btn-online:hover {
  color: #fff;
  background-color: #b8000e;
}

/* Main Content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
}

.hero-title {
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #fff;
  margin-bottom: 35px;
  line-height: 1.4;
  text-shadow:
    -2px -2px 0 #0f4b82,
    2px -2px 0 #0f4b82,
    -2px 2px 0 #0f4b82,
    2px 2px 0 #0f4b82,
    0px 4px 10px rgba(0, 0, 0, 0.5);
}

.small-title {
  font-size: 36px;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 10px;
}

.main-title {
  font-size: 64px;
  letter-spacing: 0.1em;
}

/* Description Box */
.hero-description {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  padding: 25px 40px;
  width: 100%;
  max-width: 820px;
  margin-bottom: 40px;
}

.hero-description p {
  text-align: center;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Logos */
.hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.hero-logos img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  opacity: 0.9;
  animation: float 2s ease-in-out infinite;
  transition: border-top-color 0.3s ease;
}

.scroll-down-link:hover .scroll-down {
  border-top-color: #ff0101;
}


@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Hamburger Icon (Hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

/* Responsive Design (max-width: 900px) */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 80px;
    transition: right 0.3s ease-in-out;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .header-nav.active {
    right: 0;
  }

  .header-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .header-nav a {
    font-size: 16px;
    display: block;
    text-align: center;
  }

  .header-nav a.btn-online {
    display: inline-block;
    margin-left: 0;
    margin-top: 10px;
  }

  .main-title {
    font-size: 40px;
  }

  .small-title {
    font-size: 20px;
  }

  .hero-description {
    padding: 20px;
    margin: 0 15px 30px;
    width: auto;
  }

  .hero-description p {
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-logos {
    gap: 15px;
    flex-wrap: wrap;
  }

  .hero-logos img {
    max-height: 30px;
  }
}

/* 共通 */
.about,
.wp-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 10px;
}

#renew h2 {
  font-size: 30px;
  color: #b8000e;
  font-family: 'Noto Serif JP', serif;
  background: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/a2ltb25vLWljb24.png?cmsp_timestamp=20260515145114') no-repeat left center/contain;
  padding-left: 55px;
  line-height: 48px;
}

.wp-title img {
  vertical-align: middle;
}

/* ワークプレタが選ばれる理由 */
.container-box {
  position: relative;
  margin-block: 50px;
  padding-left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.container-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/c2F3LW1hY2hpbmUwMg.png?cmsp_timestamp=20260515150838') no-repeat center center/cover;
  border-radius: 12px;
}

.container-box p {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  padding-block: 25px;
  border-bottom: 2px solid #d6dde4;
}

.container-box p:first-child {
  border-top: 2px solid #d6dde4;
}

.symbol {
  font-weight: normal;
  margin-right: 10px;
  font-size: 60px;
  color: #000;
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
}

.container-box p:nth-child(1) .symbol {
  background: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/dG9yYXktaWNvbg.png?cmsp_timestamp=20260515150510') no-repeat right center;
  background-size: contain;
}

.container-box p:nth-child(2) .symbol {
  background: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/bWFjaGluZS1pY29u.png?cmsp_timestamp=20260515150632') no-repeat right center;
  background-size: contain;
}

.container-box p:nth-child(3) .symbol {
  background: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/eWVhcnMtaWNvbg.png?cmsp_timestamp=20260515150715') no-repeat right center;
  background-size: contain;
}

@media (max-width: 900px) {

  /* 共通 */
  .about,
  .wp-section .container {
    padding: 60px 10px;
  }

  h2 {
    font-size: 22px;
    padding-left: 35px;
    margin-bottom: 25px;
  }
  #renew .about h2,
  #renew .wp-delivery-section h2{
   font-size:18px; 
   padding-left: 100px;
  }
  #renew .wp-original h2{
    font-size: 20px;  
  }

  .container-box {
    padding-left: 0;
    min-height: auto;
  }

  .container-box::before {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 10px;
  }

  .container-box p {
    font-size: 18px;
    padding-block: 15px;
  }

  .symbol {
    font-size: 35px;
    width: 90px;
    height: 50px;
    padding-right: 60px;
    margin-right: 10px;
  }
}

/* 共通背景色 */
.wp-delivery-section,
.wp-video-section,
.wp-company {
  background: #F0F2EA;
}

/* 受注生産 */
.wp-delivery-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-block: 40px;
  color: #555;
}

.wp-emphasis-text {
  color: #b8405e;
  font-weight: bold;
  font-size: 1.3rem;
}

.wp-delivery-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.wp-delivery-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 25px;
  flex: 1;
  min-width: 300px;
  /* max-width: 500px; Remove limit */
  position: relative;
  min-height: 220px;
  /* Ensure sufficient height */
}

.wp-delivery-label {
  background: #2c3e50;
  color: #fff;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 70px;
  /* Push timeline down to clear image */

}

.wp-delivery-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10px;
}

.wp-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wp-timeline-item.highlight .wp-timeline-text {
  color: #b8405e;
  font-weight: bold;
  font-size: 1.2rem;
}

.wp-timeline-dot {
  width: 12px;
  height: 12px;
  background: #cbd5e0;
  border-radius: 50%;
  margin-bottom: 8px;
}

.wp-timeline-item.highlight .wp-timeline-dot {
  background: #b8405e;
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 4px rgba(184, 64, 94, 0.2);
  /* Adjust for size difference to keep centered alignment if needed,
       or just let it pop slightly content-wise.
       For strict alignment with line at 5px (center of 12px), 
       16px dot center is at 8px. Difference 3px. 
       We can add margin-top: -2px to pull it up? 
       Or just accept it. Let's accept it for now. */
}

.wp-timeline-line {
  flex: 1;
  height: 2px;
  background: #cbd5e0;
  margin: 0 10px;
  margin-top: 5px;
  /* (12px dot / 2) - (2px line / 2) = 5px */
  z-index: 0;
}

.wp-timeline-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3;
}

.noki {
  text-align: center;
  margin-bottom: 30px;
}

.noki img {
  max-width: 80%;
  height: auto;
  /* outline: 1px solid red; */
}


@media (max-width: 768px) {
  .wp-delivery-grid {
    flex-direction: column;
    gap: 40px;
  }
}

/* Urgent Box */
.wp-urgent-box {
  background: #fff5f7;
  border: 2px solid #ffd1dc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.wp-urgent-text {
  margin-bottom: 20px;
  color:#000;
}

.wp-urgent-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #b8405e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.wp-urgent-icon {
  background: #b8405e;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.wp-btn-contact {
  display: inline-block;
  background: #2c3e50;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  /* Updated transition for all properties */
}

.wp-urgent-box .wp-btn-contact {
  background: #b8405e;
  width: 320px;
  margin-inline: auto;
}

.wp-btn-contact:hover {
  background: #223346;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wp-delivery-card:nth-child(1) {
  background: #f8fafc url("https://img08.shop-pro.jp/PA01037/751/etc_base64/c2lybw.png?cmsp_timestamp=20260515153454") no-repeat right top/auto 100px;
}

.wp-delivery-card:nth-child(2) {
  background: #f8fafc url("https://img08.shop-pro.jp/PA01037/751/etc_base64/dGFubW9ubw.png?cmsp_timestamp=20260515153536") no-repeat right top/auto 100px;
}

/* ---------------取扱商品-------------- */
.wp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wp-product-item {
  border: 1px solid #e3f7fd;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Content at bottom */
  min-height: 480px;
  /* Increased height for separation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f5f7fa;
  /* Light Gray */
}

.wp-product-item>div {
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  min-height: 140px;
  justify-content: space-between;
}

.wp-product-item:first-child {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/a2ltb25vLWJhY2s.png?cmsp_timestamp=20260516093728") no-repeat center top 15px/90% auto;
}

.wp-product-item:nth-child(2) {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/bmlidXNoaWtpLWJhY2s.png?cmsp_timestamp=20260516093937") no-repeat center top 15px/90% auto;
}

.wp-product-item:nth-child(5) {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/aGFrYW1hLWJhY2s.png?cmsp_timestamp=20260516094020") no-repeat center top 15px/90% auto;
}

.wp-product-item:nth-child(6) {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/c2FtdWUtYmFjaw.png?cmsp_timestamp=20260516094102") no-repeat center top 15px/90% auto;
}

.wp-product-item:nth-child(7) {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/b2Jp.png?cmsp_timestamp=20260516094135") no-repeat center top 15px/90% auto;
}

.wp-product-item:nth-child(8) {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/d2Fzby1rb21vbm8.png?cmsp_timestamp=20260516094211") no-repeat center top 15px/90% auto;
}

.wp-product-item:nth-child(3) {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/b2hhc3lvcmktYmFjaw.png?cmsp_timestamp=20260516094259") no-repeat center top 15px/90% auto;
}

.wp-product-item:nth-child(4) {
  background: #f5f7fa url("https://img08.shop-pro.jp/PA01037/751/etc_base64/c21pbGUtYmFjaw.png?cmsp_timestamp=20260516094338") no-repeat center top 15px/90% auto;
}

.wp-product-info h3 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS Mincho E", serif;
  font-size: 1.1rem;
  line-height: 1;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
  font-weight: bold;
  color: #44607b;
  margin-bottom: 10px;
  border-left: 4px solid #b8405e;
  padding-left: 10px;
}

.wp-product-info p {
  /* width: ; */
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Responsive Grid */
@media (max-width: 900px) {
  .wp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .wp-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom/Original Orders Section */
.wp-custom-section {
  padding: 100px 0;
  background-color: #fff;
  border-top: 1px solid #efefef;
}

.wp-custom-desc {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1rem;
  color: #555;
}

.wp-flow-container {
  display: flex;
  justify-content: center;
  align-items:center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  color:#aaa;
}

.wp-step-item {
  min-width: 200px;
  background: #f8fafc;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  border: 1px solid #e2e8f0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.wp-step-image {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

/* Arrow between steps */
.wp-step-item:not(:last-child)::after {
  /*content: "&#9654;";*/
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #cbd5e0;
  font-size: 1.2rem;
  z-index: 2;
}

.wp-step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 10px;
  line-height: 1;
}

.wp-step-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .wp-flow-container {
    flex-direction: column;
    align-items: center;
  }

  .wp-step-item {
    width: 100%;
    max-width: 400px;
  }

  .wp-step-item:not(:last-child)::after {
    content: "▼";
    right: 50%;
    top: auto;
    bottom: -25px;
    transform: translateX(50%);
  }
}

/* 装着動画 */
.wp-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.wp-video-item {
  text-align: center;
}

.wp-video-link {
  display: inline-block;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.wp-video-link:hover {
  transform: scale(1.05);
}

.wp-video-link img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.wp-video-text h3 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS Mincho E", serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.wp-video-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
  display: inline-block;
}

@media (max-width: 900px) {
  .wp-video-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* 別注商品 */
.wp-original {
  background-color: #fff;
  padding: 60px 0;
}

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

.wp-original h3 {
  margin-top: 30px;
  font-size: 1.6rem;
  color: #b8000e;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
}

.wp-original-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 50px;
}

.wp-original-item {
  padding: 30px 15px;
  position: relative;
  border-right: 1px solid #d4c2a0;
  border-bottom: 1px solid #d4c2a0;
  display: flex;
  flex-direction: column;
}

/* Outer borders */
.wp-original-item:nth-child(-n+4) {
  border-top: 1px solid #d4c2a0;
}

.wp-original-item:nth-child(4n+1) {
  border-left: 1px solid #d4c2a0;
}

/* Decorative Dots */
.wp-original-item::after,
.wp-original-item:nth-child(-n+4)::before,
.wp-original-grid::before,
.wp-original-grid::after,
.wp-original-item:nth-child(5)::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #a88444;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 0 0 6px #fff;
}

.wp-original-item::after {
  right: -4px;
  bottom: -4px;
}

.wp-original-item:nth-child(-n+4)::before {
  right: -4px;
  top: -4px;
}

.wp-original-grid::before {
  left: -4px;
  top: -4px;
}

.wp-original-grid::after {
  left: -4px;
  bottom: -4px;
}

.wp-original-item:nth-child(5)::before {
  left: -4px;
  top: -4px;
}


/* Inner content */
.wp-orig-img-box {
  border: 1px solid #a88444;
  padding: 5px;
  margin-bottom: 20px;
  background: #fff;
  flex-shrink: 0;
}

.wp-orig-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.wp-original-item h4 {
  color: #a88444;
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 12px;
  font-weight: bold;
}

.wp-original-item p {
  color: #333;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

/* Responsive Logic */
@media (max-width: 900px) {
  .wp-original-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-original-item::after,
  .wp-original-item::before,
  .wp-original-grid::before,
  .wp-original-grid::after,
  .wp-original-item:nth-child(5)::before {
    display: none !important;
  }

  .wp-original-item {
    border: 1px solid #d4c2a0;
    border-bottom: none;
    border-right: none;
  }

  .wp-original-item:nth-child(2n) {
    border-right: 1px solid #d4c2a0;
  }

  .wp-original-item:nth-last-child(-n+2) {
    border-bottom: 1px solid #d4c2a0;
  }
}

@media (max-width: 500px) {
  .wp-original-grid {
    grid-template-columns: 1fr;
  }

  .wp-original-item {
    border: 1px solid #d4c2a0;
    border-bottom: none;
  }

  .wp-original-item:last-child {
    border-bottom: 1px solid #d4c2a0;
  }
}

/* 流れ */
.wp-original h3 {
  margin-block: 50px 20px;
}

.wp-btn-contact {
  background: #b8000e;
}

.wp-btn-contact:hover {
  background: #90000a;
}

/* -------------会社概要------------- */
.wp-company {
  padding-bottom: 80px;
}
.wp-company-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wp-title-dec-left,
.wp-title-dec-right {
  height: 60px;
  width: auto;
}
.wp-company-frame {
  position: relative;
  max-width: 1050px;
  margin: 60px auto 40px;
  background-color: transparent;
}
.wp-greeting {
  margin-bottom: 70px;
}
.wp-dec-lt {
  position: absolute;
  top: -15px;
  left: -15px;
  max-width: 100px;
  height: auto;
  z-index: 2;
}
.wp-dec-rb {
  position: absolute;
  bottom: -15px;
  right: -15px;
  max-width: 140px;
  height: auto;
  z-index: 2;
}
.wp-greeting-inner {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dbb97f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 30px 30px 10px;
  margin-bottom:30px;
}
.wp-greeting-left {
  flex-shrink: 0;
  text-align: center;
}
.wp-greeting-right {
  flex: 1;
}
.wp-greeting-title {
  font-family: serif;
  font-weight: 200;
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.wp-under-border img {
  width: 100%;
  max-width: 120px;
  height: auto;
}
.wp-greeting-text {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  text-align: left;
  margin: 0;
}
.wp-greeting-text .name{
  font-family: serif;
  text-align:right;
  font-size:1.5rem;
  margin:0;
}
.wp-company-info {
  display: flex;
  justify-content: space-between;
  /*align-items: stretch;*/
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.wp-company-data {
  background: #fff;
  border: 1px solid #dbb97f;
  border-radius: 10px;
  width:40%;
}
.wp-company-data-inner {
  background-image: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/Z2FpeW8tbGVmdC10b3A.png?cmsp_timestamp=20260516102751'), url('https://img08.shop-pro.jp/PA01037/751/etc_base64/Z2FpeW8tcml0ZS1idG0.png?cmsp_timestamp=20260516102751');
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 80px, 80px;
  /* background: #ffffff; */
  padding: 20px;
  flex: 1;
}

.wp-company-info h3 {
  color:#000;
  font-family: serif;
  font-weight: 200;
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-image: url('https://img08.shop-pro.jp/PA01037/751/etc_base64/Z2FpeW8tbGVmdA.png?cmsp_timestamp=20260516102751'), url('https://img08.shop-pro.jp/PA01037/751/etc_base64/Z2FpeW8tcml0ZQ.png?cmsp_timestamp=20260516102751');
  width: fit-content;
  padding-inline: 50px;
  margin: 0 auto 20px;
}

.wp-company-table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  font-weight: 200;
}

.wp-company-table tbody tr:first-child {
  border-top: 1px solid #e0e0e0;
}

.wp-company-table th,
.wp-company-table td {
  padding: 0.8rem;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  font-size: 0.8rem;
  color: #333;
}

.wp-company-table th {
  width: 33%;
  font-weight: 200;
  color: #000;
  background: #F0F2EA;
  text-align: center;
}

.wp-company-map {
  flex: 1;
  min-height: 350px;
  border: 1px solid #dbb97f;
  border-radius: 10px;
  background:url(https://img08.shop-pro.jp/PA01037/751/etc_base64/bWFwX2ltZw.png?cmsp_timestamp=20260517075145) no-repeat center/cover;
}

@media (max-width: 900px) {
  
  .wp-company {
    padding-bottom: 20px;
}
  .wp-company-frame {
    padding: 20px;
    margin: 40px auto 0;
  }

  .wp-greeting-inner {
    flex-direction: column;
    gap: 30px;
  }

  .wp-greeting-title {
    margin-bottom: 20px;
  }

  .wp-greeting-text br {
    display: none;
  }

  .wp-company-info {
    flex-direction: column;
    gap: 40px;
  }
.wp-company-data{
  width:auto;
  }
  .wp-company-map {
    height: 300px;
    height: auto;
    background-size:contain;
  }
}

/* お問い合わせ */
.wp-contact {
  background-color: #fff;
  padding: 0;
}

.wp-contact-intro {
  font-family: sans-serif;
  font-weight: 200;
  max-width: 800px;
  margin: 50px auto;
  padding: 60px 40px;
  background-color: #fefdec;
  border: 1px solid #d4c2a0;
  border-radius: 4px;
  position: relative;
  text-align: center;
}

/* Gold Japanese corner accents */
.wp-contact-intro::before,
.wp-contact-intro::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #b8000e;
  z-index: 2;
}

.wp-contact-intro::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.wp-contact-intro::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.wp-contact-intro p {
  font-size: 1.1rem;
  line-height: 2;
  color: #333;
  margin-bottom: 40px;
}

.wp-contact-button {
  display: inline-block;
  background: #b8000e;
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 0, 14, 0.2);
}

.wp-contact-button:hover {
  background: #90000a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 0, 14, 0.4);
}

@media (max-width: 600px) {
  .wp-contact-intro {
    padding: 40px 20px;
  }

  .wp-contact-intro p br {
    display: none;
  }
}

/* ------------- 既存装着動画 ------------- */
.video .wp-section .container {
  padding-top: 0;

  h3 {
    font-weight: normal;
    margin-top: 20px;
  }

}

/*スマイルタイム*/
table {
  max-width: 100%;
  border-collapse: collapse;
  background-color: transparent;
}

td {
  padding: 5px;
}



