@charset "UTF-8";

/* Common
---------------------------------------------------------------- */
* {
  margin: 0;
  font-family: Play-Regular, Play-Bold;
}

@font-face {
  font-family: 'Play-Bold';
  src: url('../../shared/fonts/Play-Bold.ttf');
}

@font-face {
  font-family: 'Play-Regular';
  src: url('../../shared/fonts/Play-Regular.ttf');
}

/* Title
---------------------------------------------------------------- */
#container-title {
  height: 52px;
  background: #105cab;
}

#container-title .title-text {
  margin-left: 10%;
  font-size: 20px;
  font-weight: 600;
  line-height: 52px;
  color: #fff;
}


/* Banner
---------------------------------------------------------------- */
#container-banner {
  overflow: hidden;
  position: relative;
}

#container-banner .banner-img {
  display: block;
  width: 100%;
  overflow: hidden;
}

.banner-box {
  position: relative;
  width: 100%;
  height: auto;
}

.banner-box .banner-title {
  position: absolute;
  z-index: 20;
  left: 10%;
  bottom: 10%;
}

.banner-box .banner-title .banner-title-company {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
}

.banner-box .banner-title .banner-title-main {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}

.language-switch {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: 20;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  width: 120px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.switch-option {
  flex: 1;
  text-align: center;
  z-index: 1;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s;
  color: #666;
  user-select: none;
}

.switch-option.active {
  color: #fff;
}

.switch-slider {
  position: absolute;
  width: 50%;
  height: 40px;
  background: linear-gradient(180deg, #003748, #00b5ee);
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.5s ease, background 0.5s ease;
}

.switch-slider.right {
  transform: translateX(100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
  background: linear-gradient(180deg, #00b5ee, #003748);
}

/* Main
---------------------------------------------------------------- */
/* Introduction
-------------------------------- */
.introduction {
  max-width: 1280px;
  width: 80%;
  margin: 80px auto 60px;
}

.introduction .introduction-title {
  margin-bottom: 24px;
  color: #203A8D;
  font-size: 40px;
  font-weight: 700;
}

.introduction .introduction-main {
  font-size: 18px;
}

/* Detail
-------------------------------- */
.detail {
  background: linear-gradient(90deg, #dbddde, #ffffff);
  border-radius: 89px 89px 0px 0px;
}

.detail-box {
  max-width: 1280px;
  width: 80%;
  margin: 0 auto;
  padding: 30px 0 0;
}

.detail-title {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
}

.detail-subtitle {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 700;
}

.detail-text {
  margin: 20px 0;
}

.detail-list {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}

.detail-tel {
  font-weight: 700;
}

.detail-more {
  display: grid;
  overflow: hidden;
  transition: grid-template-rows 1s ease;
  grid-template-rows: 0fr;
}

.detail-more.active {
  grid-template-rows: 1fr;
}

.detail-more .detail-more-box {
  min-height: 0;
  max-width: 1280px;
  width: 80%;
  margin: 0 auto;
}

.detail-more-btn {
  text-align: center;
  padding: 30px 0;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

@media screen and (max-width: 768px) {

  /* Title
  -------------------------------- */
  #container-title {
    height: 36px;
    text-align: center;
  }

  #container-title .title-text {
    margin-left: 0;
    font-size: 14px;
    line-height: 36px;
  }

  /* Banner
  -------------------------------- */
  .banner-box .banner-title .banner-title-company {
    font-size: 14px;
  }

  .banner-box .banner-title .banner-title-main {
    font-size: 24px;
  }

  .language-switch {
    width: 60px;
    height: 20px;
    font-size: 10px;
    right: 5%;
  }

  .switch-slider {
    height: 20px;
  }

  /* Main
  ---------------------------------------------------------------- */
  /* Introduction
  -------------------------------- */
  .introduction {
    margin: 30px auto 20px;
  }

  .introduction .introduction-title {
    margin-bottom: 14px;
    font-size: 13px;
    color: #000;
  }

  .introduction .introduction-main {
    font-size: 11px;
  }

  /* Detail
  -------------------------------- */
  .detail {
    border-radius: 32px 32px 0px 0px;
  }

  .detail-box {
    padding: 20px 0 0;
  }

  .detail-title {
    margin: 10px 0;
    font-size: 13px;
  }

  .detail-subtitle {
    margin: 10px 0;
    font-size: 12px;
  }

  .detail-text {
    margin: 10px 0;
    font-size: 11px;
  }

  .detail-list {
    gap: 8px;
    margin: 10px 0;
    font-size: 11px;
  }

  .detail-tel {
    font-size: 11px;
  }

  .detail-more-btn {
    padding: 20px 0;
    font-size: 13px;
  }
}