@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css");
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap");
/***************************

foundation/base.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 1.5rem;
  color: #4A4A50;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 450px) {
  body {
    font-size: 1.3rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

*:has(> wbr) {
  white-space: pre-wrap;
  word-break: keep-all;
}

@media screen and (min-width: 769px) {
  body {
    zoom: 0.8;
  }
  .header-toggleContents {
    height: 125svh !important;
  }
  #lightbox {
    zoom: 1.25;
  }
}
.montserrat {
  font-family: "Montserrat", sans-serif;
}

.outfit {
  font-family: "Outfit", sans-serif;
}

.inter-tight {
  font-family: "Inter Tight", sans-serif;
}

.google-sans {
  font-family: "Google Sans", sans-serif;
}

/***************************

layout/_header.scss

***************************/
main {
  padding-top: 110px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9989;
  width: 100%;
  height: 110px;
  background: #fff;
  padding-left: 25px;
}

.header__logo {
  font-size: 0;
}

.header__nav__item {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
}
.header__nav__item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__nav__item:has(.header__innerNav) {
  position: relative;
}
.header__nav__item:has(.header__innerNav) > a {
  pointer-events: none;
}

.header__innerNav {
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
}
.header__nav__item:hover .header__innerNav {
  opacity: 1;
  visibility: visible;
}
.header__innerNav.--navi {
  width: 265px;
}

.header__innerNav__item {
  font-size: 1.6rem;
}
.header__innerNav__item::before {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #3351BF;
  font-size: 1.4rem;
  margin-right: 5px;
}
.header__innerNav__item:nth-of-type(n+2) {
  margin-top: 10px;
}

.header__subNav {
  display: flex;
  border-left: 1px solid #E8ECEF;
  gap: 10px;
  padding-left: 20px;
  margin-left: 20px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.header__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 66px;
  margin-left: 40px;
}
.header__sns:before {
  content: "公式SNS";
  width: 100%;
  text-align: center;
  display: block;
  font-size: 1rem;
  font-weight: bold;
}

.header__sns__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4A4A50;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
}

.header__reserve {
  display: block;
  background: #FF752D;
  color: #fff;
  padding: 10px 15px;
  width: 133px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 9999px;
  margin: 0 10px 0 15px;
}
.header__reserve:before {
  content: "";
  width: 37px;
  aspect-ratio: 37/30;
  background: url(../img/common/ico_ticket.svg) no-repeat center/contain;
  display: block;
  margin: 0 auto;
}

.header-toggleContents {
  position: fixed;
  background: #3351BF;
  color: #fff;
  top: 0;
  left: 0;
  z-index: 9988;
  width: 100%;
  height: 100svh;
  overflow-y: auto;
  overflow-x: visible;
  transition: opacity 0.5s, visibility 0.5s;
  visibility: hidden;
  opacity: 0;
  padding: 150px 0 50px;
}
.header:has(input[name=toggle]:checked) + .header-toggleContents {
  opacity: 1;
  visibility: visible;
}
.header-toggleContents .footer__top {
  justify-content: center;
}
.header-toggleContents .header__sns {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  max-width: 100%;
}
.header-toggleContents .header__sns:before {
  font-size: 1.4rem;
}
.header-toggleContents .header__sns .header__sns__item a {
  width: 45px;
  font-size: 2.4rem;
}
.header-toggleContents .header__sns .header__sns__item img {
  width: 100%;
  max-width: 24px;
}
.header-toggleContents .footer__reserve {
  margin: 20px auto;
}

.bogo-language-switcherWrap {
  position: relative;
  width: 13rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 25px 10px 35px;
  background: url(../img/common/ico_language.svg) no-repeat left 16px top 50%, url(../img/common/language_arrow.svg) no-repeat top 50% right 13px;
  background-color: #F7F7F7;
  border-radius: 999px;
  margin-right: auto;
  margin-left: 13px;
  line-height: 1.4;
}
.bogo-language-switcherWrap:before {
  content: "Language";
  font-family: "Google Sans", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
}
.bogo-language-switcherWrap.is-open {
  border-radius: 19px 19px 0 0;
}

.bogo-language-switcher {
  position: absolute;
  top: 100%;
  left: 0;
  background: #F7F7F7;
  width: 100%;
  display: none;
}
.bogo-language-switcher li {
  font-weight: bold;
  font-size: 1.4rem;
}
.bogo-language-switcher li:last-of-type a {
  padding-bottom: 10px;
}
.bogo-language-switcher a {
  padding: 5px 15px;
  display: block;
}

