.c-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .c-card-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.c-card-list--col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .c-card-list--col3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

a.c-card:hover .c-card__image img {
  scale: 1.03;
}

.c-card {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
}
.c-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-card__inner p {
  flex-grow: 1;
}
.c-card__title {
  font-size: 2rem;
  margin: 1.5rem 0 2rem;
}
@media (max-width: 768px) {
  .c-card__title {
    font-size: 1.6rem;
    margin: 1.5rem 0;
  }
}
.c-card__image {
  overflow: hidden;
}
.c-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  transition: 0.4s;
}
.c-card .c-link-mark {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .c-card .c-link-mark {
    margin-top: 1.5rem;
  }
}

.c-long-card {
  border-radius: 1rem;
  background: #fff;
  padding: 3rem;
  position: relative;
  display: grid;
  grid-template-columns: 62rem 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .c-long-card {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.c-long-card__title {
  font-weight: bold;
  margin-bottom: 3rem;
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .c-long-card__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.c-long-card__no {
  position: absolute;
  inset: 2.2rem 3rem auto auto;
  font-size: 3.2rem;
  letter-spacing: 0;
  color: var(--accent1);
  font-family: var(--font-en);
}
@media (max-width: 768px) {
  .c-long-card__no {
    display: none;
  }
}

.c-card2-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .c-card2-list {
    grid-template-columns: 1fr;
  }
}

a.c-card2:hover .c-card2__image img {
  scale: 1.03;
}

.c-card2 {
  border-radius: 2rem;
  background-color: #fff;
  padding: 3rem;
  display: block;
}
@media (max-width: 768px) {
  .c-card2 {
    padding: 2rem 1.5rem;
  }
}
.c-card2__subtitle {
  font-size: 1.6rem;
  color: var(--accent1);
  font-family: var(--font-en);
  margin-bottom: 0.7rem;
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .c-card2__subtitle {
    font-size: 1.2rem;
    margin-top: 1.2rem;
  }
}
.c-card2__title {
  font-size: 2.4rem;
  margin: 1.5rem 0 2rem;
}
@media (max-width: 768px) {
  .c-card2__title {
    font-size: 2rem;
    margin: 0.3rem 0 1.5rem;
  }
}
.c-card2__image {
  overflow: hidden;
  border-radius: 1rem;
}
.c-card2__image img {
  object-fit: cover;
  transition: 0.4s;
}
@media print, screen and (min-width: 769px) {
  .c-card2--holizontal {
    gap: 4rem;
    display: grid;
    grid-template-columns: 52rem 1fr;
    align-items: center;
  }
  .c-card2--holizontal .c-link-mark {
    margin-top: 4rem;
  }
  .c-card2--holizontal .c-card2__subtitle {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .c-card2--holizontal .c-card2__title {
    font-size: 3.2rem;
    line-height: 1.8;
    margin: 0 0 2rem;
  }
}

.c-link-mark {
  width: 7.3rem;
  height: 4.2rem;
  border-radius: 2rem;
  align-content: center;
  text-align: center;
  background-color: var(--accent1);
  border: solid 2px transparent;
  margin-left: auto;
  color: #fff;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-link-mark {
    width: 4.6rem;
    height: 2.6rem;
  }
}
.c-link-mark svg {
  width: 2.3rem;
  height: 1.2rem;
}
@media (max-width: 768px) {
  .c-link-mark svg {
    width: 1.4rem;
    height: 0.7rem;
  }
}
.c-link-mark--s {
  width: 5.7rem;
  height: 3.2rem;
}
@media (max-width: 768px) {
  .c-link-mark--s {
    width: 4.6rem;
    height: 2.6rem;
  }
}
.c-link-mark--s svg {
  width: 1.6rem;
  height: 0.8rem;
}
.c-link-mark--inverse {
  border: solid 2px transparent;
  background-color: #fff;
  color: var(--accent1);
}

.c-link-mark-hover:hover .c-link-mark {
  background-color: #fff;
  color: var(--accent1);
  border: solid 2px var(--accent1);
}
.c-link-mark-hover:hover .c-link-mark.c-link-mark--inverse {
  border: solid 2px #fff;
  background-color: var(--accent1);
  color: #fff;
}

.c-news-list {
  display: grid;
  grid-template-columns: 1fr;
}
.c-news {
  display: block;
  padding: 2rem 0;
  background-image: radial-gradient(circle, #a2a4a7 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 2px;
  position: relative;
}
@media (max-width: 768px) {
  .c-news {
    padding: 1.5rem 0;
  }
}
.c-news .svg-arrow1 {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .c-news .svg-arrow1 {
    inset: 2rem 0 auto auto;
  }
}
.c-news:hover .svg-arrow1 {
  transform: translate(1rem, 0);
}
.c-news:hover .c-news__title {
  color: var(--accent1);
}
.c-news:first-child {
  padding-top: 0;
}
@media (max-width: 768px) {
  .c-news:first-child .svg-arrow1 {
    top: 1rem;
  }
}
.c-news__image {
  margin-bottom: 1rem;
}
.c-news__image img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  aspect-ratio: 340/200;
  object-fit: cover;
}
.c-news__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.c-news__date {
  font-size: 1.3rem;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: #a2a4a7;
}
@media (max-width: 768px) {
  .c-news__date {
    font-size: 1.4rem;
  }
}
.c-news__title {
  font-weight: bold;
  transition: 0.4s;
  font-size: 1.6rem;
  overflow: hidden;
  max-width: 81rem;
  text-overflow: ellipsis;
}
@media print, screen and (min-width: 769px) {
  .c-news__title {
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .c-news__title {
    line-height: 3rem;
    font-size: 1.4rem;
    max-width: 100%;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.c-news__category {
  background-color: var(--accent2);
  text-align: center;
  color: #fff;
  padding: 0.2rem 2rem 0.2rem;
  line-height: 1;
  font-size: 1.2rem;
  align-content: center;
  border-radius: 2rem;
}

.c-search {
  padding: 3rem 4rem 3rem 3.5rem;
  width: 42rem;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
  border-radius: 2rem 0 0 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 768px) {
  .c-search {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.c-search__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .c-search__title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
}
.c-search__bullet {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--accent1);
  flex-shrink: 0;
}
.c-search__inputs {
  display: flex;
  flex-direction: column;
}
.c-search__row {
  display: grid;
  grid-template-columns: 5.9rem 1fr;
  align-items: center;
  gap: 3rem;
  background-color: #ffffff;
  padding: 1.2rem 2rem;
}
@media (max-width: 768px) {
  .c-search__row {
    padding: 1.1rem 1.5rem;
  }
}
.c-search__row + .c-search__row {
  margin-top: 1rem;
}
.c-search__label {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: right;
  color: #a2a4a7;
  white-space: nowrap;
  min-width: 5.5rem;
}
@media (max-width: 768px) {
  .c-search__label {
    font-size: 1.6rem;
  }
}
.c-search__field {
  flex: 1;
  position: relative;
}
.c-search__date, .c-search__select {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--black);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font);
}
.c-search__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A2A4A7' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}
.c-search__date {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20id%3D%22_1863252005344%22%20transform%3D%22translate(-4652.033%20-872.94)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287175%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287175%22%20d%3D%22M4670.334%2C1011.348c-.126%2C0-16.188-.027-16.589-.036%2C0-.231.025-11.1.04-11.853l16.507.015C4670.292%2C1000.422%2C4670.336%2C1011.111%2C4670.334%2C1011.348Zm-.418-16.6c.058%2C1.821-.8%2C2.243-1.47%2C2.261-.658-.033-1.656-.349-1.547-2.237l-9.715-.016c.028.714.08%2C2.11-1.422%2C2.174-1.717%2C0-1.559-1.715-1.592-2.166a1.819%2C1.819%2C0%2C0%2C0-2.018%2C1.385c-.185.627-.105%2C12.7-.089%2C14.667a2.018%2C2.018%2C0%2C0%2C0%2C1.471%2C2.211c.724.184%2C12.3.059%2C14.087.059a9.973%2C9.973%2C0%2C0%2C0%2C3.283-.189c.982-.451%2C1.129-1.192%2C1.125-2.6-.006-2.454%2C0-4.908%2C0-7.362%2C0-1.219-.026-4.239.006-6.068A1.918%2C1.918%2C0%2C0%2C0%2C4669.917%2C994.746Z%22%20transform%3D%22translate(0%20-120.186)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287176%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287176%22%20d%3D%22M5889.485%2C872.94h0a.928.928%2C0%2C0%2C1%2C.925.925v1.345a.927.927%2C0%2C0%2C1-.925.925h0a.928.928%2C0%2C0%2C1-.925-.925v-1.345A.928.928%2C0%2C0%2C1%2C5889.485%2C872.94Z%22%20transform%3D%22translate(-1221.271)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287177%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287177%22%20d%3D%22M4875.665%2C872.94h0a.927.927%2C0%2C0%2C1%2C.925.925v1.345a.927.927%2C0%2C0%2C1-.925.925h0a.928.928%2C0%2C0%2C1-.925-.925v-1.345A.928.928%2C0%2C0%2C1%2C4875.665%2C872.94Z%22%20transform%3D%22translate(-219.755)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287178%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287178%22%20d%3D%22M5731.7%2C1905.21h2.445v2.446H5731.7Z%22%20transform%3D%22translate(-1066.225%20-1018.805)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287179%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287179%22%20d%3D%22M5360.89%2C1905.21h2.446v2.446h-2.446Z%22%20transform%3D%22translate(-700.032%20-1018.805)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287180%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287180%22%20d%3D%22M4980.27%2C1905.21h2.446v2.446h-2.446Z%22%20transform%3D%22translate(-324.151%20-1018.805)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287181%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287181%22%20d%3D%22M5731.7%2C1524.6h2.445v2.446H5731.7Z%22%20transform%3D%22translate(-1066.225%20-643.16)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287182%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287182%22%20d%3D%22M5360.89%2C1524.6h2.446v2.446h-2.446Z%22%20transform%3D%22translate(-700.032%20-643.16)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_287183%22%20data-name%3D%22%E3%83%91%E3%82%B9%20287183%22%20d%3D%22M4980.27%2C1524.6h2.446v2.446h-2.446Z%22%20transform%3D%22translate(-324.151%20-643.16)%22%20fill%3D%22%23a2a4a7%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center right 0;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.c-search__date::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.c-search__action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .c-search__action {
    margin-top: 1.5rem;
  }
}
.c-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 24rem;
  height: 5.5rem;
  background-color: var(--accent1);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-search__button:hover {
  opacity: 0.8;
}
.c-search__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.hero__mv {
  opacity: 0;
  filter: blur(20px);
}

.hero__lead > * {
  opacity: 0;
}

.hero__descs {
  opacity: 0;
}

.scene .c-heading-ruby,
.scene .c-heading,
.flow_faq .c-heading-ruby,
.flow_faq .c-heading,
.service_options .c-heading-ruby,
.service_options .c-heading,
.service_options > .l-inner > p,
.news .c-heading-ruby,
.news .c-heading,
.other_service .c-heading-ruby,
.other_service .c-heading,
.pickup .c-heading-ruby {
  opacity: 0;
  transform: translateY(40px);
}

.scene .c-card,
.flow_faq-card,
.service_options .c-card2--holizontal,
.service_options .c-card2-list .c-card2,
.other_service-item {
  opacity: 0;
  transform: translateY(40px);
}

.service__image1 {
  opacity: 0;
  transform: translateX(-60px);
}

.service-box {
  opacity: 0;
  transform: translateX(50px);
}

.news-row {
  opacity: 0;
  transform: translateY(30px);
}

.gallery .scroll-imgs {
  opacity: 0;
}

.pickup__splider {
  opacity: 0;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 76.8rem;
}
.hero .c-search {
  position: absolute;
  inset: auto 0 -9rem auto;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero .c-search {
    inset: auto 0 -8rem auto;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 66.7rem;
    height: 66.7rem;
  }
}
.hero__mv {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
}
.hero__mv::before {
  z-index: 2;
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 100%;
  height: 80%;
  background-image: url("../images/top/mv-gradation.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 768px) {
  .hero__mv::before {
    height: 100%;
    background-image: url("../images/top/mv-gradation_sp.png");
  }
}
.hero__mv .splide__track,
.hero__mv .splide__list,
.hero__mv .splide__slide {
  height: 100%;
}
.hero__mv picture,
.hero__mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero__mv picture,
  .hero__mv img {
    aspect-ratio: 375/667;
  }
}
.hero__inner {
  position: relative;
  height: 100%;
  align-content: end;
}
.hero__box {
  width: fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: 4rem;
  position: relative;
  z-index: 5;
  color: var(--white);
}
@media (max-width: 768px) {
  .hero__box {
    margin-bottom: 17.5rem;
  }
}
.hero__leads {
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: 6.4rem;
  line-height: 9.2rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .hero__lead {
    white-space: nowrap;
    font-size: 3.2rem;
    line-height: 4.6rem;
    margin-top: 0.5rem;
  }
}
.hero__desc {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .hero__desc {
    font-size: 1.4rem;
    line-height: 3rem;
    margin-top: 0;
  }
}
.hero__ribbon-1 {
  position: absolute;
  z-index: 3;
  left: 42%;
  bottom: -30.6vw;
  width: 141.571596vw;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__ribbon-1 {
    width: 91.5rem;
    bottom: 6.9rem;
    right: -195%;
    left: auto;
  }
}

.pickup {
  padding: 2rem 0 0;
}
@media (max-width: 768px) {
  .pickup {
    padding: 10.5rem 0 0;
  }
}
.pickup__splider {
  width: 52rem;
  position: relative;
}
@media (max-width: 768px) {
  .pickup__splider {
    width: 100%;
  }
}
.pickup__splider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48.9rem;
  height: 2px;
  background-image: radial-gradient(circle, #a2a4a7 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 2px;
}
@media (max-width: 768px) {
  .pickup__splider::before {
    width: 100%;
  }
}
.pickup__splider .splide__arrows--ttb .splide__arrow {
  transform: none;
  right: 0;
  left: auto;
  background: transparent;
  outline: none !important;
}
@media (max-width: 768px) {
  .pickup__splider .splide__arrows--ttb .splide__arrow {
    display: none;
  }
}
.pickup__splider .splide__arrows--ttb .splide__arrow--prev {
  bottom: auto;
  top: -0.9rem;
}
.pickup__splider .splide__arrows--ttb .splide__arrow--next {
  top: 1rem;
  bottom: auto;
}
.pickup__splider .splide__arrow svg {
  width: 2rem;
  height: 1.2rem;
}
.pickup__splider .splide__arrow svg path {
  fill: #a2a4a7;
}

.pickup-item__link {
  width: 48.9rem;
  padding-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  font-size: 1.4rem;
  align-items: center;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .pickup-item__link {
    width: 100%;
    display: block;
  }
}
.pickup-item__link:hover {
  color: var(--accent1);
}
.pickup-item__date {
  font-family: var(--font-en);
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .pickup-item__date {
    margin-bottom: 0rem;
  }
}
.pickup-item__title {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.scene {
  padding: 8.6rem 0 10rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .scene {
    padding: 7.5rem 0 6rem;
  }
}
.scene__ribbon-2 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 142vw;
  max-width: none;
  left: -21vw;
  bottom: -34.1vw;
}
@media (max-width: 768px) {
  .scene__ribbon-2 {
    width: 105.7rem;
    max-width: none;
    left: -27rem;
    bottom: -27rem;
  }
}
.scene__inner {
  position: relative;
  z-index: 5;
}

.service {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
  border-radius: 4rem;
  background: linear-gradient(#ecf6fe 0%, #d2ebff 11.79%, #f0f8ff 34.56%, #e2f0fc 61.96%, #dbefff 79.48%, #ecf6fe 100%);
}
@media (max-width: 768px) {
  .service {
    padding: 4rem 0;
    border-radius: 1rem;
  }
  .service__image1 {
    border-radius: 1rem;
  }
}
@media (max-width: 768px) {
  .service .c-heading-ruby {
    z-index: 2;
    position: absolute;
    inset: 1rem auto auto 1rem;
  }
}

@media print, screen and (min-width: 769px) {
  .service-box {
    position: absolute;
    inset: 0;
    margin: auto;
    align-content: end;
  }
}
.service-box .c-heading-ruby {
  position: absolute;
  inset: 3rem auto auto 4.7rem;
}
@media (max-width: 768px) {
  .service-box .c-heading-ruby {
    inset: 1rem auto auto 2.3rem;
  }
}
.service-box__title {
  font-size: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .service-box__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 2;
  }
}
@media print, screen and (min-width: 769px) {
  .service-box__row {
    display: flex;
    justify-content: space-between;
    padding: 0 5rem 0 2rem;
    align-items: end;
  }
}
@media (max-width: 768px) {
  .service-box__row {
    padding: 1.5rem 0 0;
  }
}

.flow_faq-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.7rem;
}
@media (max-width: 768px) {
  .flow_faq-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.flow_faq-card {
  overflow: hidden;
  border-radius: 2rem;
  color: #fff;
  border: solid 0.4rem currentColor;
  position: relative;
}
@media (max-width: 768px) {
  .flow_faq-card {
    border: solid 0.2rem currentColor;
    border-radius: 1rem;
  }
}
.flow_faq-card__image {
  position: relative;
}
.flow_faq-card__image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0, 87, 180, 0) 0%, rgba(0, 87, 180, 0) 34.97%, rgba(0, 87, 180, 0.9) 86.65%, #0057b4 100%);
  width: 100%;
  height: calc(100% - 3.33rem);
  z-index: 2;
}
@media (max-width: 768px) {
  .flow_faq-card__image::before {
    height: 100%;
  }
}
.flow_faq-card__image img {
  transition: 0.4s;
}
.flow_faq-card:hover .flow_faq-card__image img {
  scale: 1.03;
}
.flow_faq-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
}
@media (max-width: 768px) {
  .flow_faq-card__body {
    padding: 1.5rem;
  }
}
.flow_faq-card__title {
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .flow_faq-card__title {
    font-size: 2rem;
  }
}

