@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
:root {
  --color-light-gray: #F2F2F2;
  --color-dark-gray: #676564;
  --color-text: #000;
  --color-border: #C9C9C9;
  --color-white: #fff;
  --color-black: #000;
  --color-navy:#1F4074;
  --color-yellow: #FFE13B;
}

html {
  font-size: 16px;
}

body {
  font-family: "Yu Gothic Pr6N", "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: var(--color-black);
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
  color: var(--color-green);
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* 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: 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;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  height: 4.0625rem;
  transition: all 0.5s ease;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .header {
    height: 5rem;
  }
}
body.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 768px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.header__inner {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  padding: 0 1.5625rem;
  height: inherit;
}
@media screen and (max-width: 1440px) {
  .header__inner {
    padding: 0 0.9375rem;
  }
}

.header__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
  z-index: 101;
}

.header__title-link {
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 2.2121212121;
  color: var(--color-navy);
}
@media screen and (max-width: 1024px) {
  .header__title-link {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .header__title-link {
    font-size: clamp(1.25rem, 0.893rem + 1.79vw, 1.75rem);
  }
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  flex-wrap: wrap;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  margin-left: 1.875rem;
}

.header__item {
  height: inherit;
}

.header__link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  height: inherit;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .header__link {
    font-size: 0.875rem;
  }
}

.header__button {
  max-width: 169px;
  width: 100%;
  background-color: var(--color-yellow);
  border: 1px solid var(--color-navy);
  cursor: pointer;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  border-radius: 2.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .header__button {
    max-width: 130px;
  }
}
@media screen and (max-width: 768px) {
  .header__button {
    display: none;
  }
}

.header__button-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .header__button-text {
    font-size: 0.875rem;
  }
}

.header__hamburger-wrap {
  display: none;
  width: 3.75rem;
  aspect-ratio: 1/1;
  z-index: 101;
  border: 1px solid var(--color-navy);
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .header__hamburger-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.3125rem;
}

.header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-navy);
  transition: all 0.3s;
}

.header__hamburger.is-active .header__hamburger-lines span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-lines span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.hamburger {
  position: absolute;
  z-index: 9999;
  top: 14px;
  right: 3%;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: var(--color-green);
  border-radius: 0.625rem;
  cursor: pointer;
}

.hamburger.is-active {
  top: 14px;
  right: 3%;
}

.hamburger__line {
  position: absolute;
  display: inline-block;
  left: 10px;
  top: 6px;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.3s;
  border-radius: 0.0625rem;
}

.hamburger__line:first-child {
  top: 14px;
}

.hamburger__line:nth-child(2) {
  top: 22px;
  transition: opacity 0.3s;
}

.hamburger__line:nth-child(3) {
  top: 30px;
}

.hamburger.is-active .hamburger__line:first-child {
  top: 20px;
  left: 8px;
  transform: rotate(-45deg);
  width: 30px;
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  top: 20px;
  left: 8px;
  transform: rotate(45deg);
  width: 30px;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 7.5rem 1.5625rem 6.25rem;
  z-index: 100;
  pointer-events: none;
}

.drawer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__items {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.drawer__item {
  margin-bottom: 0.9375rem;
}

.drawer__link {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 0.625rem 0;
  text-transform: uppercase;
}

.drawer__item a:hover {
  opacity: 0.7;
}

.drawer__btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.drawer__button {
  max-width: 360px;
  width: 100%;
  background-color: var(--color-yellow);
  border: 1px solid var(--color-navy);
  cursor: pointer;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.125rem;
}

.drawer__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.drawer__button-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
  text-transform: uppercase;
}

body.is-drawer-active {
  overflow: hidden;
}

/* パンくず */
.breadcrumb {
  margin-top: 1.25rem;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__inner {
    padding: 1rem 1.25rem 0;
    font-size: 0.75rem;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 430px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

.breadcrumb a {
  color: var(--color-dark-gray);
}

.breadcrumb .current-item {
  font-weight: 700;
  color: var(--color-navy);
}

.breadcrumb__between::before {
  content: ">";
  color: var(--color-navy);
  display: inline-block;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.c-button {
  position: relative;
  max-width: 290px;
  width: 100%;
  background-color: var(--color-yellow);
  border: 1px solid var(--color-navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.1875;
  text-align: center;
  color: var(--color-navy);
  cursor: pointer;
  text-decoration: none;
  padding: 0.625rem 0.9375rem;
  border-radius: 2.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 3.4210526316vw;
    line-height: 2.1923076923;
    padding: 0.625rem 0.9375rem;
    max-width: 80%;
    margin-inline: auto;
  }
}

.c-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/right-arrow-navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 32px;
  height: 16px;
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
}

.footer {
  background-color: var(--color-light-gray);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
  padding: 2.8125rem 0;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column-reverse;
  }
}

.footer__left {
  flex: 1;
}

.footer__company {
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 2.2121212121;
  color: var(--color-navy);
}
@media screen and (max-width: 1024px) {
  .footer__company {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__company {
    text-align: center;
    font-size: clamp(1.25rem, 0.893rem + 1.79vw, 1.75rem);
  }
}

.footer__nav {
  margin-top: 1.5625rem;
  max-width: 24.375rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    max-width: 100%;
  }
}

.footer__nav-list {
  display: flex;
  -moz-column-gap: 1.625rem;
       column-gap: 1.625rem;
  row-gap: 0.75rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    align-items: center;
    flex-direction: column;
    row-gap: 1.25rem;
  }
}

