@charset "UTF-8";

/* ==========================================================================
  top.css
========================================================================== */
/* main-visual */
.main-visual {
  position: relative;
  width: 100%;
  height: clamp(60rem, 26.316vw + 49.47rem, 100rem);
  overflow: hidden;
}

.main-visual__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-visual__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  width: 100%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-visual__dot {
  position: absolute;
  bottom: -10%;
  width: 100%;
}

.main-visual__dot img {
  width: 100%;
}

.main-visual__text {
  position: absolute;
  bottom: -3.5vw;
  width: 102vw;
  overflow-x: hidden;
  text-align: center;
  z-index: 1;
}

.main-visual__text img {
  margin: 0 -0.8vw;
  width: 100%;
}

.main-visual__video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(100, 194, 193, 0.25) 0%,
    rgba(158, 216, 245, 0.25) 50%,
    rgba(162, 179, 219, 0.25) 100%
  );
}

@media screen and (max-width: 768px) {
  .main-visual__dot {
    bottom: 0;
  }

  .main-visual__text {
    bottom: 0;
    width: 100%;
  }

  .main-visual__text img {
    margin: 0;
  }
}

/* feature */
.feature {
  background: var(--gradient-blue-white);
  padding: 100px 0;
  overflow: hidden;
}

.feature__item__wrap {
  align-items: flex-start;
  display: flex;
  gap: 5%;
}

.feature__item {
  align-items: flex-start;
  display: flex;
  gap: 5%;
}

.feature__item.item01 {
  margin-bottom: 210px;
}

.feature__item.item02 {
  align-items: flex-end;
  margin-bottom: 100px;
  position: relative;
  padding: 85px 0;
  z-index: 0;
}

.feature__item.item02:before {
  background: var(--color-white);
  border-radius: 15px;
  content: "";
  position: absolute;
  right: -12vw;
  top: 0;
  height: 100%;
  width: 200vw;
  z-index: -1;
}

.feature__item__wrap .feature__item {
  flex-direction: column;
}

.feature__item--reverse {
  flex-direction: row-reverse;
}

.feature__image {
  width: 41.8%;
}

.feature__item__wrap .feature__image {
  width: 100%;
}

.feature__item .feature__image__inner {
  position: relative;
  z-index: 0;
}

.feature__item.item02 .feature__image__inner {
  position: absolute;
  bottom: 75px;
}