@media screen and (min-width: 769px) {
  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .header__nav__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 60px;
  }
  header {
    height: 60px;
    gap: 10px;
  }
  .header-toggleContents {
    padding-top: 90px;
  }
  .bogo-language-switcherWrap {
    margin-left: 5px;
  }
}
@media screen and (max-width: 450px) {
  header {
    padding-left: 15px;
  }
  .bogo-language-switcherWrap {
    width: 11rem;
    font-size: 1rem;
    flex: 0 0 11rem;
    padding: 6px 18px 6px 25px;
    background: url(../img/common/ico_language.svg) no-repeat left 9px top 50%/11px 11px, url(../img/common/language_arrow.svg) no-repeat top 50% right 9px/6px 3px;
    background-color: #F7F7F7;
  }
  .bogo-language-switcherWrap li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1400px) {
  .gnav .header__sns {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .gnav .header__subNav {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .gnav .header__nav {
    display: none;
  }
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

/* toggle button */
.header__toggleBtn {
  --toggle-color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  position: relative;
  padding: 13px 0 3px;
  text-align: center;
  z-index: 9989;
  background: #3351BF;
  color: var(--toggle-color);
  height: 100%;
  aspect-ratio: 1/1;
}

.header__toggleBtn__bar {
  position: relative;
  z-index: 9999;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 27px;
  height: 3px;
  background-color: var(--toggle-color);
  outline: 1px solid transparent;
  border-radius: 999px;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.header__toggleBtn__bar:before, .header__toggleBtn__bar:after {
  position: absolute;
  content: "";
  display: block;
  width: 27px;
  height: 3px;
  background-color: var(--toggle-color);
  outline: 1px solid transparent;
  border-radius: 999px;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.header__toggleBtn__bar:before {
  top: -9px;
}
.header__toggleBtn__bar:after {
  top: 9px;
}
input[name=toggle]:checked + .header__toggleBtn__bar {
  background-color: transparent;
}
input[name=toggle]:checked + .header__toggleBtn__bar:before {
  transform: translateY(9px) rotate(45deg);
}
input[name=toggle]:checked + .header__toggleBtn__bar:after {
  transform: translateY(-9px) rotate(-45deg);
}

.header__toggleBtn__name {
  font-family: "Google Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
}
.header__toggleBtn__name:before {
  content: "MENU";
}
.header__toggleBtn:has(input[name=toggle]:checked) .header__toggleBtn__name:before {
  content: "CLOSE";
}

input[name=toggle] {
  display: none;
}

body:has(input[name=toggle]:checked) {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .gnav {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    margin-left: 10px;
    flex: 1 1 auto;
  }
}
@media screen and (max-width: 768px) {
  .gnav {
    display: none;
  }
  .header__toggleBtn {
    padding-top: 6px;
  }
  .header__toggleBtn__bar {
    width: 17px;
    height: 2px;
  }
  .header__toggleBtn__bar:before, .header__toggleBtn__bar:after {
    width: 17px;
    height: 2px;
  }
  .header__toggleBtn__bar:before {
    top: -6px;
  }
  .header__toggleBtn__bar:after {
    top: 6px;
  }
  input[name=toggle]:checked + .header__toggleBtn__bar {
    background-color: transparent;
  }
  input[name=toggle]:checked + .header__toggleBtn__bar:before {
    transform: translateY(6px) rotate(45deg);
  }
  input[name=toggle]:checked + .header__toggleBtn__bar:after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .header__toggleBtn__name {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}
.header-spFixNav {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 8888;
  width: 100%;
  display: flex;
}
@media screen and (min-width: 769px) {
  .header-spFixNav {
    display: none;
  }
}

.header-spFixNav__item {
  width: 33.3333333333%;
}
.header-spFixNav__item a {
  background: #F9F9F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
  line-height: 1.1;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 800;
  color: #3351BF;
  padding: 10px 0 7px;
}
.header-spFixNav__item.--reserve a {
  background: #FF752D;
  color: #fff;
}
.header-spFixNav__item:nth-of-type(n+2) {
  border-left: 2px solid #fff;
}
.header-spFixNav__item:first-of-type a {
  border-top-left-radius: 10px;
}
.header-spFixNav__item:last-of-type a {
  border-top-right-radius: 10px;
}

.header-spFixNav__ico img[src*="ico_pin.svg"] {
  width: 21px;
}

.header.--english * {
  word-break: break-word;
}
.header.--english .header__reserve {
  margin-left: auto;
}
.header.--english .header__nav {
  margin-left: auto;
  margin-right: auto;
}
.header.--english + .header-toggleContents * {
  word-break: break-word;
}
.header.--english + .header-toggleContents + .header-spFixNav * {
  word-break: break-word;
}

/***************************

layout/_footer.scss

***************************/
footer {
  padding: 105px 0 0 0;
  background: #3351BF;
  color: #fff;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .footer__top {
    flex-wrap: wrap;
  }
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__top__info {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-right: 145px;
}
@media screen and (max-width: 1100px) {
  .footer__top__info {
    width: 100%;
    margin-right: 0;
  }
}

.footer__top__info__link {
  font-size: 1.2rem;
}

.footer__reserve {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/common/ico_ticket02.svg) no-repeat top 50% left 30px;
  background-color: #FF8000;
  border-radius: 9999px;
  min-height: 80px;
  max-width: 380px;
  font-size: 2.2rem;
  font-weight: bold;
  padding-left: 20px;
}

.footer__nav {
  width: 220px;
}
@media screen and (max-width: 1100px) {
  .footer__nav {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 600px) {
  .footer__nav {
    width: 100%;
  }
}

.footer__nav__item01 a {
  display: block;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 15px 0;
}

.footer__nav__item02 {
  margin-top: 10px;
}
.footer__nav__item02 a {
  display: block;
  line-height: 1.4;
  font-size: 1.5rem;
  font-weight: 500;
}
.footer__nav__item01 + .footer__nav__item02 {
  margin-top: 25px;
}

.footer__nav__item03 a {
  display: block;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
  position: relative;
}
.footer__nav__item03 a:after {
  content: "";
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../img/common/arrow_right.svg) no-repeat top 50% left calc(50% + 1px);
  background-color: #fff;
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
}
.footer__nav__item03 + .footer__nav__item03 {
  margin-top: 5px;
}

.footer__nav__item04 {
  margin-top: 10px;
}
.footer__nav__item04 a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  background-color: #fff;
  min-height: 50px;
  color: #3351BF;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 10px 15px 10px 35px;
  border-radius: 9999px;
  position: relative;
}
.footer__nav__item04 a:before {
  content: "";
  width: 12px;
  height: 13px;
  background: url(../img/common/ico_download.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  left: 20px;
}
.footer__nav__item03 + .footer__nav__item04 {
  margin-top: 30px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding: 30px 0 80px;
  margin-top: 115px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__bottom__link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer__bottom__link__item {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 450px) {
  .footer__bottom__link__item {
    width: 100%;
  }
}

.footer__copy {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/***************************

layout/_slick.scss

***************************/
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date {
    font-size: 1rem;
  }
  .slick-archive__title {
    font-size: 1.2rem;
  }
  .slick-archive__label {
    font-size: 1rem;
  }
}
/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pano.scss

***************************/
.pano {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  cursor: move;
}

.pano .controls {
  position: relative;
  top: 40%;
}

.pano .controls a {
  position: absolute;
  display: inline-block;
  text-decoration: none;
  color: #eee;
  font-size: 3em;
  width: 20px;
  height: 20px;
}

.pano .controls a.left {
  left: 10px;
}

.pano .controls a.right {
  right: 10px;
}

.pano.moving .controls a {
  opacity: 0.4;
  color: #eee;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #E1E2E5;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 5px;
  padding: 6px;
  display: block;
  text-decoration: none;
  opacity: 1;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: #3351BF;
  padding: 0;
  width: 22px;
  aspect-ratio: 1/1;
  line-height: 22px;
  font-size: 0.8rem;
  border-radius: 50%;
}

.wp-pagenavi .previouspostslink {
  margin-right: 10px;
}

.wp-pagenavi .nextpostslink {
  margin-left: 10px;
}

.wp-pagenavi span.current {
  color: #3351BF;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 451px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 30px;
  }
  .wp-pagenavi .nextpostslink {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
.pager {
  margin: 20px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #1f1f1f;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_tab.scss

***************************/
.tab {
  cursor: pointer;
}

.tab-contents {
  display: none;
}

.tab-contents:first-of-type {
  display: block;
}

/***************************

layout/_loading.scss

***************************/
#loading {
  position: fixed;
  z-index: 10000;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
#loading img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#loading.--remove {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (min-width: 901px) {
  #loading {
    display: none;
  }
}

.loading__text {
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  margin: auto;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(45, 66, 169, 0.33);
}

/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 1.5rem;
  margin-top: auto;
  line-height: 1.2;
}
.breadcrumbs a {
  display: block;
  color: #8395D6;
  text-decoration: underline;
}

.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item:not(:first-of-type) {
  padding-left: 40px;
}
.breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #A0ADB8;
  border-bottom: 1px solid #A0ADB8;
  position: absolute;
  left: 18px;
  top: calc(50% - 2px);
  transform: rotate(-45deg);
}
.breadcrumbs__item:last-of-type a {
  pointer-events: none;
  text-decoration: none;
  color: #A0ADB8;
}

@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 1.2rem;
  }
}
/***************************

layout/_subpage.scss

***************************/
@keyframes subpage-ttl {
  0% {
    background-position: right 0 top 0, left 130vw top 0, left 0vw top 0, left 180vw top 0;
  }
  100% {
    background-position: right 0 top 0, left -130vw top 0, left -130vw top 0, left 0vw top 0;
  }
}
.subpage-ttl {
  height: 420px;
  padding: 35px 0;
  background-image: url(../img/common/page_title_bg03.png), url(../img/common/page_title_bg02.png), url(../img/common/page_title_bg01.png), url(../img/common/page_title_bg01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #F9F9F8;
  animation: subpage-ttl 30s infinite linear;
}
.subpage-ttl .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subpage-ttl__hdg {
  margin-top: auto;
  display: grid;
  grid-template-areas: "ico jp" "ico en";
  grid-template-columns: max-content 1fr;
  gap: 10px 20px;
}
.subpage-ttl__hdg:not(:has(.subpage-ttl__hdg__en)) {
  grid-template-areas: "ico jp";
}
.subpage-ttl__hdg:not(:has(.subpage-ttl__hdg__en)) .subpage-ttl__hdg__jp {
  align-self: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.subpage-ttl__hdg__ico {
  grid-area: ico;
  background: #fff;
  width: 115px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subpage-ttl__hdg__jp {
  grid-area: jp;
  line-height: 1.2;
  align-self: end;
  font-size: min(4.4rem, 7.46vw);
  font-weight: 800;
}

.subpage-ttl__hdg__en {
  grid-area: en;
  align-self: start;
  line-height: 1.2;
  font-size: min(1.6rem, 3.2vw);
  font-family: "Outfit", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .subpage-ttl {
    height: 300px;
    padding-bottom: 15px;
    background-color: #F9F9F8;
    animation: subpage-ttl 20s infinite linear;
  }
  .subpage-ttl__hdg {
    gap: 10px;
    margin-bottom: 15px;
  }
  .subpage-ttl__hdg__ico {
    padding: 14px;
    width: min(60px, 13.3vw);
  }
}
@media screen and (max-width: 450px) {
  .subpage-ttl {
    height: 200px;
  }
}
.subpage-anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 450px) {
  .subpage-anchor {
    margin-bottom: 60px;
  }
}

.subpage-anchor__item a {
  display: block;
  position: relative;
  padding-right: 32px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.subpage-anchor__item a:after {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 0.8rem;
  background: #3351BF;
  width: 20px;
  height: 18px;
  padding-top: 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
}
.subpage-anchor__item:has(+ .subpage-anchor__item) {
  padding-right: 20px;
  border-right: 1px solid #A0ADB8;
}

.subpage-contents {
  padding-top: 90px;
  padding-bottom: 30px;
  font-weight: 600;
  line-height: 1.66;
}
.subpage-contents:last-of-type {
  padding-bottom: 70px;
}
@media screen and (max-width: 450px) {
  .subpage-contents {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}

.subpage-accordion__hdg {
  font-size: min(2.8rem, 5.33vw);
  line-height: 1.4;
  font-weight: bold;
  background: #F9F9F8;
  position: relative;
  padding: 20px 60px 20px 35px;
  border-radius: 12px;
}
.subpage-accordion__hdg::before, .subpage-accordion__hdg::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #4A4A50;
  position: absolute;
  top: calc(50% - 1px);
  right: 32px;
  z-index: 5;
  transition: 0.2s;
}
.subpage-accordion__hdg:not(.is-open)::after {
  transform: rotate(90deg);
}

.subpage-accordion__contents {
  margin-top: 40px;
}

@media screen and (max-width: 450px) {
  .subpage-accordion__hdg {
    padding: 15px 35px 15px 15px;
  }
  .subpage-accordion__hdg::before, .subpage-accordion__hdg::after {
    width: 14px;
    right: 15px;
  }
  .subpage-accordion__contents {
    margin-top: 20px;
  }
}
.subpage-links {
  background: #F9F9F8;
  padding: 60px 0 70px;
  margin-top: 90px;
}

.subpage-links__hdg {
  font-size: min(3rem, 5.86vw);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px dotted #4A4A50;
  padding-bottom: min(8px, 1.3vw);
  margin-bottom: 30px;
}

/***************************

object/component/_heading.scss

***************************/
.hdg-type01 {
  margin-bottom: 25px;
}

.hdg-type01__jp {
  font-size: min(3.6rem, 8vw);
  font-weight: 800;
  text-align: center;
  color: #3351BF;
  line-height: 1.2;
}

.hdg-type01__en {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #3351BF;
  margin-top: 5px;
}

.hdg-type02 {
  margin-bottom: 25px;
}
.hdg-type02:nth-child(n+2) {
  margin-top: 60px;
}

.hdg-type02__jp {
  font-size: min(3rem, 5.86vw);
  font-weight: 800;
  text-align: center;
  color: #3351BF;
  line-height: 1.2;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px dotted #3351BF;
  padding-bottom: min(8px, 1.3vw);
}

.hdg-type02__en {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #3351BF;
  margin-bottom: 5px;
}

.hdg-type03 {
  background: #3351BF;
  color: #fff;
  border-radius: 6px;
  font-size: min(3rem, 5.86vw);
  font-weight: 900;
  line-height: 1.6;
  position: relative;
  padding: 16px 20px;
  margin-bottom: 25px;
}
.hdg-type03:before {
  content: "";
  width: 5px;
  height: 36px;
  background: #fff;
  border-radius: 99px;
  position: absolute;
  top: calc(50% - 18px);
  left: 0;
}

.hdg-type04 {
  font-size: min(2.8rem, 5.33vw);
  line-height: 1.4;
  font-weight: bold;
  color: #3351BF;
  margin-bottom: 25px;
  margin-top: min(60px, 8vw);
}
.hdg-type04__small {
  font-size: min(2.1rem, 4.26vw);
  display: inline-block;
}

.hdg-type05 {
  font-size: min(1.6rem, 3.73vw);
  line-height: 1.4;
  font-weight: bold;
  color: #3351BF;
  margin-bottom: 7px;
  margin-top: min(20px, 4vw);
}

.hdg-type06 {
  font-size: min(2.8rem, 5.33vw);
  line-height: 1.4;
  font-weight: bold;
  background: #F9F9F8;
  position: relative;
  padding: 20px 60px 20px 35px;
  border-radius: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 450px) {
  .hdg-type06 {
    padding: 15px 35px 15px 15px;
  }
  .hdg-type06::before, .hdg-type06::after {
    width: 14px;
    right: 15px;
  }
}

/***************************

object/component/_box.scss

***************************/
.container {
  max-width: 1310px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1134px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_l {
  max-width: 1470px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.box01__hdg {
  background: #3351BF;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 10px 30px;
  border-radius: 12px 12px 0 0;
}

.box01__contents {
  border: 1px solid #ddd;
  background: #fff;
  padding: 30px;
  border-radius: 0 0 12px 12px;
  line-height: 1.4;
}

@media screen and (max-width: 450px) {
  .box01__hdg {
    padding: 10px 15px;
  }
  .box01__contents {
    padding: 20px 15px;
  }
}
.box02-ttl {
  background: #3351BF;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px 8px 0 0;
  padding: 10px;
}

.box02-content {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  padding: 20px;
  line-height: 1.4;
}

@media screen and (max-width: 450px) {
  .box02-ttl {
    font-size: 1.8rem;
  }
}
.image-box__item img {
  border-radius: 12px;
}
.image-box__item:has(img:nth-of-type(2)), .image-box__item:has(.image-box__item__imageWrap:nth-of-type(2)) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-self: flex-start;
}
.image-box__item:has(img:nth-of-type(2)) > img,
.image-box__item:has(img:nth-of-type(2)) .image-box__item__imageWrap, .image-box__item:has(.image-box__item__imageWrap:nth-of-type(2)) > img,
.image-box__item:has(.image-box__item__imageWrap:nth-of-type(2)) .image-box__item__imageWrap {
  width: calc(50% - 5px);
}
.image-box__item:has(img:nth-of-type(2)) > *, .image-box__item:has(.image-box__item__imageWrap:nth-of-type(2)) > * {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .image-box__item:has(img:nth-of-type(2)), .image-box__item:has(.image-box__item__imageWrap:nth-of-type(2)) {
    width: 100%;
  }
}

.image-box--2column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.image-box--2column .image-box__item {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .image-box--2column {
    gap: 10px 0;
  }
  .image-box--2column .image-box__item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 450px) {
  .image-box--2column:has(.image-box__item__ttl) {
    gap: 20px;
  }
  .image-box--2column .image-box__item {
    width: 100%;
  }
}

.image-box--3column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.image-box--3column .image-box__item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .image-box--3column {
    gap: 30px;
  }
  .image-box--3column .image-box__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 450px) {
  .image-box--3column {
    gap: 30px 10px;
  }
  .image-box--3column .image-box__item {
    width: calc(50% - 5px);
  }
}

.image-box--4column {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}
.image-box--4column .image-box__item {
  width: calc((100% - 81px) / 4);
}
.image-box--4column .image-box__item.--double {
  width: calc((100% - 27px) / 2);
}
@media screen and (max-width: 768px) {
  .image-box--4column {
    gap: 30px;
  }
  .image-box--4column .image-box__item {
    width: calc(50% - 15px);
  }
  .image-box--4column .image-box__item.--double {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .image-box--4column {
    gap: 30px 10px;
  }
  .image-box--4column .image-box__item {
    width: calc(50% - 5px);
  }
}

.image-box__item__ttl {
  font-size: min(2.8rem, 5.33vw);
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .image-box__item__ttl {
    margin-top: 5px;
  }
}

.image-box__item__ttl2 {
  font-size: min(1.6rem, 3.73vw);
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 7px;
  margin-top: min(15px, 3vw);
}

.image-box__item__ttl3 {
  font-size: min(2.1rem, 4vw);
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 7px;
  margin-top: min(15px, 3vw);
  color: #3351BF;
}

.box-blue {
  border: 1px solid #3351BF;
  background: #F1F5F9;
  border-radius: 12px;
  padding: 40px;
}
@media screen and (min-width: 769px) {
  .box-blue {
    width: fit-content;
    min-width: 640px;
  }
}
@media screen and (max-width: 450px) {
  .box-blue {
    padding: 20px;
  }
}

.box-red {
  border: 1px solid #E30012;
  background: #FFF3F3;
  border-radius: 12px;
  padding: 40px;
}
.box-red .hdg-type04,
.box-red .hdg-type05,
.box-red .list-check__item:before {
  color: #E30012;
}
@media screen and (max-width: 450px) {
  .box-red {
    padding: 20px;
  }
}

/***************************

object/component/_button.scss

***************************/
.btn-type01 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
  background: #3351BF;
  color: #fff;
  line-height: 1.4;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  min-height: min(72px, 16vw);
  font-size: min(2rem, 4.8vw);
  font-weight: bold;
  padding: 5px 45px;
}
.btn-type01 i {
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  color: #3351BF;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 10px);
  right: 20px;
}
@media screen and (min-width: 451px) {
  .btn-type01 {
    min-width: 360px;
  }
}
@media screen and (max-width: 450px) {
  .btn-type01 {
    width: 100%;
  }
}
.btn-type01.--rev i {
  right: auto;
  left: 20px;
}

.btn-type02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
  background: #fff;
  color: #3351BF;
  line-height: 1.4;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  min-height: min(72px, 16vw);
  font-size: min(2rem, 4.8vw);
  font-weight: bold;
  padding: 5px 45px;
}
.btn-type02 i {
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #3351BF;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 10px);
  right: 20px;
}
@media screen and (min-width: 451px) {
  .btn-type02 {
    min-width: 360px;
  }
}
@media screen and (max-width: 450px) {
  .btn-type02 {
    width: 100%;
  }
}

.btn-submit {
  background: transparent;
  border: none;
  color: #fff;
  line-height: 1.4;
  font-size: min(2rem, 4.8vw);
  font-weight: bold;
}

.btn-submitWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border: none;
  border-radius: 9999px;
  background: #3351BF;
  color: #fff;
  line-height: 1.4;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  min-height: min(72px, 16vw);
  font-size: min(2rem, 4.8vw);
  font-weight: bold;
  padding: 5px 45px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-submitWrap:before {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  color: #3351BF;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 10px);
  right: 20px;
}
.btn-submitWrap:hover {
  opacity: 0.7;
}
@media screen and (min-width: 451px) {
  .btn-submitWrap {
    min-width: 360px;
  }
}
@media screen and (max-width: 450px) {
  .btn-submitWrap {
    width: 100%;
  }
}

/***************************

object/component/_list.scss

***************************/
.dl-type01 {
  border: 1px solid #DDD;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}
.dl-type01 dt {
  background: #F1F5F9;
  padding: 20px 25px;
}
.dl-type01 dt:nth-of-type(n+2) {
  border-top: 1px solid #DDD;
}
.dl-type01 dd {
  background: #fff;
  padding: 20px 25px;
}
@media screen and (min-width: 769px) {
  .dl-type01 {
    display: flex;
    flex-wrap: wrap;
  }
  .dl-type01 dt {
    width: 215px;
  }
  .dl-type01 dt:first-of-type {
    border-top-left-radius: 8px;
  }
  .dl-type01 dt:last-of-type {
    border-bottom-left-radius: 8px;
  }
  .dl-type01 dd {
    width: calc(100% - 215px);
  }
  .dl-type01 dd:first-of-type {
    border-top-right-radius: 8px;
  }
  .dl-type01 dd:last-of-type {
    border-bottom-right-radius: 8px;
  }
  .dl-type01 dd:nth-of-type(n+2) {
    border-top: 1px solid #DDD;
  }
}
@media screen and (max-width: 768px) {
  .dl-type01 dt:first-of-type {
    border-radius: 8px 8px 0 0;
  }
  .dl-type01 dd:last-of-type {
    border-radius: 0 0 8px 8px;
  }
}

.list-check__item {
  font-weight: 600;
  text-indent: calc(-1em - 5px);
  padding-left: calc(1em + 5px);
}
.list-check__item:before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #3351BF;
  margin-right: 5px;
}

.ol-type01 {
  counter-reset: ol01;
}

.ol-type01__item {
  counter-increment: ol01;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.ol-type01__item:before {
  content: counter(ol01) ")";
  margin-right: 0.5em;
}

/***************************

object/component/_table.scss

***************************/
.table-type01 {
  border: none;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border-bottom: none;
  border-right: none;
  border-radius: 12px;
}
.table-type01 th, .table-type01 td {
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 20px 40px;
  font-weight: 600;
}
.table-type01 thead th {
  background: #3351BF;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
.table-type01 tbody th {
  background: #F1F5F9;
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .table-type01 thead th {
    padding: 10px 30px;
  }
}
@media screen and (max-width: 768px) {
  .table-type01 th, .table-type01 td {
    padding: 10px 20px;
  }
}

.table-radius-top-left {
  border-top-left-radius: 12px;
}

.table-radius-top-right {
  border-top-right-radius: 12px;
}

.table-radius-bottom-left {
  border-bottom-left-radius: 12px;
}

.table-radius-bottom-right {
  border-bottom-right-radius: 12px;
}

.table-scrollWrap {
  overflow: auto;
}

/***************************

object/component/_form.scss

***************************/
[type=text],
[type=email],
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.3rem;
  padding: 12px 15px;
  border-radius: 3px;
}
@media screen and (min-width: 451px) {
  [type=text],
  [type=email],
  textarea {
    font-size: 1.6rem;
  }
}
[type=text]:focus-visible,
[type=email]:focus-visible,
textarea:focus-visible {
  outline-color: #3351BF;
}

*::placeholder {
  color: #ddd;
  font-size: 1.5rem;
  font-weight: 500;
}

.wpcf7-list-item {
  padding: 10px 0;
  display: inline-block;
  margin-left: 0 !important;
}

.wpcf7-list-item input[type=radio],
.wpcf7-list-item input[type=checkbox] {
  display: none;
}

.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 25px;
  cursor: pointer;
  margin-right: 30px;
  line-height: 1.4;
  font-size: 1.5rem;
  display: inline-block;
}

.wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transition: all 0.3s;
}

.wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  border-radius: 50%;
}

.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 4px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: #3351BF;
  opacity: 0;
  transform: scale(0);
  z-index: 1;
  border-radius: 50%;
}

.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border-bottom: 4px solid #3351BF;
  border-right: 4px solid #3351BF;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  z-index: 1;
}

.wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

/***************************

object/object/project/_home.scss

***************************/
.top-mv {
  overflow: hidden;
  background: #F9F9F8;
  display: flex;
  gap: 20px;
  padding: 25px 25px 45px 25px;
}

.top-mv__inner {
  width: calc(100% - 470px);
  position: relative;
}
.top-mv__inner > *:not(.top-mv__swiper) {
  z-index: 2;
  position: relative;
}

.top-status {
  width: 450px;
  background: #fff;
  border: 1px solid #E1DEDE;
  border-radius: 30px;
  position: relative;
  padding-top: 25px;
}

.top-mv__swiper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.top-mv__swiper-slide {
  border-radius: 30px;
  overflow: hidden;
}
.top-mv__swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-mv__swiper-pagination {
  text-align: left;
  margin-top: 10px;
}
.top-mv__swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
.top-mv__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.top-mv__inner {
  display: flex;
  flex-direction: column;
  padding: 50px 40px 27px 60px;
}
.top-mv__inner:not(:has(.top-mv__crowding)) .top-mv__swiper-pagination {
  margin-top: auto;
}

.top-mv__copyEn {
  font-family: "Outfit", sans-serif;
  font-size: min(8rem, 4vw);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(45, 66, 169, 0.33);
}

.top-mv__copyJp {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0px 1px 4px rgba(45, 66, 169, 0.9);
  margin: 10px 0 auto;
}