.footer__item-link {
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.1875;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .footer__item-link {
    font-size: 3.3854166667vw;
    line-height: 1.5384615385;
  }
}

.footer__button {
  text-transform: uppercase;
  margin-top: 1.875rem;
}

.footer__right {
  width: 27.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    width: 21.25rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}

.footer__map {
  width: 100%;
  overflow: hidden;
}
.footer__map iframe {
  width: 100%;
  height: 280px;
  border: none;
}
@media screen and (max-width: 768px) {
  .footer__map iframe {
    height: 360px;
  }
}

.footer__copyright {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-navy);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.0714285714;
  padding: 0.625rem 0;
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 60px;
  background-color: rgba(51, 51, 51, 0.5);
  cursor: pointer;
  opacity: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  z-index: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 3.125rem;
    height: 3.125rem;
    right: 7%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .page-top::after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.page-top.active {
  bottom: 1.875rem;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .page-top.active {
    bottom: 3.125rem;
  }
}

/*メニューをページ下部に固定*/
/* ページネーション */
.pagination {
  margin-top: 3.4375rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}

.pagination__arrow {
  color: var(--color-navy);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-navy);
  background-color: var(--color-white);
  border: 1px solid var(--color-navy);
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 0.625rem;
}

.page-numbers:hover {
  opacity: 1;
  background-color: var(--color-navy);
  color: var(--color-white);
}

.page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-navy);
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
  background-color: transparent;
}

/****************************************/
/****************************************/
.top-mv {
  position: relative;
  height: 100vh;
  background-color: var(--color-white);
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .top-mv {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  body.admin-bar .top-mv {
    margin-top: 48px;
  }
}

.top-mv__background {
  display: flex;
  gap: 1px;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .top-mv__background {
    flex-direction: column;
  }
}

.top-mv__left,
.top-mv__right {
  position: relative;
  width: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .top-mv__left,
.top-mv__right {
    width: 100vw;
    height: 50%;
  }
  .top-mv__left .top-mv__content,
.top-mv__right .top-mv__content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
  }
  .top-mv__left .top-mv__content .top-mv__title,
.top-mv__right .top-mv__content .top-mv__title {
    text-align: center;
  }
}

