@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
body {
  background-color: #f1f2f2;
}

main {
  border-top: solid 1px transparent;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-area-label {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 14px;
  row-gap: 0.875rem;
  padding: 32px 24px 32px;
  padding: 2rem 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .c-area-label {
    padding: 2.5rem 4.375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-area-label__item {
  background-color: #eeeeee;
  border-radius: 0.25rem;
  display: inline-block;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
  line-height: 1.1;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-area-label__item {
    font-size: 0.875rem;
  }
}

.c-area-label__item.current {
  background-color: #23263e;
  color: #ffffff;
}

.c-blog-card {
  height: 100%;
}

.c-blog-card__image {
  aspect-ratio: 350/217;
  overflow: hidden;
}

.c-blog-card__image--top {
  aspect-ratio: 1/1;
}

.c-blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.c-blog-card__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-blog-card__content {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-blog-card__content {
    margin-top: 1.25rem;
  }
}

.c-blog-card__label {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-weight: 400;
  color: #23263e;
}

.c-blog-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.75;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-blog-card__title {
    line-height: 1.4;
    font-size: 1.125rem;
  }
}

.c-blog-card__text {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.c-blog-card__text p {
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.c-blog-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-blog-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}

.c-blog-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.other-label {
  margin-bottom: auto;
}

.c-blog-detail__button {
  margin-top: auto;
}

.c-blog-cards {
  width: 96.5%;
  margin-inline: auto;
  max-width: 570px;
  max-width: 35.625rem;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-blog-cards {
    max-width: none;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .c-blog-cards--2col {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}

.c-blog-cards__item {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.c-blog-cards p,
.noSearch-results {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-blog-cards p,
  .noSearch-results {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.c-blog-detail-card {
  height: 100%;
}

.c-blog-detail-card__image {
  aspect-ratio: 312/193;
  width: 100%;
  overflow: hidden;
}

.c-blog-detail-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.c-blog-detail-card__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-blog-detail-card__content {
  margin-top: 16px;
  margin-top: 1rem;
}

.c-blog-detail-card__label {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #23263e;
}
@media screen and (min-width: 768px) {
  .c-blog-detail-card__label {
    font-size: 0.8125rem;
  }
}

.c-blog-detail-card__title {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.c-blog-detail-card__text {
  margin-top: 8px;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.c-blog-detail__button {
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-blog-detail__button {
    margin-top: 1.5rem;
  }
}

.c-breadcrumbs {
  text-align: left;
  color: #222222;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  gap: 1.25rem;
}

.c-breadcrumbs__inner > span:not(:last-child) {
  position: relative;
  display: inline-block;
  margin-right: 37px;
  margin-right: 2.3125rem;
}

.c-breadcrumbs__inner > span :hover {
  opacity: 0.7;
}

.c-breadcrumbs__inner > span:first-child {
  padding-left: 22px;
  padding-left: 1.375rem;
}

.c-breadcrumbs__inner .current-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  cursor: default;
  opacity: 1;
}

.c-breadcrumbs__inner > span:first-child::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 12px;
  height: 0.75rem;
  background-image: url("../images/common/icon-home.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.c-breadcrumbs__inner > span:not(:last-child):after {
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 10px;
  height: 0.625rem;
  display: block;
  background-image: url("../images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  top: 0.1875rem;
  right: -19.5px;
}

.c-breadcrumbs__item--white::after {
  background-image: url("../images/common/arrow-right-white.svg");
}

.button-base {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #23263e;
  color: #ffffff;
  border-radius: 0.25rem;
  line-height: 1;
  width: 160px;
  width: 10rem;
  height: 40px;
  height: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  border: solid 1px #ffffff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .button-base {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .button-base--mega-menu {
    width: 8.25rem;
    height: 1.875rem;
  }
}

.c-button-blog {
  display: inline-block;
  position: relative;
  padding: 18px 68px;
  padding: 1.125rem 4.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #23263e;
  color: #ffffff;
  border: solid 1px #23263e;
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-button-blog {
    font-size: 1rem;
    padding: 1.0625rem 3.75rem;
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }
}

.c-button-blog--detail {
  width: 100%;
  padding: 18px 0;
  padding: 1.125rem 0;
  text-align: center;
}

.c-button-blog::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
}

.c-button-blog:hover {
  background-color: #23263e;
  color: #222222;
  font-weight: 700;
  border: solid 1px #222222;
}

.c-button-blog::before {
  position: absolute;
  top: 19px;
  right: 16px;
  content: "";
  width: 6px;
  height: 12px;
  background-image: url("../images/common/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

.c-button-blog:hover:before {
  background-image: url("../images/common/arrow-right.svg");
}

.c-button-blog:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-button-blog__text {
  position: relative;
  z-index: 2;
}

.button-language {
  position: relative;
  background-image: url("../images/common/icon-world.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .button-language {
    width: auto;
    height: auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background-size: 1rem;
    background-position: center left 0.5rem;
    color: #ffffff;
    border: solid 1px #ffffff;
    border-radius: 0.25rem;
    line-height: 1;
    padding: 0.4375rem 0.625rem 0.375rem 2rem;
    width: 6.25rem;
  }
}

.button-language:hover {
  opacity: 0.7;
}

.button-language__label {
  display: none;
}
@media screen and (min-width: 768px) {
  .button-language__label {
    display: inline-block;
  }
}

.button-reservation {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #23263e;
  border-radius: 3.75rem;
  text-align: center;
  width: 350px;
  width: 21.875rem;
  height: 48px;
  height: 3rem;
  overflow: hidden;
  line-height: 1;
  position: relative;
}
.button-reservation:hover {
  opacity: 0.7;
}

.button-reservation__text {
  position: relative;
  display: inline-block;
  color: #ffffff;
  padding-left: 32px;
  padding-left: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .button-reservation__text {
    padding-left: 1.75rem;
    font-size: 1rem;
  }
}

.button-reservation::before {
  content: "";
  position: absolute;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  left: 16px;
  top: 30%;
  background-image: url("../images/common/icon-calender-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.button-reservation._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #23263e;
  color: #ffffff;
  border-radius: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  border: solid 1px #ffffff;
  margin: 32px auto 0;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .button-reservation._nav {
    display: none;
  }
}

.c-button-view {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  position: relative;
  -webkit-transition: -webkit-transform 3s;
  transition: -webkit-transform 3s;
  transition: transform 3s;
  transition: transform 3s, -webkit-transform 3s;
}

.c-button-view::after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #23263e;
  padding-right: 32px;
  padding-right: 2rem;
  position: absolute;
  bottom: -4px;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-button-view--reverse::after {
  background-color: #ffffff;
}

.c-button-view:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.c-button-view__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.c-button-view__text {
  text-transform: uppercase;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-button-view__text {
    font-size: 1rem;
  }
}

.c-button-view__arrow-wrapper {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-color: #222222;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25rem 1.25rem;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .c-button-view__arrow-wrapper {
    grid-template-columns: 1.5rem 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-button-view__arrow-left,
.c-button-view__arrow-right {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .c-button-view__arrow-left,
  .c-button-view__arrow-right {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-button-view__arrow-left img,
.c-button-view__arrow-right img {
  width: 5px;
  height: auto;
}

.c-button-view:hover .c-button-view__arrow-right {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.c-button-view:hover .c-button-view__arrow-left {
  -webkit-transform: translateX(36px);
          transform: translateX(36px);
}

.c-button-view__arrow-wrapper--reverse {
  background-color: #ffffff;
}

.c-button-view__arrow-wrapper--reverse .c-button-view__text {
  color: #ffffff;
}

.c-button-viewmore__wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  position: relative;
  -webkit-transition: -webkit-transform 3s;
  transition: -webkit-transform 3s;
  transition: transform 3s;
  transition: transform 3s, -webkit-transform 3s;
}

.c-button-viewmore__wrapper::after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #23263e;
  padding-right: 32px;
  padding-right: 2rem;
  position: absolute;
  bottom: -4px;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-button-viewmore__wrapper:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.c-button-viewmore {
  text-transform: uppercase;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.c-button-viewmore__text {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-button-viewmore__text {
    font-size: 1rem;
  }
}

.c-button-viewmore__text::after {
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-color: #222222;
  border-radius: 24px;
  position: absolute;
  top: 0;
  right: -34px;
  background-image: url("../images/common/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: 5px;
  background-position: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-button-viewmore__text::after {
    width: 1.5rem;
    height: 1.5rem;
    right: -32px;
  }
}

.c-button-viewmore__wrapper--reverse::after {
  background-color: #ffffff;
}

.c-button-viewmore__wrapper--reverse .c-button-viewmore__text::after {
  background-color: #ffffff;
  background-image: url("../images/common/arrow-right.svg");
}

.c-button-viewmore__wrapper--sitemap .c-button-viewmore__text {
  position: relative;
}

.c-button-viewmore__wrapper--sitemap .c-button-viewmore__text::after {
  background-color: transparent;
  left: -16px;
  background-image: url("../images/common/arrow-right.svg");
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-button-viewmore__wrapper--sitemap .c-button-viewmore__text::after {
    left: -24px;
  }
}

.c-button {
  display: inline-block;
  position: relative;
  padding: 17px 0;
  padding: 1.0625rem 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  background-color: #ffffff;
  border: solid 1px #23263e;
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  width: 300px;
  width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .c-button {
    width: 20rem;
    font-size: 1rem;
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }
}

.c-button--reverse {
  background-color: #23263e;
  border: solid 1px #ffffff;
}

.c-button--goback {
  background-color: rgba(245, 245, 245, .9607843137);
  width: 302px;
  width: 18.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-button--goback {
    width: 20rem;
  }
}

.c-button::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #23263e;
  border: 1px solid #23263e;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
}

.c-button--reverse::after {
  background-color: #ffffff;
  color: #23263e;
  border: solid 1px #ffffff;
}

.c-button::before {
  position: absolute;
  top: 20px;
  right: 16px;
  content: "";
  width: 6px;
  height: 12px;
  background-image: url("../images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

.c-button--reverse::before {
  background-image: url("../images/common/arrow-right-white.svg");
}

.c-button:hover:before {
  background-image: url("../images/common/arrow-right-white.svg");
}

.c-button--reverse:hover:before {
  background-image: url("../images/common/arrow-right.svg");
}

.c-button:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-button__text {
  position: relative;
  color: #222222;
  z-index: 6;
}

.c-button--reverse .c-button__text {
  color: #ffffff;
}

.c-button:hover .c-button__text {
  position: relative;
  color: #ffffff;
  z-index: 9;
}

.c-button--reverse:hover .c-button__text {
  color: #23263e;
}

.c-button._navy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #23263e;
  margin: 0 auto;
  width: 100%;
}
.c-button._navy::before {
  background-image: url(../images/common/arrow-right-white.svg);
}
.c-button._navy::after {
  background-color: #fff;
}
.c-button._navy:hover::before {
  background-image: url(../images/common/arrow-right.svg);
}
.c-button._navy:hover .c-button__text {
  color: #23263e;
}
.c-button._navy .c-button__text {
  color: #fff;
}

.c-card-brand {
  width: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 0 88px;
  padding: 5rem 0 5.5rem;
}

.c-card-brand--white, .c-card-brand--main {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-card-brand--main {
  color: #ffffff;
  background-image: url("../images/top/top-brand-left.jpg");
}

.c-card-brand--white {
  background-image: url("../images/top/top-brand-right.jpg");
}

.c-card-brand__concept {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
}

.c-card-brand__concept > span {
  display: block;
}

@media screen and (min-width: 768px) {
  .c-card-brand__lead {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.2em;
    margin-top: 1.5rem;
  }
}

.c-card-brand__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-card-brand__text {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card-brand__view-more {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card-brand__button {
    margin-top: 3rem;
  }
}

.c-card-series {
  cursor: pointer;
}

.c-card-series:hover {
  opacity: 0.8;
}

.c-card-series__image {
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card-series__image {
    width: 16.875rem;
  }
}

.c-card-series__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.c-card-series__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-card-series__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-card-series__title {
    margin-top: 1rem;
    font-size: 1.125rem;
    position: relative;
  }
}

.c-card-series__text {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-card-series__text {
    margin-top: 0.5rem;
    display: block;
  }
}

.c-cards-brand {
  display: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-cards-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 1px 3px 3px rgba(0, 0, 0, .2);
            box-shadow: 1px 3px 3px rgba(0, 0, 0, .2);
  }
}

.c-cards-series {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-cards-series {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    -webkit-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
    row-gap: 2.5rem;
  }
}

.error-message-hidden {
  visibility: hidden;
}

.contact-form {
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 570px;
  max-width: 35.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-form {
    max-width: none;
    margin-inline: auto;
    margin-top: 3rem;
  }
}

.contact-form__row {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__row {
    margin-top: 0;
    display: grid;
    grid-template-columns: 22.5rem 1fr;
  }
}

.contact-form__row:not(:first-child) {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contact-form__row:not(:first-child) {
    padding-top: 2rem;
  }
}

.contact-confirm .contact-form__row:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-confirm .contact-form__row:not(:first-child) {
    padding-top: 0;
  }
}

.contact-form__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .contact-form__title {
    font-size: 1rem;
    padding-top: 0.8125rem;
  }
}

.contact-form__item {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-confirm .contact-form__item {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__item--confirm {
    margin-top: 1rem;
  }
}

.placeholder {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #a7a9ac;
}
@media screen and (min-width: 768px) {
  .placeholder {
    font-size: 0.875rem;
  }
}

.contact-form__item--privacy {
  margin-top: 0;
}

.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contact-form__label {
    margin-top: 2px;
  }
}

.contact-form__privacy {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy {
    margin-top: 1.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.contact-form__label [type=radio] {
  display: block;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  border: solid 1px #23263e;
  border-radius: 0.875rem;
}

.contact-form__label-text {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.contact-form__item [type=text],
.contact-form__item [type=search],
.contact-form__item [type=tel],
.contact-form__item [type=url],
.contact-form__item [type=email] {
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.25rem;
  height: 44px;
  height: 2.75rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item [type=text],
  .contact-form__item [type=search],
  .contact-form__item [type=tel],
  .contact-form__item [type=url],
  .contact-form__item [type=email] {
    height: 3rem;
  }
}

.wpcf7-list-item {
  margin-left: 0;
  display: block;
}

.wpcf7-list-item-label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}

.wpcf7-list-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid, .contact-form__item .wpcf7-not-valid {
  border: solid 1px #c94800;
  background-color: rgba(201, 72, 0, .2);
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid::-webkit-input-placeholder, .contact-form__item .wpcf7-not-valid::-webkit-input-placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid::-moz-placeholder, .contact-form__item .wpcf7-not-valid::-moz-placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid::-ms-input-placeholder, .contact-form__item .wpcf7-not-valid::-ms-input-placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid::placeholder, .contact-form__item .wpcf7-not-valid::placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid::-webkit-input-placeholder, .contact-form__item .wpcf7-not-valid::-webkit-input-placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid:-moz-placeholder, .contact-form__item .wpcf7-not-valid:-moz-placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid::-moz-placeholder, .contact-form__item .wpcf7-not-valid::-moz-placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid:-ms-input-placeholder, .contact-form__item .wpcf7-not-valid:-ms-input-placeholder {
  color: #ffffff;
}

.contact-form__item .wpcf7-form-control.wpcf7-checkbox.wpcf7-not-valid {
  outline: 2px solid #c94800;
}

.contact-form__item .wpcf7-form-control.wpcf7-radio.wpcf7-not-valid {
  outline: 2px solid #c94800;
}

.wpcf7-form-control.wpcf7-select.wpcf7-not-valid {
  border: 2px solid red;
  background-color: #ffe6e6;
}

.contact-form__item input {
  padding: 8px;
  padding: 0.5rem;
  display: inline-block;
}

.contact-form__item input::-webkit-input-placeholder {
  color: #a7a9ac;
  padding-left: 16px;
  padding-left: 1rem;
}

.contact-form__item input::-moz-placeholder {
  color: #a7a9ac;
  padding-left: 16px;
  padding-left: 1rem;
}

.contact-form__item input::-ms-input-placeholder {
  color: #a7a9ac;
  padding-left: 16px;
  padding-left: 1rem;
}

.contact-form__item input::placeholder {
  color: #a7a9ac;
  padding-left: 16px;
  padding-left: 1rem;
}

.contact-form__item.error input::-webkit-input-placeholder {
  color: #ffffff;
}

.contact-form__item.error input::-moz-placeholder {
  color: #ffffff;
}

.contact-form__item.error input::-ms-input-placeholder {
  color: #ffffff;
}

.contact-form__item.error input::placeholder {
  color: #ffffff;
}

.contact-form__item textarea {
  width: 100%;
  background-color: #ffffff;
  height: 320px;
  height: 20rem;
  padding: 8px;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item textarea {
    height: 17.5rem;
  }
}

.contact-form__item textarea::-webkit-input-placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #a7a9ac;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-form__item textarea::-moz-placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #a7a9ac;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-form__item textarea::-ms-input-placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #a7a9ac;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-form__item textarea::placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #a7a9ac;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-form__item input[type=radio] {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 0.875rem;
  border: 1px solid #23263e;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
}

.contact-form__item--radio {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item--radio {
    margin-top: 0;
  }
}

.contact-form__item--radio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  row-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item--radio .wpcf7-radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 0.75rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.contact-form__item .wpcf7-list-item .privacy-check {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #23263e;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
}

.contact-form__item input[type=radio] {
  margin: 0;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #888888;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
}

.contact-form__item input[type=radio]:checked:before {
  position: absolute;
  top: 3px;
  top: 0.1875rem;
  left: 3px;
  left: 0.1875rem;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  border-radius: 0.75rem;
  background-color: #222222;
  content: "";
}

.contact-form__item .wpcf7-list-item .privacy-check:checked:before {
  position: absolute;
  top: 3px;
  top: 0.1875rem;
  left: 3px;
  left: 0.1875rem;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  background-color: #222222;
  content: "";
}

.select-box-container {
  position: relative;
}

.select-box-container::after {
  content: "";
  position: absolute;
  border: 6px solid #23263e;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  top: calc(50% - 3px);
  right: 10px;
  width: 0;
  height: 0;
}

.select-box-container--disabled::after {
  border-top-color: #aaa;
}

.select-box {
  border: 1px solid #23263e;
  padding: 10px;
  padding: 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .select-box {
    padding: 0.3125rem;
  }
}

.select-box:disabled {
  pointer-events: none;
  background-color: #f1f1f1;
  color: #aaa;
}

.contact-form__explain {
  margin-left: 8px;
  margin-left: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .contact-form__explain {
    font-size: 1rem;
  }
}

.contact-form__button {
  margin-top: 64px;
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact-form__button {
    margin-top: 3rem;
    text-align: center;
  }
}

.contact-form__link {
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__link {
    margin-top: 1rem;
  }
}

#to-input {
  border-bottom: solid 1px #23263e;
  margin-inline: auto;
}

.contact__error-message {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #de2f43;
  text-align: left;
  font-weight: 300;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  max-width: 300px;
  max-width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .contact__error-message {
    max-width: 31.25rem;
  }
}

.contact__error-message::before {
  content: "※";
  color: #de2f43;
  position: absolute;
  top: 0;
  left: -16px;
}

.contact-form__dialog {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .contact-form__dialog {
    margin-top: 2.5rem;
  }
}

.policy-dialog {
  text-align: center;
  background-color: #ffffff;
  padding: 32px 24px 4px;
  padding: 2rem 1.5rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .policy-dialog {
    padding: 3rem 8.75rem 0.25rem;
  }
}

.policy-dialog__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .policy-dialog__title {
    font-size: 1.125rem;
  }
}

.policy-dialog__inner {
  overflow-y: scroll;
  margin-top: 24px;
  margin-top: 1.5rem;
  height: 136px;
  height: 8.5rem;
}
@media screen and (min-width: 768px) {
  .policy-dialog__inner {
    height: 7.5rem;
  }
}

.policy-dialog__contents p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .policy-dialog__contents p {
    font-size: 0.875rem;
  }
}

.c-contact .c-contact__inner {
  border-top: 1px dashed #23263e;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-contact .c-contact__inner {
    margin-top: 3rem;
  }
}

.c-contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-contact__button {
    margin-top: 4rem;
  }
}

.c-detail-slider {
  background-color: #ffffff;
  padding: 36px 0 36px 0;
  padding: 2.25rem 0 2.25rem 0;
}
@media screen and (min-width: 768px) {
  .c-detail-slider {
    padding: 3rem 3rem 3.5rem 3rem;
  }
}

.c-detail-slider__inner {
  position: relative;
}

.c-detail-slider__title {
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 700;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-detail-slider__title {
    font-size: 1.625rem;
  }
}

.c-detail-slider-swiper {
  overflow: hidden;
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 1;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-detail-slider-swiper {
    margin-top: 2rem;
  }
}

.c-detail-slider-swiper__wrapper {
  height: inherit;
}

.c-detail-slider__slide {
  height: inherit;
  width: 248px;
  width: 15.5rem;
  margin-right: 24px;
  margin-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-detail-slider__slide {
    width: 19.5rem;
    margin-right: 1.25rem;
  }
}

.c-detail-slider .swiper-button-next,
.c-detail-slider .swiper-button-prev {
  border: solid 1px #222222;
  background-color: rgba(255, 255, 255, .9);
  top: 40%;
}
@media screen and (min-width: 768px) {
  .c-detail-slider .swiper-button-next,
  .c-detail-slider .swiper-button-prev {
    top: 27%;
  }
}

.c-detail-slider .swiper-button-next {
  right: 24px;
}
@media screen and (min-width: 768px) {
  .c-detail-slider .swiper-button-next {
    right: -20px;
  }
}

.c-detail-slider .swiper-button-prev {
  left: 24px;
}
@media screen and (min-width: 768px) {
  .c-detail-slider .swiper-button-prev {
    left: -20px;
  }
}

.gtranslate_wrapper {
  position: absolute;
  top: 0;
  width: 100vw;
  -webkit-transform: translateY(-1000px);
          transform: translateY(-1000px);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  z-index: 90;
  padding-top: 71px;
}
@media screen and (min-width: 768px) {
  .gtranslate_wrapper {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    width: 7.5rem;
    right: 0;
  }
}

.gtranslate_wrapper.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
@media screen and (min-width: 768px) {
  .gtranslate_wrapper.is-open {
    right: 0;
  }
}

.home .gtranslate_wrapper {
  background-color: #23263e;
}
@media screen and (min-width: 768px) {
  .home .gtranslate_wrapper {
    background-color: transparent;
  }
}

.gtranslate_wrapper .glink {
  cursor: pointer;
  background-color: #222222;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 40px;
  padding: 0.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .gtranslate_wrapper .glink {
    width: 7.5rem;
    padding: 0.5rem 0;
  }
}

.gtranslate_wrapper .gt-current-lang {
  color: #222222;
  background-color: #ffffff;
}

.hamburger__wrapper {
  width: 48.5px;
  width: 3.03125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .hamburger__wrapper {
    gap: 0.625rem;
  }
}

.hamburger__wrapper:hover {
  opacity: 0.7;
}

.hamburger {
  padding: 0;
}

.hamburger span {
  position: relative;
  display: block;
  height: 1px;
  height: 0.0625rem;
  width: 40px;
  width: 2.5rem;
  background: #ffffff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.hamburger__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  color: #ffffff;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 5px 0;
  margin: 0.3125rem 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.js-hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(0.3125rem);
          transform: translateY(0.3125rem);
}

.js-hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}

.js-hamburger.is-hidden span:nth-child(1),
.js-hamburger.is-hidden span:nth-child(3) {
  opacity: 0;
  visibility: hidden;
}

.c-key-visual {
  position: relative;
  width: 100%;
  height: 72vh;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-key-visual {
    height: 85vh;
  }
}

.c-key-visual__swiper {
  width: 100%;
  height: auto;
  position: relative;
}

.c-key-visual__swiper-wrapper {
  height: inherit;
}

.c-key-visual__swiper-slide {
  height: inherit;
  overflow: hidden;
}

.c-key-visual__swiper-slide img {
  height: 72vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1.5s ease-out;
  transition: -webkit-transform 1.5s ease-out;
  transition: transform 1.5s ease-out;
  transition: transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}
@media screen and (min-width: 768px) {
  .c-key-visual__swiper-slide img {
    height: 85vh;
  }
}

.c-key-visual__button-resevation {
  display: none;
}

.logo {
  display: inline-block;
  width: 69px;
  width: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .logo {
    width: 4.5rem;
  }
}

.c-map {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .c-map {
    height: 575px;
  }
}

.c-map--blog {
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-map--blog {
    height: 562px;
  }
}

.c-map__color {
  position: absolute;
  width: 100%;
  height: 800px;
  background-image: url("../images/top/map/map-sp.svg");
  background-repeat: no-repeat;
  background-position: center 20px;
  background-size: 390px 400px;
}
@media screen and (min-width: 768px) {
  .c-map__color {
    height: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .c-map__color {
    width: 720px;
    height: 820px;
    position: absolute;
    top: -63px;
    left: 30%;
    margin-inline: auto;
    z-index: 1;
    background-image: url("../images/top/map/map.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 720px 762px;
  }
}

.c-map--blog .c-map__color--blog {
  top: -340px;
  background-position: center 18px;
  background-size: 395px;
  height: 570px;
}
@media screen and (min-width: 768px) {
  .c-map--blog .c-map__color--blog {
    top: -8px;
    left: 24%;
    background-image: url("../images/top/map/map-blog.jpg");
    background-position: calc(50% + 2px) 10px;
    background-size: 720px 557px;
  }
}

@media screen and (min-width: 1024px) {
  .c-map__place {
    position: absolute;
    top: -63px;
    left: 30%;
    width: 720px;
    height: 820px;
    z-index: 4;
    background-image: url("../images/top/map/point.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 720px;
  }
}

.c-map--blog .c-map__place--blog {
  top: -340px;
}
@media screen and (min-width: 768px) {
  .c-map--blog .c-map__place--blog {
    top: -8px;
    left: 24%;
  }
}

.c-map__color-image {
  position: absolute;
  z-index: 3;
  display: none;
}

.c-map__color-image img {
  width: 100%;
  height: 100%;
}

.c-map__nav {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 344px;
  padding-top: 21.5rem;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .c-map__nav {
    padding-top: 0;
    margin-top: 5rem;
  }
}

.map-ikebukuro {
  width: 262px;
  height: 145px;
  top: 96px;
  left: 3px;
}
@media screen and (min-width: 768px) {
  .map-ikebukuro {
    display: none;
  }
}

.map-ocyanomizu {
  width: 66px;
  height: auto;
  top: 199px;
  left: 201px;
}

.map-shinjyuku {
  width: 202px;
  height: auto;
  top: 198px;
  left: 32px;
}

.map-shibuya {
  width: 177px;
  height: auto;
  top: 268px;
  left: 29px;
}

.map-kamata {
  width: 197px;
  height: auto;
  top: 346px;
  left: 117px;
}

.map-ueno {
  width: 158px;
  height: auto;
  top: 71.5px;
  left: 219px;
}

.map-ginza {
  width: 82px;
  height: auto;
  top: 244px;
  left: 212px;
}

.map-katsushika {
  width: 180px;
  height: auto;
  top: 102px;
  left: 274px;
}

.map-roppongi {
  width: 70px;
  height: auto;
  top: 280px;
  left: 189px;
}

.map-odaiba {
  width: 115.6px;
  height: auto;
  top: 326px;
  left: 238px;
}

.c-menu-series {
  background-color: #ffffff;
  padding: 32px 36px 40px 32px;
  padding: 2rem 2.25rem 2.5rem 2rem;
  position: sticky;
  top: 10px;
  top: 0.625rem;
}

.c-menu-series__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: center;
}

.c-menu-series__title-text {
  position: relative;
  padding-left: 32px;
  padding-left: 2rem;
}

.c-menu-series__title-text::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  display: block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-image: url("../images/common/icon-search.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.c-menu-series__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}

.c-menu-series__item {
  border-radius: 0.25rem;
  padding: 2px 11px;
  padding: 0.125rem 0.6875rem;
  background-color: #eeeeee;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.c-menu-series__item:hover {
  opacity: 0.7;
  cursor: pointer;
}

.c-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-menu-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-menu {
  background-color: #ffffff;
  width: 100%;
  padding: 32px 0 40px 0;
  padding: 2rem 0 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .c-menu {
    width: 33rem;
    padding: 2.5rem 0;
  }
}

.c-menu__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .c-menu__title {
    font-size: 1.625rem;
  }
}

.c-menu__text {
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-menu__text {
    font-size: 1rem;
  }
}

.c-menu__button {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

.c-nav-map-blog {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 8px;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-nav-map-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-inline: auto;
  }
}

.c-nav-map-blog__item {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
  background-color: #ffffff;
  padding: 15px 16px 15px 24px;
  padding: 0.9375rem 1rem 0.9375rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  border: solid 1px #222222;
}
@media screen and (min-width: 768px) {
  .c-nav-map-blog__item {
    background-color: rgba(245, 245, 245, .9607843137);
    padding: 1.0625rem 1rem;
    grid-template-columns: 1fr 0.625rem;
    width: 15.625rem;
  }
}

.c-nav-map-blog__item:hover {
  color: #ffffff;
}

.c-nav-map-blog__area {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.c-nav-map-blog__point {
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-radius: 0.625rem;
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-ikebukuro {
    position: absolute;
    top: 101px;
    left: 52px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-shinjyuku {
    position: absolute;
    top: 210px;
    left: 52px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-shibuya {
    position: absolute;
    top: 319px;
    left: 52px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-kamata {
    position: absolute;
    top: 430px;
    left: 184px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-ueno {
    position: absolute;
    top: 46px;
    right: 265px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-ocyanomizu {
    position: absolute;
    top: 118px;
    right: 52px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-ginza {
    position: absolute;
    top: 182px;
    right: 52px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-katsushika {
    position: absolute;
    top: 254px;
    right: 195px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-roppongi {
    position: absolute;
    top: 393px;
    right: 195px;
  }
}

@media screen and (min-width: 768px) {
  .c-nav-map-blog .area-odaiba {
    position: absolute;
    top: 457px;
    right: 195px;
  }
}

.area-ikebukuro:hover {
  background-color: #3f82b4;
}

.area-ocyanomizu:hover {
  background-color: #d58157;
}

.area-shinjyuku:hover {
  background-color: #999ac7;
}

.area-shibuya:hover {
  background-color: #aac77f;
}

.area-kamata:hover {
  background-color: #dcb248;
}

.area-ueno:hover {
  background-color: #d4717c;
}

.area-ginza:hover {
  background-color: #65afbe;
}

.area-katsushika:hover {
  background-color: #bf9add;
}

.area-roppongi:hover {
  background-color: #53e1b6;
}

.area-odaiba:hover {
  background-color: #f49f3a;
}

.area-ikebukuro:hover .c-nav-map-blog__point {
  background-color: #10427f;
}

.area-ocyanomizu:hover .c-nav-map-blog__point {
  background-color: #b2411e;
}

.area-shinjyuku:hover .c-nav-map-blog__point {
  background-color: #5c5d9b;
}

.area-shibuya:hover .c-nav-map-blog__point {
  background-color: #719b3f;
}

.area-kamata:hover .c-nav-map-blog__point {
  background-color: #be7c14;
}

.area-ueno:hover .c-nav-map-blog__point {
  background-color: #b0323c;
}

.area-ginza:hover .c-nav-map-blog__point {
  background-color: #28788e;
}

.area-katsushika:hover .c-nav-map-blog__point {
  background-color: #8f5dc0;
}

.area-roppongi:hover .c-nav-map-blog__point {
  background-color: #1bc782;
}

.area-odaiba:hover .c-nav-map-blog__point {
  background-color: #e9630d;
}

.area-ikebukuro .c-nav-map-blog__point {
  background-color: #3f82b4;
}

.area-ocyanomizu .c-nav-map-blog__point {
  background-color: #d58157;
}

.area-shinjyuku .c-nav-map-blog__point {
  background-color: #999ac7;
}

.area-shibuya .c-nav-map-blog__point {
  background-color: #aac77f;
}

.area-kamata .c-nav-map-blog__point {
  background-color: #dcb248;
}

.area-ueno .c-nav-map-blog__point {
  background-color: #d4717c;
}

.area-ginza .c-nav-map-blog__point {
  background-color: #65afbe;
}

.area-katsushika .c-nav-map-blog__point {
  background-color: #bf9add;
}

.area-roppongi .c-nav-map-blog__point {
  background-color: #53e1b6;
}

.area-odaiba .c-nav-map-blog__point {
  background-color: #f49f3a;
}

.c-nav-map {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 8px;
  row-gap: 0.5rem;
  max-width: 540px;
  max-width: 33.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-nav-map {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 83.125rem;
    margin-inline: auto;
  }
}

.c-nav-map__item-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 8px;
  row-gap: 0.5rem;
}

.c-nav-map__item {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
  background-color: #ffffff;
  padding: 9px 16px 9px 10px;
  padding: 0.5625rem 1rem 0.5625rem 0.625rem;
  display: grid;
  grid-template-columns: 3.5rem 1fr 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  border: solid 1px #222222;
}
@media screen and (min-width: 768px) {
  .c-nav-map__item {
    grid-template-columns: 4.375rem 1fr 0.625rem;
    width: 19.875rem;
  }
}

.c-nav-map__item:hover {
  color: #ffffff;
}

@media screen and (min-width: 1024px) {
  .c-nav-map__item-wrapper:nth-of-type(2) .c-nav-map__item {
    grid-template-columns: 0.625rem 1fr 4.375rem;
  }
  .c-nav-map__item-wrapper:nth-of-type(2) .c-nav-map__item .c-nav-map__image {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .c-nav-map__item-wrapper:nth-of-type(2) .c-nav-map__item .c-nav-map__area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .c-nav-map__item-wrapper:nth-of-type(2) .c-nav-map__item .c-nav-map__point {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.c-nav-map__image {
  aspect-ratio: 1/1;
  width: 56px;
  width: 3.5rem;
}
@media screen and (min-width: 1024px) {
  .c-nav-map__image {
    width: 4.375rem;
  }
}

.c-nav-map__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-nav-map__area {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.c-nav-map__point {
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-radius: 0.625rem;
}

.area-ikebukuro:hover {
  background-color: #3f82b4;
}

.area-ocyanomizu:hover {
  background-color: #d58157;
}

.area-shinjyuku:hover {
  background-color: #999ac7;
}

.area-shibuya:hover {
  background-color: #aac77f;
}

.area-kamata:hover {
  background-color: #dcb248;
}

.area-ueno:hover {
  background-color: #d4717c;
}

.area-ginza:hover {
  background-color: #65afbe;
}

.area-katsushika:hover {
  background-color: #bf9add;
}

.area-roppongi:hover {
  background-color: #53e1b6;
}

.area-odaiba:hover {
  background-color: #f49f3a;
}

.area-ikebukuro:hover .c-nav-map__point {
  background-color: #10427f;
}

.area-ocyanomizu:hover .c-nav-map__point {
  background-color: #b2411e;
}

.area-shinjyuku:hover .c-nav-map__point {
  background-color: #5c5d9b;
}

.area-shibuya:hover .c-nav-map__point {
  background-color: #719b3f;
}

.area-kamata:hover .c-nav-map__point {
  background-color: #be7c14;
}

.area-ueno:hover .c-nav-map__point {
  background-color: #b0323c;
}

.area-ginza:hover .c-nav-map__point {
  background-color: #28788e;
}

.area-katsushika:hover .c-nav-map__point {
  background-color: #8f5dc0;
}

.area-roppongi:hover .c-nav-map__point {
  background-color: #1bc782;
}

.area-odaiba:hover .c-nav-map__point {
  background-color: #e9630d;
}

.area-ikebukuro .c-nav-map__point {
  background-color: #3f82b4;
}

.area-ocyanomizu .c-nav-map__point {
  background-color: #d58157;
}

.area-shinjyuku .c-nav-map__point {
  background-color: #999ac7;
}

.area-shibuya .c-nav-map__point {
  background-color: #aac77f;
}

.area-kamata .c-nav-map__point {
  background-color: #dcb248;
}

.area-ueno .c-nav-map__point {
  background-color: #d4717c;
}

.area-ginza .c-nav-map__point {
  background-color: #65afbe;
}

.area-katsushika .c-nav-map__point {
  background-color: #bf9add;
}

.area-roppongi .c-nav-map__point {
  background-color: #53e1b6;
}

.area-odaiba .c-nav-map__point {
  background-color: #f49f3a;
}

.navigation-language {
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transform: translateY(-1000px);
          transform: translateY(-1000px);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  z-index: 90;
  padding-top: 71px;
}
@media screen and (min-width: 768px) {
  .navigation-language {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    width: 7.5rem;
    right: 0;
  }
}

.home .navigation-language {
  background-color: #23263e;
}
@media screen and (min-width: 768px) {
  .home .navigation-language {
    background-color: transparent;
  }
}

.navigation-language.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
@media screen and (min-width: 768px) {
  .navigation-language.is-open {
    right: 0;
  }
}

.navigation-language__item {
  cursor: pointer;
  background-color: #222222;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 40px;
  padding: 0.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .navigation-language__item {
    width: 7.5rem;
    padding: 0.5rem 0;
  }
}

.navigation-language__item.current {
  color: #222222;
  background-color: #ffffff;
}

.navigation {
  overflow-y: scroll;
  height: 100vh;
  position: absolute;
  width: 100%;
  left: 0;
  top: -18px;
  background-color: #23263e;
}
@media screen and (min-width: 768px) {
  .navigation {
    height: auto;
    top: -16px;
  }
}
.navigation::-webkit-scrollbar {
  display: none;
}

.home .navigation {
  padding-top: 71px;
}

.navigation__inner {
  padding: 32px 0 0;
  padding: 2rem 0 0;
  margin: 0 20px;
  margin: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .navigation__inner {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
    max-width: 83.125rem;
    margin-inline: auto;
  }
}

.navigation__inner-top-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 9;
  text-align: center;
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  place-items: center;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .navigation__inner-top-group {
    width: 43.75rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    place-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.navigation__inner-bottom-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .navigation__inner-bottom-group {
    border-top: solid 1px #9e9e9e;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 1.875rem;
    margin-top: 2.5rem;
  }
}

.navigation__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .navigation__item {
    line-height: 1;
  }
}

.navigation__sub-group {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 8px;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .navigation__sub-group {
    margin-top: 1rem;
    margin-top: 0.75rem;
  }
}

.navigation__label {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.4;
  height: 24px;
  height: 1.5rem;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .navigation__label {
    font-size: 1rem;
  }
}

.nav-top-label {
  display: block;
}

.nav-bottom-label {
  display: block;
}

.navigation__link .navigation__label--lower-level {
  padding-left: 24px;
  padding-left: 1.5rem;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  height: 20px;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .navigation__link .navigation__label--lower-level {
    padding-left: 1rem;
    height: 1.25rem;
  }
}

.navigation__link .navigation__label--lower-level::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 48%;
  left: 4px;
}
@media screen and (min-width: 768px) {
  .navigation__link .navigation__label--lower-level::before {
    width: 5px;
    top: 50%;
    left: 0;
  }
}

.navigation__item--top {
  font-weight: 700;
  position: relative;
}

.navigation__item--top::before {
  content: "";
  position: absolute;
  top: 1px;
  top: 0.0625rem;
  left: -rem(24);
  left: -rem(24);
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}

.js-drawer-menu {
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transform: translateY(-979px);
          transform: translateY(-979px);
}
@media screen and (min-width: 768px) {
  .js-drawer-menu {
    -webkit-transform: translateY(-400px);
            transform: translateY(-400px);
  }
}

.home .js-drawer-menu {
  -webkit-transform: translateY(-1050px);
          transform: translateY(-1050px);
}
@media screen and (min-width: 768px) {
  .home .js-drawer-menu {
    -webkit-transform: translateY(-475px);
            transform: translateY(-475px);
  }
}

.js-drawer-menu.is-open {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .js-drawer-menu.is-open {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}

.home .js-drawer-menu.is-open {
  -webkit-transform: translateY(-71px);
          transform: translateY(-71px);
}
@media screen and (min-width: 768px) {
  .home .js-drawer-menu.is-open {
    -webkit-transform: translateY(-71px);
            transform: translateY(-71px);
  }
}

.navigation__sp-tripla {
  margin-top: 32px;
  margin-top: 2rem;
  border-top: solid 1px rgba(221, 221, 221, .2);
  display: block;
}
@media screen and (min-width: 768px) {
  .navigation__sp-tripla {
    display: none;
  }
}

.c-pager-detail .c-pager__next, .c-pager-detail .c-pager__previous {
  width: 150px;
  width: 9.375rem;
  position: relative;
  background: none;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-pager-detail .c-pager__next, .c-pager-detail .c-pager__previous {
    width: auto;
    font-size: 1rem;
  }
}

.c-pager-detail .c-pager__next::after, .c-pager-detail .c-pager__previous::before {
  content: "";
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 6px 13px;
  padding: 0.375rem 0.8125rem;
  border: solid 1px #23263e;
  color: #23263e;
  text-align: center;
  cursor: pointer;
  border: solid 1px #23263e;
  border-radius: 6.25rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  border-radius: 1.5rem;
  background-color: #222222;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.3125rem;
  cursor: pointer;
  padding: 0;
}

.c-pager-detail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-pager-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-pager-detail .c-pager__previous {
  grid-column: 1;
  grid-row: 1;
  padding-left: 40px;
}

.c-pager-detail__button {
  grid-column: 1/span 3;
  grid-row: 2;
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-pager-detail__button {
    margin-top: 0;
  }
}

.c-pager-detail .c-pager__next {
  grid-column: 3;
  grid-row: 1;
  padding-right: 40px;
}

.c-pager-detail .c-pager__previous::before {
  top: 6px;
  left: 0;
  background-image: url(../images/common/arrow-left-white.svg);
}
.c-pager-detail .c-pager__previous::before:hover {
  background-image: url(../images/common/arrow-left.svg);
}

.c-pager-detail .c-pager__next::after {
  top: 6px;
  right: 0;
  background-image: url(../images/common/arrow-right-white.svg);
}
.c-pager-detail .c-pager__next::after:hover {
  background-image: url(../images/common/arrow-right.svg);
}

.c-pager-detail .c-pager__next.current {
  background-color: #23263e;
  color: #f1f2f2;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  gap: 0.75rem;
}

.c-pager__next, .c-pager__previous, .wp-pagenavi span.current, .wp-pagenavi .page, .c-pager .page {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
  border: solid 1px #23263e;
  color: #23263e;
  background-color: #f1f2f2;
  text-align: center;
  cursor: pointer;
}
.c-pager__next:hover, .c-pager__previous:hover, .wp-pagenavi span.current:hover, .wp-pagenavi .page:hover, .c-pager .page:hover {
  opacity: 0.7;
}

.wp-pagenavi span.current {
  background-color: #23263e;
  color: #f1f2f2;
}

.c-pager__previous {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  cursor: pointer;
  border: none;
  background: url(../images/common/arrow-left.svg) center center no-repeat;
}
.c-pager__previous:hover {
  background: url(../images/common/arrow-left-light.svg) center center no-repeat;
}

.c-pager__previous.current {
  background-color: #23263e;
  color: #f1f2f2;
}

.c-pager__next {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  cursor: pointer;
  border: none;
  background: url(../images/common/arrow-right.svg) center center no-repeat;
}
.c-pager__next:hover {
  background: url(../images/common/arrow-right-white.svg) center center no-repeat;
}

.c-pager__next.current {
  background-color: #23263e;
  color: #f1f2f2;
}

.c-pararax {
  aspect-ratio: 390/396;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-pararax {
    aspect-ratio: 1440/640;
    margin-inline: auto;
  }
}

.c-pararax__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-pararax__image {
  display: block;
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-pararax__image {
    width: 100%;
    height: 151%;
  }
}

.c-proress-bar__sub-title {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-proress-bar__sub-title {
    margin-top: 4rem;
    font-size: 1.625rem;
  }
}

.c-proress-bar__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-proress-bar__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-proress-bar__contents {
    margin-top: 3rem;
  }
}

.c-proress-bar__bar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-proress-bar__bar-wrapper {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}

.c-proress-bar__item {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  width: 68px;
  width: 4.25rem;
  height: 68px;
  height: 4.25rem;
}
@media screen and (min-width: 768px) {
  .c-proress-bar__item {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 7.5rem;
    row-gap: 0.5rem;
    background-color: #dddddd;
  }
}

@media screen and (min-width: 768px) {
  .c-proress-bar__item.is-done {
    background-color: #23263e;
    color: #ffffff;
  }
}

.c-proress-bar__item:not(:last-child)::after {
  position: absolute;
  top: 19px;
  right: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 10px;
  height: 0.625rem;
  background-image: url("../images/common/line.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-proress-bar__item:not(:last-child)::after {
    top: 50%;
    right: -64px;
    width: 4rem;
    height: 0.625rem;
  }
}

.item-no {
  background-color: #dddddd;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .item-no {
    font-size: 0.8125rem;
    background-color: transparent;
    width: auto;
    height: auto;
  }
}

.item-no.is-done {
  background-color: #23263e;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .item-no.is-done {
    background-color: transparent;
  }
}

.item-title {
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  padding: 0 14px;
  padding: 0 0.875rem;
}
@media screen and (min-width: 768px) {
  .item-title {
    margin-top: 0;
    font-size: 1rem;
  }
}

.c-proress-bar__lead {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #333333;
  line-height: 1.75;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-proress-bar__lead {
    margin-top: 3rem;
    font-size: 1rem;
  }
}

.c-proress-bar__lead--thanks {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-proress-bar__lead--thanks {
    margin-top: 2.5rem;
  }
}

.c-qa__group:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-qa__group:not(:first-child) {
    margin-top: 4rem;
  }
}

.c-qa__group-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

.c-qa__lists {
  margin-top: 24px;
  margin-top: 1.5rem;
  border-top: solid 1px #222222;
}

.p-top-faq .c-qa__lists {
  border-bottom: solid 1px #222222;
}

.c-qa__item {
  padding: 0 8px 0 8px;
  padding: 0 0.5rem 0 0.5rem;
  border-bottom: dashed 1px #9e9e9e;
}
@media screen and (min-width: 768px) {
  .c-qa__item {
    margin: 0 1rem 0 1rem;
    padding: 0 4rem 0 5.5rem;
  }
}

.p-top-faq .c-qa__item:last-child {
  border-bottom: none;
}

.qa__question {
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 24px 50px 24px 40px;
  padding: 1.5rem 3.125rem 1.5rem 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa__question {
    font-size: 1.125rem;
    padding: 2.5rem 0 1.75rem 0;
  }
}

.qa__question:hover {
  opacity: 0.7;
}

.qa__question::before {
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
  position: absolute;
  top: 23px;
  left: 0;
  content: "";
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .qa__question::before {
    font-size: 1.625rem;
    top: 32px;
    left: -6.11vw;
  }
}

.c-qa__item:nth-of-type(1) .qa__question::before {
  content: "Q1.";
}

.c-qa__item:nth-of-type(2) .qa__question::before {
  content: "Q2.";
}

.c-qa__item:nth-of-type(3) .qa__question::before {
  content: "Q3.";
}

.c-qa__item:nth-of-type(4) .qa__question::before {
  content: "Q4.";
}

.c-qa__item:nth-of-type(5) .qa__question::before {
  content: "Q5.";
}

.c-qa__item:nth-of-type(6) .qa__question::before {
  content: "Q6.";
}

.c-qa__item:nth-of-type(7) .qa__question::before {
  content: "Q7 .";
}

.c-qa__item:nth-of-type(8) .qa__question::before {
  content: "Q8 .";
}

.c-qa__item:nth-of-type(9) .qa__question::before {
  content: "Q9 .";
}

.c-qa__item:nth-of-type(10) .qa__question::before {
  content: "Q10 .";
}

.qa__question::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 8px;
  height: 0.5rem;
  background-image: url("../images/common/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 33px;
  right: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .qa__question::after {
    font-size: 1.625rem;
    top: 45px;
    right: -61px;
  }
}

.qa__question.is-open::after {
  background-image: url("../images/common/arrow-upper.svg");
}

.qa__answer {
  display: none;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .qa__answer {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }
}

.c-require-label {
  background-color: #f1f2f2;
  color: #de2f43;
  border: solid 1px #de2f43;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 1px 6px 2px;
  padding: 0.0625rem 0.375rem 0.125rem;
  margin-left: 2px;
  margin-left: 0.125rem;
  font-weight: 300;
  white-space: nowrap;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
.sub-key-visual-facilities, .sub-key-visual-contact, .sub-key-visual-faq, .sub-key-visual-brand, .sub-key-visual-blog, .sub-key-visual-aboutus {
  position: relative;
  z-index: -1;
  height: 240px;
  height: 15rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sub-key-visual-aboutus {
  background-image: url("../images/subKeyVisual/about-us-sp.jpg");
}
@media screen and (min-width: 768px) {
  .sub-key-visual-aboutus {
    background-image: url("../images/subKeyVisual/about-us-pc.jpg");
  }
}

.sub-key-visual-blog {
  background-image: url("../images/subKeyVisual/blog-sp.jpg");
}
@media screen and (min-width: 768px) {
  .sub-key-visual-blog {
    background-image: url("../images/subKeyVisual/blog-pc.jpg");
  }
}

.sub-key-visual-brand {
  background-image: url("../images/subKeyVisual/brand-sp.jpg");
}
@media screen and (min-width: 768px) {
  .sub-key-visual-brand {
    background-image: url("../images/subKeyVisual/brand-pc.jpg");
  }
}

.sub-key-visual-faq {
  background-image: url("../images/subKeyVisual/faq-sp.jpg");
}
@media screen and (min-width: 768px) {
  .sub-key-visual-faq {
    background-image: url("../images/subKeyVisual/faq-pc.jpg");
  }
}

.sub-key-visual-contact {
  background-image: url("../images/subKeyVisual/contact-sp.jpg");
}
@media screen and (min-width: 768px) {
  .sub-key-visual-contact {
    background-image: url("../images/subKeyVisual/contact-pc.jpg");
  }
}

.sub-key-visual-facilities {
  background-image: url("../../assets/images/subKeyVisual/facilities-sp.webp");
}
@media screen and (min-width: 768px) {
  .sub-key-visual-facilities {
    background-image: url("../../assets/images/subKeyVisual/facilities-pc.webp");
  }
}

.c-sub-key-visual__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 12px 0;
  padding: 0.75rem 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 400;
  background-image: url("../images/common/arrow-upper-title-white.svg"), url("../images/common/decoration-title-white.svg");
  background-size: 4.25rem, 3.625rem;
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
  font-size: 36px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-sub-key-visual__title {
    padding: 0.75rem 0;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 3.25rem;
    color: #ffffff;
    font-weight: 400;
    background-image: url("../images/common/arrow-upper-title-white.svg"), url("../images/common/decoration-title-white.svg");
    background-size: 4.25rem, 3.625rem;
    background-position: center top, center bottom;
    background-repeat: no-repeat, no-repeat;
    font-size: 52px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    line-height: 1.4;
  }
}

.c-submit {
  position: relative;
  display: inline-block;
}

span.wpcf7-spinner {
  display: none;
}

.c-submit > input {
  position: relative;
  z-index: 1;
  color: transparent;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  width: 320px;
  width: 20rem;
  cursor: pointer;
}

.c-submit::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #23263e;
  border: 1px solid #23263e;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
}

.c-submit:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-submit__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 600;
  z-index: 2;
  color: #23263e;
  position: relative;
  top: -7px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-submit__text {
    font-size: 1rem;
    top: -9px;
  }
}

.c-submit:hover .c-submit__text {
  color: #ffffff;
  z-index: 9;
}

.c-submit::before {
  position: absolute;
  top: 20px;
  right: 16px;
  content: "";
  width: 6px;
  height: 12px;
  background-image: url("../images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

.c-submit:hover:before {
  background-image: url("../images/common/arrow-right-white.svg");
}

label.c-submit {
  border: 1px solid #23263e;
  width: 320px;
  width: 20rem;
  height: 56px;
  height: 3.5rem;
  max-height: 80px;
  max-height: 5rem;
}

.c-submit input[type=submit] {
  color: transparent;
}

.c-subpage-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-tab {
  background-color: #f1f2f2;
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-bottom: solid 1px #222222;
  padding: 0 20px 0 20px;
  padding: 0 1.25rem 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 8px;
  row-gap: 0.5rem;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  position: relative;
  grid-auto-flow: row dense;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-tab {
    width: auto;
    margin-left: 0;
    padding: 0 2.5rem 0 2.5rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.c-tab__item {
  border-top: solid 1px #a7a9ac;
  border-left: solid 1px #a7a9ac;
  border-right: solid 1px #a7a9ac;
  cursor: pointer;
  background-color: #f1f2f2;
  height: 50px;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 4px;
}
@media screen and (min-width: 768px) {
  .c-tab__item {
    height: 4rem;
    padding-inline: 0;
  }
}

.c-tab__item:hover {
  background-color: #dce2e2;
}

.c-tab__item h2 {
  color: #a7a9ac;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
  word-break: auto-phrase;
}
@media screen and (min-width: 768px) {
  .c-tab__item h2 {
    font-size: 1rem;
    word-break: normal;
  }
}

.c-tab__item.current {
  border-top: solid 1px #222222;
  border-left: solid 1px #222222;
  border-right: solid 1px #222222;
  border-bottom: solid 1px #f1f2f2;
  position: relative;
  z-index: 10;
  top: 2px;
}

.c-tab__item.current h2 {
  color: #222222;
}

.c-title-layer-c {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-title-layer-c {
    font-size: 1.625rem;
  }
}

.c-title-layer-c--404 {
  text-transform: uppercase;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  padding: 0px 0 16px;
  padding: 0rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .c-title-layer-c--404 {
    padding: 0.75rem 0 1.5rem;
    font-size: 2rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .c-title-layer-c--contact {
    padding: 0.75rem 0 1.5rem;
    font-size: 2rem;
    line-height: 1;
  }
}

.c-title-layer-c::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 26px;
  height: 2px;
  background-color: #222222;
}

.c-title-layer-l {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-title-layer-l {
    padding: 0 0 1rem;
    font-size: 2rem;
  }
}

.c-title-layer-l--qa {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .c-title-layer-l--qa {
    font-size: 1.625rem;
  }
}

.c-title-layer-l::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2px;
  background-color: #222222;
}

.c-title-top {
  text-transform: uppercase;
  padding: 12px 0;
  padding: 0.75rem 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  background-image: url("../images/common/arrow-upper-big.svg"), url("../images/common/decoration-title.svg");
  background-size: 4.25rem, 3.625rem;
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
  line-height: 1.4;
}
.c-title-top__ttl {
  font-size: 15px;
}

.c-title-top--inversion {
  color: #ffffff;
  background-image: url("../images/common/arrow-upper-big.svg"), url("../images/common/decoration-title-white.svg");
}

.c-title {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 20px;
  }
}

.c-top-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-top-banner {
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.c-top-banner__item {
  background-color: #ffffff;
  padding: 10px;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-top-banner__item {
    width: 33rem;
    gap: 2rem;
  }
}

.c-top-banner__image {
  aspect-ratio: 124/77;
  width: 37.5%;
}

.c-top-banner__image img {
  width: 100%;
  height: auto;
}

.c-top-banner__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-top-banner__text {
    font-size: 1.4375rem;
  }
}

.c-top-banner__button {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-top-banner__button {
    margin-top: 1rem;
  }
}

.p-header .p-header__right-group .tripla-form {
  display: none;
}
@media (min-width: 1280px) {
  .p-header .p-header__right-group .tripla-form {
    display: block;
    margin-right: 0.75rem;
  }
}

.home .p-header .p-header__right-group .tripla-form {
  display: none;
}

@media screen and (min-width: 768px) {
  .home .p-header.is-open .tripla-form {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .top .p-header .tripla-form__inner {
    padding: 0;
  }
}

.navigation .tripla-form .item-criteria {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-header .tripla-form__contents {
    padding: 0;
    background-color: transparent;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    height: 2.5rem;
  }
}

.tripla-form {
  background-color: #23263e;
}

.tripla-form__inner {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .tripla-form__inner {
    padding: 1.5rem 0;
    border-top: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-header .tripla-form__inner {
    padding: 0;
  }
}

.navigation__sp-tripla .tripla-form__inner {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .navigation__sp-tripla .tripla-form__inner {
    padding: 2.5rem 0;
  }
}

.tripla-form__contents {
  background-color: #ffffff;
  padding: 32px 20px 40px;
  padding: 2rem 1.25rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .tripla-form__contents {
    padding: 2.5rem;
    display: grid;
    width: 100%;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    row-gap: 0.75rem;
    grid-template-areas: "checkinout area room search" "criteria criteria criteria criteria";
    grid-template-columns: 18.125rem 18.125rem 18.125rem 6.875rem;
    grid-template-rows: 2fr;
    max-width: 67.5rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-header .tripla-form__contents {
    max-width: none;
    grid-template-columns: 18.125rem 12.5rem 13.75rem 6.875rem;
  }
}

.navigation__sp-tripla .tripla-form__contents {
  background-color: transparent;
}

.p-header .tripla-form .item-criteria {
  display: none;
}

@media screen and (min-width: 768px) {
  .navigation__sp-tripla .item-criteria {
    display: none;
  }
}

.tripla-form__item .button-input {
  border: solid 1px #dddddd;
  border-radius: 0.25rem;
  width: 100%;
  height: 48px;
  height: 3rem;
  padding-left: 16px;
  padding-left: 1rem;
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .tripla-form__item .button-input {
    font-size: 1rem;
  }
}

.p-header .tripla-form__item .button-input {
  height: 48px;
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .p-header .tripla-form__item .button-input {
    height: 2.5rem;
    letter-spacing: 0.04em;
  }
}

.item-checkinout {
  grid-area: checkinout;
}

.item-checkinout .button-input {
  background-color: #ffffff;
  background-image: url("../images/common/icon-calender.svg");
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: top 10px right 8px;
  background-position: top 0.625rem right 0.5rem;
}

.item-area {
  grid-area: area;
}

.item-area .button-input {
  background-color: #ffffff;
  background-image: url("../images/common/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: center right 8px;
  background-position: center right 0.5rem;
}

.item-room {
  grid-area: room;
}

.item-room .button-input {
  background-color: #ffffff;
  background-image: url("../images/common/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: center right 8px;
  background-position: center right 0.5rem;
}

.item-criteria {
  grid-area: criteria;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  row-gap: 12px;
  row-gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .item-criteria {
    font-size: 1rem;
    row-gap: 0.5rem;
  }
}

.item-criteria .button-input {
  background-color: #ffffff;
}

.item-criteria input[type=checkbox] {
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border: solid 1px #dddddd;
  border-radius: 0.25rem;
  vertical-align: middle;
}

.item-criteria__label {
  vertical-align: middle;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.button-search {
  margin-top: 16px;
  margin-top: 1rem;
  width: 100%;
  height: 48px;
  height: 3rem;
  border-radius: 0.25rem;
  color: #ffffff;
  border: solid 1px #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button-search {
    margin-top: 0;
    background-position: center left 1.5rem;
    font-size: 1rem;
  }
}

.button-search:hover {
  opacity: 0.8;
}

.button-search__label {
  position: relative;
}
@media screen and (min-width: 768px) {
  .button-search__label {
    padding-left: 1.5rem;
  }
}

.button-search__label::after {
  content: "";
  position: absolute;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  top: 4px;
  left: -32px;
  background-image: url("../images/common/icon-search-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .button-search__label::after {
    background-position: center;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-header .button-search {
    height: 2.5rem;
  }
}

.search-widget-search-container-bf1818 {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.l-blog {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-blog {
    margin-top: 4rem;
  }
}

.l-breadcrumbs {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 16px;
  margin-top: 1rem;
}

.l-commercial-transactions {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-commercial-transactions {
    margin-top: 5rem;
  }
}

.l-contact {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-contact {
    margin-top: 4rem;
  }
}

.l-contact--form {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-contact--form {
    margin-top: 5rem;
  }
}

.l-error404 {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-error404 {
    margin-top: 4.5rem;
  }
}

.l-faq {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-faq {
    margin-top: 3rem;
  }
}

.l-header {
  width: 100%;
  height: inherit;
}

.l-inner {
  margin-top: 0;
  margin-inline: auto;
  max-width: 540px;
  max-width: 33.75rem;
  width: 100%;
  height: inherit;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-key-visual {
  width: 100%;
}
.l-sitemap {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-sitemap {
    margin-top: 5rem;
  }
}

.l-terms {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-terms {
    margin-top: 5rem;
  }
}

.l-top-inner--no-padding {
  margin-inline: auto;
  max-width: 540px;
  max-width: 33.75rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .l-top-inner--no-padding {
    max-width: none;
    min-width: 1280px;
  }
}

.l-top-inner {
  margin-inline: auto;
  max-width: 540px;
  max-width: 33.75rem;
  width: 100%;
  height: inherit;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-top-inner {
    max-width: 1280px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-top-link {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-top-link {
    margin-top: 4rem;
  }
}

.l-top-map {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .l-top-map {
    max-width: 1440px;
    margin-inline: auto;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.l-top-section {
  padding-top: 96px;
  padding-top: 6rem;
  margin-top: -48px;
  margin-top: -3rem;
}
@media screen and (min-width: 768px) {
  .l-top-section {
    padding-top: 6rem;
  }
}

.blog-swiper {
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog-swiper__wrapper {
  height: inherit;
}

.blog-swiper__slide {
  height: inherit;
  width: 248px;
  width: 15.5rem;
}
@media screen and (min-width: 768px) {
  .blog-swiper__slide {
    width: 18.875rem;
  }
}

.blog-swiper__button-prev,
.blog-swiper__button-next {
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .blog-swiper__button-prev,
  .blog-swiper__button-next {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}

@media screen and (min-width: 768px) {
  .blog-swiper .blog-swiper__button-prev {
    top: -74px;
    right: 160px;
  }
}
@media screen and (min-width: 768px) {
  .blog-swiper .blog-swiper__button-prev {
    top: -104px;
    right: 160px;
  }
}

@media screen and (min-width: 768px) {
  .blog-swiper .blog-swiper__button-next {
    top: -74px;
    right: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .blog-swiper .blog-swiper__button-next {
    top: -104px;
    right: 1.25rem;
  }
}

.swiper-button-next, .swiper-button-prev {
  background-color: rgba(255, 255, 255, .6);
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
}

.swiper-button-prev {
  background-image: url("../images/common/arrow-left.svg");
}

.swiper-button-next {
  background-image: url("../images/common/arrow-right.svg");
}

.p-blog__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-blog__title {
    margin-top: 3.75rem;
  }
}

.p-blog__area {
  margin-top: 344px;
  margin-top: 21.5rem;
}
@media screen and (min-width: 768px) {
  .p-blog__area {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blog__area-inner {
    overflow: hidden;
  }
}

.p-blog__taxonom-list {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-blog__taxonom-list {
    margin-top: 4rem;
  }
}

.p-blog__contents {
  padding-top: 104px;
  padding-top: 6.5rem;
  margin-top: -64px;
  margin-top: -4rem;
}
@media screen and (min-width: 768px) {
  .p-blog__contents {
    padding-top: 8.5rem;
    margin-top: -4.5rem;
  }
}

.p-blog__pager {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-blog__pager {
    margin-top: 4rem;
  }
}

.p-blog__detail-inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    max-width: 53.125rem;
    margin-inline: auto;
  }
}

.p-blog__detail-contents {
  max-width: 570px;
  max-width: 35.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-contents {
    max-width: none;
  }
}

.p-blog__detail-label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
}

.p-blog__detail-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-title {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

.p-blog__detail-pager {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-pager {
    margin-top: 4rem;
  }
}

.p-blog__detail-image {
  aspect-ratio: 350/200;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-image {
    aspect-ratio: 800/462;
  }
}

.p-blog__detail-image:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-image:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-blog__detail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-blog__detail-the-contents p {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-the-contents p {
    margin-top: 2.5rem;
  }
}

.p-blog__detail-the-contents figure {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-the-contents figure {
    margin-top: 2.5rem;
  }
}

.p-blog__detail-the-contents img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-the-contents img {
    height: 400px;
  }
}

.p-blog__detail-the-contents ul,
.p-blog__detail-the-contents ol {
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-left: 24px;
  margin-left: 1.5rem;
}

.p-blog__detail-the-contents li {
  position: relative;
  margin-top: 4px;
  margin-top: 0.25rem;
  font-weight: 300;
}

.p-blog__detail-the-contents li::before {
  content: "";
  position: absolute;
  top: 6px;
  top: 0.375rem;
  left: -24px;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  background-image: url("../images/common/starfish.svg");
  background-size: cover;
  background-position: center;
}

.p-blog__detail-slider {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-blog__detail-slider {
    margin-top: 4rem;
  }
}

#ez-toc-container {
  width: 100%;
  padding: 20px 30px 20px 20px;
  margin-block: 24px;
  margin-block: 1.5rem;
}

.wp-block-image + p {
  margin-top: 8px;
}

.wp-block-image + .wp-block-group p {
  margin-top: 8px;
}

.wp-block-image + .wp-block-quote p {
  margin-top: 8px;
}

/* ブランド */
.p-brand__about-text {
  margin: 120px auto 160px;
  margin: 7.5rem auto 10rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: center;
}

.u-line-yellow,
.u-line-blue {
  position: relative;
  display: inline-block;
  line-height: 1.5;
}

.u-line-yellow::before,
.u-line-blue::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 93%;
  height: 100%;
  z-index: -1;
}

.u-line-yellow::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #ffe49e));
  background: linear-gradient(transparent 40%, #ffe49e 40%);
}

.u-line-blue::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #b0ceff));
  background: linear-gradient(transparent 40%, #b0ceff 40%);
}

.c-brand__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

.c-brand__contents-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 50%;
  padding: 0 0 0 calc(50vw - 33.75rem);
}

.c-brand__contents-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/brand/ars-bg.jpg") no-repeat center center/cover;
  z-index: -2;
}

.c-brand__contents-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 190px;
  width: 11.875rem;
  height: 360px;
  height: 22.5rem;
  background: url("../images/brand/symbol.svg") no-repeat center center/cover;
  aspect-ratio: 190/360;
  z-index: -1;
}

.c-brand__img {
  width: 50%;
}

.c-brand__img-item {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-brand__brand-read {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.c-brand__brand-read::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  width: 2.5rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
}

.c-brand__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  gap: 12px;
  gap: 0.75rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
}

.c-brand__title-en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.c-brand__title-ja {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.c-brand__brand-catch {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.c-brand__brand-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.c-brand__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1132px;
  max-width: 70.75rem;
  margin: 126px auto 48px;
  margin: 7.875rem auto 3rem;
  gap: 25px;
  gap: 1.5625rem;
}

.c-brand__more-inner {
  width: 50%;
}

.u-top-image {
  position: relative;
  margin-top: -160px;
  margin-top: -10rem;
}

.c-brand__container {
  scroll-margin-top: 5rem;
}

.c-brand__container:not(.u-reverse) .u-top-image {
  left: 50px;
}

.c-brand__more-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.u-top-image .c-brand__more-img {
  display: block;
  aspect-ratio: 375/500;
  max-width: 375px;
  max-width: 23.4375rem;
  width: 100%;
  margin-bottom: 77px;
  margin-bottom: 4.8125rem;
}

.c-brand__more-title {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  max-width: 450px;
  max-width: 28.125rem;
}

.c-brand__more-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  max-width: 450px;
  max-width: 28.125rem;
}

.u-bottom-image .c-brand__more-img {
  display: block;
  aspect-ratio: 440/272;
  max-width: 440px;
  max-width: 27.5rem;
  width: 100%;
  margin-top: 135px;
  margin-top: 8.4375rem;
}

.c-brand__container.u-reverse {
  margin-top: 96px;
  margin-top: 6rem;
}

.u-reverse .c-brand__contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.u-reverse .c-brand__more {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.u-reverse .u-bottom-image .c-brand__more-img {
  margin-top: 80px;
  margin-top: 5rem;
}

.u-reverse .u-top-image .c-brand__more-img {
  margin-left: auto;
}

.u-reverse .c-brand__contents-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/brand/zenith-bg.jpg") no-repeat center center/cover;
  z-index: -1;
}

.u-reverse .c-brand__contents-inner::after {
  content: "";
  background: url("../images/brand/symbol.svg") no-repeat center center/cover;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  left: 0;
}

.u-reverse .c-brand__contents-inner {
  padding: 0 calc(50vw - 33.75rem) 0 0;
}

.l-brand .c-button {
  background-color: transparent;
}

.u-reverse .c-brand__contents-inner-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.p-brand__tranova-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  gap: 60px;
  gap: 3.75rem;
  padding: 80px 66px 80px 54px;
  padding: 5rem 4.125rem 5rem 3.375rem;
}

.p-brand__tranova-img {
  max-width: 285px;
  max-width: 17.8125rem;
  width: 100%;
  aspect-ratio: 285/194;
}

.l-brand__tranova {
  margin-top: 96px;
  margin-top: 6rem;
}

.p-brand__tranova-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-brand__tranova-title {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-brand__tranova-title .u-text-small {
  font-size: 16px;
  font-size: 1rem;
}

.p-brand__tranova-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

@media (max-width: 1279px) {
  .c-brand__contents-inner {
    padding: 3.125rem 1.5625rem;
  }
  .u-reverse .c-brand__contents-inner {
    padding: 3.125rem 1.5625rem;
  }
  .c-brand__contents-inner-wrap {
    margin: auto;
  }
  .c-brand__more {
    padding: 0 1.5625rem;
  }
}
@media (max-width: 1024px) {
  .tripla-top #tripla-searching-app {
    padding: 0;
  }
}
@media (max-width: 900px) {
  .c-brand__contents,
  .u-reverse .c-brand__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c-brand__more-contents {
    max-width: 350px;
    margin: auto;
  }
  .c-brand__img {
    width: 100%;
  }
  .c-brand__contents-inner,
  .u-reverse .c-brand__contents-inner {
    width: 100%;
  }
  .p-brand__tranova-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-brand__tranova-img {
    margin: auto;
  }
  .c-brand__more {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 5rem auto;
    gap: 4rem;
  }
  .u-reverse .u-bottom-image .c-brand__more-img {
    margin-top: 0;
  }
  .u-reverse .c-brand__more {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 5rem auto;
  }
  .u-top-image .c-brand__more-img {
    margin: 0 auto 1.5625rem;
  }
  .u-bottom-image .c-brand__more-img {
    margin: 0 auto;
  }
  .c-brand__more-inner {
    width: 100%;
  }
  .u-reverse .c-brand__more-inner {
    width: 100%;
  }
  .u-top-image {
    margin-top: 0;
  }
  .c-brand__container:not(.u-reverse) .u-top-image {
    left: 0;
  }
  .u-bottom-image {
    margin-top: 0;
  }
  .c-brand__more-title,
  .c-brand__more-text {
    max-width: unset;
  }
  .c-brand__more-inner.u-bottom-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.5625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-brand__about-text {
    text-align: left;
  }
  .p-brand__tranova-inner {
    padding: 2.5rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .p-brand__tranova-title {
    font-size: 1.125rem;
  }
  .p-brand__tranova-title .u-text-small {
    font-size: 0.875rem;
  }
  .c-brand__more-title {
    font-size: 1.125rem;
  }
  .c-brand__more-text {
    font-size: 0.875rem;
  }
  .c-brand__title {
    margin-bottom: 2.5rem;
  }
  .c-brand__title-en {
    font-size: 1.5rem;
  }
  .c-brand__title-ja {
    font-size: 0.6875rem;
  }
  .c-brand__brand-catch {
    font-size: 1.125rem;
  }
  .c-brand__brand-text {
    font-size: 0.875rem;
  }
  .p-brand__about-text {
    font-size: 0.875rem;
  }
  .c-brand__brand-read {
    font-size: 0.75rem;
  }
  .u-top-image .c-brand__more-img {
    margin-bottom: 1.25rem;
  }
  .u-bottom-image .c-brand__more-img {
    margin-top: 1.25rem;
  }
  .p-brand__about-text {
    margin: 4rem auto;
  }
  .p-brand__tranova-img {
    max-width: 9.375rem;
  }
}
.p-commercial-transactions__list {
  margin-top: 48px;
  margin-top: 3rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-commercial-transactions__list {
    font-size: 1rem;
    margin-top: 3.125rem;
    display: grid;
    grid-template-columns: 18rem 1fr;
  }
}

.p-commercial-transactions__item-title {
  background-color: #edeef0;
  padding: 12px 24px 12px 24px;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
}
@media screen and (min-width: 768px) {
  .p-commercial-transactions__item-title {
    border-left: none;
    border-right: none;
    padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-commercial-transactions__item-title:last-of-type {
    border-bottom: solid 1px #dddddd;
  }
}

.p-commercial-transactions__item-data {
  padding: 12px 24px 12px 24px;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
}
@media screen and (min-width: 768px) {
  .p-commercial-transactions__item-data {
    border-left: none;
    border-right: none;
    padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-commercial-transactions__item-data:last-of-type {
    border-bottom: solid 1px #dddddd;
  }
}

.p-contact-part {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-contact-part {
    margin-top: 6rem;
  }
}

.p-contact-part__inner {
  padding: 40px 0 44px;
  padding: 2.5rem 0 2.75rem;
  background-color: #ffffff;
}

.p-contact-part__lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-contact-part__lead {
    margin-top: 3rem;
  }
}

.button__wrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button__wrapper {
    margin-top: 2.5rem;
  }
}

.p-error404 {
  text-align: center;
}

.p-error404__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-error404__lead {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
  line-height: 1.4;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-error404__lead {
    line-height: 1.75;
    margin-top: 3rem;
  }
}

.p-error404__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-error404__text {
    font-size: 1rem;
  }
}

.p-error404__button {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-error404__button {
    margin-top: 4rem;
  }
}

.l-facilities {
  margin-top: 48px;
  margin-top: 3rem;
}
.l-facilities .p-blog__taxonom-list {
  background-color: #ffffff;
  margin-top: 16px;
  padding: 32px 24px 32px;
  padding: 2rem 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-facilities .p-blog__taxonom-list {
    padding: 3rem 4.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-facilities .p-blog__taxonom-list .taxonom-list__wrap {
  border-top: 1px solid #eeeeee;
  width: 100%;
  padding-block: 16px;
}
@media screen and (min-width: 768px) {
  .l-facilities .p-blog__taxonom-list .taxonom-list__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-block: 20px;
  }
}
.l-facilities .p-blog__taxonom-list .taxonom-list__wrap:first-child {
  border-top: none;
  padding-top: 0;
}
.l-facilities .p-blog__taxonom-list .taxonom-list__wrap .ttl-area {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-facilities .p-blog__taxonom-list .taxonom-list__wrap .ttl-area {
    max-width: 21%;
    width: 100%;
  }
}
.l-facilities .p-blog__taxonom-list .taxonom-list__wrap .c-area-label {
  padding: 16px 0 0 0;
}
@media screen and (min-width: 768px) {
  .l-facilities .p-blog__taxonom-list .taxonom-list__wrap .c-area-label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}
.l-facilities .p-blog__taxonom-list .c-button {
  background-color: transparent;
  color: #222222;
  border: 1px solid #222222;
  margin: 24px auto 0;
}
@media screen and (min-width: 768px) {
  .l-facilities .p-blog__taxonom-list .c-button {
    margin: 32px auto 0;
  }
}
.l-facilities .p-blog__contents {
  margin-top: 48px;
  margin-top: 3rem;
}
.l-facilities .p-blog__contents .c-blog-card {
  position: relative;
}
.l-facilities .p-blog__contents .c-blog-card__label {
  margin-bottom: 4px;
}
.l-facilities .p-blog__contents .c-blog-card__label span:first-child::after {
  content: " ｜ ";
  display: inline-block;
  padding-inline: 2px;
}
.l-facilities .p-blog__contents .c-blog-card__content {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.l-facilities .p-blog__contents .c-blog-card__title {
  padding-bottom: 0;
}
.l-facilities .p-blog__contents .c-blog-card__text {
  margin-top: 4px;
}
.l-facilities .p-blog__contents .other-label {
  margin: 8px 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .l-facilities .p-blog__contents .other-label {
    margin-block: 8px;
  }
}
.l-facilities .p-blog__contents .other-label span {
  display: inline-block;
  color: #fff;
  background-color: #23263e;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .l-facilities .p-blog__contents .other-label span {
    font-size: 0.875rem;
  }
}
.l-facilities .p-blog__contents .series-label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.l-facilities .p-blog__contents .series-label span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  background-color: #23263e;
  padding: 2px 12px;
  border-radius: 4px;
}
.l-facilities .taxonom-list__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .l-facilities .taxonom-list__button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    margin-top: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-facilities .taxonom-list__button-wrap .add-button {
  text-align: center;
}
.l-facilities .taxonom-list__button-wrap .search-button {
  text-align: center;
  background-color: #23263e;
}
.l-facilities .taxonom-list__button-wrap .search-button .c-button__text {
  color: #fff;
}
.l-facilities .taxonom-list__button-wrap .search-button::before {
  background-image: url(../images/common/arrow-right-white.svg);
}
.l-facilities .taxonom-list__button-wrap .search-button::after {
  background-color: #fff;
}
.l-facilities .taxonom-list__button-wrap .search-button:hover .c-button__text {
  color: #23263e;
}
.l-facilities .taxonom-list__button-wrap .search-button:hover::before {
  background-image: url(../images/common/arrow-right.svg);
}
.l-facilities .taxonom-list__button-wrap .c-button {
  margin: 0;
}

.l-facilities-single {
  margin-top: 48px;
  margin-top: 3rem;
}
.l-facilities-single .p-facilities__img-main {
  position: relative;
  padding-inline: 64px;
  overflow: hidden;
}
.l-facilities-single .p-facilities__img-main .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-facilities-single .p-facilities__img-main .swiper-slide {
  max-height: 500px;
}
.l-facilities-single .p-facilities__img-thumb {
  padding-inline: 64px;
  margin-block: 32px;
  overflow: hidden;
}
.l-facilities-single .p-facilities__img-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-facilities-single .p-facilities__info-title {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__info-title {
    font-size: 1.625rem;
  }
}
.l-facilities-single .p-facilities__info-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-facilities-single .p-facilities__info-category li {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  background: #23263e;
  border-radius: 4px;
  padding: 4px 12px;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__info-category li {
    font-size: 0.875rem;
  }
}
.l-facilities-single .p-facilities__search label {
  color: #000 !important;
}
.l-facilities-single .p-facilities__detail {
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__detail {
    padding-bottom: 0px;
  }
}
.l-facilities-single .p-facilities__detail-title {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 26px;
}
.l-facilities-single .p-facilities__detail-title::after {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 16px auto 0;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__detail-title {
    font-size: 1.625rem;
  }
}
.l-facilities-single .p-facilities__detail-block {
  background: #fff;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__detail-block {
    padding: 40px 56px;
  }
}
.l-facilities-single .p-facilities__detail-table {
  width: 100%;
  border-collapse: collapse;
}
.l-facilities-single .p-facilities__detail-table th,
.l-facilities-single .p-facilities__detail-table td {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
}
.l-facilities-single .p-facilities__detail-table th {
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  width: 25%;
  padding: 1em 0 0;
}
.l-facilities-single .p-facilities__detail-table td {
  padding: 1em 0;
  border-bottom: solid 1px #eee;
}
.l-facilities-single .p-facilities__detail-table tr:last-child th,
.l-facilities-single .p-facilities__detail-table tr:last-child td {
  border: none;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__detail-table th,
  .l-facilities-single .p-facilities__detail-table td {
    display: table-cell;
  }
  .l-facilities-single .p-facilities__detail-table th {
    padding: 1em 0;
    border-bottom: solid 1px #eee;
  }
}
.l-facilities-single .p-facilities__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-facilities-single .p-facilities__detail-button {
  text-align: center;
  margin-top: 32px;
}
.l-facilities-single .p-facilities__access-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 5vw, 80px);
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__access-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-facilities-single .p-facilities__access.--address .p-facilities__access-title::before {
  background: url(../../assets/images/facilities/icon_address.svg) no-repeat center/contain;
}
.l-facilities-single .p-facilities__access.--spot .p-facilities__access-title::before {
  background: url(../../assets/images/facilities/icon_spot.svg) no-repeat center/contain;
}
.l-facilities-single .p-facilities__access.--transportation .p-facilities__access-title::before {
  background: url(../../assets/images/facilities/icon_transportation.svg) no-repeat center/contain;
}
.l-facilities-single .p-facilities__access.--airport .p-facilities__access-title::before {
  background: url(../../assets/images/facilities/icon_airport.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__access.--address, .l-facilities-single .p-facilities__access.--spot {
    grid-row: span 2;
  }
}
.l-facilities-single .p-facilities__access-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: solid 1px currentColor;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.l-facilities-single .p-facilities__access-title::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__access-title {
    font-size: 1rem;
  }
}
.l-facilities-single .p-facilities__access-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  clear: both;
}
.l-facilities-single .p-facilities__access-map-btn {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  background: #23263e;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 4px;
  float: right;
  margin-top: -4em;
}
.l-facilities-single .p-facilities__access-map-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url(../../assets/images/facilities/icon_newtab.svg) no-repeat center/contain;
  vertical-align: middle;
  margin-left: 10px;
}
.l-facilities-single .p-facilities__access-map {
  margin-top: 16px;
}
.l-facilities-single .p-facilities__access-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 360/244;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__access-map iframe {
    width: min(30vw, 380px);
  }
}
.l-facilities-single .p-facilities__recommend {
  position: static !important;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__recommend {
    position: fixed !important;
    right: 0;
    bottom: 0;
    z-index: 10;
  }
}
.l-facilities-single .p-facilities__pager {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-facilities-single .p-facilities__pager {
    margin-top: 4rem;
  }
}

.js-accordion-contents {
  display: none;
}

.js-facilities-slider,
.js-facilities-thumb {
  visibility: hidden;
  opacity: 0;
}

/* Swiperが初期化されたら表示 */
.swiper-initialized {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-footer {
  background-color: #23263e;
  color: #ffffff;
  width: 100%;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    margin-top: 5rem;
  }
}

.p-footer__inner {
  padding: 40px 20px 48px;
  padding: 2.5rem 1.25rem 3rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 1.5rem 1.8125rem 1rem;
  }
}

.p-footer__totop {
  display: block;
  width: 20px;
  width: 1.25rem;
  margin-inline: auto;
}

.p-footer__totop:hover {
  opacity: 0.7;
}

.p-footer__logo {
  width: 43px;
  width: 2.6875rem;
  margin-inline: auto;
  margin-top: 26px;
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-top: 2rem;
  }
}

.p-footer__logo img {
  height: auto;
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 8px;
  row-gap: 0.5rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
  margin-top: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    row-gap: 0rem;
  }
}

.p-footer__nav-item {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-footer__nav-item:hover {
  opacity: 0.7;
}

.p-footer__desktop-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__desktop-only {
    display: inline-block;
  }
}

.p-footer__overview {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 40px;
  text-align: center;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-footer__overview {
    font-size: 0.8125rem;
  }
}

.p-footer__explanation {
  margin-top: 32px;
  margin-top: 2rem;
  padding-top: 32px;
  padding-top: 2rem;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-top: solid 1px rgba(221, 221, 221, .2);
  color: #9e9e9e;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-footer__explanation {
    font-size: 0.8125rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}

.footer__copyright {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #9e9e9e;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 0.5rem;
  }
}

.footer__copyright small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__copy-mark {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer__copy-text {
  padding-left: 2px;
  padding-left: 0.125rem;
}

.p-header {
  position: fixed;
  z-index: 99;
  -webkit-box-shadow: 0 3px 0.3125rem rgba(0, 0, 0, .2);
          box-shadow: 0 3px 0.3125rem rgba(0, 0, 0, .2);
}

.home .p-header {
  position: absolute;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home .p-header.is-open {
  background-color: transparent;
}

.p-header.is-open {
  background-color: #23263e;
}

.p-header {
  background-color: #23263e;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 16px;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-right: 2rem;
  }
}

.p-header__right-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  position: relative;
  z-index: 100;
}

.p-header__logo {
  padding: 16px 30px 16px 20px;
  padding: 1rem 1.875rem 1rem 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    padding: 0.625rem 2.5rem;
  }
}

.p-header__button-resevation {
  display: none;
}

@media screen and (min-width: 768px) {
  .home .p-header.is-open .p-header__button-resevation {
    display: none;
  }
}

.p-header__button__laungage {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-header__navigation {
  position: relative;
  z-index: 90;
}

.p-sitemap__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 48px 32px;
  padding: 3rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 32px;
  row-gap: 2rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-sitemap__contents {
    margin-top: 3rem;
    padding: 4rem 4rem;
  }
}

.p-sitemap__item {
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sitemap__item {
    padding-left: 1.5rem;
  }
}

.p-terms {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-terms {
    font-size: 1rem;
  }
}

.p-terms__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-terms__contents {
    margin-top: 3rem;
  }
}

.p-terms__section:not(:first-child) {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-terms__section:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-terms__text {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-terms__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
  line-height: 1.4;
}

.p-terms__article {
  list-style-type: decimal;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-terms__article {
    padding-left: 1.25rem;
  }
}

.p-terms__article--disc {
  list-style-type: disc;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-terms__article--disc {
    padding-left: 1.25rem;
  }
}

.p-terms__paragraph {
  margin: 8px 0 12px;
  margin: 0.5rem 0 0.75rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-terms__paragraph {
    padding-left: 2rem;
  }
}

.p-terms__paragraph-iroha {
  position: relative;
  margin: 8px 0 12px;
  margin: 0.5rem 0 0.75rem;
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-terms__paragraph-iroha {
    padding-left: 1.5rem;
  }
}

.p-terms__paragraph-law {
  margin: 8px 0 12px;
  margin: 0.5rem 0 0.75rem;
  list-style-type: disc;
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-terms__paragraph-law {
    padding-left: 1.5rem;
  }
}

.p-terms__paragraph > li:nth-of-type(14)::before, .p-terms__paragraph > li:nth-of-type(13)::before, .p-terms__paragraph > li:nth-of-type(12)::before, .p-terms__paragraph > li:nth-of-type(11)::before, .p-terms__paragraph > li:nth-of-type(10)::before, .p-terms__paragraph > li:nth-of-type(9)::before, .p-terms__paragraph > li:nth-of-type(8)::before, .p-terms__paragraph > li:nth-of-type(7)::before, .p-terms__paragraph > li:nth-of-type(6)::before, .p-terms__paragraph > li:nth-of-type(5)::before, .p-terms__paragraph > li:nth-of-type(4)::before, .p-terms__paragraph > li:nth-of-type(3)::before, .p-terms__paragraph > li:nth-of-type(2)::before, .p-terms__paragraph > li:nth-of-type(1)::before, .p-terms__paragraph > li::before {
  position: absolute;
  content: "";
  left: -2px;
}

.p-terms__paragraph > li:nth-of-type(1)::before {
  content: "(1)";
}

.p-terms__paragraph > li:nth-of-type(2)::before {
  content: "(2)";
}

.p-terms__paragraph > li:nth-of-type(3)::before {
  content: "(3)";
}

.p-terms__paragraph > li:nth-of-type(4)::before {
  content: "(4)";
}

.p-terms__paragraph > li:nth-of-type(5)::before {
  content: "(5)";
}

.p-terms__paragraph > li:nth-of-type(6)::before {
  content: "(6)";
}

.p-terms__paragraph > li:nth-of-type(7)::before {
  content: "(7)";
}

.p-terms__paragraph > li:nth-of-type(8)::before {
  content: "(8)";
}

.p-terms__paragraph > li:nth-of-type(9)::before {
  content: "(9)";
}

.p-terms__paragraph > li:nth-of-type(10)::before {
  content: "(10)";
}

.p-terms__paragraph > li:nth-of-type(11)::before {
  content: "(11)";
}

.p-terms__paragraph > li:nth-of-type(12)::before {
  content: "(12)";
}

.p-terms__paragraph > li:nth-of-type(13)::before {
  content: "(13)";
}

.p-terms__paragraph > li:nth-of-type(14)::before {
  content: "(14)";
}

.p-terms__paragraph-iroha > li:nth-of-type(7)::before, .p-terms__paragraph-iroha > li:nth-of-type(6)::before, .p-terms__paragraph-iroha > li:nth-of-type(5)::before, .p-terms__paragraph-iroha > li:nth-of-type(4)::before, .p-terms__paragraph-iroha > li:nth-of-type(3)::before, .p-terms__paragraph-iroha > li:nth-of-type(2)::before, .p-terms__paragraph-iroha > li:nth-of-type(1)::before, .p-terms__paragraph-iroha > li::before {
  position: absolute;
  content: "";
  left: -12px;
}

.p-terms__paragraph-iroha > li:nth-of-type(1)::before {
  content: "(イ)";
}

.p-terms__paragraph-iroha > li:nth-of-type(2)::before {
  content: "(ロ)";
}

.p-terms__paragraph-iroha > li:nth-of-type(3)::before {
  content: "(ハ)";
}

.p-terms__paragraph-iroha > li:nth-of-type(4)::before {
  content: "(ニ)";
}

.p-terms__paragraph-iroha > li:nth-of-type(5)::before {
  content: "(ホ)";
}

.p-terms__paragraph-iroha > li:nth-of-type(6)::before {
  content: "(ヘ)";
}

.p-terms__paragraph-iroha > li:nth-of-type(7)::before {
  content: "(ト)";
}

.p-terms__table-group {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-terms__table-group {
    margin-top: 1.5rem;
  }
}

.lodging-policy-table {
  margin-top: 8px;
  margin-top: 0.5rem;
  border: solid 1px #dddddd;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lodging-policy-table {
    width: auto;
  }
}

.lodging-policy-table tr,
.lodging-policy-table th,
.lodging-policy-table td {
  border: solid 1px #dddddd;
}

.lodging-policy-table th,
.lodging-policy-table td {
  padding: 12px;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .lodging-policy-table th,
  .lodging-policy-table td {
    padding: 1rem;
    width: 18.125rem;
  }
}

.lodging-policy-table td {
  width: 50%;
  text-align: center;
}

.lodging-policy-table th {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .lodging-policy-table th {
    text-align: center;
    font-size: 1rem;
  }
}

.lodging-policy-table .p-terms-table-title {
  background-color: #edeef0;
}

.lodging-policy-caption {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .lodging-policy-caption {
    font-size: 1rem;
  }
}

.lodging-policy-table--mobile {
  display: table;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lodging-policy-table--mobile {
    display: none;
  }
}

.lodging-policy-table--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .lodging-policy-table--desktop {
    display: table;
  }
}

.p-top-blog__swiper {
  position: relative;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-blog__swiper {
    max-width: 83.125rem;
    margin-top: 2.5rem;
  }
}

.p-top-blog__button {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-blog__button {
    margin-top: 2.25rem;
  }
}

.p-top-blog__swiper .swiper-button-prev,
.p-top-blog__swiper .swiper-button-next {
  position: absolute;
  top: 38%;
}
.p-top-blog__swiper .swiper-button-next,
.p-top-blog__swiper .swiper-rtl .swiper-button-prev {
  background-color: rgba(255, 255, 255, .9);
  border: solid 1px #222222;
  right: 20px;
  left: auto;
}
@media screen and (min-width: 768px) {
  .p-top-blog__swiper .swiper-button-next,
  .p-top-blog__swiper .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
}

.p-top-blog__swiper .swiper-button-prev,
.p-top-blog__swiper .swiper-rtl .swiper-button-next {
  background-color: rgba(255, 255, 255, .9);
  border: solid 1px #222222;
  left: 20px;
  right: auto;
}
@media screen and (min-width: 768px) {
  .p-top-blog__swiper .swiper-button-prev,
  .p-top-blog__swiper .swiper-rtl .swiper-button-next {
    left: 0px;
  }
}

.p-top-blog__swiper .noSearch-results {
  position: relative;
}

.p-top-brand {
  position: relative;
  z-index: 1;
}

.p-top-brand__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-brand__contents {
    margin-top: 2.5rem;
  }
}

.p-top-faq__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-faq__contents {
    margin-top: 2.5rem;
  }
}

.p-top-faq__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-link {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-link {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    max-width: 1130px;
    margin-inline: auto;
  }
}

.p-top-map {
  position: relative;
  z-index: 5;
}

.p-top-series__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 32px;
  gap: 2rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-series__contents {
    display: grid;
    grid-template-columns: 21.25rem 1fr;
    gap: clamp(1.25rem, 3.5vw, 5rem);
    margin-top: 2.5rem;
    margin-inline: auto;
    max-width: 83.125rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-top-series__pararax {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-series__pararax {
    margin-top: 6rem;
  }
}

.p-top-series__summary {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}
.p-top-series__summary .summary_text {
  text-align: center;
  line-height: 2.05;
  font-size: 16px;
  margin-top: 40px;
  padding: 0 20px;
}

/* トップページ */
.p-top-brand-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #fff;
  text-align: center;
}

.p-top-brand__wrapper {
  position: relative;
  margin-top: 40px;
}

.p-top-brand__wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 400px;
  width: 422px;
  background: url("../images/top/simbol.svg") no-repeat center center/cover;
  background-size: contain;
  z-index: 10;
  pointer-events: none;
}

.p-top-brand-section__container.u-zenith {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-top-brand-section__title-contents,
.p-top-brand-section__contents {
  width: 50%;
  aspect-ratio: 720/540;
  position: relative;
}

.p-top-brand-section__title-contents-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-brand-section__title-contents-name {
  margin-bottom: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 41px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.p-top-brand-section__title-contents-text {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.p-top-brand-section__title-contents-text::after,
.p-top-brand-section__title-contents-text::before {
  content: "ー";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-top-brand-section__title-contents-text::before {
  left: 100%;
}

.p-top-brand-section__title-contents-text::after {
  right: 100%;
}

.p-top-brand-section__title-contents-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-top-brand-section__contents {
  background: url("../images/top/top-ars-bg.webp") no-repeat center center/cover;
}

.u-zenith .p-top-brand-section__contents {
  background: url("../images/top/top-zenith-bg.webp") no-repeat center center/cover;
}

.u-bg-white .c-button-view__arrow-wrapper {
  background: #fff;
}

.c-button-view.u-bg-white:after {
  background-color: #fff;
}

.c-button.u-white {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.u-white .c-button__text {
  color: #fff;
}

.u-white.c-button:hover .c-button__text {
  color: #222222;
}

.u-white.c-button:hover::before {
  background-image: url(../images/common/arrow-right.svg);
}

.u-white.c-button:before {
  background-image: url(../images/common/arrow-right-white.svg);
}

.u-white.c-button:after {
  background-color: #fff;
  border-color: #fff;
}

.p-top-brand-section__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.p-top-brand-section__contents-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.p-top-brand-section__contents-text {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-top: 24px;
  margin-bottom: 32px;
}

.p-top-brand-section__contents-button {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .p-top-brand__wrapper:before {
    display: none;
  }
  .p-top-brand-section__container,
  .p-top-brand-section__container.u-zenith {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-brand-section__title-contents,
  .p-top-brand-section__contents {
    width: 100%;
  }
  .p-top-brand-section__contents {
    aspect-ratio: unset;
    padding: 80px 1.25rem;
  }
}
@media (max-width: 767px) {
  .p-top-brand-section__contents {
    padding: 40px 1.25rem;
  }
  .p-top-brand-section__contents-title {
    font-size: 16px;
  }
  .p-top-brand-section__contents-text {
    font-size: 14px;
  }
  .p-top-brand-section__contents-button {
    margin-top: 8px;
  }
  .p-top-brand-section__title-contents-name {
    font-size: 26px;
  }
  .p-top-brand-section__title-contents-text {
    font-size: 12px;
  }
}
#tripla-searching-app form {
  background: transparent;
}

.tripla-top #tripla-searching-app {
  width: 100%;
  padding: 24px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0;
  max-width: 1080px;
  margin: auto;
}

.tripla-top .search-widget-search-container-bf1818 {
  width: 100% !important;
  padding: 0;
  text-align: center;
}

.tripla-top #tripla-searching-app form {
  -webkit-box-shadow: none;
          box-shadow: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.tripla-top #tripla-searching-app form label {
  color: #23263e;
}

#tripla-searching-app label {
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .tripla-top .search-widget-search-container-bf1818 .search-widget-button-wrapper-d2b715 {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tripla-top #tripla-searching-app {
    padding: 1.25rem 1.25rem;
  }
}
.top-banner__link--wrap {
  overflow-x: clip;
  margin-top: 48px;
  margin-top: 3rem;
  position: relative;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .top-banner__link--wrap {
    margin-top: 4rem;
  }
}
.top-banner__link--wrap .top-banner__link {
  max-width: 1130px;
  padding-inline: 25px;
  width: 100%;
  margin-inline: auto;
}
.top-banner__link--wrap .swiper-banner {
  overflow: visible;
  position: relative;
}
.top-banner__link--wrap .swiper-slide {
  width: 100%;
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .top-banner__link--wrap .swiper-slide {
    width: 528px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.top-banner__link--wrap .swiper-slide img {
  height: auto;
}
.top-banner__link--wrap .top-banner__item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-banner__link--wrap .top-banner__item:hover {
  opacity: 0.8;
}
.top-banner__link--wrap .swiper-banner__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .top-banner__link--wrap .swiper-banner__pagination {
    margin-top: 40px;
  }
}
.top-banner__link--wrap .swiper-banner__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
}
@media screen and (min-width: 768px) {
  .top-banner__link--wrap .swiper-banner__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
  }
}
.top-banner__link--wrap .swiper-banner__pagination .swiper-pagination-bullet-active {
  background-color: #23263e;
}
.top-banner__link--wrap .swiper-banner__navBtn {
  max-width: 350px;
  width: 100%;
  position: absolute;
  top: 24%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 8;
}
@media screen and (min-width: 768px) {
  .top-banner__link--wrap .swiper-banner__navBtn {
    max-width: 528px;
    top: 31%;
  }
}
.top-banner__link--wrap .swiper-banner__button-prev,
.top-banner__link--wrap .swiper-banner__button-next {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
  background-color: rgba(255, 255, 255, .9);
  border: solid 1px #222;
  cursor: pointer;
}
.top-banner__link--wrap .swiper-banner__button-prev {
  background-image: url(../images/common/arrow-left.svg);
  position: absolute;
  left: -16px;
}
@media screen and (min-width: 768px) {
  .top-banner__link--wrap .swiper-banner__button-prev {
    left: -24px;
  }
}
.top-banner__link--wrap .swiper-banner__button-next {
  background-image: url(../images/common/arrow-right.svg);
  position: absolute;
  right: -16px;
}
@media screen and (min-width: 768px) {
  .top-banner__link--wrap .swiper-banner__button-next {
    right: -24px;
  }
}

.member-banner__wrap {
  position: fixed;
  z-index: 90;
  bottom: 16px;
  bottom: 1rem;
  right: 16px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.member-banner__wrap .btn-close {
  width: 28px;
  height: 28px;
  position: absolute;
  top: -16px;
  left: -16px;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1049px) {
  .member-banner__wrap .btn-close {
    width: 32px;
    height: 32px;
  }
}
.member-banner__wrap .member-banner__link {
  display: block;
}
.member-banner__wrap .member-banner__link img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 216px;
  height: 84px;
}
@media screen and (min-width: 1049px) {
  .member-banner__wrap .member-banner__link img {
    width: 328px;
    height: 128px;
  }
}
.member-banner__wrap.is-hidden, .member-banner__wrap.is-closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/*# sourceMappingURL=style.css.map */