.top-mv__crowding {
  width: 328px;
  min-height: 70px;
  max-width: 100%;
  background-color: #3351BF;
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 15px;
  font-size: 1.3rem;
  font-weight: bold;
  gap: 10px;
  align-self: flex-end;
}
.top-mv__crowding:before {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_people.svg) no-repeat center;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}
.top-mv__crowding i {
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  color: #3351BF;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 10px);
  right: 20px;
}

.top-mv__important {
  background: #fff;
  color: #E30012;
  border-radius: 8px;
}
.top-mv__important a {
  display: flex;
  align-items: center;
  gap: 5px 10px;
  padding: 5px 50px 5px 35px;
  position: relative;
}
.top-mv__important a:not(:hover) .top-mv__important__ttl {
  text-decoration: underline;
}
.top-mv__important a i {
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #E30012;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 10px);
  right: 20px;
}

.top-mv__important__hdg {
  background: #E30012;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  padding: 5px;
}

.top-mv__important__date {
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  flex: 0 0 auto;
}

.top-mv__important__cat {
  line-height: 1.4;
  font-size: min(1.1rem, 2.66vw);
  color: #E30012;
  border: 1px solid #E30012;
  align-self: center;
  min-width: min(100px, 18.66vw);
  padding: 4px 10px;
  text-align: center;
  border-radius: 999px;
}

.top-mv__important__ttl {
  font-size: min(1.5rem, 3.46vw);
  font-weight: 500;
}