.top-mv__left {
  background-image: url(../images/fv-houstay.png);
}
@media screen and (max-width: 1200px) {
  .top-mv__left {
    background-position: 30% center;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__left {
    background-position: top center;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .top-mv__left {
    background-position: 30% 30%;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__left .top-mv__content {
    top: 60%;
  }
}

.top-mv__right {
  background-image: url(../images/fv-real-eastate.png);
}
@media screen and (max-width: 768px) {
  .top-mv__right .top-mv__content {
    top: 40%;
  }
}

.top-mv__inner {
  position: absolute;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5625rem;
  height: inherit;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1440px) {
  .top-mv__inner {
    padding: 0 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__inner {
    display: none;
  }
}

.top-mv__content.top-mv__content--left .top-mv__title {
  text-align: left;
}
.top-mv__content.top-mv__content--left .top-mv__button {
  margin-right: auto;
}
.top-mv__content.top-mv__content--right .top-mv__title {
  text-align: right;
}
.top-mv__content.top-mv__content--right .top-mv__button {
  margin-left: auto;
}

.top-mv__title {
  color: var(--color-white);
}

.top-mv__title-ja {
  font-size: 1.9375rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top-mv__title-ja {
    font-size: clamp(1.625rem, 0.765rem + 1.83vw, 1.938rem);
  }
}
@media screen and (max-width: 768px) {
  .top-mv__title-ja {
    font-size: 4.0364583333vw;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .top-mv__title-ja {
    font-size: 4.1333333333vh;
  }
}

.top-mv__title-en {
  font-size: 4.375rem;
  font-weight: 700;
  margin-top: 1.8125rem;
}
@media screen and (max-width: 1024px) {
  .top-mv__title-en {
    font-size: clamp(3.125rem, -0.314rem + 7.33vw, 4.375rem);
  }
}
@media screen and (max-width: 768px) {
  .top-mv__title-en {
    font-size: 9.1145833333vw;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .top-mv__title-en {
    font-size: 9.3333333333vh;
  }
}

.top-mv__button-wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-mv__button-wrap {
    margin-top: 2.1875rem;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .top-mv__button-wrap {
    margin-top: 0.3125rem;
  }
}
@media screen and (max-width: 430px) and (orientation: landscape) {
  .top-mv__button-wrap {
    margin-top: 0.3125rem;
  }
}

.top-mv__button {
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .top-mv__button {
    font-size: 3.4666666667vh;
    padding: 0.25rem 0.625rem;
  }
}

/****************************************/
/****************************************/
.top-about {
  background-color: var(--color-light-gray);
  padding: 7.75rem 0 6.3125rem;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 5rem 0 3.75rem;
  }
}
@media screen and (max-width: 430px) {
  .top-about {
    padding: 3.75rem 0 2.8125rem;
  }
}

.top-about__inner {
  position: relative;
}

.top-about__box {
  max-width: 55.6%;
  width: 100%;
  margin-top: 10.125rem;
}
@media screen and (max-width: 1200px) {
  .top-about__box {
    max-width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__box {
    max-width: 66%;
  }
}
@media screen and (max-width: 768px) {
  .top-about__box {
    max-width: 100%;
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .top-about__box-title {
    text-align: center;
  }
}

.top-about__box-text {
  margin-top: 1.875rem;
}

.top-about__img {
  position: absolute;
  max-width: 51.3%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 616/415;
  right: 0;
  top: 7.5rem;
}
@media screen and (max-width: 1200px) {
  .top-about__img {
    max-width: 46%;
    right: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__img {
    max-width: 42%;
  }
}
@media screen and (max-width: 768px) {
  .top-about__img {
    position: relative;
    top: unset;
    right: unset;
    max-width: 100%;
    margin-top: 1.25rem;
  }
}

.top-about__gallery {
  margin-top: 4.0625rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-about__gallery {
    margin-top: 2.5rem;
    grid-template-columns: 1fr 1fr;
  }
}

.top-about__gallery-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 57/38;
}

/****************************************/
/****************************************/
.top-stay {
  padding: 11rem 0 15.125rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .top-stay {
    padding: 6.25rem 0 8.75rem;
  }
}

.top-stay__cards {
  margin-top: 2.875rem;
}

/****************************************/
/****************************************/
.top-service {
  padding: 7.9375rem 0 11.75rem;
  background-color: var(--color-light-gray);
}
@media screen and (max-width: 768px) {
  .top-service {
    padding: 5rem 0 7.5rem;
  }
}

.top-service__box-wrap {
  position: relative;
}

.top-service__box {
  max-width: 55.6%;
  width: 100%;
  margin-top: 10.125rem;
}
@media screen and (max-width: 1200px) {
  .top-service__box {
    max-width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__box {
    max-width: 66%;
  }
}
@media screen and (max-width: 768px) {
  .top-service__box {
    max-width: 100%;
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .top-service__box-title {
    text-align: center;
  }
}

.top-service__box-text {
  margin-top: 1.875rem;
}

.top-service__img {
  position: absolute;
  max-width: 51.3%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 616/415;
  right: 0;
  top: -4.6875rem;
}
@media screen and (max-width: 1200px) {
  .top-service__img {
    max-width: 46%;
    right: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__img {
    max-width: 42%;
  }
}
@media screen and (max-width: 768px) {
  .top-service__img {
    position: relative;
    top: unset;
    right: unset;
    max-width: 100%;
    margin-top: 1.25rem;
  }
}

.top-service__box-wrap:nth-of-type(even) .top-service__img {
  right: unset;
  left: 0;
}

.top-service__box-wrap + .top-service__box-wrap {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .top-service__box-wrap + .top-service__box-wrap {
    margin-top: clamp(2.5rem, -0.179rem + 13.39vw, 6.25rem);
  }
}

.top-service__button {
  margin-top: 1.875rem;
  max-width: 325px;
}
@media screen and (max-width: 430px) {
  .top-service__button {
    max-width: 100%;
  }
}

/****************************************/
/****************************************/
.faq {
  position: relative;
  padding: 5.625rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .faq {
    padding: 1.875rem 0.9375rem;
  }
}

.faq__deco01 {
  top: 2%;
  right: -8%;
}
@media screen and (max-width: 768px) {
  .faq__deco01 {
    top: auto;
    bottom: 15%;
    right: -12%;
  }
}

.faq__deco02 {
  bottom: -20%;
  left: -8%;
}
@media screen and (max-width: 768px) {
  .faq__deco02 {
    bottom: -2%;
    left: -12%;
  }
}

@media screen and (max-width: 768px) {
  .faq__deco03 {
    top: 0;
    left: -12%;
  }
}

.faq__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding: 2.1875rem 1.25rem;
  }
}

.faq__items {
  margin-top: 2.8125rem;
}

.faq__item {
  width: 100%;
  background-color: var(--color-light-gray);
  border-radius: 0.625rem;
}

.faq__item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 430px) {
  .faq__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.faq-item__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  padding: 1.25rem 1.5625rem 1.25rem 3.9375rem;
}
@media screen and (max-width: 768px) {
  .faq-item__title {
    align-items: baseline;
    padding: 0.625rem 1.25rem 0.625rem 2.625rem;
  }
}

.faq-item__title::before {
  content: "Q.";
  top: 18px;
}

.faq-item__title::before,
.faq-item__content::before {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: 500;
  position: absolute;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .faq-item__title::before,
.faq-item__content::before {
    font-size: 3.4666666667vw;
    line-height: 1.1538461538;
    left: 20px;
  }
}

.faq-item__title-text {
  text-align: justify;
}

.faq-item__toggle-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 1.5625rem;
  flex-shrink: 0;
}

/* ＋ を擬似要素2本で作る */
.faq-item__toggle-icon::before,
.faq-item__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-dark-gray2);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.faq-item__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__title.is-open .faq-item__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item__title.is-open .faq-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item__content {
  display: none;
  position: relative;
  width: 100%;
  padding: 0 1.5625rem 1.25rem 3.9375rem;
}
@media screen and (max-width: 768px) {
  .faq-item__content {
    padding: 0 1.25rem 0.9375rem 2.625rem;
  }
}

.faq-item__content::before {
  content: "A.";
  top: 0;
}

/****************************************/
/****************************************/
.top-info {
  background-color: var(--color-white);
  padding: 12.8125rem 0;
}
@media screen and (max-width: 768px) {
  .top-info {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 430px) {
  .top-info {
    padding: 3.75rem 0;
  }
}

.top-info__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .top-info__category-list {
    justify-content: center;
    gap: 0.625rem;
  }
}

.top-info__categories {
  width: 100%;
}

.top-info__category-button {
  position: relative;
  min-width: 168px;
  width: 100%;
  padding: 0.5rem 0.9375rem;
  color: var(--color-navy);
  border: none;
  border-radius: 1.4375rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  border: 1px solid var(--color-navy);
}
.top-info__category-button.top-info__category-button--all {
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .top-info__category-button {
    min-width: 100px;
    padding: 0.3125rem 0.625rem;
    font-size: 3.3854166667vw;
  }
}
.top-info__category-button:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--color-navy);
}

.top-info__category-button.is-active {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.top-info__category-button.top-info__category-button--all.is-active {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.top-info__category-button.is-active:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid var(--color-navy);
  z-index: 2;
}

.top-info__category-button.top-info__category-button--all.is-active:before {
  border-top: 8px solid var(--color-navy);
}

.top-info__category-button.is-active:after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid var(--color-navy);
  z-index: 1;
}

.top-info__content {
  margin-top: 2.5rem;
  padding: 2.8125rem 3.125rem 3.9375rem;
}
@media screen and (max-width: 1024px) {
  .top-info__content {
    padding: 2.1875rem 1.875rem 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .top-info__content {
    margin-top: 3.75rem;
    padding: 2.1875rem 1.25rem 3.125rem;
  }
}

.top-info__list {
  margin-top: 1.875rem;
}

.top-info__list.loading a {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.top-info__btn-wrap {
  margin-top: 2.8125rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-info__btn-wrap {
    margin-top: 1.875rem;
  }
}

.top-info__btn {
  max-width: 289px;
  margin-inline: auto;
}
@media screen and (max-width: 430px) {
  .top-info__btn {
    max-width: 100%;
  }
}

/****************************************/
/****************************************/
.top-greeting {
  background-color: var(--color-light-gray);
  padding: 7.9375rem 0 13.3125rem;
}
@media screen and (max-width: 768px) {
  .top-greeting {
    padding: 5rem 0 7.5rem;
  }
}
@media screen and (max-width: 430px) {
  .top-greeting {
    padding: 3.75rem 0 6.25rem;
  }
}

.top-greeting__box-wrap {
  position: relative;
}

.top-greeting__box {
  max-width: 55.6%;
  width: 100%;
  margin-top: 10.125rem;
}
@media screen and (max-width: 1200px) {
  .top-greeting__box {
    max-width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .top-greeting__box {
    max-width: 66%;
  }
}
@media screen and (max-width: 768px) {
  .top-greeting__box {
    max-width: 100%;
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .top-greeting__box-title {
    text-align: center;
  }
}

.top-greeting__box-text {
  margin-top: 1.875rem;
}

.top-greeting__img {
  position: absolute;
  max-width: 51.3%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 616/415;
  left: 0;
  top: -4.6875rem;
}
@media screen and (max-width: 1200px) {
  .top-greeting__img {
    max-width: 46%;
    left: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-greeting__img {
    max-width: 42%;
  }
}
@media screen and (max-width: 768px) {
  .top-greeting__img {
    position: relative;
    top: unset;
    left: unset;
    max-width: 100%;
    margin-top: 1.25rem;
  }
}

.top-greeting__box-name {
  text-align: right;
  margin-top: 1.875rem;
}

/****************************************/
/****************************************/
.top-company {
  background-color: var(--color-white);
  padding: 15.3125rem 0 16.5625rem;
}
@media screen and (max-width: 768px) {
  .top-company {
    padding: 7.5rem 0 8.75rem;
  }
}
@media screen and (max-width: 430px) {
  .top-company {
    padding: 5rem 0 6.25rem;
  }
}

.top-company__list {
  width: 100%;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .top-company__list {
    margin-top: 4.0625rem;
  }
}
@media screen and (max-width: 430px) {
  .top-company__list {
    margin-top: 3.125rem;
  }
}

.top-company__item {
  display: flex;
  align-items: center;
  padding: 0.1875rem 1.125rem;
  font-size: 1rem;
  line-height: 2.5625;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-company__item {
    font-size: 3.3854166667vw;
    line-height: 1.3461538462;
    padding: 0.3125rem 1.125rem 0.5rem;
    border-radius: 0;
  }
}

.top-company__item:nth-child(odd) {
  background-color: var(--color-light-gray);
}

.top-company__item:nth-child(even) {
  background-color: var(--color-white);
}

.top-company__item-label {
  width: 9.5625rem;
  font-weight: 600;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .top-company__item-label {
    width: clamp(6.25rem, 0.596rem + 11.76vw, 8.125rem);
  }
}
@media screen and (max-width: 768px) {
  .top-company__item-label {
    width: 20%;
  }
}

.top-company__item-separator {
  width: 11.25rem;
  font-weight: 600;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .top-company__item-separator {
    width: clamp(5rem, -8.194rem + 27.45vw, 9.375rem);
  }
}
@media screen and (max-width: 768px) {
  .top-company__item-separator {
    width: 8%;
  }
}

.top-company__item-value {
  flex: 1;
  font-weight: 500;
}

/****************************************/
/****************************************/
/****************************************/
/****************************************/
.news {
  position: relative;
  padding: 3.125rem 1.875rem 6.25rem 1.875rem;
}
@media screen and (max-width: 430px) {
  .news {
    padding: 1.875rem 0.9375rem 3.75rem 0.9375rem;
  }
}

.news__inner {
  padding: 5rem 6.25rem 5.625rem;
  background-color: var(--color-white);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .news__inner {
    padding: 1.875rem 1.25rem 2.8125rem;
  }
}

.news.news--category {
  padding: 5rem 0 6.75rem;
}

.news__item {
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  padding: 0.9375rem 1.875rem;
  border-radius: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1.5625rem;
  }
}

.news__head-ja {
  margin-top: 1.125rem;
}

.news__item + .news__item {
  margin-top: 1.25rem;
}

.news-item__unit {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  row-gap: 0.3125rem;
  width: 18.75rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news-item__unit {
    width: 100%;
    justify-content: space-between;
  }
}

.news-item__date {
  color: var(--color-navy);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 3.125vw;
    min-width: 45%;
  }
}

.news-item__category {
  color: var(--color-navy);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .news-item__category {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 430px) {
  .news-item__category {
    max-width: 100%;
  }
}

.news-item__link {
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 700;
  margin-left: 1.25rem;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .news-item__link {
    margin-left: 0px;
    padding-top: 0;
    margin-top: 0.5rem;
    font-size: 3.3854166667vw;
  }
}

.news__content {
  margin-top: 0;
}

.news--category .news__content {
  margin-top: 3.75rem;
}

/****************************************/
/****************************************/
.stay {
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .stay {
    padding: 5rem 0;
  }
}

.stay__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .stay__cards {
    grid-template-columns: 1fr;
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

.stay__card {
  border-radius: 0.625rem;
  border: 1px solid var(--color-navy);
}

.stay__category-title-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.stay__category-title-en {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .stay__category-title-en {
    font-size: clamp(1.75rem, 1.607rem + 0.82vw, 2rem);
  }
}

.stay__category-title {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text-color);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .stay__category-title {
    font-size: clamp(1rem, 0.607rem + 0.82vw, 1.5rem);
  }
}

.stay-card__img-wrap {
  width: 100%;
  overflow: hidden;
}

.stay-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 75/73;
  width: 100%;
  transition: 0.5s;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.stay-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.stay-card__title {
  color: var(--color-navy);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.stay-card__button {
  max-width: 100%;
  margin-top: 0.8125rem;
  margin-inline: auto;
}

/****************************************/
/****************************************/
.contact {
  position: relative;
  padding: 3.125rem 1.875rem 6.25rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 430px) {
  .contact {
    padding: 1.875rem 0.9375rem 5rem;
  }
}

.contact__inner {
  padding: 3.75rem 2.1875rem 2.8125rem;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 2.5rem 1.25rem 1.875rem;
  }
}

.contact__title {
  text-align: center;
}

.contact__text {
  color: var(--color-black);
  padding-left: 1.25rem;
  border-left: 5px solid var(--color-navy);
}

.contact__box {
  background-color: var(--color-white);
  padding: 4.0625rem;
  border-radius: 0.3125rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .contact__box {
    padding: 3.125rem 4.8828125%;
  }
}
@media screen and (max-width: 768px) {
  .contact__box {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

.contact__mail-wrap {
  margin-top: 2.5rem;
}

.contact__link {
  color: var(--color-navy);
  text-decoration: underline;
}

.form__list {
  margin-top: 3.75rem;
}

.form__field {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .form__field {
    flex-direction: column;
  }
}

.form__label {
  min-width: 240px;
}
@media screen and (max-width: 768px) {
  .form__label {
    min-width: unset;
  }
}

.form__field + .form__field {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .form__field + .form__field {
    margin-top: 1.25rem;
  }
}

.form__data {
  flex-grow: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__data {
    margin-top: 0.625rem;
  }
}

.form__acceptance {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__acceptance {
    margin-top: 1.875rem;
  }
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #999999;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #999999;
}

.form__textarea {
  height: 15.625rem;
  resize: none;
}

.form__label {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--color-black);
}
.form__label .require {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  margin-left: 0.75rem;
  color: var(--color-text);
  background-color: var(--color-yellow);
  padding: 0.125rem 0.3125rem;
}
@media screen and (max-width: 430px) {
  .form__label {
    font-size: 1rem;
  }
}

.form__label label {
  display: flex;
  align-items: center;
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 1.125rem;
  width: 100%;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #E3E3E3;
  background-color: #F8F8F8;
  border-radius: 0.25rem;
}
@media screen and (max-width: 430px) {
  .form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
    padding: 0.5rem 0.9375rem;
    font-size: 1rem;
  }
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 60%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: var(--color-navy) transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__privacy-text {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.9375rem;
  color: var(--color-navy);
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 430px) {
  .form__privacy-text {
    font-size: 0.875rem;
    margin-left: 0.5rem;
  }
}

.form__privacy-note {
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0.9375rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  border: 1px solid var(--color-navy);
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 3px;
  width: 0.9375rem;
  height: 0.5rem;
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid var(--color-navy);
  border-left: 2px solid var(--color-navy);
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-link {
  display: inline-block;
  color: var(--deep-navy);
  font-weight: 500;
  border-bottom: 1px solid var(--color-navy);
  padding-bottom: 2px;
}

.form__submit-button-wrap {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .form__submit-button-wrap {
    margin-top: 1.25rem;
  }
}

.form__submit-button {
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .form__submit-button {
    margin-top: 1.25rem;
  }
}

.form__submit-button:hover {
  opacity: 0.7;
}

.form__note {
  font-size: 0.875rem;
  color: var(--color-black);
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 1.875rem;
  text-align: center;
}

.wpcf7 .wpcf7-submit:disabled {
  color: var(--color-white);
}

.wpcf7-spinner {
  display: none;
}

/****************************************/
/****************************************/
.site-content h2,
.site-content h3 {
  margin-bottom: 1.875rem;
}

.site-content h4,
.site-content h5,
.site-content h6 {
  margin-bottom: 1.5625rem;
}

.site-content p,
.site-content img,
.site-content ul,
.site-content ol,
.site-content table {
  margin-bottom: 0.9375rem;
}

.site-content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .site-content p {
    font-size: 3.4210526316vw;
    line-height: 1.5384615385;
  }
}

.site-content h2 {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-navy);
  line-height: 1.7058823529;
  padding: 0.3125rem 0.9375rem;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .site-content h2 {
    font-size: 4.4736842105vw;
    line-height: 1.375;
  }
}

.site-content h3 {
  position: relative;
  color: var(--color-navy);
  padding-bottom: 0.9375rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .site-content h3 {
    font-size: 4.6052631579vw;
    line-height: 2.2;
  }
}

.site-content h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--color-navy);
}

.site-content h4 {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark-gray);
  padding-left: 0.9375rem;
  border-left: 5px solid var(--color-navy);
}
@media screen and (max-width: 768px) {
  .site-content h4 {
    font-size: 4.2105263158vw;
  }
}

.site-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .site-content h5 {
    font-size: 3.9473684211vw;
  }
}

.site-content h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .site-content h6 {
    font-size: 3.6842105263vw;
  }
}

.site-content ul {
  list-style: none;
  padding-left: 2.25rem;
}
@media screen and (max-width: 768px) {
  .site-content ul {
    padding-left: 0.9375rem;
  }
}

.site-content ul li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: var(--color-black);
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .site-content ul li {
    align-items: baseline;
    font-size: 3.4210526316vw;
    line-height: 1.5384615385;
  }
}

.site-content ul li::before {
  content: "⚫︎";
  color: var(--color-navy);
  font-size: 0.5em;
  margin-right: 1em;
}

.site-content ul li:not(:first-child) {
  margin-top: 0.3125rem;
}

.site-content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 1.25rem;
}

