@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@view-transition {
  navigation: auto;
}
#layout-html {
  margin-top: 0 !important;
}

#layout-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: scroll;
  box-sizing: border-box;
  padding-top: var(--wp-admin--admin-bar--height, 0);
}

#layout-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
}

/*
  ##########################################
  ## メニューテキストのホバーアニメーション用のmixin ##
  ##########################################
*/
/*
  ##########################################
  ## 矢印を横にスライドさせるアニメーション用のmixin ##
  ##########################################
*/
/*
  #########################
  ## 上記mixinのキーフレーム ##
  ########################
*/
@keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(15px);
    opacity: 0;
  }
  40% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*
  #####################################################
  ## 矢印アニメーション用のキーフレームお問い合わせ、入居者の方へ）  ##
  #####################################################
*/
@keyframes rotateArrowBg {
  to {
    transform: rotate(-24deg);
  }
}
@keyframes keepArrow {
  to {
    transform: rotate(24deg);
  }
}
@keyframes keepArrowTilted {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(-21deg);
  }
}
@keyframes arrowFlyTilted {
  0% {
    transform: rotate(-21deg) translateX(0);
    opacity: 1;
  }
  30% {
    transform: rotate(-21deg) translateX(15px);
    opacity: 0;
  }
  40% {
    transform: rotate(-21deg) translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: rotate(-21deg) translateX(0);
    opacity: 1;
  }
}
@keyframes flyArrow {
  0% {
    transform: rotate(24deg) translateX(0);
    opacity: 1;
  }
  30% {
    transform: rotate(24deg) translateX(15px);
    opacity: 0;
  }
  40% {
    transform: rotate(24deg) translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: rotate(24deg) translateX(0);
    opacity: 1;
  }
}
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-animate.appear, .scroll-animate.is-visible, .scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/*
  ###########
  ## トグルアニメーション ##
  ###########
  折りたたみ可能なコンテンツのトグルボタンとアニメーション
*/
.unified-background-video {
  object-fit: cover;
  pointer-events: none;
  will-change: transform, opacity, z-index, clip-path;
  transition: opacity 0.05s linear, visibility 0.05s linear, clip-path 0.05s linear;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -10;
}
.unified-background-video.mode-default {
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: -1;
  height: calc(var(--safari-vh, 100vh) * var(--viewport-scale, 1));
}
.unified-background-video.mode-service {
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: -1;
  height: calc(var(--safari-vh, 100vh) * var(--viewport-scale, 1));
}
.unified-background-video.mode-menu {
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: 998;
  height: calc(100vh * var(--viewport-scale, 1));
  min-height: calc(100vh * var(--viewport-scale, 1));
}
.unified-background-video.mode-footer {
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: -1;
  height: calc(100vh * var(--viewport-scale, 1));
}
@media (max-width: 768px) {
  .unified-background-video {
    height: 100vh;
    height: calc(100vh * var(--viewport-scale, 1));
    min-height: -webkit-fill-available;
    object-position: center;
  }
}
@supports (-webkit-touch-callout: none) {
  .unified-background-video {
    height: calc(100vh * var(--viewport-scale, 1));
    min-height: -webkit-fill-available;
  }
}
@supports (-moz-appearance: none) {
  .unified-background-video.mode-default, .unified-background-video.mode-service, .unified-background-video.mode-menu {
    height: 100vh;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .unified-background-video {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color-scheme: light;
  font-synthesis: none;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: "transparent";
}

body {
  margin: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
  line-height: 2;
}

button {
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  background-color: inherit;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
}

img {
  width: auto;
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: 100%;
}

@media (max-width: 960px) {
  html {
    font-size: 15px;
    letter-spacing: normal;
    text-align: justify;
  }
}
/*
  ###########
  ## フォント ##
  ###########
*/
/* Oswald */
/* Noto Sans JP */
html {
  font-family: "Noto Sans JP", sans-serif;
  color: #393C41;
  overscroll-behavior: none;
}

.font-oswald {
  font-family: "Oswald", sans-serif;
}

.font-commissioner {
  font-family: "Commissioner", sans-serif;
}

.aioseo-breadcrumbs {
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: normal;
  color: #393c41;
}

.aioseo-breadcrumb-separator {
  margin-left: 14px;
  margin-right: 14px;
  color: #A6A9AB;
  width: 10px;
  height: 1px;
  background-color: #A6A9AB;
  display: inline-block;
  vertical-align: middle;
}

.aioseo-breadcrumb {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .aioseo-breadcrumb {
    font-size: 10px;
  }
  .aioseo-breadcrumb-separator {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.single .aioseo-breadcrumb {
  line-height: 1;
  display: inline-block;
  max-width: 9em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

/*
  ###########
  ## ボタン ##
  ###########
  .btn                  - 基本ボタンスタイル（高さ54px、パディング11px 20px、角丸36px）
  .btn--filled         - 塗りつぶしボタン（背景色ダーク、文字色白、最大幅228px）
  .btn--outline        - アウトラインボタン（文字色ダーク、文字サイズ24px）
  .btn--outline.white  - 白色アウトラインボタン
  .btn--with-number    - 数字バッジ付きボタン（右上に回転した白色バッジ）
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 11px 20px;
  border-radius: 36px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s ease;
}
.btn--filled {
  background-color: #393C41;
  color: #ffffff;
  max-width: 228px;
  width: 100%;
  letter-spacing: normal;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.btn--filled .btn__arrow {
  position: relative;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
.btn--filled .btn__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
  z-index: 0;
}
.btn--filled .btn__arrow img {
  width: 11px;
  height: 7px;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.btn--filled:hover .btn__arrow::before {
  transform: rotate(-24deg);
}
.btn--filled:hover .btn__arrow img {
  animation: arrowFly 0.6s ease-in-out;
}
.btn--outline {
  color: #393C41;
  position: relative;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  cursor: pointer;
}
.btn--outline.white {
  color: #ffffff;
}
.btn--outline .btn__arrow {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.btn--outline .btn__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: transform 0.5s ease;
  z-index: 0;
}
.btn--outline .btn__arrow img {
  width: 11px;
  height: 7px;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.btn--outline:hover .btn__arrow::before {
  transform: rotate(-24deg);
}
.btn--outline:hover .btn__arrow img {
  animation: arrowFly 0.6s ease-in-out;
}
.btn--with-number {
  padding-left: 0;
}
.btn--with-number span {
  position: absolute;
  top: -2px;
  right: -7px;
  background-color: #ffffff;
  height: 27.3px;
  width: 27.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform 0.6s ease;
}
.btn--with-number span.js-in-view {
  transform: rotate(-24deg);
}
.btn--with-number span.js-in-view::after {
  transform: rotate(24deg);
}
.btn--with-number span::after {
  content: "25";
  font-size: 11px;
  transition: transform 0.6s ease;
  line-height: 100%;
  color: #393C41;
}

@keyframes rotateBackground {
  to {
    transform: rotate(-24deg);
  }
}
@keyframes keepArrowHorizontal {
  to {
    transform: rotate(24deg);
  }
}
@keyframes arrowFly {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(15px);
    opacity: 0;
  }
  35% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowFlyHorizontal {
  0% {
    transform: rotate(24deg) translateX(0);
    opacity: 1;
  }
  30% {
    transform: rotate(24deg) translateX(15px);
    opacity: 0;
  }
  35% {
    transform: rotate(24deg) translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: rotate(24deg) translateX(0);
    opacity: 1;
  }
}
@keyframes rotateBackgroundReverse {
  from {
    transform: rotate(-24deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes keepArrowHorizontalReverse {
  from {
    transform: rotate(24deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes cardArrowFlyHorizontal {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(15px);
    opacity: 0;
  }
  35% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.text-rotate-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  pointer-events: none;
}
.text-rotate-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}
.text-rotate-text {
  display: block;
  white-space: nowrap;
}
.text-rotate-text:nth-child(2) {
  position: absolute;
  top: 100%;
  left: 0;
}
.text-rotate-text.multiline {
  white-space: normal;
  word-wrap: break-word;
  width: 100%;
}

@keyframes textSlideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
/*
  ##########################
  ## 汎用フェードインアニメーション ##
  ##########################
  .fade-in-from-bottom      - 下からフェードインアニメーション（表示領域に入ったら自動実行）

  使用方法:
  1. アニメーションさせたい要素に .fade-in-from-bottom クラスを追加
  2. ページ読み込み時に自動でIntersection Observerが設定され、表示領域に入ったらアニメーション開始
*/
:root {
  --fade-in-duration: 1000ms; /* transform / letter-spacing / filter */
  --fade-in-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --fade-in-fade: 900ms; /* opacity */
  --dynamic-vh: 1vh; /* JavaScriptで動的に設定される */
  --safari-vh: 100vh; /* JavaScriptで動的に設定される */
  --viewport-scale: 1; /* JavaScriptで動的に設定される */
}

/* 親はマスクだけ担当（静止） */
.fade-in-from-bottom {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* 自動ラップされる行コンテナ */
.fade-in-from-bottom .line {
  display: block;
  overflow: hidden; /* 下端を切る */
}

/* 初期：中身だけ下に隠す＋薄い＋字間広め＋ぼかし */
.fade-in-from-bottom .line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(2px);
  transition: transform var(--fade-in-duration) var(--fade-in-ease), opacity var(--fade-in-fade) ease-out, filter var(--fade-in-duration) var(--fade-in-ease);
  will-change: transform, opacity, letter-spacing, filter;
}

/* 発火後：位置0／不透明／字間0／ブラー解除 */
.fade-in-from-bottom.is-active .line > span {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-from-bottom .line > span,
  .fade-in-from-bottom.is-active .line > span {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}
@media (max-width: 768px) {
  .btn {
    padding: 10px 20px;
    height: auto;
  }
  .btn--filled {
    max-width: 180px;
  }
  .btn--filled .btn__arrow {
    width: 26px;
    height: 26px;
  }
  .btn--outline .btn__arrow {
    width: 26px;
    height: 26px;
  }
  .btn--with-number span {
    width: 25px;
    height: 25px;
    top: -3px;
    right: -10px;
  }
  .about .btn--filled {
    max-width: 200px;
  }
}
.grecaptcha-badge {
  visibility: hidden !important;
}

body.page-contact .grecaptcha-badge {
  visibility: visible !important;
}

/*# sourceMappingURL=global.css.map */
