<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.header__wrapper {
  height: 8.3333333333vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 6.5972222222vw;
  padding-right: 6.5972222222vw;
}
.header__wrapper .header-left {
  display: flex;
  width: 100%;
}
.header__wrapper .header-left__logo {
  display: flex;
  align-items: center;
  margin-right: 6.9444444444vw;
}
.header__wrapper .header-left__logo img {
  width: 22.9166666667vw;
}
.header__wrapper .header-left__menus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1111111111vw;
  width: 100%;
}
.header__wrapper .header-left__menus__item--last {
  margin-right: 3.4722222222vw;
}
.header__wrapper .header-right {
  display: flex;
  align-items: center;
}
.header__wrapper .header-right .contact-info {
  font-size: 0.9722222222vw;
  font-family: "Noto Sans JP", sans-serif;
}
.header__wrapper .header-right .contact-info__email {
  display: flex;
  background: #F0E02F;
  width: 17.3611111111vw;
  padding-top: 0.6944444444vw;
  padding-bottom: 0.6944444444vw;
  justify-content: center;
  transition: 0.3s;
}
.header__wrapper .header-right .contact-info__email:hover {
  transition: 0.5s;
  opacity: 0.95;
  transform: scale(1.05);
}
.header__wrapper .header-right .contact-info__email__icon {
  margin-right: 0.4166666667vw;
}
.header__wrapper .header-right .contact-info__email__icon svg {
  width: 1.8055555556vw;
  height: 1.8055555556vw;
}
.header__wrapper .header-right .contact-info__email__txt {
  position: relative;
  top: 0.3472222222vw;
}
.header__wrapper .header-right .contact-info__tel {
  display: flex;
  justify-content: center;
  margin-top: 0.4861111111vw;
}
.header__wrapper .header-right .contact-info__tel__icon {
  margin-right: 0.4166666667vw;
}
.header__wrapper .header-right .contact-info__tel__icon svg {
  width: 1.25vw;
  height: 0.9722222222vw;
}
.header__wrapper .header-right .contact-info__tel__txt {
  color: #0F3493;
}