.site-content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 2.1875rem;
}

.site-content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.site-content table table {
  border: none;
}

.site-content table thead {
  border-bottom: 1px solid var(--color-white);
}

.site-content table th {
  background: var(--color-navy);
  color: var(--color-white);
}

.site-content table td {
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
}

.site-content a {
  color: var(--color-navy);
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .site-content figure {
    text-align: center;
  }
}

.site-content figure.wp-block-image img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* YouTube iframe対応（レスポンシブ） */
.site-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 0.9375rem;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.site-content .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 0.9375rem;
}

.site-content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inner {
  position: relative;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0 1.25rem;
}

.inner1100 {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.inner900 {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 3.3854166667vw;
    line-height: 1.5384615385;
  }
}

.c-section-title {
  position: relative;
  color: var(--color-navy);
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.1935483871;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 5.2631578947vw;
    line-height: 1.375;
  }
}

.c-section-title::after {
  position: absolute;
  content: "";
  background-color: var(--color-navy);
  width: 2rem;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-section-title::after {
    bottom: -0.625rem;
  }
}

.c-section-subtitle {
  color: var(--color-navy);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .c-section-subtitle {
    font-size: 4.6052631579vw;
    line-height: 2.2;
  }
}

.navy-border-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: 0.625rem;
}
.navy-border-box.navy-border-box--left {
  padding: 5.125rem 10.5rem 3.625rem 4.875rem;
}
@media screen and (max-width: 1024px) {
  .navy-border-box.navy-border-box--left {
    padding-left: clamp(3.125rem, -0.645rem + 7.84vw, 4.375rem);
    padding-right: clamp(6.25rem, -1.289rem + 15.69vw, 8.75rem);
  }
}
@media screen and (max-width: 768px) {
  .navy-border-box.navy-border-box--left {
    padding: 2.5rem 1.875rem 3.125rem;
  }
}
@media screen and (max-width: 430px) {
  .navy-border-box.navy-border-box--left {
    padding: 1.875rem 0.9375rem 2.5rem;
  }
}
.navy-border-box.navy-border-box--right {
  padding: 5.125rem 5rem 3.25rem 10.4375rem;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .navy-border-box.navy-border-box--right {
    padding-left: clamp(6.25rem, -1.289rem + 15.69vw, 8.75rem);
    padding-right: clamp(3.125rem, -0.645rem + 7.84vw, 4.375rem);
  }
}
@media screen and (max-width: 768px) {
  .navy-border-box.navy-border-box--right {
    padding: 2.5rem 1.875rem 3.125rem;
  }
}
@media screen and (max-width: 430px) {
  .navy-border-box.navy-border-box--right {
    padding: 1.875rem 0.9375rem 2.5rem;
  }
}

