@charset "utf-8";

.reasons {
  position: relative;
}
.reasons .l-wrap {
  padding: 0 140px;
}
.reasons .gradient-background {
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(208, 247, 235, 1) 0%,
    rgba(255, 233, 195, 1) 100%
  );
  height: 126%;
  left: 90px;
  z-index: -2;
  margin-top: -560px;
  right: 0;
}
.reasons .reason-list .list .number {
  font-family: var(--font-hand);
  font-size: 60px;
  font-style: normal !important;
  color: #1db687;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  margin-left: -30px;
}
.reasons .reason-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-bottom: 150px;
}
.reasons .reason-list .list .number::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  content: "";
  background-image: url("../images/line.svg");
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 32px;
  margin-left: 10px;
}
.reason-info {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.reason-info .text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 23px;
}
.reason-info .text p {
  font-size: 18px;
  line-height: 36px;
}
.reason-info img {
  max-height: 100%;
  width: auto;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1870px){
 .reason-info img {
    height: auto;
    width: 50%;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
/* Laptop (1024px to 1439px) */
@media (max-width: 1439px) {
  .reasons .l-wrap {
    padding: 0 80px;
  }
  .reasons .gradient-background {
    left: 50px;
    height: 130%;
  }
  .reasons .reason-list .list .number {
    font-size: 50px;
    margin-left: -20px;
  }
  .reason-info {
    gap: 40px;
  }
  .reason-info .text {
    width: 50%;
  }
  .reason-info .text h2 {
    font-size: 36px;
  }
  .reason-info .text p {
    font-size: 16px;
    line-height: 32px;
  }
  .reason-info img {
    height: 450px;
    width: 50%;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
   .reasons .reason-list {
    padding-bottom: 110px;
  }
}

@media (max-width: 1023px) {
  .reasons .l-wrap {
    padding: 0 60px;
  }
  .reasons .gradient-background {
    width: 100%;
    margin-top: -350px;
    height: 116%;
    left: 0;
  }
  .reasons .reason-list .list .number {
    font-size: 45px;
    margin-left: -15px;
  }
  .reason-info {
    flex-direction: column;
    gap: 30px;
  }
  .reasons .reason-list {
    gap: 60px;
    padding-bottom: 90px;
  }
  .reason-info .text {
    width: 100%;
  }
  .reason-info .text h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .reason-info .text p {
    font-size: 16px;
    line-height: 30px;
  }
  .reason-info img {
    height: 400px;
    width: 100%;
    align-self: center;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
  }
}

@media (max-width: 768px) {
  .reasons .l-wrap {
    padding: 0 40px;
  }
  .reasons .gradient-background {
    margin-top: -340px;
    height: 120%;
  }
  .reasons .reason-list {
    gap: 55px;
  }
  .reasons .reason-list .list .number {
    font-size: 30px;
    margin-left: -15px;
    margin-bottom: 12px;
  }
  .reasons .reason-list .list .number::after {
    bottom: -25px;
  }
  .reason-info {
    gap: 50px;
  }
  .reason-info .text h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .reason-info .text p {
    font-size: 15px;
    line-height: 26px;
  }
  .reason-info img {
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 280px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .reasons .l-wrap {
    padding: 0 15px;
  }
  .reason-info img {
    height: 210px;
    width: 100%;
  }
}
.message {
  position: relative;
}
.message .message-bg img {
  position: absolute;
  width: 100%;
  height: -webkit-fill-available;
  object-fit: cover;
  background-color: #fff;
  z-index: -1;
}
.message .l-wrap {
  padding-top: 100px;
  padding: 0 140px;
}
.message .message-content {
  padding: 130px 0 150px;
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: center;
}
.message .image-section {
  width: 50%;
  margin-top: 80px;
}
.message .image-section img {
  width: 870px;
  height: auto;
}

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

.message .message-title {
  font-size: 200px;
  line-height: 235px;
  font-weight: 400;
  font-family: var(--font-en);
  background: linear-gradient(to right, #b5f1de 0%, #fedc9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1440px) {
  .message .l-wrap {
    padding: 50px 80px;
  }
  .message .message-title {
    font-size: 100px;
    line-height: 170px;
  }
  .message .button-container {
    gap: 25px;
    flex-direction: column;
  }
  .message .btn{
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .message .l-wrap {
    padding: 100px 60px 100px 40px;
  }
  .message .image-section img {
    width: 550px;
  }
  .message .message-title {
    font-size: 80px;
    line-height: 140px;
  }
  .message .highlight-text {
    font-size: 34px;
  }
  .message .japanese-text {
    font-size: 26px;
  }
  .message .description {
    font-size: 16px;
    padding: 50px 0 60px;
  }

  .message .btn {
    font-size: 16px;
  }
}

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

@media (max-width: 480px) {
  .message .l-wrap {
    padding: 50px 15px 60px 15px !important;
  }
  .message .message-title {
    font-size: 75px;
    line-height: 100px;
    margin-bottom: 0;
  }
  .message .highlight-text {
    font-size: 24px;
  }
  .message .japanese-text {
    font-size: 18px;
    margin: 5px 0;
  }
  .message .description {
    font-size: 15px;
    padding: 20px 0;
  }
  .message .mobile-image img {
    max-width: 100%;
  }
  .message .btn {
    font-size: 16px;
  }
  .message .btn::after {
    right: 20px;
    font-size: 14px;
  }
}
.hero {
  position: relative;
}
.hero .hero-container.l-wrap {
  padding: 170px 140px 200px;
}
.hero .hero-text.l-wrap {
  padding: 0 140px;
}
.hero .hero-image img {
  position: absolute;
  right: 0;
  z-index: -1;
  padding-left: 90px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-container h1 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.5);
}
.hero-container p {
  background-color: #25223d;
  font-family: var(--font-en);
  color: #ffffff;
  font-size: 20px;
  padding: 5px 10px;
  width: fit-content;
}
.hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text-content {
  margin-top: 160px;
  margin-bottom: 120px;
  width: fit-content;
}
.hero-text h2 {
  font-size: 60px;
  font-weight: 700;
}
.hero-text h3 {
  font-size: 36px;
  font-weight: 700;
}

/* Laptop (1024px - 1439px) */
@media (max-width: 1439px) {
  .hero .hero-container.l-wrap {
    padding: 120px 80px 150px;
  }
  .hero .hero-image img {
    padding-left: 50px;
  }
  .hero .hero-text.l-wrap {
    padding: 0 80px;
  }
  .hero-container h1 {
    font-size: 38px;
  }
  .hero-container p {
    font-size: 18px;
  }
  .hero-text-content {
    margin-top: 70px;
    margin-bottom: 60px;
  }
  .hero-text h2 {
    font-size: 48px;
  }
  .hero-text h3 {
    font-size: 30px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .hero .hero-container.l-wrap {
    padding: 100px 60px 60px;
  }
    .hero .hero-image img {
    padding-left: 15px;
  }
  .hero .hero-text.l-wrap {
    padding: 0 60px;
  }
  .hero-container h1 {
    font-size: 32px;
  }
  .hero-container p {
    font-size: 16px;
  }
  .hero-text h2 {
    font-size: 40px;
  }
  .hero-text h3 {
    font-size: 26px;
  }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
  .hero .hero-container.l-wrap {
    padding: 160px 40px 40px;
  }
  .hero .hero-text.l-wrap {
    padding: 0 40px;
  }
  .hero .hero-image img {
    padding-left: 15px;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .hero-container h1 {
    font-size: 26px;
  }
  .hero-container p {
    font-size: 14px;
    padding: 4px 8px;
  }
  .hero-text-content {
    margin-top: px;
    margin-bottom: 60px;
  }
  .hero-text h2 {
    font-size: 32px;
  }
  .hero-text h3 {
    font-size: 22px;
  }
}

/* Smaller than mobile (479px and below) */
@media (max-width: 480px) {
  .hero .hero-container.l-wrap {
    padding: 120px 40px 25px;
  }
  .hero .hero-text.l-wrap {
    padding: 0 15px;
  }
  .hero .hero-image img {
    padding-left: 15px;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .hero-container h1 {
    font-size: 24px;
  }
  .hero-container p {
    font-size: 10px;
    padding: 3px 15px;
  }
  .hero-text-content {
    margin-top: 60px;
    margin-bottom: 50px;
  }
  .hero-text h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .hero-text h3 {
    font-size: 18px;
  }

  .hero-container h1 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1),
      0 0 30px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 1);
  }
}
.reason-contact {
  position: relative;
}
.reason-contact .l-wrap {
  padding: 0 140px;
}
.reason-contact .contact-bg {
  background-image: url("../images/contact-bg.png");
  background-size: cover;
  height: 500px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  z-index: -1;
}
.reason-contact .contact-content {
  display: flex;
  padding: 100px 0;
  justify-content: center;
  gap: 95px;
}
.reason-contact .left,
.reason-contact .right {
  background: #0d482e80;

  border-radius: 0 30px 5px 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 500px;
}
.reason-contact .right {
  padding: 55px 45px;
}
.reason-contact .left {
  padding: 13px 40px 40px;
}
.reason-contact .icon-text {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reason-contact .icon-text img {
  margin-bottom: -8px;
  width: 34px;
  height: auto;
}
.reason-contact .icon-text .text {
  font-size: 36px;
  font-weight: 700;
  line-height: 80px;
}
.reason-contact .en {
  line-height: 24px;
  font-size: 20px;
  opacity: 50%;
  font-family: var(--font-en);
}
.reason-contact .divider {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 20px 0;
}
.reason-contact .left .number {
  font-family: var(--font-en);
  letter-spacing: 4px;
  font-size: 50px;
  line-height: 45px;
  font-weight: 500;
}
.reason-contact .left .details {
  font-size: 20px;
  font-weight: 600;
}

.reason-contact .right .button {
  border-radius: 5px;
  border: 1px solid #ffffff;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  position: relative;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.reason-contact .right .button::after {
  content: "→";
  position: absolute;
  right: 27px;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.reason-contact .right .button:hover {
  background-color: #ffffff;
  color: #0d482e; /* dark green text when hovered */
  transform: translateY(-2px); /* subtle lift effect */
}

.reason-contact .right .button:hover::after {
  transform: translateX(5px); /* arrow moves slightly right */
}

/* Desktop Large (1200px and above) */
@media (max-width: 1400px) {
  .reason-contact .l-wrap {
    padding: 0 100px;
  }
  .reason-contact .contact-content {
    gap: 70px;
  }
}

/* Laptop (768px to 1199px) */
@media (max-width: 1199px) {
  .reason-contact .l-wrap {
    padding: 0 60px;
  }
  .reason-contact .contact-content {
    gap: 50px;
    padding: 80px 0;
  }
  .reason-contact .left,
  .reason-contact .right {
    width: 420px;
  }
  .reason-contact .contact-bg {
    height: 500px;
  }
  .reason-contact .icon-text .text {
    font-size: 32px;
    line-height: 70px;
  }
  .reason-contact .left .number {
    font-size: 44px;
  }
}

/* Tablet (480px to 767px) */
@media (max-width: 767px) {
  .reason-contact .l-wrap {
    padding: 0 38px;
  }
  .reason-contact .left {
    padding: 13px 40px 25px;
    width: 100%;
  }
  .reason-contact .contact-content {
    flex-direction: column;
    gap: 15px;
    padding: 60px 0;
    align-items: center;
  }
  .reason-contact .right {
    padding: 18px 25px 23px 25px;
    width: 100%;
  }
  .reason-contact .contact-bg {
    height: 545px;
  }
  .reason-contact .icon-text .text {
    font-size: 25px;
    line-height: 40px;
  }
  .reason-contact .left .number {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
  }
  .reason-contact .en {
    font-size: 14px;
  }
  .reason-contact .left .details {
    font-size: 16px;
  }
  .reason-contact .right .button {
    font-size: 16px;
  }
  .reason-contact .divider {
    margin: 10px 0;
  }
  .reason-contact .right .button::after {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .reason-contact .contact-bg {
    height: -webkit-fill-available;
  }
  .reason-contact .icon-text .text {
    font-size: 20px;
  }
}