.contact-info {
  font-size: 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-info__email {
  display: flex;
  background: #F0E02F;
  width: 100%;
  margin: 0 auto;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  justify-content: center;
}
.contact-info__email__icon {
  margin-right: 0.375rem;
}
.contact-info__email__icon svg {
  width: 1.625rem;
  height: 1.625rem;
}
.contact-info__email__txt {
  color: black;
}
.contact-info__tel {
  display: flex;
  justify-content: center;
  margin-top: 0.4375rem;
}
.contact-info__tel__icon {
  margin-right: 0.375rem;
}
.contact-info__tel__icon svg {
  width: 1.4375rem;
  height: 1.125rem;
}
.contact-info__tel__txt {
  color: white;
}

.common-btn {
  display: block;
  max-width: 22.2222222222vw;
  width: 100%;
  background: #F0E02F;
  padding: 1.4583333333vw 0;
  text-align: center;
  font-size: 1.1111111111vw;
  font-weight: 700;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}

.footer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: white;
  background: var(--blue-0-f-3493, #0F3493);
  height: 19.4444444444vw;
  display: flex;
  align-items: center;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 77.7777777778vw;
  width: 100%;
  margin: 0 auto;
}
.footer__wrapper .footer-left__logo {
  display: block;
  width: 10.4166666667vw;
  margin-bottom: 1.6666666667vw;
  line-height: 1.08;
}
.footer__wrapper .footer-left__logo__top {
  font-size: 2.7777777778vw;
}
.footer__wrapper .footer-left__logo__bottom {
  font-size: 1.5277777778vw;
}
.footer__wrapper .footer-left__info {
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-size: 1.1111111111vw;
}
.footer__wrapper .footer-right__menus {
  display: flex;
  position: relative;
  top: 0.8333333333vw;
  letter-spacing: 0.08em;
}
.footer__wrapper .footer-right__menus__item {
  margin-right: 2.7777777778vw;
  font-size: 1.1111111111vw;
}
.footer__wrapper .footer-right__menus__item--last {
  margin-right: 0;
}

.header-right__hamburger-menu {
  z-index: 12;
  width: 40px;
  height: 23px;
  display: none;
}
.header-right__hamburger-menu .menu-open-btn {
  width: 40px;
  height: 23px;
  display: block;
  position: relative;
}
.header-right__hamburger-menu .menu-open-btn__line {
  display: block;
  background-color: black;
  width: 100%;
  height: 2px;
  transition: all 0.4s;
}
.header-right__hamburger-menu .menu-open-btn__line--middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header-right__hamburger-menu .menu-open-btn__line--bottom {
  position: absolute;
  bottom: 0;
}
.header-right__hamburger-menu .clicked .menu-open-btn__line {
  transition: all 0.4s;
  background-color: white;
}
.header-right__hamburger-menu .clicked .menu-open-btn__line--top {
  transform: translateY(10px) rotate(-45deg);
}
.header-right__hamburger-menu .clicked .menu-open-btn__line--middle {
  display: none;
}
.header-right__hamburger-menu .clicked .menu-open-btn__line--bottom {
  transform: translateY(-10px) rotate(45deg);
}

.header-nav {
  display: none;
  position: absolute;
  z-index: 100;
  right: 0;
  top: 0;
  background: var(--gradation-3, linear-gradient(94deg, #00A9EE 2.67%, #194096 103.46%));
  z-index: 11;
  width: 70vw;
  display: none;
  height: 100vh;
}
.header-nav .header-items {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.header-nav .header-items__item {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px dotted #fff;
}
.header-nav .header-items--reserve-btn {
  margin-top: 30px;
  text-align: center;
}

.filter {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}

.page-visual {
  padding-top: 8.3333333333vw;
  position: relative;
  overflow: hidden;
}
.page-visual__wrapper {
  width: 100%;
  position: absolute;
  bottom: -1.25vw;
  left: 0;
  padding: 0 11.1111111111vw;
  display: flex;
  justify-content: space-between;
  color: white;
  font-weight: 700;
}
.page-visual__wrapper .page-visual-text-jp {
  font-size: 2.2222222222vw;
  white-space: nowrap;
  line-height: 1.75;
  z-index: 2;
}
.page-visual__wrapper .page-visual-text-en {
  font-size: 8.3333333333vw;
  opacity: 0.8;
  mix-blend-mode: overlay;
  line-height: 1;
  z-index: 2;
  margin-top: 3.1944444444vw;
}
.page-visual .video-wrapper {
  position: relative;
  overflow: hidden;
  height: 16.6666666667vw;
  top: 0;
  left: 0;
  width: 100%;
}
.page-visual .video-wrapper .video-filter {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 16.6666666667vw;
  background-color: rgba(1, 5, 21, 0.3);
  background: var(--gradation-3, linear-gradient(92deg, #00A9EE -40.17%, #194096 46.26%));
  opacity: 0.4;
}
.page-visual .video-wrapper #myVideo {
  width: 150%;
  position: relative;
  top: -180%;
  left: -10%;
}

.breadcrumb {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(12px, 0.8333333333vw);
}
.breadcrumb__list {
  padding: 1.3888888889vw 11.1111111111vw 0 11.1111111111vw;
  width: 100%;
  margin: 0 auto;
  display: flex;
  color: #151515;
}
.breadcrumb__list span {
  margin-right: 0.4375em;
  margin-left: 0.4375em;
}
.breadcrumb__list .brd-underline {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  color: #0F3493;
}

.y-b-box {
  display: flex;
}
.y-b-box__yellow {
  background: var(--yellow-f-0-e-02-f, #F0E02F);
  width: 1.1111111111vw;
  height: 3.75vw;
}
.y-b-box__blue {
  background: var(--gradation-3, linear-gradient(92deg, #00A9EE 0.01%, #194096 99.22%));
  height: 3.75vw;
  width: 100%;
  display: flex;
  align-items: center;
}
.y-b-box__blue .sub-p-heading {
  font-size: 1.9444444444vw;
  color: white;
  margin-left: 2.8472222222vw;
}/*# sourceMappingURL=common-parts.css.map */</pre></body></html>