.yellow-marker {
  display: inline-block;
  border-bottom: 2px solid var(--color-yellow3);
}

.page-heading {
  width: 100%;
  text-align: center;
  background-color: var(--color-dark-gray2);
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  padding: 0.5rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .page-heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .page-heading {
    font-size: 1.25rem;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.page-content {
  position: relative;
  padding: 5.4375rem 0;
}
@media screen and (max-width: 768px) {
  .page-content {
    padding: 2.5rem 0 3.75rem;
  }
}

.page-content__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 3.125rem;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-content__inner {
    padding: 0 1.5625rem;
  }
}

.post {
  padding: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .post {
    padding: 2.5rem 0 3.75rem;
  }
}

.post__inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .post__inner {
    padding: 0 0.9375rem;
  }
}

.post__thumbnail {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 1.25rem;
}

.post__body {
  padding-top: 3.75rem;
}

.post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9375rem;
  flex-wrap: wrap;
}

.post__category {
  display: inline-block;
  font-weight: 700;
  color: var(--color-navy);
}

.post__date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .post__date {
    font-size: 0.875rem;
  }
}

.post__title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .post__title {
    font-size: 5.5263157895vw;
  }
}

.post__title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--color-navy);
  height: 1px;
  left: 0;
  bottom: -5px;
}

