@charset "UTF-8";
/* ===================================================================
CSS information

file name  : homepage.css
author     : Abilive
style info : トップページ
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
:root {
  --base: 12;
}
@media only screen and (min-width: 1441px) {
  :root {
    --base: 14;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --base: 12;
  }
}

.p-collection__inner, .p-access-information__inner {
  margin-inline: auto;
}
@media only screen and (min-width: 1025px) {
  .p-collection__inner, .p-access-information__inner {
    width: calc(1180 / 1440 * 100%);
    max-width: 1180px;
  }
}
@media only screen and (min-width: 1441px) {
  .p-collection__inner, .p-access-information__inner {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-collection__inner, .p-access-information__inner {
    width: calc(348 / 428 * 100%);
  }
}

@keyframes carousel-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes carousel-loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
#homepage {
  background: #F7F7F5;
  --space-section: 10em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #homepage {
    --space-section: 8em;
  }
}
@media only screen and (max-width: 767px) {
  #homepage {
    --space-section: 5em;
  }
}

.p-fv__logo {
  margin-bottom: 0.6em;
  max-width: unset;
}
@media only screen and (max-width: 767px) {
  .p-fv__logo {
    max-width: 60%;
  }
}
.p-fv__logo svg {
  max-width: 100%;
  height: auto;
}
.p-fv__note {
  font-family: "Noto Serif Display", serif;
  font-size: 167%;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.p-fv__action {
  margin-top: 2.3em;
}
.p-fv__action .c-button {
  min-width: 10.8em;
}
.p-fv .c-slider--basic .splide__slide {
  height: 100vh;
}

.p-intro {
  padding-top: calc(155 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-intro {
    padding-top: calc(120 / var(--base) * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .p-intro {
    padding-top: calc(100 / var(--base) * 1em);
  }
}
.p-intro {
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.p-intro__overlay {
  background-size: 100% auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-intro__overlay {
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .p-intro__overlay {
    background-size: cover;
  }
}
.p-intro__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, #F7F7F5 43%, #9FB29E 52%, #648E69 59%, #355D58 80%, #355D58 91%, #72937C 100%);
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .p-intro__overlay {
    height: 94em !important;
    background: linear-gradient(180deg, #F7F7F5 61%, #9FB29E 65%, #648E69 70%, #355D58 80%, #355D58 91%, #72937C 100%);
  }
}
.p-intro__bg {
  width: 100%;
  padding-top: 46.6666666667%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-intro__bg {
    padding-top: 14%;
  }
}
.p-intro__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 2160/1008;
  background-image: url("../images/home/intro_bg.webp");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .p-intro__bg::after {
    aspect-ratio: 2160/1200;
    background-size: cover;
  }
}
.p-intro__inner {
  position: relative;
  z-index: 3;
}
.p-intro__logo {
  width: 50%;
  max-width: 571px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-intro__logo {
    width: 60%;
  }
}
.p-intro .icon_logo {
  width: 100%;
  height: auto;
}
.p-intro__top {
  margin-bottom: calc(200 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-intro__top {
    margin-bottom: calc(120 / var(--base) * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .p-intro__top {
    margin-bottom: calc(100 / var(--base) * 1em);
  }
}
.p-intro__top {
  color: #231815;
}
.p-intro__top .p-intro__logo {
  margin-bottom: 5em;
  overflow: visible;
}
.p-intro__top .title {
  font-size: 134%;
  margin-bottom: 2.3em;
  font-weight: 500;
  color: inherit;
}
.p-intro__top .info {
  color: inherit;
}
.p-intro__top .info .p-intro__line {
  display: block;
}
.p-intro__top .info .p-intro__line:nth-child(n+2) {
  margin-top: 25px;
}
.p-intro__bottom {
  --fade-opacity: 1;
}
.p-intro__bottom .p-intro__logo {
  color: #fff;
  margin-bottom: 1.4em;
  filter: blur(5px);
  transition: opacity 1.5s ease 0.8s, transform 1.5s ease 0.8s, filter 2s ease 0.8s;
}
.p-intro__bottom .p-intro__logo.is-active {
  filter: blur(0);
}
.p-intro__bottom .title span {
  padding-top: 4em;
  padding-bottom: 5.3em;
  color: #fff;
  font-size: 134%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-intro__bottom .title span {
    font-size: 134%;
  }
}
@media only screen and (max-width: 767px) {
  .p-intro__bottom .title span {
    font-size: 167%;
  }
}
.p-intro__bottom .title span {
  font-weight: 500;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-intro__bottom .title span {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
.p-intro__bottom .title span:before {
  content: "";
  position: absolute;
  top: 0;
  height: 160%;
  left: 1em;
  right: 1em;
  background-image: url("../images/home/intro_bg_title.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media only screen and (max-width: 767px) {
  .p-intro__bottom .title span:before {
    width: 120%;
    margin-left: -25%;
    aspect-ratio: 186/246;
    height: auto;
  }
}
.p-intro__marquee {
  display: flex;
  position: relative;
  overflow: hidden;
}
.p-intro__marquee-list {
  display: flex;
}
.p-intro__marquee-list:first-child {
  animation: carousel-loop 120s -60s linear infinite;
}
.p-intro__marquee-list:last-child {
  animation: carousel-loop2 120s linear infinite;
}
.p-intro__marquee-list .img {
  margin-left: 2.85em;
  margin-left: 2.85em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-intro__marquee-list .img {
    margin-left: 1.8em;
  }
}
@media only screen and (max-width: 767px) {
  .p-intro__marquee-list .img {
    margin-left: 1.3em;
  }
}
.p-intro__marquee-list .img {
  width: calc((100vw - 40px) / 5);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-intro__marquee-list .img {
    width: calc((100vw - 20px) / 4);
  }
}
@media only screen and (max-width: 767px) {
  .p-intro__marquee-list .img {
    width: 60vw;
  }
}
.p-intro__marquee-list .img {
  max-width: 21em;
  aspect-ratio: 280/422;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.p-intro__marquee-list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-about__title {
  padding-top: calc(60 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-about__title {
    padding-top: calc(60 / var(--base) * 1em);
  }
}
.p-about__title {
  padding-bottom: calc(100 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-about__title {
    padding-bottom: calc(50 / var(--base) * 1em);
  }
}
.p-about__title {
  padding-left: calc(32 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-about__title {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__title {
    width: 90%;
    margin-inline: auto;
  }
}
.p-about__inner {
  width: 90%;
  max-width: calc(1280px + (100vw - 1280px) / 2);
  margin-left: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about__inner {
    width: 91.6666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__inner {
    width: 100%;
  }
}
.p-about__list {
  position: relative;
}
.p-about__list:after {
  content: "";
  width: 50%;
  height: calc(100% + 9px);
  position: absolute;
  top: 2em;
  right: 0;
  z-index: -2;
  background-color: #EAEADF;
  background-image: url("../images/home/about_bg2.png");
  background-repeat: repeat;
}
@media only screen and (max-width: 767px) {
  .p-about__list:after {
    width: 25%;
    top: 5em;
    right: 0;
  }
}
.p-about__list-item {
  margin-bottom: 8.6em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about__list-item {
    margin-bottom: 6em;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list-item {
    margin-bottom: 4em;
  }
}
.p-about__list-item .c-group-title {
  margin-bottom: calc(17 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .c-group-title {
    width: 91.6666666667%;
    margin-inline: auto;
  }
}
.p-about__list-item .content-item {
  display: grid;
  gap: 1.968503937%;
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .content-item {
    gap: calc(24 / var(--base) * 1em);
  }
}
@media only screen and (min-width: 768px) {
  .p-about__list-item .content-item {
    grid-template-areas: "title slider" "info slider";
    grid-template-rows: auto 1fr;
    align-items: start;
    grid-template-columns: 25.1968503937% 72.8346456693%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about__list-item .content-item {
    grid-template-columns: 29.5275590551% 68.5039370079%;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .content-item {
    grid-template-areas: "title" "slider" "info";
  }
}
.p-about__list-item .content-item .title {
  font-size: 134%;
  line-height: 1.8;
  font-weight: 500;
  color: #1B1B1B;
  grid-area: title;
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .content-item .title {
    width: 91.6666666667%;
    margin-inline: auto;
  }
}
.p-about__list-item .content-item .info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: calc(40 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about__list-item .content-item .info {
    gap: calc(30 / var(--base) * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .content-item .info {
    gap: calc(20 / var(--base) * 1em);
  }
}
.p-about__list-item .content-item .info {
  padding-top: calc(23 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .content-item .info {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .content-item .info {
    width: 91.6666666667%;
    margin-inline: auto;
  }
}
.p-about__list-item .content-item .info p {
  font-size: 100%;
}
.p-about__list-item .content-item .info .c-button--primary {
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .p-about__list-item .content-item .info .c-button--primary {
    width: 80%;
  }
}
.p-about__list-item .content-item .box-slider {
  grid-area: slider;
}
.p-about__action {
  width: 90%;
  margin: auto;
  max-width: 33em;
}
.p-about__action .l-header__contact {
  justify-content: center;
}
.p-about__action .l-header__contact .t {
  font-size: 150%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about__action .l-header__contact .t {
    font-size: 134%;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__action .l-header__contact .t {
    font-size: 100%;
  }
}
.p-about__action .l-header__contact .contact-time > a,
.p-about__action .l-header__contact .contact-time .tel-number {
  font-size: 167%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about__action .l-header__contact .contact-time > a,
  .p-about__action .l-header__contact .contact-time .tel-number {
    font-size: 134%;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__action .l-header__contact .contact-time > a,
  .p-about__action .l-header__contact .contact-time .tel-number {
    font-size: 117%;
  }
}

.p-collection {
  position: relative;
  margin-top: var(--space-section);
  padding-block: calc(78 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-collection {
    padding-block: 3em;
  }
}
.p-collection {
  background-image: url("../images/home/bg_collection2.webp");
  background-repeat: repeat;
}
.p-collection:before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/928;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  background-image: url("../images/home/bg_collection.webp");
  background-size: cover;
  background-position: top center;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-collection:before {
    aspect-ratio: 767/800;
  }
}
.p-collection__inner {
  max-width: calc(900 / var(--base) * 1em);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .p-collection__inner {
    width: 88%;
  }
}
.p-collection__title {
  display: flex;
  flex-direction: column;
  gap: calc(16 / var(--base) * 1em);
}
.p-collection__title > .c-title--en {
  padding-bottom: 0.2em;
}
@media only screen and (max-width: 767px) {
  .p-collection__title > .c-title--en {
    width: 110%;
    margin-left: -5%;
    font-size: 500%;
  }
}
.p-collection__list {
  display: flex;
  flex-direction: column;
  gap: calc(24 / var(--base) * 1em);
  margin-top: calc(48 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-collection__list {
    margin-top: calc(32 / var(--base) * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .p-collection__list {
    margin-top: calc(24 / var(--base) * 1em);
  }
}
.p-collection__list-item {
  background: #fff;
  padding: calc(48 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-collection__list-item {
    padding: calc(32 / var(--base) * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .p-collection__list-item {
    padding: calc(24 / var(--base) * 1em);
  }
}
.p-collection__list-item .c-group-title {
  margin-bottom: calc(12 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-collection__list-item .c-group-title {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .p-collection__list-item .c-group-title .c-group-title--lg {
    width: 100%;
  }
}
.p-collection__list-item .image--sm {
  display: flex;
  overflow-x: auto;
}
.p-collection__list-item .image--sm .c-img {
  min-width: 33.3333333333%;
}
@media only screen and (max-width: 767px) {
  .p-collection__list-item .image--sm .c-img {
    min-width: 50%;
  }
}
.p-collection__list-item .image .c-img {
  position: relative;
}
.p-collection__list-item .image .c-img img {
  height: auto;
}
.p-collection__list-item .image .c-img .caption {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 84%;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: calc(4 / var(--base) * 1em) calc(12 / var(--base) * 1em);
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgb(0, 0, 0);
}
.p-collection__list-item .info {
  margin-top: calc(24 / var(--base) * 1em);
  display: flex;
  flex-direction: column;
  gap: calc(12 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-collection__list-item .action {
    text-align: center;
  }
}

.p-access-information {
  padding-block: var(--space-section);
}
@media only screen and (max-width: 767px) {
  .p-access-information__inner {
    width: 100%;
  }
}

.p-access {
  margin-bottom: 2.2em;
  display: grid;
  gap: 0;
}
@media only screen and (max-width: 767px) {
  .p-access {
    gap: calc(10 / var(--base) * 1em);
  }
}
.p-access {
  grid-template-columns: 42.8571428571% 57.1428571429%;
}
@media only screen and (max-width: 767px) {
  .p-access {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 768px) {
  .p-access {
    grid-template-areas: "info map" "action map";
    grid-template-rows: auto 1fr;
    align-items: start;
  }
}
.p-access .info {
  padding-left: 5.7em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-access .info {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-access .info {
    padding-left: 0;
  }
}
.p-access .info {
  padding-right: 1em;
}
@media only screen and (max-width: 767px) {
  .p-access .info {
    padding-right: 0;
  }
}
.p-access .info {
  display: flex;
  flex-direction: column;
  gap: calc(40 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) {
  .p-access .info {
    grid-area: info;
  }
}
@media only screen and (max-width: 767px) {
  .p-access .info {
    width: 85.3333333333%;
    margin-inline: auto;
  }
}
.p-access .info .c-table--no-bg tr {
  vertical-align: top;
}
.p-access .info .c-table--no-bg tr th {
  min-width: calc(105 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) {
  .p-access .map {
    grid-area: map;
    align-self: start;
  }
}
.p-access .map iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 376/208;
}
.p-access .action {
  padding-left: 5.7em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-access .action {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-access .action {
    padding-left: 0;
  }
}
.p-access .action {
  padding-right: 1em;
}
@media only screen and (max-width: 767px) {
  .p-access .action {
    padding-right: 0;
  }
}
.p-access .action {
  padding-top: calc(40 / var(--base) * 1em);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-access .action {
    padding-top: calc(20 / var(--base) * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .p-access .action {
    padding-top: 0;
  }
}
.p-access .action {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-access .action {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .p-access .action {
    grid-area: action;
  }
}

.p-information {
  margin-bottom: 2.8em;
  background-image: url("../images/home/information_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4.3em 2.3em 4.3em 5.7em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-information {
    padding: 4em 3em;
  }
}
@media only screen and (max-width: 767px) {
  .p-information {
    padding: calc(60 / var(--base) * 1em) calc(24 / var(--base) * 1em);
  }
}
.p-information {
  display: grid;
  grid-template-columns: 38.1533101045% 60.1045296167%;
}
@media only screen and (max-width: 767px) {
  .p-information {
    grid-template-columns: 1fr;
  }
}
.p-information {
  gap: 1.7421602787%;
}
@media only screen and (max-width: 767px) {
  .p-information {
    gap: calc(32 / var(--base) * 1em);
  }
}
@media only screen and (max-width: 1024px) {
  .p-information {
    display: block;
  }
  .p-information .table-info {
    margin-top: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .p-information > .c-title {
    text-align: center;
  }
  .p-information .c-table tr th,
  .p-information .c-table tr td {
    padding: 1em 0.5em 1em 1em;
  }
  .p-information .c-table tr th {
    width: 38%;
  }
}
.p-information .c-table__list {
  display: flex;
  flex-wrap: wrap;
}

.p-information__public-service {
  padding-left: 5.7em;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-information__public-service {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-information__public-service {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-information__public-service {
    width: 85.3333333333%;
    margin-inline: auto;
  }
}
.p-information__public-service .c-title {
  margin-bottom: calc(20 / var(--base) * 1em);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-information__public-service .c-title {
    text-align: center;
  }
}
.p-information__public-service .content {
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-information__public-service .content {
    align-items: flex-start;
  }
}
.p-information__public-service .content {
  gap: 3.3898305085%;
}
@media only screen and (max-width: 767px) {
  .p-information__public-service .content {
    gap: calc(10 / var(--base) * 1em);
  }
}
.p-information__public-service .content {
  grid-template-columns: 29.6610169492% 66.9491525424%;
}
@media only screen and (max-width: 767px) {
  .p-information__public-service .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .p-information__public-service .content {
    grid-template-areas: "image info" "image action";
    grid-template-rows: auto auto;
  }
}
@media only screen and (max-width: 767px) {
  .p-information__public-service .content {
    grid-template-areas: "image info" "action action";
  }
}
.p-information__public-service .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-information__public-service .content .img {
  grid-area: image;
}
.p-information__public-service .content .info {
  grid-area: info;
}
@media only screen and (min-width: 768px) {
  .p-information__public-service .content .info {
    align-self: flex-end;
  }
}
.p-information__public-service .content .action {
  grid-area: action;
  margin-top: calc(40 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .p-information__public-service .content .action {
    margin-top: calc(20 / var(--base) * 1em);
  }
}
@media only screen and (min-width: 768px) {
  .p-information__public-service .content .action {
    align-self: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .p-information__public-service .content .action {
    grid-column: 1/-1;
    text-align: center;
  }
}

.c-vertical-en {
  display: inline-flex;
  align-items: flex-start;
  height: 100vh;
  position: relative;
}
.c-vertical-en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  z-index: -1;
  transform: translateX(-50%);
  background: #E2D8BD;
}
.c-vertical-en__icon {
  display: inline-block;
  width: calc(20 / var(--base) * 1em);
  aspect-ratio: 20/300;
  background-color: #EAEADF;
  background-image: url("../images/home/about_bg2.png");
  background-repeat: repeat-y;
  background-position: center;
  position: relative;
  z-index: 2;
}
.c-vertical-en__text {
  width: calc(20 / var(--base) * 1em);
  aspect-ratio: 20/300;
  writing-mode: vertical-rl;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-vertical-en__text--current {
  transform: translateX(0);
}
.c-vertical-en__text--next {
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  opacity: 0;
}
.c-vertical-en__box.is-animating .c-vertical-en__text--current {
  transform: translateX(-100%);
}
.c-vertical-en__box.is-animating .c-vertical-en__text--next {
  transform: translateX(-100%);
}

.c-sticky__box-title {
  height: 0;
  position: sticky;
  top: var(--height-header-sticky);
  z-index: 3;
  display: block;
}
@media only screen and (max-width: 767px) {
  .c-sticky__box-title {
    display: none;
  }
}

.c-modal .p-information__public-service {
  padding-left: 0;
}
.c-modal .p-information__public-service .action {
  margin-top: 0;
}
.c-modal .p-about__list-item .content-item .info {
  padding: 0;
}

.p-sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: calc(15 / var(--base) * 1em) 5%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.p-sticky-bottom.is-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.p-sticky-bottom .c-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.is-view-collection-section .c-vertical-en__box {
  color: #fff;
}
/*# sourceMappingURL=homepage.css.map */
