@charset "utf-8";

.benefit {
  position: relative;
  padding-bottom: 150px;
}
.benefit .benefit-bg img {
  position: absolute;
  width: 100%;
  height: -webkit-fill-available;
  object-fit: cover;

  background-color: #fff;
  z-index: -1;
}
.benefit .l-wrap {
  padding: 0 140px;
}
.benefit .benefit-content {
  padding: 140px 0;
}
.benefit .benefit-content .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.benefit .benefit-content .title h2 {
  font-size: 60px;
  font-weight: 700;
}

.benefit .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 55px;
  column-gap: 75px;
  margin-top: 50px;
  padding: 0 75px;
}

.benefit .card {
  display: flex;
  align-items: center;
  gap: 30px;
}

.benefit .card .text .title {
  font-size: 30px;
  font-weight: 700;
  width: fit-content;
  position: relative;
}

.benefit .card .text .title::after {
  position: absolute;
  bottom: -30px;
  left: 0;
  content: "";
  background-image: url("/images/line.svg");
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 32px;
}

.benefit .card .text .desc {
  font-size: 16px;
  margin-top: 18px;
  font-weight: 500;
}

.benefit .slideshow-container {
  overflow: hidden;
  margin-top: 150px;
  padding-left: 140px;
  margin: 0 auto;
  max-width: 1920px;
}
.benefit .gallery-track {
  display: flex;
  gap: 50px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}

.benefit .gallery-track::-webkit-scrollbar {
  display: none;
}