.single-nav__items {
  margin-top: 90px;
  max-width: 600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 20px), 1fr));
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .single-nav__items {
    margin-top: 3.4375rem;
    grid-template-columns: 1fr;
    row-gap: 1.6875rem;
  }
}

.single-nav__item {
  width: 100%;
}

.page-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  padding: 0.625rem 1.25rem;
  transition: background-color 0.3s ease;
}

.page-nav-button:hover {
  border: 1px solid transparent;
  background-color: var(--color-navy);
  color: var(--color-white);
  opacity: 1;
}

.news__category-title-wrap {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news__category-title-en {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .news__category-title-en {
    font-size: clamp(1.75rem, 1.607rem + 0.82vw, 2rem);
  }
}

.news__category-title {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-navy);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .news__category-title {
    font-size: clamp(1rem, 0.607rem + 0.82vw, 1.5rem);
  }
}

/****************************************/
/****************************************/
.mv {
  position: relative;
  margin-top: 4.125rem;
  height: 17.5rem;
  background-image: unset;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/about-img02-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top top;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 5rem;
    height: 12.5rem;
  }
}

.mv__inner {
  max-width: 1286px;
  width: 100%;
  margin: 0 auto;
  height: inherit;
}

.mv__content {
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mv__title {
  color: var(--color-white);
  font-size: 2.125rem;
  line-height: 1.6764705882;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .mv__title {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 5.7894736842vw;
    line-height: 1.3863636364;
  }
}

/****************************************/
/****************************************/
@media screen and (max-width: 768px) {
  .cta {
    padding-bottom: 2.5rem;
  }
}

.cta__inner {
  padding: 1.875rem;
  border-radius: 0.625rem;
  background-color: var(--color-light-gray);
}
@media screen and (max-width: 768px) {
  .cta__inner {
    padding: 1.25rem;
  }
}

.cta__title {
  text-align: center;
}

.cta__text {
  line-height: 1.5625;
  margin-top: 0.3125rem;
  text-align: center;
}

.cta__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.125rem;
  width: 100%;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .cta__items {
    gap: 0.625rem;
    flex-direction: column;
    margin-top: 0.9375rem;
  }
}