.feature__image__inner:before {
  background: var(--color-white);
  border-radius: 15px;
  content: "";
  position: absolute;
  left: -10%;
  bottom: -7%;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.feature__item.item02 .feature__image__inner:before {
  background: var(--color-light-blue);
  right: -10%;
  left: auto;
  bottom: -7%;
}

.feature__item.item01 .swiper-pagination {
  bottom: 3.5%;
  padding-left: 6.8%;
  text-align: left;
}

.feature__item.item01 .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.feature__item.item01 .swiper-pagination-bullet-active {
  background: #6e90db;
}

.feature__body {
  flex: 1;
}

.feature__item__wrap .feature__body {
  border-left: 1px solid var(--color-navy);
  padding-left: 5.7%;
  margin-bottom: 25px;
}

.feature__body-title {
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 2;
  margin: -15px 0 30px;
}

.feature__item.item02 .feature__body-title {
  border-left: 1px solid var(--color-navy);
  padding: 0 0 30px 12%;
  margin: 0;
}

.feature__item__wrap .feature__body-title {
  margin-bottom: 0;
}

.feature__body-title span {
  font-size: 1.8rem;
  display: block;
}

.feature__body-text {
  letter-spacing: 1px;
  line-height: 2.2;
  margin-bottom: 55px;
}

.feature__item.item02 .feature__body-text {
  border-left: 1px solid var(--color-navy);
  padding-left: 12%;
}

.feature__item__wrap .feature__body-text {
  line-height: 1.4;
  margin-bottom: 0;
}

.feature__item__wrap .button {
  margin: -25px auto 0;
}

@media screen and (max-width: 1024px) {
  .feature__item.item01 {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .feature {
    padding: 25px 0 50px;
  }

  .feature__item__wrap {
    flex-direction: column;
    gap: 50px;
  }

  .feature__item {
    flex-direction: column;
    gap: 25px;
  }

  .feature__item__wrap .feature__item {
    width: 100%;
  }

  .feature__item--reverse {
    flex-direction: column;
    gap: 25px;
  }

  .feature__item.item01 {
    margin-bottom: 50px;
  }

  .feature__item.item02 {
    background: var(--color-white);
    border-radius: 30px 30px 15px 15px;
    align-items: flex-start;
    margin: 0 calc(50% - 50vw) 50px;
    padding: 0 0 50px;
    width: 100vw;
  }

  .feature__item.item02:before {
    content: none;
  }

  .feature__image {
    width: 100%;
  }

  .feature__item__wrap .feature__image {
    order: 1;
    width: 100%;
  }

  .feature__image img {
    margin: 0;
    width: 100%;
  }

  .feature__item.item02 .feature__image__inner {
    position: relative;
    bottom: auto;
  }

  .feature__image__inner:before {
    content: none;
  }

  .feature__item.item02 .feature__body {
    margin: 0 auto;
    width: 90%;
  }

  .feature__item__wrap .feature__body {
    margin-bottom: 0;
    order: 2;
  }

  .feature__body-title {
    font-size: 1.9rem;
    letter-spacing: 1px;
    margin: -10px 0 25px;
  }

  .feature__item.item01 .feature__body-title {
    margin: 0;
  }

  .feature__item.item02 .feature__body-title {
    border-left: 1px solid var(--color-navy);
    padding: 0 0 15px 5.7%;
  }

  .feature__item__wrap .feature__body-title {
    margin-bottom: 0;
  }

  .feature__body-title span {
    font-size: 1.6rem;
  }

  .feature__body-text {
    letter-spacing: 0;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .feature__item.item02 .feature__body-text {
    padding-left: 5.7%;
  }

  .feature__item__wrap .feature__body-text {
    line-height: 1.4;
    margin-bottom: 0;
  }

  .feature__item__wrap .button {
    margin: 0 auto;
    order: 3;
  }
}

/* SENIOR'S VOICE */
.seniors-voice {
  background: #d0eaf1 url(../images/top/bg_wave_pc.png) no-repeat center;
  background-size: cover;
  padding: 75px 0 120px;
  overflow: hidden;
}

.seniors-voice .swiper {
  overflow: visible;
}

.seniors-voice .swiper-slide {
  cursor: pointer;
  overflow: visible;
  position: relative;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
  pointer-events: none;
  z-index: 1;
}

.swiper-slide-active::after {
  opacity: 0;
}

.seniors-voice .swiper-slide img {
  transition: transform var(--transition-base);
  transform-origin: center center;
  margin: 0;
  width: 100%;
}

.seniors-voice .swiper-slide:hover::after,
.seniors-voice .swiper-slide img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .seniors-voice {
    background: #d0eaf1;
    padding: 0 0 70px;
  }

  .seniors-voice .section-main {
    background: url(../images/top/bg_wave_sp.png) no-repeat center;
    background-size: cover;
    margin-bottom: 0;
    padding: 50px 0 30px;
  }

  .seniors-voice .swiper-slide {
    max-width: 312px;
  }
}

/* category */
.category {
  background: #fff;
  border-radius: 15px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.category .inner {
  display: flex;
  gap: 2%;
}

.category .category__image {
  max-width: 530px;
  width: 48.3%;
  position: relative;
}

.category .category__image img {
  margin: 0;
  width: auto;
  height: 100%;
  position: absolute;
  left: 0;
  max-width: fit-content;
}

.category .category__body {
  flex: 1;
  padding: 75px 0;
}

.category__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px;
}

.category__list li {
  width: calc((100% - 35px) / 2);
}

@media screen and (max-width: 768px) {
  .category {
    padding: 50px 0 0;
    position: relative;
    z-index: 1;
  }

  .category .inner {
    gap: 30px;
    flex-direction: column;
  }

  .category .category__body {
    padding: 0;
    width: 100%;
  }

  .category .category__image {
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  .category .category__image img {
    width: 100%;
    height: auto;
    position: relative;
    max-width: 100%;
  }

  .category__list {
    gap: 15px;
  }

  .category__list li {
    width: 100%;
  }
}

/* location */
.location {
  padding: 75px 0 430px;
  position: relative;
  max-height: 630px;
}

.location .section-sub {
  margin-bottom: 65px;
  position: relative;
  z-index: 1;
}

.location__image {
  position: absolute;
  top: -220px;
  height: 190%;
}

.location__image svg {
  height: 100%;
}

.location__list li {
  position: relative;
  width: 110px;
}

.location__list li::before,
.location__list li::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  background: #333;
  transform-origin: calc(100% - 1px) 50%;
}

.location__list li::before {
  transform: rotate(45deg);
}

.location__list li::after {
  transform: rotate(-45deg);
}

.location__list li.no-link::before,
.location__list li.no-link::after {
  content: none;
}

.location__list a {
  color: #333;
  display: block;
  font-size: 2rem;
  position: relative;
  margin-bottom: 15px;
}

.location__list a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}

.location__list a:hover:before {
  transform: scale(1);
}

.location__list li.no-link a {
  pointer-events: none;
}

.marker {
  fill: var(--color-navy);
  transition: fill var(--transition-base);
}

.marker.active {
  fill: url(#marker-gradient);
}

@media screen and (max-width: 768px) {
  .location {
    padding: 50px 0 60px;
    max-height: 560px;
  }

  .location .section-sub {
    margin-bottom: 240px;
  }

  .location__image {
    top: -60px;
    left: -6%;
  }

  .location__image svg {
    height: 625px;
  }

  .location__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin: 0 auto;
    width: 47%;
  }

  .location__list li {
    width: 90px;
  }

  .location__list li::before,
  .location__list li::after {
    width: 8px;
    height: 2px;
    transform-origin: calc(100% - 0.5px) 50%;
  }

  .location__list a {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 540px) {
  .location {
    max-height: 492px;
  }

  .location .section-sub {
    margin-bottom: 160px;
  }

  .location__image {
    top: -100px;
    left: -34%;
  }

  .location__list {
    width: 65%;
  }
}

@media screen and (max-width: 374px) {
  .location .section-sub {
    margin-bottom: 120px;
  }

  .location__list {
    width: 73%;
  }
}

/* SENIOR'S CROSSTALK */
.seniors-crosstalk {
  position: relative;
}

.crosstalk__image {
  overflow: hidden;
}

.crosstalk__image img {
  transition: transform var(--transition-base);
  transform-origin: center center;
  width: 100%;
}

.crosstalk__image img:hover {
  transform: scale(1.05);
}

.seniors-crosstalk .inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.seniors-crosstalk .inner .section-main {
  color: var(--color-white);
  margin-bottom: 50px;
}

.seniors-crosstalk .section-title,
.seniors-crosstalk .section-lead {
  color: var(--color-white);
}

.seniors-crosstalk .button {
  display: none;
}

@media screen and (max-width: 768px) {
  .seniors-crosstalk .inner {
    bottom: auto;
    top: 0;
    height: 100%;
    padding: 30px 0;
  }

  .seniors-crosstalk .inner .section-main {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .seniors-crosstalk .section-lead {
    margin: auto 0 15px;
  }

  .seniors-crosstalk .button {
    display: flex;
    font-size: 1.6rem;
    padding: 12px 20px;
    max-width: 320px;
  }

  .seniors-crosstalk .button .arrow {
    height: 16px;
    width: 18px;
    right: 15px;
  }

  .seniors-crosstalk .button .arrow::before,
  .seniors-crosstalk .button .arrow::after {
    width: 6px;
    height: 1px;
  }
}

@media screen and (max-width: 374px) {
  .seniors-crosstalk .inner {
    padding: 25px 0;
  }

  .section-title {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
}

/* FAQ */
.faq {
  padding: 100px 0 150px;
}

.faq .section-sub {
  border-left: none;
  margin-bottom: 50px;
  padding-left: 0;
}

.faq .button {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 50px 0 75px;
  }

  .faq .section-sub {
    margin-bottom: 20px;
    text-align: center;
  }
}