.benefit .photo-slide {
  width: 500px;
  height: auto;
  border-radius: 8px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 1440px) {
  .benefit .l-wrap {
    padding: 0 80px;
  }
   .benefit .card-grid {
    padding: 0;
  }
   .benefit .slideshow-container {
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  .benefit{
    padding-bottom: 90px;
  }
  .benefit .l-wrap {
    padding: 0 60px;
  }
  .benefit .card-grid {
    margin-top: 80px;
  }
  .benefit .card {
    flex-direction: column;
  }
  .benefit .slideshow-container {
    padding-left: 60px;
  }
  .benefit .card .text .title {
    place-self: center;
  }
}

@media (max-width: 768px) {
  .benefit .l-wrap {
    padding: 0 40px;
  }
  .benefit .card-grid {
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 40px;
  }

  .benefit .benefit-content .title h3 {
    font-size: 18px;
  }

  .benefit .benefit-content .title h2 {
    font-size: 26px;
  }

  .benefit .card {
    gap: 20px;
    flex-direction: row;
  }
  .benefit .card img {
    width: 90px;
    height: auto;
  }

  .benefit .card .text .title {
    font-size: 22px;
    place-self: normal;
  }
  .benefit .card .text .desc {
    font-size: 15px;
  }
  .benefit .card .text .title::after {
    bottom: -32px;
  }
  .benefit .benefit-content {
    padding-bottom: 60px;
    padding-top: 70px;
  }
  .benefit .slideshow-container {
    padding-left: 40px;
    padding-bottom: 0;
  }
  .benefit .gallery-track {
    gap: 30px;
  }
  .benefit .photo-slide {
    width: 300px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .benefit .l-wrap {
    padding: 0 15px !important;
  }
  .benefit .slideshow-container {
    padding-left: 15px;
  }
}
.strength-message {
  position: relative;
}
.strength-message .strength-message-bg {
  background: linear-gradient(
    90deg,
    rgba(208, 247, 235, 1) 0%,
    rgba(255, 233, 195, 1) 100%
  );
  z-index: -1;
  position: absolute;
  right: 0;
  height: 100%;
  left: 90px;
}
.strength-message .l-wrap {
  padding-top: 100px;
  padding: 0 90px 0 140px;
}
.strength-message .message-content {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  gap: 40px;
  align-items: flex-end;
  padding: 50px 0 150px;
}
.strength-message .image-section {
  width: 50%;
}
.strength-message .image-section img {
  width: 870px;
  height: auto;
}

.strength-message .text-section {
  width: 50%;
}

.strength-message .message-title {
  font-size: 200px;
  line-height: 235px;
  font-weight: 400;
  font-family: var(--font-en);
  color: #fff;
  opacity: 0.6;
}

.strength-message .japanese-text {
  font-size: 36px;
  font-weight: 700;
  margin-top: -17px;
}

.strength-message .highlight-text {
  font-size: 44px;
  font-weight: 700;
}

.strength-message .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  padding: 30px 0 50px;
  letter-spacing: -1px;
}

.strength-message .mobile-image {
  display: none;
}

.strength-message .button-container {
  display: flex;
  gap: 33px;
}

.strength-message .btn {
  width: 50%;
  height: 90px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.strength-message .btn-primary,
.strength-message .btn-secondary {
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
}
.strength-message .btn-primary:hover,
.strength-message .btn-secondary:hover {
  background-color: #189b73;
  box-shadow: 0 4px 8px rgba(29, 182, 135, 0.3);
}
.strength-message .btn-primary {
  background: #1db687;
  color: white;
}

.strength-message .btn-secondary {
  background: #1db687;
  color: white;
}

.strength-message .btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.strength-message .btn::after {
  content: "→";
  position: absolute;
  right: 30px;
  font-size: 20px;
}
@media (max-width: 1790px) {
  .strength-message .message-title {
    font-size: 150px;
  }
}

@media (max-width: 1440px) {
  .strength-message .l-wrap {
    padding: 0 80px;
  }
  .strength-message .button-container {
    gap: 25px;
    flex-direction: column;
  }
  .strength-message .strength-message-bg {
    left: 50px;
  }
  .strength-message .message-content {
    align-items: center;
    padding: 0 0 130px;
  }
  .strength-message .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .strength-message .l-wrap {
    padding: 0 40px;
  }
  .strength-message .image-section img {
    width: 550px;
  }
  .strength-message .highlight-text {
    font-size: 34px;
  }
  .strength-message .japanese-text {
    font-size: 26px;
  }
  .strength-message .description {
    font-size: 16px;
    padding: 30px 0;
  }

  .strength-message .btn {
    font-size: 16px;
  }
  .strength-message .strength-message-bg {
    left: 0;
  }
  .strength-message .message-content {
    flex-direction: column;
    gap: 30px;
  }
  .strength-message .image-section {
    width: 100%;
    display: none;
  }.strength-message .text-section {
    width: 100%;
  }
  .strength-message .mobile-image {
    display: block;
    margin: 20px 0 40px;
  }
  .strength-message .mobile-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* Tablet - 769px to 1024px */
@media (max-width: 768px) {
  .strength-message .l-wrap {
    padding: 0 15px;
  }
  
  .strength-message .message-title {
    font-size: 100px;
    line-height: 115px;
    text-align: left;
  }
  .strength-message .highlight-text {
    font-size: 30px;
    text-align: left;
  }
  .strength-message .japanese-text {
    font-size: 24px;
    text-align: left;
  }
  .strength-message .description {
    font-size: 15px;
    padding: 40px 0 50px;
    text-align: left;
  }
  .strength-message .button-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .highlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .strength-message .btn {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
  .strength-message .message-content {
    padding: 25px 0 90px;
  }
    .strength-message .mobile-image {
    margin: 10px 0 40px;
  }
}

@media (max-width: 480px) {
  .strength-message .message-title {
    font-size: 75px;
    line-height: 100px;
  }
  .strength-message .highlight-text {
    font-size: 24px;
  }
  .strength-message .japanese-text {
    font-size: 18px;
    margin: 5px 0;
  }
  .strength-message .description {
    font-size: 15px;
    padding: 20px 0;
  }
  .strength-message .mobile-image img {
    max-width: 100%;
  }
  .strength-message .btn {
    font-size: 16px;
  }
  .strength-message .btn::after {
    right: 20px;
    font-size: 14px;
  }
}
.hero .hero-image.strength .text {
  position: absolute;
  right: 15%;
  font-size: 150px;
  color: #fff;
  opacity: 0.4;
  transform: translateY(50%);
  top: -50%;
}
.hero .hero-image.strength {
  position: relative;
}

.reasons .gradient-background.point {
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(208, 247, 235, 1) 0%,
    rgba(255, 233, 195, 1) 100%
  );
  height: 136%;
  left: 90px;
  z-index: -2;
  margin-top: -560px;
  right: 0;
}
.reasons .reason-list .list .number.point {
  margin-left: 0;
}
.reasons .reason-list .list .number.point::after {
  width: 120%;
  margin-left: -10px;
}

@media (max-width: 1439px) {
  .reasons .gradient-background.point {
    left: 50px;
  }
  .hero .hero-image.strength .text {
    display: none;
  }
}
@media (max-width: 1023px) {
  .reasons .gradient-background.point {
    width: 100%;
    margin-top: -350px;
    height: 115%;
    left: 0;
  }
}
@media (max-width: 768px) {
  .reasons .gradient-background.point {
    margin-top: -340px;
    height: 117%;
  }
}