@media screen and (min-width: 1101px) {
  .top-mv__important {
    display: flex;
  }
  .top-mv__important a {
    width: calc(100% - 150px);
  }
  .top-mv__important__ttl {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .top-mv__important__hdg {
    width: 150px;
    min-height: 62px;
    border-radius: 8px 0 0 8px;
  }
}
@media screen and (max-width: 1100px) {
  .top-mv__inner {
    padding: 50px 30px 27px 30px;
  }
  .top-mv__important a {
    flex-wrap: wrap;
    padding: 15px 20px;
    line-height: 1.6;
  }
  .top-mv__important a i {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .top-mv__important__cat {
    padding: 2px 5px;
  }
}
.top-status__dateWrap {
  width: 141px;
  background: #3351BF;
  color: #fff;
  position: absolute;
  top: -17px;
  left: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
}

.top-status__year {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.top-status__date {
  font-size: min(2.93vw, 1.8rem);
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 0.75;
  width: fit-content;
  margin: 0 auto 5px;
}

.top-status__date__num {
  font-size: 4rem;
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
}

.top-status__week {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
}

.top-status__time {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 5px;
}

.top-status__today {
  text-align: center;
  width: fit-content;
  margin-bottom: 10px;
}

.top-status__today__hdg {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.top-status__today__condition {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.top-status__today__condition:before {
  content: "";
  flex: 0 0 40px;
  width: 40px;
  aspect-ratio: 1/1;
  background: url(../img/top/stasus_today_circle.svg) no-repeat center/contain;
  display: inline-block;
}
.top-status__today__condition.--small {
  font-size: min(3rem, 7vw);
}
.top-status__today__condition.--abnormal:before {
  background-image: url(../img/top/stasus_today_cross.svg);
}

.top-status__today__reserve {
  font-size: 1.2rem;
  border: 1px solid #009B6C;
  background: #DEFBF2;
  color: #009B6C;
  font-weight: bold;
  border-radius: 999px;
  line-height: 1.2;
  padding: 4px 20px;
  width: fit-content;
  margin: 10px auto;
}
.top-status__today__reserve.--red {
  border: 1px solid #E30012;
  background: #FFEBEC;
  color: #E30012;
}

.top-status__today__note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #858C92;
}

.top-status__dl__inner {
  display: flex;
  justify-content: space-between;
  background: #F9F9F8;
  border-radius: 5px;
}
.top-status__dl__inner:nth-of-type(n+2) {
  margin-top: 10px;
}

.top-status__dt {
  width: 85px;
  background: #3351BF;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
}

.top-status__dd {
  width: calc(100% - 85px);
  padding: 12px 15px;
  font-size: 1.3rem;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .top-status__dl__inner.--opening .top-status__dd {
    background: url(../img/top/image_ropeway.png) no-repeat top 10px right 25px;
  }
}

.top-status__dd__list__item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.top-status__dd__list__item:nth-of-type(n+2) {
  margin-top: 7px;
}

.top-status__dd__list__cat {
  display: block;
  width: 73px;
  flex: 0 0 73px;
  border: 1px solid #3351BF;
  border-radius: 999px;
  background: #fff;
  color: #3351BF;
  text-align: center;
  line-height: 18px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
}

.top-status__dd__list__cat__nobori,
.top-status__dd__list__cat__kudari {
  transform: rotate(40deg);
  display: inline-block;
  font-style: normal;
  font-size: 1.2rem;
}

.top-status__dd__list__text {
  font-size: 1.3rem;
  line-height: 20px;
  font-weight: 700;
}
.top-status__dd__list__text.--time {
  font-size: 1.5rem;
  font-weight: 500;
}

.top-status__dd__busTime {
  font-family: "Google Sans", sans-serif;
  font-size: 3.3rem;
  font-weight: bold;
  color: #3351BF;
}

.top-status__dd__busTimeSmall {
  font-size: 1.6rem;
  font-weight: bold;
  color: #3351BF;
}

.top-status__reserve {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  background: url(../img/top/status_reserve_ticket.svg) no-repeat top 50% left 24px;
  background-color: #FF752D;
  display: block;
  color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 12px 0 11px;
  margin-top: 20px;
}
.top-status__reserve i {
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  color: #FF752D;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 10px);
  right: 20px;
}

@media screen and (min-width: 769px) {
  .top-status__dd__list__item.--small {
    margin-top: 5px;
  }
  .top-status__dd__list__item.--small .top-status__dd__list__cat {
    font-size: 1rem;
    line-height: 14px;
  }
  .top-status__dd__list__item.--small .top-status__dd__list__text {
    font-size: 1rem;
    line-height: 16px;
  }
}
@media screen and (min-width: 901px) {
  .top-status__dateWrap {
    aspect-ratio: 1/1;
    border: 3px solid #fff;
    flex-direction: column;
  }
  .top-status__dl {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-status__today {
    padding-left: 95px;
  }
  .top-status__date {
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 900px) {
  .top-mv__swiper,
  .top-mv__swiper-pagination,
  .top-mv__copyEn,
  .top-mv__copyJp,
  .top-status__reserve {
    display: none;
  }
  .top-mv__crowding {
    width: 100%;
  }
  .top-status__spBox {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
  }
  .top-mv {
    flex-direction: column-reverse;
    background: url(../img/top/main_image_sp.jpg) no-repeat center/cover;
    gap: 15px;
  }
  .top-mv__inner {
    width: 100%;
    padding: 0;
    gap: 15px;
  }
  .top-status {
    width: 100%;
    border: none;
    background: transparent;
  }
  .top-status__dateWrap {
    position: static;
    width: 100%;
    border-radius: 9999px;
    margin-bottom: 15px;
    padding: 10px 20px;
    gap: 5px;
  }
  .top-status__date {
    margin: 0;
  }
  .top-status__today {
    margin: 0 auto 10px;
  }
  .top-status__year {
    margin: 0;
  }
  .top-status__date__num {
    font-size: min(4.8vw, 3rem);
  }
}
@media screen and (max-width: 450px) {
  .top-mv {
    padding: 10px 13px 20px;
  }
  .top-status {
    padding: 0;
  }
  .top-status__dateWrap {
    padding: 5px;
    margin-bottom: 7px;
  }
  .top-status__today__condition:before {
    content: "";
    flex: 0 0 35px;
    width: 35px;
  }
  .top-status__spBox {
    padding: 20px 15px;
  }
  .top-status__dl__inner {
    flex-direction: column;
  }
  .top-status__dt {
    width: 100%;
    flex-direction: row;
    align-items: center;
    font-size: 1.2rem;
  }
  .top-status__dd {
    width: 100%;
    padding: 10px;
  }
  .top-status__dd.--bus {
    text-align: center;
  }
  .top-status__dt__ico {
    font-size: 0;
  }
  .top-status__dt__ico img {
    height: 12px;
  }
  .top-status__dd__list__cat {
    width: 54px;
    flex: 0 0 54px;
    line-height: 15px;
    font-size: 1rem;
    padding-bottom: 1px;
  }
  .top-status__dd__list__text {
    line-height: 17px;
  }
  .top-status__dd__busTime {
    font-size: 2.2rem;
  }
  .top-status__dd__busTimeSmall {
    font-size: 1.4rem;
  }
}
.top-about {
  background: #3351BF;
  padding: 57px 0 82px;
}

.top-about__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}

.top-about__list__item {
  width: calc(25% - 10px);
  background: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 22px;
  position: relative;
}

.top-about__list__hdg {
  font-size: min(2rem, 3.73vw);
  font-weight: 800;
  line-height: 1.5;
  margin-top: 7px;
}

.top-about__list__hdg__en {
  display: block;
  font-family: "Google Sans", sans-serif;
  font-size: min(1.2rem, 2.13vw);
  font-weight: bold;
  color: #3351BF;
}

.top-about__list__place {
  position: absolute;
  top: -9px;
  left: -24px;
  background: #3351BF;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  width: 93px;
  aspect-ratio: 1/1;
  font-size: 1.6rem;
  line-height: 1.3;
  border-radius: 50%;
  font-weight: bold;
}

.top-about__precautionsHdg {
  color: #fff;
  font-size: min(3rem, 5.86vw);
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  margin: 50px 0 25px;
}

.top-about__precaution {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 0;
}

.top-about__precaution__item {
  width: calc(50% - 10px);
  padding: 20px 35px 30px 25px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 10px;
}

.top-about__precaution__ico {
  border: 1px solid #E30012;
  border-radius: 6px;
  width: 40px;
  aspect-ratio: 1/1;
  background: #FFEBEC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.top-about__precaution__ttl {
  font-size: min(2.4rem, 4.26vw);
  font-weight: 800;
  line-height: 1.3;
  align-self: center;
}

.top-about__precaution__text {
  grid-column: 2/span 3;
  grid-row: 2/span 3;
  font-size: min(1.5rem, 3.4vw);
  font-weight: 600;
  color: #A0ADB8;
  line-height: 1.8;
}

.top-about__paymentIco {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 1101px) {
  .top-about__list__item {
    max-width: 300px;
  }
}
@media screen and (max-width: 1100px) {
  .top-about__list__item {
    width: calc(50% - 10px);
  }
  .top-about__list__place {
    left: -10px;
  }
}
@media screen and (max-width: 768px) {
  .top-about__precaution__item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .top-about__list__item {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
  }
  .top-about__list {
    gap: 12px;
  }
  .top-about__list__ico img {
    width: 40px;
  }
  .top-about__list__place {
    font-size: 0.9rem;
    width: 50px;
  }
}
@media screen and (max-width: 450px) {
  .top-about__precaution__item {
    padding: 15px;
    border-radius: 6px;
    gap: 5px 10px;
  }
  .top-about__precaution__text {
    grid-column: 1/span 3;
  }
}
.top-information {
  padding: 65px 0 55px;
}

.top-information__list__item {
  border-bottom: 1px solid #D9DCE1;
}
.top-information__list__item a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: min(28px, 4.8vw);
}
.top-information__list__item a:hover {
  opacity: 1;
}
.top-information__list__item a:hover .top-information__list__ttl {
  text-decoration: underline;
}
.top-information__list__item:nth-of-type(n+2) a {
  padding-top: min(28px, 4.8vw);
}

.top-information__list__text {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}

.top-information__list__image {
  flex: 0 0 min(180px, 32.5vw);
}
.top-information__list__image img {
  border-radius: 8px;
}

.top-information__list__date {
  font-family: "Inter Tight", sans-serif;
  font-size: min(1.4rem, 2.93vw);
  font-weight: bold;
  line-height: 1.4;
  align-self: center;
}

.top-information__list__cat {
  line-height: 1.4;
  font-size: min(1.1rem, 2.66vw);
  color: #3351BF;
  border: 1px solid #3351BF;
  align-self: center;
  min-width: min(100px, 18.66vw);
  padding: 4px 10px;
  text-align: center;
  border-radius: 999px;
}

.top-information__list__ttl {
  width: 100%;
  line-height: 1.2;
  font-size: min(1.5rem, 3.46vw);
  font-weight: 500;
}

.top-information__list__excerpt {
  width: 100%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #A0ADB8;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.8;
}

@media screen and (min-width: 451px) {
  .top-information__list__date {
    width: 103px;
  }
}
@media screen and (max-width: 450px) {
  .top-information__list__excerpt {
    display: none;
  }
  .top-information__list__cat {
    padding: 2px 5px;
  }
}
.top-topics {
  padding: 60px 0 45px;
  background: #F9F9F8;
  overflow-y: visible;
  overflow-x: hidden;
}

.top-topics__swiper {
  position: relative;
}

.top-topics__swiper-slide {
  width: auto;
}
@media screen and (max-width: 625px) {
  .top-topics__swiper-slide {
    max-width: min(405px, 66.66vw);
  }
}

.top-topics__swiper-slide__hdg {
  font-size: min(1.4rem, 3.2vw);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
}
.top-topics__swiper-slide__hdg:not(:hover) {
  text-decoration: underline;
}

.swiper-button-prev,
.swiper-button-next {
  width: min(70px, 10.6vw);
  height: auto;
  aspect-ratio: 1/1;
  background-color: rgba(51, 81, 191, 0.8);
  background-position: center;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  top: calc(50% - 24px);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: min(1.7rem, 2.6vw);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.top-topics__swiper-pagination.swiper-pagination-horizontal.swiper-pagination-bullets {
  position: static;
  margin-top: 20px;
}
.top-topics__swiper-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: min(15px, 2.93vw);
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 min(6px, 1.06vw);
}
.top-topics__swiper-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #3351BF;
}

@media screen and (min-width: 1101px) {
  .top-topics__swiper {
    overflow: hidden;
  }
  .swiper-button-prev {
    transform: translateX(-50%);
  }
  .swiper-button-next {
    transform: translateX(50%);
  }
}
@media screen and (max-width: 450px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(50% - 2.4vw);
  }
}
.top-links {
  padding: 50px 0 70px;
}

.top-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
}

.top-links__list__item {
  width: calc((100% - 52px) / 3);
  background: #404048;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}
.top-links__list__item a {
  display: flex;
  flex-direction: row-reverse;
}

.top-links__list__image img {
  height: 100%;
  object-fit: cover;
}

.top-links__list__text {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px 0;
  padding-top: 10px;
}

.top-links__list__ttl {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.top-links__list__ico {
  position: relative;
}
.top-links__list__ico img {
  position: relative;
  z-index: 2;
}
.top-links__list__ico:after {
  content: "";
  width: 30px;
  aspect-ratio: 1/1;
  background: #5F5F68;
  border-radius: 50%;
  opacity: 0.73;
  position: absolute;
  top: -13px;
  left: -10px;
}

.top-links__bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 32px;
}

.top-links__bnr__item {
  max-width: calc(25% - 9px);
}

.top-links__bnr02 {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin-top: 12px;
}

.top-links__bnr02__item {
  max-width: calc((100% - 34px) / 3);
}

@media screen and (max-width: 930px) {
  .top-links__list {
    gap: 12px 20px;
  }
  .top-links__list__item {
    width: calc(50% - 10px);
  }
  .top-links__list__item a {
    flex-direction: column;
  }
  .top-links__list__image {
    aspect-ratio: 165/100;
  }
  .top-links__list__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 165/100;
  }
  .top-links__list__text {
    flex-direction: row;
    width: 100%;
    padding: 10px;
    gap: 7px;
    font-size: 1.4rem;
  }
  .top-links__list__ico {
    align-self: center;
    padding-bottom: 5px;
  }
  .top-links__list__ico img {
    zoom: 0.6;
  }
  .top-links__list__ico:after {
    width: 14px;
    top: 3px;
    left: -7px;
  }
}
@media screen and (max-width: 768px) {
  .top-links__bnr {
    gap: 5px 8px;
  }
  .top-links__bnr__item {
    max-width: calc(50% - 4px);
  }
  .top-links__bnr02 {
    gap: 10px;
    margin-top: 10px;
  }
  .top-links__bnr02__item {
    max-width: calc((100% - 10px) / 3);
  }
}
.--english .main *,
.--french .main * {
  word-break: break-word;
}

.main.--english * {
  word-break: break-word;
}
.main.--english .top-status__dd__list__item {
  flex-wrap: wrap;
  gap: 1px 5px;
}
.main.--english .top-status__dd__list__item.--small .top-status__dd__list__cat {
  width: 90px;
  flex: 0 0 90px;
  font-size: 1rem;
}
.main.--english .top-status__today__condition {
  line-height: 1;
}
.main.--english .top-about__list__place {
  font-size: 1.1rem;
  line-height: 1.4;
}
.main.--english .top-status__dt {
  padding: 10px 0;
}
@media screen and (min-width: 1101px) {
  .main.--english .top-mv__important__hdg {
    width: 223px;
  }
  .main.--english .top-mv__important a {
    width: calc(100% - 223px);
  }
}
@media screen and (max-width: 600px) {
  .main.--english .top-about__list__place {
    font-size: 0.9rem;
    line-height: 1.3;
    width: 70px;
  }
}

.main.--french .top-status__dd__list__item {
  flex-wrap: wrap;
  gap: 1px 5px;
}
.main.--french .top-status__dd__list__item.--small .top-status__dd__list__cat {
  width: 100px;
  flex: 0 0 100px;
  font-size: 1rem;
}
@media screen and (max-width: 450px) {
  .main.--french .top-status__dd__list__cat:has(+ .--time) {
    flex: 0 0 75px;
  }
}

/***************************

object/object/project/_fare.scss

***************************/
.fare-time {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  margin-bottom: 25px;
}

.fare-time__opening {
  width: 28.4%;
}
.fare-time__opening .box01__contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.fare-time__travel {
  width: 69.7%;
}

.fare-time__opening__text {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.fare-time__opening__text__num {
  font-family: "Google Sans", sans-serif;
  font-size: 3.3rem;
  font-weight: bold;
  display: block;
}

@media screen and (max-width: 1100px) {
  .fare-time__opening {
    width: 100%;
  }
  .fare-time__travel {
    width: 100%;
  }
}
.fare-table {
  width: 100%;
  min-width: 470px;
}
.fare-table tbody {
  text-align: right;
}

.fare-table__age {
  text-align: left;
  background: #F9FAFB;
}

.fare-table__note {
  font-size: min(1.3rem, 2.93vw);
}

.fare-facilityBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  margin-bottom: 30px;
}

.fare-facilityBox__image {
  width: 100%;
  text-align: center;
}
.fare-facilityBox__image img {
  border-radius: 12px;
}

.fare-facilityBox__text {
  width: 100%;
}

.fare-facilityBox__root {
  line-height: 1.4;
  font-size: min(1.3rem, 2.93vw);
  color: #3351BF;
  border: 1px solid #3351BF;
  align-self: center;
  width: fit-content;
  padding: 1px 10px;
  text-align: center;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 15px;
}

.fare-facilityBox__note {
  text-indent: -1em;
  padding-left: 1em;
  font-size: min(1.3rem, 2.93vw);
}

@media screen and (min-width: 769px) {
  .fare-facilityBox {
    margin-bottom: 40px;
  }
  .fare-facilityBox__image {
    max-width: 450px;
    width: 35.2%;
  }
  .fare-facilityBox__text {
    max-width: 770px;
    width: 62.5%;
  }
}
.fare-crossSectionWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.fare-crossSectionWrap .box02 {
  max-width: 404px;
}

/***************************

object/object/project/_access.scss

***************************/
.access-mapWrap {
  border-radius: 12px;
  overflow: hidden;
}

.access-timetable {
  width: 100%;
}
.access-timetable th:nth-child(1) {
  width: 130px;
  text-align: center;
}

.access-timetableWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
}