.cta__item {
  background-color: var(--color-white);
  border-radius: 0.625rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  width: 33.3%;
}
@media screen and (max-width: 768px) {
  .cta__item {
    width: 100%;
    gap: 0.9375rem;
    padding: 0.625rem;
  }
}

.cta__img-tel {
  width: 2.3125rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .cta__img-tel {
    width: 4.7368421053vw;
  }
}

.cta__item-info {
  display: flex;
  flex-direction: column;
}

.cta__item-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.cta__item-info-text {
  color: var(--color-dark-gray);
  font-weight: 700;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  .cta__item-info-text {
    line-height: 2.1923076923;
  }
}

.cta__item-tel-number {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5625;
  color: var(--color-green);
}
@media screen and (max-width: 768px) {
  .cta__item-tel-number {
    font-size: 4.6052631579vw;
    line-height: 1.3142857143;
  }
}

.cta__img-mail {
  width: 2.6875rem;
  aspect-ratio: 43/30;
}
@media screen and (max-width: 768px) {
  .cta__img-mail {
    width: 6.5789473684vw;
  }
}

.cta__img-instagram {
  width: 2.625rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .cta__img-instagram {
    width: 5.5263157895vw;
  }
}

.cta__nav {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .cta__nav {
    margin-top: 1.25rem;
  }
}

.cta-menu__items {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
}

.cta-menu__link {
  color: var(--color-dark-gray2);
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.1875;
  border-bottom: 1px solid var(--color-dark-gray2);
}

.error-not-found {
  padding: 5rem 0 7.5rem;
}

.error-not-found__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}