@charset "UTF-8";
/* mv */
#t-mv {
  position: relative;
}
#t-mv .inr picture {
  width: 100%;
  height: 700px;
}
#t-mv .inr picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  #t-mv .inr picture {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  #t-mv .inr picture {
    height: auto;
  }
}
/* news */
#t-news .list-wrap {
  gap: 64px;
}
#t-news .list-note {
  position: relative;
  display: block;
  font-size: var(--fs-18);
  font-weight: 700;
  letter-spacing: 0.25em;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--color-pink);
  color: var(--color-white);
  border-radius: 15px;
  text-align: center;
}
#t-news .list-note::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid var(--color-pink);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
#t-news .list {
  flex: 1;
  gap: 120px;
}
#t-news .list .list-item {
  width: calc(50% - 60px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#t-news .list .list-item:hover {
  transform: translateY(0);
}

@media screen and (min-width: 961px) {
  #t-news .list .list-item:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    width: 1px;
    height: 100%;
    background-color: var(--color-gray);
  }
}
#t-news .list .list-item .img-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 440 / 280;
  overflow: hidden;
  border-radius: 15px;
}
#t-news .list .list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
#t-news .list .list-item:hover img {
  transform: scale(1.02);
}
#t-news .list-wrap .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#t-news .list .list-item .date-wrap {
  gap: 20px;
  align-items: center;
}
#t-news .list .list-item .category {
  display: inline-block;
  font-size: var(--fs-12);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 8px 24px;
}
#t-news .list .list-item .category.news01 {
  background-color: var(--color-green);
}
#t-news .list .list-item .category.news02 {
  background-color: var(--color-orange);
}
#t-news .list .list-item .date {
  font-size: var(--fs-14);
  color: var(--color-skyblue);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
#t-news .list .list-item .ttl {
  color: var(--color-navy);
  font-size: var(--fs-18);
  font-weight: 700;
}
#t-news .list .list-item .txt {
  letter-spacing: 0.08em;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
#t-news .list .list-item .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(75, 167, 209, 0.1);
  padding: 10px 0;
  width: 100%;
  color: var(--color-skyblue);
  font-size: var(--fs-14);
  font-weight: 700;
}
#t-news .list .list-item .btn img {
  width: 13px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
#t-news .list .list-item:hover .btn img {
  transform: translate(4px, 0);
}
@media screen and (max-width: 960px) {
  #t-news .list-wrap {
    flex-direction: column;
    gap: 40px;
  }
  #t-news .list-note {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    padding: 10px 0;
  }
  #t-news .list-note::after {
    right: 50%;
    top: calc(100% - 1px);
    transform: translateX(50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--color-pink);
    border-bottom: none;
  }
  #t-news .list {
    gap: 40px;
  }
  #t-news .list .list-item {
    width: calc(50% - 20px);
  }
  #t-news .list .list-item:first-child::after {
    right: -20px;
  }
}
@media screen and (max-width: 768px) {
  #t-news .list {
    flex-direction: column;
  }
  #t-news .list .list-item {
    width: 100%;
    flex-direction: row;
  }
  #t-news .list .list-item:first-child::after {
    width: 100%;
    height: 1px;
    top: calc(100% + 20px);
    right: auto;
  }
  #t-news .list .list-item .img-wrap {
    width: 50%;
    aspect-ratio: 16 / 9;
  }
}
@media screen and (max-width: 600px) {
  #t-news .list-note {
    font-size: var(--fs-16);
  }
  #t-news .list-wrap {
    gap: 32px;
  }
  #t-news .list-wrap .body {
    gap: 8px;
  }
  #t-news .list .list-item {
    flex-direction: column;
    gap: 12px;
  }
  #t-news .list .list-item .img-wrap {
    width: 100%;
  }
}
/* t-about */
#t-about {
  position: relative;
}
#t-about .about-txt p {
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--color-white);
  line-height: 2.5;
}
#t-about .about-txt .about-aside {
  position: relative;
}
#t-about .about-txt .about-aside img {
  position: absolute;
  right: 0;
  bottom: calc(100% - 2px);
  height: 92px;
  width: auto;
  object-fit: contain;
}
#t-about .about-bg-img {
  position: relative;
  width: 100%;
  height: 640px;
  clip-path: inset(0);
}
#t-about .about-bg-img::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../../img/page/top/about-bg-img.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  #t-about .about-txt .about-aside img {
    height: 80px;
  }
}
@media screen and (max-width: 960px) {
  #t-about .about-bg-img {
    height: 320px;
  }
  #t-about .about-txt p {
    margin-right: 0;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #t-about .about-txt .about-aside img {
    height: 64px;
  }
  #t-about .about-bg-img {
    height: 240px;
    overflow: hidden;
  }
  #t-about .about-bg-img::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-position: right center;
    background-attachment: scroll;
    transform: translateZ(0);
    will-change: transform;
  }
  #t-about .about-txt p {
    margin-bottom: 64px;
    line-height: 2;
  }
}
/* safety */
#t-safety {
  position: relative;
  z-index: 0;
}
#t-safety h2 img {
  width: 624px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#t-safety .btn-more {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 960px) {
  #t-safety h2 img {
    width: 480px;
  }
}