.access-timetable__tdInner {
  display: flex;
  gap: 50px;
}

@media screen and (min-width: 769px) {
  .access-timetable:nth-of-type(1) {
    width: calc(50% + 65px);
  }
  .access-timetable:nth-of-type(1) .table-radius-top-right {
    border-radius: 0;
  }
  .access-timetable:nth-of-type(1) .table-radius-bottom-right {
    border-radius: 0;
  }
  .access-timetable:nth-of-type(2) {
    width: calc(50% - 65px);
    border-left: none;
  }
  .access-timetable:nth-of-type(2) .table-radius-top-left {
    border-radius: 0;
  }
  .access-timetable:nth-of-type(2) .table-radius-bottom-left {
    border-radius: 0;
  }
  .access-timetable:nth-of-type(2) th:nth-child(1) {
    display: none;
  }
  .access-timetable tbody th, .access-timetable tbody td {
    height: 65px;
  }
}
@media screen and (max-width: 450px) {
  .access-timetable th:nth-child(1) {
    width: 80px;
  }
  .access-timetable__tdInner {
    gap: 30px;
  }
}
.access-accessMap img {
  border-radius: 12px;
}

.access-information {
  background: #7A635C;
  color: #fff;
  border-radius: 12px;
  padding: 35px 20px 60px;
  position: relative;
}
@media screen and (min-width: 451px) {
  .access-information {
    text-align: center;
  }
}