.scroll-imgs {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.scroll-imgs__inner {
  display: grid;
  grid-template-columns: repeat(4, 40rem);
  gap: 2rem;
  animation: scroll 20s linear infinite;
}
@media (max-width: 768px) {
  .scroll-imgs__inner {
    grid-template-columns: repeat(4, 17rem);
    gap: 1rem;
  }
}
.scroll-imgs__inner img {
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .scroll-imgs__inner img {
    border-radius: 0.5rem;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 2rem));
  }
  @media (max-width: 768px) {
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-100% - 0.5rem));
      }
    }
  }
}
.gallery {
  position: relative;
}
.gallery__ribbon-3 {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  width: 133.1vw;
  max-width: none;
  left: -17vw;
  bottom: -28.5vw;
}
@media (max-width: 768px) {
  .gallery__ribbon-3 {
    width: 86rem;
    max-width: none;
    left: -14.2rem;
    bottom: -22.8rem;
  }
}

.js-wrapper {
  display: flex;
  align-items: center;
}

.reason__header {
  position: relative;
  z-index: 3;
}
@media print, screen and (min-width: 769px) {
  .reason__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}
@media (max-width: 768px) {
  .reason__header {
    margin-bottom: 3rem;
  }
}
.reason__inner {
  padding: 7.5rem 0 8rem 6rem;
}
@media (max-width: 768px) {
  .reason__inner {
    padding: 3.5rem 0;
  }
}
.reason__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 200%;
  height: 100%;
  border-radius: 60px 0px 0px 60px;
  background: linear-gradient(#ecf6fe 0%, #e3f3ff 12.14%, #ecf6ff 43.1%, #e1f0fc 62.56%, #ecf6fe 85.21%, #ecf6fe 100%);
}
@media (max-width: 768px) {
  .reason__inner::before {
    width: 100%;
    border-radius: 1rem;
  }
}

