/* ========================== */
/* COMMON */
/* ========================== */

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

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.en-label {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'DIN 2014', sans-serif;
}

.label-line {
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin: 5px auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
}

/* もっと見るボタン */
.more-examples-btn {
    text-align: center;
}

.more-examples-btn a {
    display: inline-block;
    padding: 15px 40px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
} 

.more-examples-btn a:hover {
    background-color: #ff0099;
}

/* PRICE (金額 / 税 / 円) */
.price-value {
  font-size: 20px;
  font-weight: 700;
  color: #FF0000;
  font-style: italic;
}

.price-unit,
.price-tax {
  font-size: 6px;
  margin: 0;
  color: #000;
  font-weight: bold;
  line-height: 1.2;
}

/* パンくずリスト */
.fl_breadcrumbs {
  background-color: #fff;
  padding: 24px 64px;
  position: relative;
  z-index: 1;
}

.fl_breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.fl_breadcrumbs .breadcrumb-item {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.fl_breadcrumbs .breadcrumb-item.home {
  display: flex;
  align-items: center;
}

.fl_breadcrumbs .home-icon {
  width: 16px;
  height: 16px;
  background-image: url('../images/home-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
}

.fl_breadcrumbs .separator {
  color: #999;
  font-size: 10px;
  margin: 0 4px;
}

/* ===============================
 * Hero Section
 * =============================== */
.fl_wall-hero {
  background-image: url("../images/wall-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0px;
  position: relative;
  overflow: hidden;
}

.fl_wall-hero .container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px;
}

.fl_wall-hero .hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 55%;
}

.fl_wall-hero .hero-left .hero-logo {
  position: absolute;
  top: 7%;
  left: 4%;
  max-width: 66%;
  height: auto; 
  margin-bottom: 20px;
}

 .fl_wall-hero .hero-left .hero-subhead {
    position: absolute;
    top: 39%;
    left: 8%;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    background-color: #fff;
    padding: 0 7px;
}


.fl_wall-hero .hero-left .hero-image {
  position: absolute;
  bottom: -23px;
  left: -11px;
  max-width: 103%;
  max-height: 100%;
  object-fit: contain;
}

.fl_wall-hero .hero-right {
  flex: 1 1 40%;
  background-color: #fff7ed;
  border-radius: 12px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 355px;
}

.fl_wall-hero .hero-price-title {
  font-size: 2rem;
  margin-bottom: 9px;
  font-weight: 900;
  color: #009933;
  text-align: center;
}

.fl_wall-hero .price-grid {
  display: grid;
  flex-grow: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 50%;
}

.fl_wall-hero .price-card {
  background-color: #ffffff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  letter-spacing: 1px;
}

.fl_wall-hero .price-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

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

.fl_wall-hero .label {
  font-size: 12px;
  font-weight: bold;
  color: #000;
}

.fl_wall-hero .hero-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}


.fl_wall-hero .price-wrapper {
  margin-top: 18px;
}

/* ===============================
 * Features Section
 * =============================== */

.fl_wall-features {
    padding: 80px 0; 
    background-color: #fff;
    background-image: radial-gradient(#ffd1ff 3px, transparent 3px);
    background-size: 25px 25px; 
}

.fl_wall-features .wall-features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
  z-index: 0;
} 

.fl_wall-features .container {
  position: relative;
  z-index: 1;
}

.fl_wall-features .features-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

 .fl_wall-features .features-title {
  font-size: 32px;
  font-weight: 700;
  color: #ff0099;
  text-align: left;
  margin-bottom: 3rem;
  line-height: 1.5;
  width: 100%;
}

.fl_wall-features .features-text {
  width: calc(50% - 15px);
  margin-bottom: 0;
}

.fl_wall-features .features-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