.access-information__hdg {
  text-align: center;
  margin-bottom: 38px;
  padding: 0 60px;
}
@media screen and (max-width: 600px) {
  .access-information__hdg {
    padding-right: 0;
  }
}
@media screen and (max-width: 450px) {
  .access-information__hdg {
    padding-left: 0;
  }
}

.access-information__place {
  position: absolute;
  top: -25px;
  left: -37px;
  background: #7A635C;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #fff;
  width: 133px;
  aspect-ratio: 1/1;
  font-size: 2.1rem;
  line-height: 1.3;
  border-radius: 50%;
  font-weight: bold;
}
.access-information__place.--english {
  font-size: 1.6rem;
}
@media screen and (max-width: 1100px) {
  .access-information__place {
    left: -10px;
  }
}
@media screen and (max-width: 768px) {
  .access-information__place {
    font-size: 1.6rem;
    width: 90px;
    border: 3px solid #fff;
  }
  .access-information__place.--english {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 450px) {
  .access-information__place {
    font-size: 1rem;
    width: 60px;
    border: 2px solid #fff;
    top: -10px;
  }
  .access-information__place.--english {
    font-size: 0.8rem;
    top: -25px;
  }
}

.access-information__box {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 80px;
}

.access-information__box__text {
  text-align: left;
}

.access-information__box__text__hdg {
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: min(1.3rem, 2.93vw);
  width: 126px;
  text-align: center;
  margin-bottom: 15px;
}
.access-information__box__text__hdg:nth-of-type(n+2) {
  margin-top: 28px;
}

.access-information__box__image {
  text-align: center;
}
.access-information__box__image img {
  border-radius: 12px;
}

/***************************

object/object/project/_course.scss

***************************/
.course-please {
  display: flex;
  align-items: flex-start;
  gap: min(20px, 4vw);
}
.course-please + .course-please {
  margin-top: min(20px, 4vw);
}

.course-please__ico {
  flex: 0 0 auto;
}

/***************************

object/object/project/_history.scss

***************************/
.history-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 20px 0;
}

.history-top__text {
  width: 48.4%;
  max-width: 570px;
}

.history-top__swiper {
  width: 49.2%;
  position: relative;
}

.history-top__swiper-slide img {
  border-radius: 12px;
}

.history-top__swiper-pagination {
  bottom: 0;
  right: 0;
  text-align: right;
  padding-right: 15px;
}
.history-top__swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
.swiper-horizontal > .history-top__swiper-pagination .swiper-pagination-bullet {
  margin: 0 6px;
}
.history-top__swiper-pagination .swiper-pagination-bullet-active {
  background: #3351BF;
}

@media screen and (max-width: 768px) {
  .history-top {
    justify-content: center;
  }
  .history-top__text {
    width: 100%;
  }
  .history-top__swiper {
    width: 100%;
    max-width: 630px;
  }
}
.history-tab .tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 35px;
  border-bottom: 1px solid #ddd;
}
.history-tab .tab {
  width: calc((100% - 48px) / 5);
  background: #F5F7FD;
  text-align: center;
  border-radius: 12px 12px 0 0;
  padding: 18px 10px;
}
.history-tab .tab.--active {
  color: #fff;
  background: #3351BF;
}

.history-tab__contents {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 20px 0;
  padding-top: 40px;
}

.history-tab__contents__image {
  width: 66.6%;
}
.history-tab__contents__image img {
  border-radius: 12px;
}

.history-tab__contents__text {
  width: 31.3%;
}

@media screen and (min-width: 769px) {
  .history-tab__contents__text {
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .history-tab .tab-list {
    padding: 0;
    border-bottom: none;
  }
  .history-tab .tab {
    width: calc(50% - 10px);
    border-radius: 12px;
    padding: 10px;
  }
  .history-tab__contents__image {
    width: 100%;
  }
  .history-tab__contents__text {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .history-tab .tab-list {
    gap: 10px;
  }
  .history-tab .tab {
    width: calc(50% - 5px);
    padding: 5px;
  }
  .history-tab__contents {
    padding-top: 25px;
  }
}
.history-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 27px;
}

.history-modal__item {
  width: calc((100% - 81px) / 4);
}
.history-modal__item > a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.history-modal__item > a:hover {
  opacity: 1;
}
.history-modal__item > a:hover .history-modal__item__ttl {
  opacity: 1;
}
.history-modal__item > a:after {
  content: "";
  width: 45px;
  aspect-ratio: 1/1;
  background: url(../img/history/modal_icon.svg) no-repeat center/contain;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 2;
}

.history-modal__item__ttl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(74, 74, 80, 0.66);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: min(2.8rem, 5.33vw);
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}

.history-modal__wrapper {
  background: #fff;
  border: 1px solid #E1DEDE;
  border-radius: 30px;
  padding: 65px 20px;
  max-width: 1280px;
  width: 90vw;
  max-height: 90vh;
  overflow: auto;
}