.reason-items-wrapper {
  overflow: hidden;
}
@media print, screen and (min-width: 769px) {
  .reason-items-wrapper {
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 768px) {
  .reason-items-wrapper {
    margin-right: -1.5rem;
  }
}

@media print, screen and (min-width: 769px) {
  .js-reason-slider .splide__slide {
    width: 97.2rem !important;
  }
}
.js-reason-slider .splide__arrow {
  top: auto;
  bottom: -4.5rem;
  transform: none;
  background: transparent;
  outline: none !important;
  border: none;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js-reason-slider .splide__arrow svg {
  width: 2.4rem;
  height: 1.2rem;
  fill: var(--black);
}
.js-reason-slider .splide__arrow--prev {
  left: auto;
  right: 6rem;
}
.js-reason-slider .splide__arrow--next {
  right: 0;
}
.js-reason-slider .splide__arrow:disabled {
  opacity: 0.3;
}
.js-reason-slider .splide__pagination {
  position: static;
  margin-top: 5rem;
  justify-content: flex-start;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .js-reason-slider .splide__pagination {
    display: none;
  }
}
.js-reason-slider .splide__pagination li button {
  background: #c9cdd1;
  opacity: 1;
  width: 2.4rem;
  height: 0.4rem;
  border-radius: 0;
  transition: background 0.3s;
}
.js-reason-slider .splide__pagination li button.is-active {
  background: var(--accent1);
  transform: none;
}

@media print, screen and (min-width: 769px) {
  .reason-item {
    display: grid;
    grid-template-columns: 38.2rem 1fr;
    gap: 4rem;
    align-items: center;
    padding-right: 8rem;
  }
}
@media (max-width: 768px) {
  .reason-item {
    display: block;
  }
}
.reason-item__title {
  margin-bottom: 3rem;
  font-size: 3.2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .reason-item__title {
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.reason-item__image {
  position: relative;
}
.reason-item__image-title {
  writing-mode: vertical-lr;
  font-family: var(--font-en);
  color: #fff;
  position: absolute;
  inset: 1.5rem auto auto 1.2rem;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .reason-item__image-title {
    font-size: 1.2rem;
    inset: 1.2rem auto auto 0.8rem;
  }
}
.reason-item__image img {
  border-radius: 2rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .reason-item__image img {
    border-radius: 1rem;
    aspect-ratio: 320/220;
    height: 100%;
    object-fit: cover;
  }
}

@media print, screen and (min-width: 769px) {
  .news__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}

.news-category-list {
  height: fit-content;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .news-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-bottom: 4rem;
  }
}

.news-category-item {
  padding-left: 2rem;
  position: relative;
  display: block;
  color: #a2a4a7;
  font-weight: bold;
}
@media print, screen and (min-width: 769px) {
  .news-category-item + .news-category-item {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news-category-item {
    font-size: 1.4rem;
  }
}
.news-category-item.is-active {
  color: var(--black);
}
.news-category-item.is-active::before {
  content: "";
  width: 1.2rem;
  height: 0.3rem;
  background-color: var(--accent1);
  position: absolute;
  top: 1.2rem;
  left: 0;
}
@media (max-width: 768px) {
  .news-category-item.is-active::before {
    width: 1rem;
    top: 1rem;
    height: 0.2rem;
  }
}

.news-row {
  display: grid;
  grid-template-columns: 28rem calc(100% - 34rem);
  gap: 6rem;
}
@media (max-width: 768px) {
  .news-row {
    display: block;
  }
}
.news-row__left {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-row .splide__arrows {
  position: absolute;
  left: -34rem;
  display: flex;
  justify-content: end;
  gap: 1rem;
  max-width: 126.6rem;
  width: 150%;
  top: -8rem;
}
.news-row .splide__arrow {
  outline: 0;
  position: relative;
  inset: auto;
  border-radius: 2rem;
  transform: none;
  opacity: 1;
  margin: 0 !important;
  align-content: center;
  text-align: center;
  margin-left: auto;
  color: #fff;
  width: 5.7rem;
  height: 3.2rem;
  background-color: #fff;
  color: var(--accent1);
}
.news-row .splide__arrow:not(:disabled):hover {
  border: solid 2px #fff;
  background-color: var(--accent1);
  color: #fff;
}
.news-row .splide__arrow svg {
  width: 1.6rem;
  height: 0.8rem;
}

.other_service-list {
  display: grid;
  grid-template-columns: 78rem 1fr;
  gap: 1.5rem 1.5rem;
}
@media (max-width: 768px) {
  .other_service-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.other_service-item {
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .other_service-item {
    height: 20rem;
  }
}
@media (max-width: 768px) {
  .other_service-item__image {
    width: 100%;
    height: 100%;
  }
}
.other_service-item__image picture {
  height: 100%;
}
.other_service-item__image img {
  transition: 0.4s;
}
@media (max-width: 768px) {
  .other_service-item__image img {
    width: 100%;
    height: 100%;
  }
}
.other_service-item:hover .other_service-item__image img {
  scale: 1.02;
}
.other_service-item::before {
  content: "";
  border: solid 0.4rem #fff;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 1.8rem;
}
.other_service-item__titles {
  position: absolute;
  inset: 4.4rem 0 auto auto;
}
.other_service-item__body {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  align-content: end;
  padding: 2rem;
  color: #fff;
}
.other_service-item__body.is-small {
  display: flex;
  flex-direction: column;
}
.other_service-item__body.is-small .c-link-mark--inverse {
  margin-top: auto;
  margin-left: auto;
}
.other_service-item__body .u-flex {
  align-items: end;
}
.other_service-item__title1 {
  background-color: #fff;
  padding: 0.2rem 3rem 0.2rem 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.4rem;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 0.5rem;
  color: var(--black);
}
@media (max-width: 768px) {
  .other_service-item__title1 {
    font-size: 1.2rem;
    padding: 0.2rem 0.8rem;
    line-height: 1.7rem;
  }
}
.other_service-item__title2 {
  background-color: #fff;
  padding: 0.2rem 3rem 0.2rem 3rem;
  font-size: 4rem;
  font-weight: bold;
  line-height: 6.2rem;
  width: fit-content;
  color: var(--accent1);
}
@media (max-width: 768px) {
  .other_service-item__title2 {
    padding: 0.2rem 0.8rem;
    font-size: 2.4rem;
    line-height: 3.5rem;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
.other_service-item__title2 sub {
  font-size: 2.1rem;
  line-height: 3rem;
  margin-left: 0.3rem;
}
.other_service-item__title3 {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .other_service-item__title3 {
    font-size: 1.2rem;
  }
}
.other_service-item__title3--b {
  color: var(--accent2);
}
.other_service-item__title4 {
  font-size: 3.2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .other_service-item__title4 {
    font-size: 2.4rem;
  }
}
.other_service-item__title4--b {
  color: var(--accent2);
}
.other_service-item:nth-child(1) {
  grid-row: span 2;
}
.other_service-item:nth-child(1) .other_service-item__body {
  padding: 2rem 3rem 3rem 2rem;
}
@media (max-width: 768px) {
  .other_service-item:nth-child(1) .other_service-item__body {
    padding: 3rem 1.5rem 1.5rem 2rem;
  }
}

.flat-pickr-close {
  inset: 0 0 auto auto;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  z-index: 2;
}