.fl_wall-features .features-images {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fl_wall-features .feature-image-main {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fl_wall-features .feature-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fl_wall-features .feature-image-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.fl_wall-features .feature-image-small {
  width: 200px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.fl_wall-features .feature-image-small img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px; 
}

.fl_wall-features .feature-image-main:hover img,
.fl_wall-features .feature-image-small:hover img {
  transform: scale(1.05);
}


/* ===============================
 * Examples Section 
 * =============================== */
.fl_wall-examples {
  position: relative;
  padding: 80px 0;
  background-color: #ff0099;
  color: #fff;
  background-image: url('../images/wall-examples-bg.png');
}

.fl_wall-examples .container {
  position: relative;
}

.fl_wall-examples .section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.fl_wall-examples .examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.fl_wall-examples .example-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.fl_wall-examples .example-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.fl_wall-examples .example-card:hover {
  transform: translateY(-5px);
}

.fl_wall-examples .example-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

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

.fl_wall-examples .example-content {
  padding: 20px;
}

.fl_wall-examples .example-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.fl_wall-examples .example-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* ===============================
 * Testimonials Section
 * =============================== */
.fl_wall-testimonials {
  padding: 80px 0;
  background-color: #ffeaff;
}

.fl_wall-testimonials .en-label {
  color: #ff0099;
}

.fl_wall-testimonials .label-line {
  background-color: #ff0099;
}

.fl_wall-testimonials .section-title {
  color: #ff0099;  
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.fl_wall-testimonials .testimonials-wrapper {
  display: flex;
  align-items: center;
}

.fl_wall-testimonials .testimonial-prev,
.fl_wall-testimonials .testimonial-next {
  width: 40px;
  height: 40px;
  background-color: #ff0099;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.fl_wall-testimonials .testimonial-prev:before,
.fl_wall-testimonials .testimonial-next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.fl_wall-testimonials .testimonial-prev:before {
  transform: translate(-25%, -50%) rotate(-45deg);
}

.fl_wall-testimonials .testimonial-next:before {
  transform: translate(-75%, -50%) rotate(135deg);
}

.fl_wall-testimonials .testimonials-slider {
  display: flex;
	flex-direction: row;   
  overflow-x: hidden;
  gap: 30px;
  margin: 0 20px;
  flex: 1;
  margin-bottom: 40px;
}

.fl_wall-testimonials .testimonial-card {
  flex: 0 0 auto;
  background-color: #ff0099;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 33%;
  margin-right: 24px;
}
.fl_wall-testimonials .testimonial-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.fl_wall-testimonials .testimonial-content {
  padding: 20px;
  color: #fff;
}

.fl_wall-testimonials .testimonial-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.fl_wall-testimonials .testimonial-meta {
  display: flex;
  justify-content: start;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.fl_wall-testimonials .testimonial-type {
  background-color: #ff0099;
  color: #FFFF00;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  display: inline-block;
}

.fl_wall-testimonials .testimonial-text {
  font-size: 14px;
  line-height: 1.5;
}

.fl_wall-testimonials .more-examples-btn a {
    color: #ff0099;
    border: 2px solid #ff0099;
} 

.fl_wall-testimonials .more-examples-btn a:hover {
    background-color: #ffeaff;
    color: #ff0099;
}


/* ===============================
 * Price Section
 * =============================== */
.fl_wall-price {
  padding: 80px 0;
  background-color: #fff;
  background-image: radial-gradient(#ffd1ff 3px, transparent 3px);
  background-size: 25px 25px;
}

.fl_wall-price .price-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.fl_wall-price .container {
  position: relative;
}

.fl_wall-price .section-header {
  margin-bottom: 20px;
}

.fl_wall-price .en-label {
  color: #ff0099;
}

.fl_wall-price .label-line {
  background-color: #ff0099;
}

.fl_wall-price .section-title {
  color: #ff0099;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.fl_wall-price .price-note {
  text-align: right;
  color: #666;
  font-size: 12px;
  margin-bottom: 30px;
}


.fl_wall-price .price-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.fl_wall-price .price-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.fl_wall-price .price-item:hover {
  transform: translateY(-5px);
}

.fl_wall-price .price-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

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

.fl_wall-price .price-content {
  padding: 10px;
  flex-grow: 1;
}

.fl_wall-price .price-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-align: left;
}
.fl_wall-price .price-unit,
.fl_wall-price .price-tax {
  font-size: 14px;
  margin: 0;
  color: #000000;
  font-weight: 700;
}

/* ============================ */
/* PC（1025px以上） */
/* ============================ */
@media screen and (min-width: 1025px) {

}

/* ============================ */
/* タブレット（769px〜1024px） */
/* ============================ */
@media screen and (min-width: 769px) and (max-width: 1024px) {

  /******** Hero Section ********/ 

  .fl_wall-hero {
    padding: 20px 0;
  }

  .fl_wall-hero .container {
    flex-direction: column;
  }

  .fl_wall-hero .hero-left,
  .fl_wall-hero .hero-right {
    width: 100%;
  }

  .fl_wall-hero .hero-left {
    align-items: center;
    text-align: center;
  }

  .fl_wall-hero .hero-left .hero-logo {
    position: static;
    width: 83%;
  }

  .fl_wall-hero .hero-left .hero-subhead {
    position: static;
    font-size: 23px;
  }

  .fl_wall-hero .hero-left .hero-image {
    position: static;
    width: 78%;
  }

  .fl_wall-hero .hero-right {
    padding: 17px;
    margin: 0 auto;
  }

  .fl_wall-hero .hero-price-title {
    font-size: 28px;
    margin-bottom: 15px;
  } 

   .fl_wall-hero .price-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin: 0;
  }

  .fl_wall-hero .label {
    font-size: 20px;
  }

  .fl_wall-hero .price-value {
    font-size: 32px;
  }

  .fl_wall-hero .price-unit,
  .fl_wall-hero .price-tax {
    font-size: 12px;
  } 

  /******** Testimonials Section ********/ 
  .fl_wall-testimonials .testimonial-card {
    flex: 0 0 auto;
  }

  /******** Price Section ********/ 
  .fl_wall-hero .price-wrapper {
    margin-top: 19px;
  }

  .fl_wall-price .price-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .fl_wall-price .price-name {
    font-size: 18px;
  }

  .fl_wall-price .price-value {
    font-size: 32px;
  }

  .fl_wall-price .price-unit,
  .fl_wall-price .price-tax {
    font-size: 15px;
  } 

}

/* ============================ */
/* スマホ（768.98px以下） */
/* ============================ */
@media screen and (max-width: 768.98px) {
  /******** Breadcrumbs ********/ 
  .fl_breadcrumbs {
      padding: 16px;
  }

  .spDisOnly {
    display: block;
  }

  /******** Hero Section ********/ 
  .fl_wall-hero {
    padding: 20px 0;
    overflow: hidden;
  }

  .fl_wall-hero .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fl_wall-hero .hero-left,
  .fl_wall-hero .hero-right {
    width: 100%;
  }

  .fl_wall-hero .hero-left {
    align-items: center;
    text-align: center;
  }

  .fl_wall-hero .hero-left .hero-logo {
    position: static;
    width: 90%;
    margin-bottom: 0;;
  }

  .fl_wall-hero .hero-left .hero-subhead {
    font-size: 22px;
    position: static;
  }

  .fl_wall-hero .hero-left .hero-image {
    position: static;
    max-width: 100%;
    margin-bottom: -2px;
  }

  .fl_wall-hero .hero-right {
    margin: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: unset;
    display: block;
  }

  .fl_wall-hero .hero-price-title {
    font-size: 24px;
    margin-bottom: 9px;
    line-height: 1.5;
  }

  .fl_wall-hero .price-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 95%;
    margin: auto;
  }

  .fl_wall-hero .label {
    font-size: 18px;
  }

  .fl_wall-hero .price-value {
    font-size: 36px;
  }

  .fl_wall-hero .price-wrapper {
    margin-top: 28px;
  }

  .fl_wall-hero.price-unit,
  .fl_wall-hero .price-tax {
    font-size: 12px;
  }

  /******** Features Section ********/ 
  .fl_wall-features .features-content {
    flex-direction: column;
  }

  .fl_wall-features .features-images {
    width: 100%;
  }

  .fl_wall-features .features-text {
    width: 100%;
  }

  .fl_wall-testimonials .testimonial-card {
    flex: 0 0 auto;
    width: 100%;
    margin-right: 0;
  }

  /* スライドバー　<>ボタン非表示 */
   .fl_wall-testimonials .testimonial-prev,
   .fl_wall-testimonials .testimonial-next {
    display: none;
  }

  .fl_wall-testimonials .testimonial-content {
    padding: 15px;
  }

  .fl_wall-testimonials .testimonial-title {
      font-size: 22px;
  }

  .fl_wall-testimonials .testimonial-meta {
    gap: 9px;
    margin-bottom: 0px;
    font-size: 20px;
  }

  .fl_wall-testimonials .testimonial-type {
    font-size: 18px;
    margin-bottom: 0;
  }

  .fl_wall-testimonials .testimonial-text {
    font-size: 18px;
  }

  /******** Price Section ********/ 
  .fl_wall-price .price-items {
      grid-template-columns: repeat(2, 1fr);
  }

  .fl_wall-price .price-name {
    font-size: 14px;
  }

  .fl_wall-price .price-unit,
  .fl_wall-price .price-tax {
    font-size: 10px;
  }

  .fl_wall-price .price-note {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .fl_wall-hero .hero-left .hero-subhead {
    font-size:10px;
  }

  .fl_wall-hero .hero-price-title {
    font-size: 17px;
  }

  .fl_wall-hero .price-grid {
    gap: 13px;
  }

  .fl_wall-hero .label {
    font-size: 8px;
  }

  .fl_wall-hero .price-value {
    font-size: 17px;
  }

  .fl_wall-hero .price-wrapper {
    margin-top: 20px;
  }

  .fl_wall-hero .price-unit, 
  .fl_wall-hero .price-tax {
    font-size: 4px;
  }

  .fl_wall-price .price-note {
    text-align: left;
  }
}