.history-modal__contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.history-modal__swiper {
  overflow: hidden;
}

.history-modal__swiper-slide img {
  border-radius: 12px;
}

.history-thumb__swiper {
  overflow: hidden;
}

.history-thumb__swiper-slide {
  max-width: 105px;
}
.history-thumb__swiper-slide img {
  border-radius: 8px;
  aspect-ratio: 105/70;
  object-fit: cover;
}

.history-modal__contents__image {
  max-width: 420px;
  width: 37.5%;
}

.history-thumb__swiper {
  margin-top: 12px;
}

.history-modal__contents__text {
  width: 60.4%;
  max-width: 620px;
}

.history-modal__contents__text__hdg {
  font-size: min(2.8rem, 5.33vw);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
}

.history-thumb__swiper-slide:not(.swiper-slide-thumb-active) {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .history-modal {
    gap: 25px 20px;
  }
  .history-modal__item {
    width: calc(50% - 10px);
  }
  .history-modal__contents__text {
    width: 100%;
  }
  .history-modal__contents__image {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .history-modal {
    gap: 10px;
  }
  .history-modal__item {
    width: calc(50% - 5px);
  }
  .history-modal__contents__text__hdg {
    margin-bottom: 15px;
  }
}
.history-box {
  background: #fff;
  border: 1px solid #E1DEDE;
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
}
.history-box:has(.history-box__image) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 20px;
}

@media screen and (min-width: 769px) {
  .history-box > * {
    width: 100%;
  }
  .history-box__text {
    width: calc(100% - 255px);
  }
  .history-box__image {
    width: 235px;
  }
}
@media screen and (max-width: 768px) {
  .history-box__image {
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .history-box {
    margin-top: 20px;
    padding: 20px;
  }
}
/***************************

object/object/project/_sanctuary.scss

***************************/
.sanctuary-box {
  background: #FFF5F7;
  border-radius: 22px;
  padding: 40px 40px 55px;
}

.sanctuary-box__hdg {
  color: #E30012;
  margin-bottom: 35px;
}

.sanctuary-box__hdg__jp {
  text-align: center;
  font-size: min(3.6rem, 5.86vw);
  font-weight: bold;
}

.sanctuary-box__hdg__en {
  font-family: "Outfit", sans-serif;
  font-size: min(1.8rem, 4.26vw);
  font-weight: 200;
  text-align: center;
  margin-top: 5px;
}

.sanctuary-box__place {
  line-height: 1.4;
  font-size: min(1.3rem, 2.93vw);
  border: 1px solid #4A4A50;
  align-self: center;
  width: fit-content;
  padding: 1px 20px;
  text-align: center;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 15px;
  margin: 0 auto 5px;
}

.sanctuary-box__hdg02-en {
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}
.sanctuary-box__hdg02-en:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #FFCBCD;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  z-index: 1;
}

.sanctuary-box__hdg02-en__inner {
  display: inline-block;
  background: #FFEEF1;
  padding: 0 12px;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: #ee5f6b;
  position: relative;
  z-index: 2;
}

.sanctuary-box__hdg02 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}

.sanctuary-box__en {
  font-size: 1.2rem;
  color: #928e93;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}

.sanctuary-box__image2column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.sanctuary-box__image__item {
  max-width: calc(50% - 12px);
}
.sanctuary-box__image__item img {
  border-radius: 12px;
}

.sanctuary-box02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 20px;
  margin-top: min(60px, 8vw);
}

.sanctuary-box02__image {
  width: 100%;
  text-align: center;
}
.sanctuary-box02__image img {
  border-radius: 12px;
}

@media screen and (min-width: 769px) {
  .sanctuary-box02__text {
    width: calc(100% - 226px);
  }
  .sanctuary-box02__image {
    width: 186px;
  }
}
@media screen and (max-width: 450px) {
  .sanctuary-box {
    padding: 20px;
  }
}
/***************************

object/object/project/_information.scss

***************************/
.information-catNav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 60px;
}

.information-catNav__item a {
  line-height: 1.4;
  font-size: min(1.1rem, 2.66vw);
  color: #3351BF;
  border: 1px solid #3351BF;
  align-self: center;
  min-width: min(100px, 18.66vw);
  padding: 4px 10px;
  text-align: center;
  border-radius: 999px;
  display: inline-block;
}
.information-catNav__item.--active a {
  background: #3351BF;
  color: #fff;
}

.informationDetail-hdg {
  border-bottom: 1px solid #D9DCE1;
  margin: 10px 0 25px;
  font-size: min(2.8rem, 5.86vw);
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 20px;
}

.informationDetail-contents {
  border-bottom: 1px solid #D9DCE1;
  margin-bottom: 30px;
  padding-bottom: 60px;
}

.informationDetail-thumb {
  margin-bottom: 20px;
}
.informationDetail-thumb img {
  border-radius: 8px;
}

/***************************

object/object/project/_home.scss

***************************/
.contact-req {
  display: inline-block;
  line-height: 1.2;
  font-size: 1rem;
  color: #fff;
  background: #3351BF;
  align-self: center;
  width: 40px;
  padding: 2px 5px;
  text-align: center;
  border-radius: 999px;
}
.dl-type01 dt .contact-req {
  margin-right: 5px;
  transform: translateY(-2px);
}

@media screen and (min-width: 769px) {
  .dl-type01.--contact dt {
    padding-top: 30px;
  }
  .dl-type01.--questionnaire dt {
    width: 300px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .dl-type01.--questionnaire dd {
    width: calc(100% - 300px);
  }
}
.contact-privacy {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin: 50px 0 35px;
}

/***************************

object/object/project/_safety.scss

***************************/
.safety_title {
  font-size: min(2.8rem, 5.33vw);
  line-height: 1.4;
  font-weight: bold;
  color: #3351BF;
  margin-bottom: 25px;
  margin-top: min(60px, 8vw);
}

.safety_right {
  text-align: right;
  margin-top: 20px;
}

.safety_dl01:nth-of-type(n+2) {
  margin-top: 20px;
}
.safety_dl01 dt {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.safety_dl01 dt:nth-of-type(n+2) {
  margin-top: 20px;
}
.safety_dl01 dd {
  padding-left: 1.5em;
}

.safety_li01 li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.safety_li02 li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.safety_divimg {
  border: 1px solid #A0ADB8;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
}
@media screen and (max-width: 450px) {
  .safety_divimg {
    padding: 20px;
  }
}

.safety_dlimg {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
}
.safety_dlimg dt {
  margin-top: 15px;
  text-align: center;
}

.safety-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 25px;
}

.safety-archive__item {
  width: 300px;
  max-width: calc(50% - 12.5px);
}
.safety-archive__item a {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 8px;
  background: #3351BF;
  color: #fff;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  min-height: min(62px, 12.5vw);
  font-weight: 500;
  padding: 5px 30px;
}
.safety-archive__item a i {
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  color: #3351BF;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 12px);
  right: 20px;
}

@media screen and (max-width: 768px) {
  .safety-archive {
    gap: 20px;
  }
  .safety-archive__item {
    width: 100%;
    max-width: calc(50% - 10px);
  }
  .safety-archive__item a {
    padding: 5px 30px 5px 20px;
  }
  .safety-archive__item a i {
    width: 20px;
    font-size: 1rem;
    top: calc(50% - 10px);
    right: 10px;
  }
}
@media screen and (max-width: 450px) {
  .safety-archive {
    gap: 10px;
  }
  .safety-archive__item {
    width: 100%;
    max-width: calc(50% - 5px);
  }
  .safety-archive__item a {
    padding: 5px 28px 5px 10px;
    font-size: 1.1rem;
  }
  .safety-archive__item a i {
    width: 16px;
    font-size: 0.8rem;
    top: calc(50% - 8px);
    right: 8px;
  }
}
/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--underline {
  text-decoration: underline;
}

.link--underline:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }
  .t-left_pc {
    text-align: left;
  }
  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-semibold {
  font-weight: 600;
}

.f-normal {
  font-weight: normal;
}

.indent--05 {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--2-5 {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--white {
  color: #fff;
}

.fc--black {
  color: #4A4A50;
}

.fc--red {
  color: #E30012;
}

.fc--blue {
  color: #3351BF;
}

.txtdeco-none {
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}/*# sourceMappingURL=style.css.map */