@charset "UTF-8";
:root {
  --white: #ffffff;
  --black: #1e1e1e;
  --gray10: #333333;
  --gray20: #474747;
  --gray30: #5C5C5C;
  --gray40: #757575;
  --gray50: #9E9E9E;
  --gray60: #C2C2C2;
  --gray70: #E0E0E0;
  --gray80: #F4F4F4;
  --gray90: #FBFBFB;
  --primary-red: #ff0001;
  --primary-blue: #1ca6d0;
  --primary-green: #15c39a;
  --primary-orange: #F5A623;
  --border: var(--gray60);
  --accent: var(--primary-red);
  --inactive: var(--gray60);
  --disabled: var(--gray60);
  --japanese-sans-serif:
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN",
    "メイリオ", Meiryo, Arial, sans-serif;
  --english-sans-serif: "Montserrat", var(--japanese-sans-serif);
  --japanese-serif: "Noto Serif JP", "游明朝体", YuMincho, "游明朝 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho",
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN",
    "メイリオ", Meiryo, Arial, serif;
  --english-serif: "Cormorant Garamond", var(--japanese-serif);
  --space-xs: clamp(1.25rem, 0.1389rem + 2.3148vw, 1.875rem);
  --space-sm: calc(var(--space-xs) * 1.5);
  --space-md: calc(var(--space-xs) * 2);
  --space-lg: calc(var(--space-xs) * 3);
  --space-xl: calc(var(--space-xs) * 4);
  --space-xxl: calc(var(--space-xs) * 5);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--black);
  font-feature-settings: "palt" on, "case" on;
  font-family: var(--english-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  margin: 0;
  background-color: #ffffff;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section, a, picture {
  display: block;
}

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

p {
  margin: 0;
}

p a {
  display: inline-block;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
  margin: 0;
}

ol,
ul,
dl,
ol ol,
ul ul,
ol ul,
ul ol {
  padding: 0;
  margin: 0;
}

ol li,
ul li {
  list-style-position: inside;
  padding: 0;
}

ul li, ol li {
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

a, p a {
  color: var(--active);
  display: block;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--active);
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin: 0;
  overflow: auto;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  color: var(--black);
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin: 0;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  vertical-align: top;
  padding: 0.2rem 0.5rem;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

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

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

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=submit] {
  outline: none;
  border: 1px solid var(--border);
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

button, input[type=submit], input[type=button] {
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button, select, input {
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}
button::-moz-placeholder, select::-moz-placeholder, input::-moz-placeholder {
  color: var(--black);
}
button::placeholder, select::placeholder, input::placeholder {
  color: var(--black);
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

html.is-active {
  overflow: hidden;
}
html.is-active .l-header.is-hide {
  top: 0 !important;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  padding: 30px 0;
  transition: background-color 0.5s ease, top 2s var(--easeOutQuint);
}
.l-header.is-active {
  background-color: var(--white);
}
.l-header.is-hide {
  top: -250px;
}
.l-header__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-header__logo {
  display: none;
  max-width: 210px;
  margin: 0 auto;
  transition: all 0.5s var(--easeOutQuint);
}
.l-header__logoSP {
  max-width: 192px;
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2003;
}
.l-header__button {
  width: 100%;
  position: fixed;
  bottom: -100px;
  left: 0;
  z-index: 2000;
  background-color: var(--white);
  transition: all 1.5s var(--easeOutQuint);
}
.l-header__button.is-show {
  bottom: 0;
}
.l-header__button a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 50px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #9e926f url("../../assets/img/top-topics-bg.jpg") repeat center center/270px auto;
  transition: all 0.35s ease;
}
.l-header__button a:hover::before {
  animation: flash 0.25s linear;
}
.l-header__button a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}
.l-header__button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    max-width: 250px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header {
    padding: 3.625rem 0 3.435rem;
    transition: all 2s var(--easeOutQuint);
  }
  .l-header.is-active {
    padding: 2em 0 0;
    background-color: transparent;
  }
  .l-header.is-active .l-header__logo {
    transform: scale(0.68);
  }
  .l-header__logo {
    display: block;
    max-width: 338px;
  }
  .l-header__logoSP {
    display: none;
  }
  .l-header__button {
    max-width: 200px;
    position: absolute;
    bottom: inherit;
    left: inherit;
    top: 0;
    right: 0;
  }
  .l-header__button a {
    height: 80px;
    background-color: #9e926f;
  }
}

.l-footer {
  position: relative;
  z-index: 101;
  background: url("../../assets/img/bg-footer-logo.jpg") repeat center center/271px auto;
}
.l-footer__logo {
  padding: 45px 0;
}
.l-footer__logo .c-logo {
  max-width: 210px;
  margin: 0 auto;
}
.l-footer__admin {
  text-align: center;
  padding: 2rem 0;
  background-color: var(--gray50);
}
.l-footer__bottomContent {
  padding: 30px 0;
  background-color: #4b4b4b;
}
.l-footer__bottomContentInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.l-footer__copyContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 25px auto 0;
}
.l-footer__copyContent > a {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all 0.35s ease;
}
.l-footer__copyContent > a:hover {
  opacity: 0.5;
}
.l-footer__copyContent > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.l-footer__copyContent > a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.l-footer__copy {
  line-height: 1;
  margin: 0 auto 0;
}
.l-footer__copy small {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
}
.l-footer__button {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    padding: 3rem 0;
  }
  .l-footer__logo .c-logo {
    max-width: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__logo {
    padding: 4rem 0;
  }
  .l-footer__logo .c-logo {
    max-width: 300px;
  }
  .l-footer__button {
    bottom: 15px;
    right: 15px;
  }
  .l-footer__bottomContent {
    padding: 1.5rem 0;
  }
  .l-footer__bottomContentInner {
    flex-direction: row;
  }
  .l-footer__copyContent {
    flex-direction: row;
    margin: 0;
  }
  .l-footer__copy {
    margin: 0 0 0 4em;
  }
}

.c-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-logo__text {
  line-height: 1;
  margin: 1.375rem auto 0;
  color: var(--black);
}
.c-logo__logo > img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
a.c-logo {
  transition: all 0.35s ease;
}
a.c-logo:hover {
  opacity: 0.5;
}

.l-header.is-active-menu .c-logoSP__logo svg path {
  fill: #fff;
  transition: all 0.5s ease 0.2s;
}

.c-logoSP {
  display: block;
}
.c-logoSP__logo svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.c-logoSP__logo svg path {
  transition: all 0.5s ease;
}
.c-globalNavi {
  display: none;
}
.c-globalNavi__list {
  display: flex;
}
.c-globalNavi__item:not(:first-of-type) {
  margin-left: 1.5em;
}
.c-globalNavi__item__link {
  color: var(--black);
  line-height: 1;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-globalNavi__item__link.is-current {
  color: var(--accent);
}
.c-globalNavi__item__link:hover::after {
  transform: scale(1, 1);
  transform-origin: top left;
}
.c-globalNavi__item__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 0.2s;
  position: absolute;
  bottom: -8px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .c-globalNavi {
    display: block;
  }
}

.js-menu .c-menu__subList, .js-menu .c-menu__buttonEntry, .js-menu .c-menu__vendor {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.js-menu.is-active .c-menu__subList, .js-menu.is-active .c-menu__buttonEntry, .js-menu.is-active .c-menu__vendor {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s var(--easeOutQuint) 1s, transform 2s var(--easeOutQuint) 1s;
}

.c-menu {
  width: 100%;
  height: 100%;
}
.c-menu.is-active .c-menu__button::before {
  background-color: var(--white);
  transform: rotate(155deg);
}
.c-menu.is-active .c-menu__button::after {
  background-color: var(--white);
  transform: rotate(-155deg);
}
.c-menu.is-active .c-menu__icon {
  background-color: transparent;
  transform: translateX(100%);
}
.c-menu.is-active .c-menu__body {
  right: 0;
}
.c-menu__button {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 2003;
  margin: 0;
  padding: 0;
  border: none;
}
.c-menu__button::before, .c-menu__button::after {
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--black);
  transform-origin: center;
  transition: all 0.35s ease 0.1s;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.c-menu__button::before {
  transform: translateY(8px);
}
.c-menu__button::after {
  transform: translateY(-8px);
}
.c-menu__icon {
  display: block;
  width: 40px;
  height: 2px;
  margin: auto 0;
  background-color: var(--black);
  transform-origin: center;
  transition: all 0.35s var(--easeOutQuint);
}
.c-menu__body {
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  background-color: #9e926f;
  background: #9e926f url("../../assets/img/top-topics-bg.jpg") repeat center center/270px auto;
  transition: all 0.3s ease;
  position: fixed;
  right: -101%;
  top: 0;
  z-index: 2002;
}
.c-menu__overlay {
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  height: 100svh;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2001;
}
.c-menu__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-menu__list {
  display: flex;
  flex-wrap: wrap;
  margin: auto 0 0;
}
.c-menu__item {
  width: calc(50% - 30px);
  list-style: none;
  padding: 0;
  margin: 15px 15px;
  border-bottom: 1px solid var(--white);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.5s var(--easeOutQuint), transform 1s var(--easeOutQuint);
}
.c-menu__item a {
  color: var(--white);
  display: block;
  padding: 0.8em 0;
  transition: all 0.35s ease;
}
.c-menu__item a:hover {
  opacity: 0.5;
}
.c-menu__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.c-menu__title {
  line-height: 1;
  font-family: var(--english-serif);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.126348228rem + 2.9275808937vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.c-menu__desc {
  line-height: 1.4;
  min-height: 2em;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0.4em 0 0;
}
.c-menu__subList {
  width: auto;
  max-width: 580px;
  display: flex;
  align-items: center;
  margin: 30px auto 0;
}
.c-menu__subItem {
  width: auto;
  list-style: none;
  margin: 0 20px;
}
.c-menu__buttonEntry {
  width: 100%;
  min-width: 300px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7208204931rem + 0.9244992296vw, 1.3125rem);
  margin: 20px auto 0;
}
.c-menu__vendor {
  margin: 40px auto auto;
}
@media screen and (min-width: 768px) {
  .c-menu__body {
    padding: 20px 2em;
  }
  .c-menu__buttonEntry {
    min-width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .c-menu.is-active .c-menu__body {
    left: 0;
  }
  .c-menu__button {
    top: 20px;
    right: inherit;
    left: 35px;
  }
  .c-menu__body {
    left: -101%;
  }
  .c-menu__item {
    width: calc(33.3333% - 60px);
    margin: 15px 30px;
  }
  .c-menu__item a {
    padding: 1em 0 2.5em;
  }
  .c-menu__desc {
    line-height: 1;
    min-height: 1em;
    margin: 0.8em 0 0;
  }
  .c-menu__subList {
    width: 100%;
    margin: 50px auto 0;
  }
  .c-menu__subItem {
    width: 100%;
    margin: 0 12px;
  }
  .c-menu__buttonEntry {
    max-width: 490px;
    margin: 80px auto 0;
  }
  .c-menu__vendor {
    margin: 115px auto 40px;
  }
}

.c-buttonBorder {
  width: 100%;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all 0.35s ease;
}
.c-buttonBorder:hover {
  opacity: 0.8;
  color: #4b4b4b;
  background-color: var(--white);
}
.c-buttonBorder:hover .c-icon--googlemap {
  background: url("../../assets/img/icon-pin-on.png") no-repeat center center/cover;
}
.c-buttonBorder:hover .c-icon--overview {
  background: url("../../assets/img/icon-book-on.png") no-repeat center center/cover;
}
@media screen and (min-width: 1024px) {
  .c-buttonBorder {
    padding: 1.65em 2em;
    border: 1px solid var(--white);
  }
}

.c-icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.35s ease;
}
.c-icon--googlemap {
  width: 16px;
  height: 22px;
  aspect-ratio: 16/22;
  background: url("../../assets/img/icon-pin.png") no-repeat center center/cover;
}
.c-icon--overview {
  width: 18px;
  height: 22px;
  aspect-ratio: 18/22;
  background: url("../../assets/img/icon-book.png") no-repeat center center/cover;
}
.c-vendor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-vendor__label {
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 auto 0.2em;
  color: var(--white);
}
.c-vendor__logo {
  display: block;
  width: 128px;
  transition: opacity 0.35s ease;
}
.c-vendor__logo:hover {
  opacity: 0.5;
}
.c-vendor__logo svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .c-vendor {
    flex-direction: row;
  }
  .c-vendor__label {
    margin: 0.2em 1em 0 0;
  }
  .c-vendor__logo {
    width: 144px;
  }
}

.c-buttonToTop {
  color: var(--black);
  position: relative;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
.c-buttonToTop:hover .c-buttonToTop__circle {
  background-color: #9e926f;
}
.c-buttonToTop__circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2.5em;
  height: 2.5em;
  background-color: var(--black);
  border-radius: 1.625em;
}
.c-buttonToTop__circle::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-radius: 1px 0 0 0;
  transform: rotate(45deg);
  transform-origin: left top;
}
@media screen and (min-width: 768px) {
  .c-buttonToTop__circle {
    width: 3em;
    height: 3em;
  }
  .c-buttonToTop__circle::before {
    width: 0.625em;
    height: 0.625em;
    border-top: 0.125em solid #fff;
    border-left: 0.125em solid #fff;
  }
}
.c-buttonEntry {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 1.6em 1em;
  margin: 0 auto;
  color: var(--white);
  background-color: #4b4b4b;
  transition: all 0.35s ease;
}
.c-buttonEntry:hover {
  color: var(--white);
}
.c-buttonEntry:hover::before {
  animation: flash 0.35s linear;
}
.c-buttonEntry::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
}
.c-buttonEntry__title {
  font-size: inherit;
  font-weight: inherit;
}
.c-buttonEntry__icon {
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-buttonEntry {
    padding: 1.35em 1em;
  }
}

@keyframes flash {
  0% {
    left: -100%;
  }
  20% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.c-buttonViewAll {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  color: var(--black);
  border-bottom: 1px solid #4b4b4b;
  transition: border-color 0.2s ease;
}
.c-buttonViewAll:hover {
  border-color: #9e926f;
}
.c-buttonViewAll:hover .c-buttonViewAll__title {
  padding: 1em 0.5em;
}
.c-buttonViewAll:hover .c-buttonViewAll__title::after {
  transform: scaleX(1);
  transform-origin: left;
}
.c-buttonViewAll:hover .c-arrow {
  width: 40px;
}
.c-buttonViewAll__title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  font-size: inherit;
  font-weight: inherit;
  padding: 1em 0;
  transition: all 0.2s ease;
}
.c-buttonViewAll__title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-in-out;
}
.c-buttonViewAll__icon {
  position: absolute;
  top: 50%;
  left: calc(100% - 1.2em);
  transform: translateY(-50%);
  display: flex;
  margin: auto 0 auto auto;
  transition: transform 0.2s ease-in-out;
}
.c-arrow {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-top: 4.5px;
  background-color: #4b4b4b;
  transition: all 0.2s ease;
}
.c-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  transform: rotate(30deg);
  transform-origin: calc(100% - 0.5px) 50%;
  transition: all 0.2s ease;
}
.c-arrow--black {
  background-color: #4b4b4b;
}
.c-arrow--black::before {
  background-color: #4b4b4b;
}
.c-arrow--white {
  background-color: var(--white);
}
.c-arrow--white::before {
  background-color: var(--white);
}
.c-arrow--prev {
  background-color: var(--black);
}
.c-arrow--prev::before {
  background-color: var(--black);
  transform: rotate(-30deg);
  transform-origin: top left;
  left: 0;
}
.c-arrow--next {
  background-color: var(--black);
}
.c-arrow--next::before {
  background-color: var(--black);
}
.c-tableAccess {
  line-height: 1;
  font-family: var(--japanese-serif);
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6055469954rem + 0.6163328197vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-tableAccess th, .c-tableAccess td {
  font-size: inherit;
  font-weight: inherit;
  padding: 0.85em 0.5em;
  text-align: left;
  vertical-align: top;
  color: var(--black);
}
.c-tableAccess tr:nth-child(odd) {
  background-color: #f0efe9;
}
.c-tableAccess tr:nth-child(even) {
  background-color: #ffffff;
}
.c-tableAccess--second tr:nth-child(odd) {
  background-color: #ffffff;
}
.c-tableAccess--second tr:nth-child(even) {
  background-color: #f0efe9;
}
@media screen and (min-width: 1024px) {
  .c-tableAccess th, .c-tableAccess td {
    padding: 0.9em 1em;
  }
  .c-tableAccess--second tr:nth-child(odd) {
    background-color: #f0efe9;
  }
  .c-tableAccess--second tr:nth-child(even) {
    background-color: #ffffff;
  }
}

.c-contact {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: var(--white);
}
.c-contact__container {
  max-width: 740px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.c-contact__heading {
  line-height: 0.7;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 1.344375963rem + 4.9306625578vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.c-contact__subheading {
  display: block;
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.9013867488rem + 0.1540832049vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 1em auto 0;
  color: var(--black);
}
.c-contact__body {
  margin: 55px auto 0;
}
.c-contact__button {
  display: table;
  width: 100%;
  max-width: 490px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.6847072419rem + 1.0785824345vw, 1.375rem);
  font-weight: 500;
  margin: 0 auto;
}
.c-contact__text {
  margin: 55px 0 0;
}
.c-contact__desc {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.9736132512rem - 0.1540832049vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: justify;
  color: var(--black);
}
.c-contact__card {
  margin: 25px auto 0;
}
@media screen and (min-width: 1024px) {
  .c-contact {
    padding-top: 160px;
    padding-bottom: 120px;
  }
  .c-contact__container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .c-contact__body {
    margin: 115px auto 0;
  }
  .c-contact__text {
    margin: 2.6rem 0 0;
  }
  .c-contact__desc {
    text-align: center;
  }
  .c-contact__card {
    margin: 25px auto 0;
  }
}

.c-cardContact {
  text-align: center;
  padding: 28px 1rem 28px;
  margin: 2.5rem auto 0;
  border: 1px solid var(--border);
}
.c-cardContact__title {
  display: block;
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.9013867488rem + 0.1540832049vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 0 auto 0;
  color: var(--black);
}
.c-cardContact__tel {
  display: inline-block;
  line-height: 1;
  font-family: var(--japanese-serif);
  font-feature-settings: "case" on, "liga" on;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 1.6693952234rem + 3.5439137134vw, 3.9375rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  text-align: center;
  margin: 0.2rem auto 0;
  color: var(--black);
  transition: all 0.35s ease;
}
.c-cardContact__tel:hover {
  opacity: 0.5;
}
.c-cardContact__tel > span {
  font-family: var(--english-serif);
  font-size: clamp(1.5625rem, 1.2374807396rem + 1.3867488444vw, 2.125rem);
  margin-right: 0.2em;
}
.c-cardContact__descList {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5em auto 0;
}
.c-cardContact__descList > dt {
  font-family: var(--japanese-serif);
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.c-cardContact__descList > dd {
  font-family: var(--japanese-serif);
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.c-cardContact__address {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--japanese-serif);
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 0.5em auto 0;
  color: var(--black);
}
.c-cardContact__address > span:not(:first-child) {
  margin-left: 1em;
}
@media screen and (min-width: 1024px) {
  .c-cardContact {
    padding: 2rem 1rem 2rem;
  }
  .c-cardContact__descList {
    flex-direction: row;
  }
  .c-cardContact__descList > dd {
    margin: 0 0 0 1em;
  }
}

.c-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 80px;
  background-color: var(--white);
}
.c-marquee__item {
  line-height: 0.8;
  font-weight: 500;
  white-space: nowrap;
  font-size: 65px;
  font-size: 4.0625rem;
  font-size: clamp(4.0625rem, 2.0762711864rem + 8.4745762712vw, 7.5rem);
  letter-spacing: 0.05em;
  color: #9e926f;
}
@media screen and (min-width: 1024px) {
  .c-marquee {
    margin-top: 120px;
    margin-bottom: 65px;
  }
}

.c-tableOutline {
  line-height: 1.6;
  font-family: var(--japanese-serif);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-top: 1px solid #d2d2d2;
}
.c-tableOutline th, .c-tableOutline td {
  display: block;
  width: 100%;
  font-size: inherit;
  font-weight: inherit;
  padding: 0.9em 1.2em;
  text-align: left;
  color: var(--black);
  border: 1px solid #d2d2d2;
  border-top: none;
}
.c-tableOutline th {
  background-color: #f0efe9;
}
.c-tableOutline td {
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-tableOutline {
    line-height: 1;
    border-top: none;
  }
  .c-tableOutline th, .c-tableOutline td {
    display: table-cell;
    width: auto;
    vertical-align: top;
    padding: 0.9em 2em;
    border: 1px solid #d2d2d2;
  }
}
@media screen and (min-width: 1024px) {
  .c-tableOutline {
    white-space: nowrap;
  }
  .c-tableOutline th, .c-tableOutline td {
    padding: 0.9em 3em;
  }
}

.c-time {
  display: inline-block;
  line-height: 1;
  font-family: var(--japanese-serif);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.c-categories {
  display: inline-block;
  min-width: 68px;
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  padding: 0.4em 1em;
  color: var(--white);
  background-color: #9e926f;
}
.c-breadcrumb {
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-top: 80px;
  background-color: #f6f6f6;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    padding-top: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb {
    padding-top: 250px;
  }
}

.c-pager {
  width: 100%;
  position: relative;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-pager__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-pager__item--return {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-pager__item > a {
  transition: all 0.35s ease;
}
.c-pager__item > a:hover {
  opacity: 0.5;
}
.c-pager__label {
  font-size: inherit;
  white-space: nowrap;
}
.c-form {
  font-family: var(--japanese-sans-serif);
  font-size: 16px;
  font-size: 1rem;
}
.c-form table {
  width: 100%;
  border-collapse: collapse;
}
.c-form th, .c-form td {
  display: block;
  width: 100%;
}
.c-form th > label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin: 0 0 0.5em;
  color: var(--black);
}
.c-form th > label .required {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
  padding: 0.5em 1em;
  font-size: 75%;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  background-color: #9e926f;
}
.c-form th > label .optional {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
  padding: 0.5em 1em;
  font-size: 75%;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  background-color: #dddddd;
}
.c-form td {
  padding-bottom: 1.5em;
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=date],
.c-form select,
.c-form textarea {
  width: 100%;
  padding: 0.9em 1.2em;
  border: 1px solid #c1c1c1;
  border-radius: 6px;
  font-size: 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.35s ease, box-shadow 0.35s ease;
}
.c-form input[type=text]:focus,
.c-form input[type=email]:focus,
.c-form input[type=tel]:focus,
.c-form input[type=date]:focus,
.c-form select:focus,
.c-form textarea:focus {
  outline: none;
  border-color: var(--gray50);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.c-form input[type=text]::-moz-placeholder, .c-form input[type=email]::-moz-placeholder, .c-form input[type=tel]::-moz-placeholder, .c-form input[type=date]::-moz-placeholder, .c-form select::-moz-placeholder, .c-form textarea::-moz-placeholder {
  color: #ccc;
}
.c-form input[type=text]::placeholder,
.c-form input[type=email]::placeholder,
.c-form input[type=tel]::placeholder,
.c-form input[type=date]::placeholder,
.c-form select::placeholder,
.c-form textarea::placeholder {
  color: #ccc;
}
.c-form textarea {
  min-height: 295px;
  resize: vertical;
}
.c-form__note {
  line-height: 1.6;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: justify;
  color: #8e8e8e;
  margin-top: 1.2em;
}
.c-form__agreement {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  margin: 30px auto 0;
}
.c-form__agreement input[type=checkbox] {
  opacity: 0;
}
.c-form__agreement input[type=checkbox]:checked + label::before {
  border-color: var(--black);
  background-color: var(--black);
}
.c-form__agreement input[type=checkbox]:checked + label::after {
  display: block;
}
.c-form__agreement a {
  color: var(--black);
  display: inline-block;
  text-decoration: underline;
  transition: all 0.35s ease;
}
.c-form__agreement a:hover {
  opacity: 0.5;
}
.c-form__agreement label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
.c-form__agreement label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  background-color: var(--white);
  transition: all 0.35s ease;
}
.c-form__agreement label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../../assets/img/icon-check-white.svg") no-repeat center/70% auto;
}
.c-form__submit {
  max-width: 300px;
  margin: 60px auto 0;
}
@media screen and (min-width: 1024px) {
  .c-form th, .c-form td {
    display: table-cell;
    width: auto;
    vertical-align: top;
    padding: 1em 0;
  }
  .c-form th {
    min-width: 290px;
    padding-right: 50px;
  }
  .c-form th > label {
    margin: 1em 0;
  }
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel],
  .c-form input[type=date],
  .c-form select,
  .c-form textarea {
    padding: 1em 1.2em;
  }
  .c-form textarea {
    min-height: 280px;
  }
  .c-form__agreement {
    margin: 100px auto 0;
  }
  .c-form__submit {
    max-width: 320px;
    margin: 75px auto 0;
  }
}

.c-buttonSubmit {
  width: 100%;
  position: relative;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
  border: 1px solid var(--black);
  background-color: var(--white);
  transition: all 0.35s ease;
  cursor: pointer;
}
.c-buttonSubmit:hover {
  background-color: var(--black);
  color: var(--white);
}
.c-buttonSubmit:hover input[type=submit] {
  color: var(--white);
}
.c-buttonSubmit:hover .c-arrow {
  background-color: var(--white);
}
.c-buttonSubmit:hover .c-arrow::before {
  background-color: var(--white);
}
.c-buttonSubmit:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.c-buttonSubmit input[type=submit] {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 1em 0;
}
.c-buttonSubmit .c-arrow {
  position: absolute;
  top: 45%;
  right: 20px;
  z-index: 2;
  transform: translateY(-50%);
  transition: all 0.35s ease;
}
@media screen and (min-width: 768px) {
  .c-buttonSubmit input[type=submit] {
    padding: 1.2em 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-buttonSubmit input[type=submit] {
    padding: 1.5em 0;
  }
}

.p-concept {
  margin-top: 80px;
}
.p-concept__headingGroup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.p-concept__heading {
  line-height: 1;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.9541602465rem + 0.4622496148vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto 1em;
  color: var(--black);
}
.p-concept__subheading {
  line-height: 0.68;
  font-size: 56px;
  font-size: 3.5rem;
  font-size: clamp(3.5rem, 0.1775808937rem + 14.1756548536vw, 9.25rem);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-concept__bgHeader {
  position: relative;
  z-index: 1;
  margin-top: -8px;
}
.p-concept__body {
  margin-top: 80px;
}
.p-concept__title {
  max-width: 420px;
  margin: 0 auto;
}
.p-concept__columns {
  margin-top: 75px;
  width: calc(100% + 50px);
  transform: translateX(-25px);
}
.p-concept__column {
  display: flex;
  flex-direction: column;
}
.p-concept__column:last-child {
  position: relative;
  z-index: 2;
  margin: 50px 0 0;
}
.p-concept__imageMain {
  width: 86%;
  max-width: 656px;
}
.p-concept__description {
  min-width: 17em;
  line-height: 2.55;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: justify;
  margin: 40px auto 0 25px;
  color: var(--black);
}
.p-concept__imageSub {
  width: 85%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-concept {
    margin-top: 160px;
  }
  .p-concept__heading {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin: 0 auto 1.5em;
  }
  .p-concept__bgHeader {
    margin-top: -15px;
  }
  .p-concept__body {
    margin-top: 100px;
  }
  .p-concept__columns {
    margin-top: 80px;
    width: calc(100% + 70px);
    transform: translateX(-35px);
  }
  .p-concept__column:last-child {
    margin: 65px 0 0;
  }
  .p-concept__description {
    margin: 55px auto 0 35px;
  }
}
@media screen and (min-width: 1024px) {
  .p-concept {
    margin-top: 250px;
  }
  .p-concept__heading {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    margin: 0 auto 2em;
  }
  .p-concept__bgHeader {
    margin-top: -20px;
  }
  .p-concept__body {
    margin-top: 120px;
  }
  .p-concept__title {
    max-width: 540px;
  }
  .p-concept__columns {
    margin-top: 100px;
    width: 100%;
    transform: none;
  }
  .p-concept__column {
    flex-direction: row;
    align-items: center;
  }
  .p-concept__column:first-child {
    position: relative;
    z-index: 1;
  }
  .p-concept__column:first-child::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 346px;
    background-color: #f6f6f6;
  }
  .p-concept__column:last-child {
    flex-direction: row-reverse;
    margin: 55px 0 0;
  }
  .p-concept__imageMain {
    width: 58%;
  }
  .p-concept__description {
    margin: 0 auto;
  }
  .p-concept__imageSub {
    width: 58%;
    max-width: 658px;
  }
}

.p-living {
  margin-top: 100px;
}
.p-living__heading {
  max-width: 420px;
  margin: 0 auto;
}
.p-living__body {
  margin-top: 75px;
}
.p-living__column {
  height: 100vh;
  overflow: hidden;
}
.p-living__column img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.p-living__message {
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}
.p-living__messageInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.p-living__messageInner > p {
  line-height: 2.625;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--white);
}
.p-living__messageInner > p + * {
  margin-top: 3em;
}
@media screen and (min-width: 1024px) {
  .p-living__heading {
    max-width: 636px;
  }
  .p-living__body {
    margin-top: 100px;
  }
}

.p-landplan {
  margin-top: 80px;
}
.p-landplan__headingGroup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.p-landplan__heading {
  line-height: 1;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.9541602465rem + 0.4622496148vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto 1em;
  color: var(--black);
}
.p-landplan__subheading {
  line-height: 0.68;
  font-size: 56px;
  font-size: 3.5rem;
  font-size: clamp(3.5rem, 0.1775808937rem + 14.1756548536vw, 9.25rem);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-landplan__bgHeader {
  position: relative;
  z-index: 1;
  margin-top: -20px;
}
.p-landplan__body {
  padding-top: 45px;
  background-color: #f6f6f6;
}
.p-landplan__imageMain {
  width: 100%;
  max-width: 622px;
  margin: 0 auto;
}
.p-landplan__leading {
  line-height: 2;
  font-family: var(--japanese-serif);
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.5666409861rem + 1.8489984592vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-landplan__note {
  width: 100%;
  line-height: 1.4;
  font-family: var(--japanese-serif);
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9277734977rem + 0.3081664099vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-align: center;
  white-space: nowrap;
  padding: 0.85em 1.5em;
  margin: 50px auto 0;
  color: var(--black);
  border: 1px solid var(--black);
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .p-landplan {
    margin-top: 160px;
  }
  .p-landplan__heading {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin: 0 auto 1.5em;
  }
  .p-landplan__bgHeader {
    margin-top: -15px;
  }
  .p-landplan__body {
    padding-top: 75px;
  }
}
@media screen and (min-width: 1024px) {
  .p-landplan {
    margin-top: 250px;
  }
  .p-landplan__heading {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    margin: 0 auto 2em;
  }
  .p-landplan__bgHeader {
    margin-top: -20px;
  }
  .p-landplan__body {
    padding-top: 100px;
  }
}

.p-outline {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #f6f6f6;
}
.p-outline__heading {
  line-height: 0.7;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 1.344375963rem + 4.9306625578vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-outline__subheading {
  display: block;
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.9013867488rem + 0.1540832049vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 1em auto 0;
  color: var(--black);
}
.p-outline__body {
  margin: 55px auto 0;
}
.p-outline__note {
  display: block;
  line-height: 1.6;
  font-family: var(--japanese-sans-serif);
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 1.5em auto 0;
  color: #79797c;
}
@media screen and (min-width: 1024px) {
  .p-outline {
    padding-top: 160px;
    padding-bottom: 155px;
  }
  .p-outline__body {
    margin: 100px auto 0;
  }
  .p-outline__note {
    line-height: 1.8;
    margin: 1em auto 0;
  }
}

.p-location {
  margin-top: 80px;
}
.p-location__headingGroup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.p-location__heading {
  line-height: 1;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.9541602465rem + 0.4622496148vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto 1em;
  color: var(--black);
}
.p-location__subheading {
  line-height: 0.68;
  font-size: 56px;
  font-size: 3.5rem;
  font-size: clamp(3.5rem, 0.1775808937rem + 14.1756548536vw, 9.25rem);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-location__bgHeader {
  position: relative;
  z-index: 1;
  margin-top: -8px;
}
.p-location__body {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #f6f6f6;
}
.p-location__leading {
  line-height: 2;
  font-family: var(--japanese-serif);
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.5666409861rem + 1.8489984592vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-location__columns {
  margin-top: 50px;
}
.p-location__column:not(:first-child) {
  margin-top: 75px;
}
.p-location__columnHeading {
  width: 100%;
  line-height: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.p-location__columnLabel {
  width: 100%;
  line-height: 0.6;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto;
  color: #9e926f;
  border-bottom: 1px solid #9e926f;
}
.p-location__columnTitle {
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-align: center;
  margin: 1em auto 55px;
  color: #9e926f;
}
.p-location__list {
  display: flex;
  flex-direction: column;
  margin: -30px 0;
}
.p-location__item {
  width: 100%;
}
.p-location__item:not(:first-child) {
  margin-top: 25px;
}
.p-location__itemImg {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-location__itemBody {
  margin-top: 10px;
}
.p-location__itemTitle {
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9277734977rem + 0.3081664099vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
}
.p-location__itemDistance {
  line-height: 1.6;
  font-family: var(--japanese-sans-serif);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7763867488rem + 0.1540832049vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-location {
    margin-top: 160px;
  }
  .p-location__heading {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin: 0 auto 1.5em;
  }
  .p-location__bgHeader {
    margin-top: -15px;
  }
  .p-location__body {
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .p-location__columns {
    margin-top: 75px;
  }
  .p-location__column:not(:first-child) {
    margin-top: 90px;
  }
  .p-location__columnTitle {
    margin: 1em auto 75px;
  }
  .p-location__list {
    flex-direction: row;
    flex-wrap: wrap;
    margin: -25px -25px;
  }
  .p-location__item {
    width: calc(50% - 50px);
    margin: 25px 25px;
  }
  .p-location__item:not(:first-child) {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .p-location {
    margin-top: 250px;
  }
  .p-location__heading {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    margin: 0 auto 2em;
  }
  .p-location__bgHeader {
    margin-top: -20px;
  }
  .p-location__body {
    padding-top: 105px;
  }
  .p-location__columns {
    margin-top: 105px;
  }
  .p-location__column:not(:first-child) {
    margin-top: 120px;
  }
  .p-location__columnLabel {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-location__columnTitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-location__item--large {
    width: 100%;
    margin: 30px 30px;
  }
  .p-location__item:not(.p-location__item--large) {
    width: calc(50% - 60px);
    margin: 30px 30px;
  }
  .p-location__itemBody {
    margin-top: 20px;
  }
}

.p-information {
  padding-top: 80px;
  background-color: #f6f6f6;
}
.p-information__headingGroup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.p-information__heading {
  line-height: 1;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.9541602465rem + 0.4622496148vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto 1em;
  color: var(--black);
}
.p-information__subheading {
  line-height: 0.68;
  font-size: 48px;
  font-size: 3rem;
  font-size: clamp(3rem, 0.0387134052rem + 12.6348228043vw, 8.125rem);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-information__bgHeader {
  position: relative;
  z-index: 1;
  margin-top: -20px;
}
.p-information__body {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.p-information__contentWrap {
  display: flex;
  flex-direction: column-reverse;
}
.p-information__content {
  width: 100%;
  margin: 40px 0 0;
}
.p-information__column {
  font-size: 16px;
  font-size: 1rem;
  padding: 1.2em 0.5em;
  border-bottom: 1px solid #d2d2d2;
  transition: opacity 0.35s ease;
}
.p-information__column:hover {
  opacity: 0.5;
}
.p-information__column:first-child {
  border-top: 1px solid #d2d2d2;
}
.p-information__metas {
  display: flex;
  align-items: center;
}
.p-information__metas > * + * {
  margin-left: 1em;
}
.p-information__text {
  margin-top: 0.35em;
}
.p-information__title {
  line-height: 1.5;
  font-family: var(--japanese-serif);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-information__side {
  width: 100%;
}
.p-information__sideTitle {
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #9e926f;
}
.p-information__sideList {
  display: flex;
  margin: 1.2em 0 0;
}
.p-information__sideList > * {
  line-height: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
}
.p-information__sideList > * + * {
  margin-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-information {
    padding-top: 160px;
  }
  .p-information__heading {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin: 0 auto 1.5em;
  }
  .p-information__bgHeader {
    margin-top: -15px;
  }
}
@media screen and (min-width: 1024px) {
  .p-information {
    padding-top: 250px;
  }
  .p-information__heading {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    margin: 0 auto 2em;
  }
  .p-information__subheading {
    font-size: 140px;
    font-size: 8.75rem;
  }
  .p-information__bgHeader {
    margin-top: -20px;
  }
  .p-information__body {
    padding-top: 160px;
    padding-bottom: 100px;
  }
  .p-information__contentWrap {
    flex-direction: row-reverse;
  }
  .p-information__content {
    width: 770px;
    margin: 0 0 0 auto;
  }
  .p-information__column {
    padding: 2em 1em;
  }
  .p-information__text {
    margin-top: 0.5em;
  }
  .p-information__side {
    width: 150px;
  }
  .p-information__sideList {
    flex-direction: column;
    margin: 2em 0 0;
  }
  .p-information__sideList > * {
    line-height: 2.4;
  }
  .p-information__sideList > * + * {
    margin-left: 0;
  }
}

.p-infoPostSingle {
  padding-top: 80px;
  background-color: #f6f6f6;
}
.p-infoPostSingle__body {
  padding-bottom: 80px;
}
.p-infoPostSingle__content {
  margin-top: 45px;
}
.p-infoPostSingle__metas {
  display: flex;
  align-items: center;
}
.p-infoPostSingle__metas > * + * {
  margin-left: 1em;
}
.p-infoPostSingle__title {
  line-height: 1.6;
  font-family: var(--japanese-serif);
  font-size: 24px;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.2833204931rem + 0.9244992296vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 0.6em;
  color: var(--black);
}
.p-infoPostSingle__edit {
  line-height: 2;
  font-size: 16px;
  font-size: 1rem;
  padding: 1.8em 0;
  margin-top: 1.6em;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.p-infoPostSingle__edit > p {
  font-size: inherit;
  text-align: justify;
}
.p-infoPostSingle__pager {
  margin-top: 35px;
}
@media screen and (min-width: 1024px) {
  .p-infoPostSingle {
    padding-top: 135px;
  }
  .p-infoPostSingle__body {
    padding-bottom: 150px;
  }
  .p-infoPostSingle__content {
    margin-top: 55px;
  }
}

.p-contact {
  padding-top: 80px;
  background-color: #f6f6f6;
}
.p-contact__headingGroup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.p-contact__heading {
  line-height: 1;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.9541602465rem + 0.4622496148vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto 1em;
  color: var(--black);
}
.p-contact__subheading {
  line-height: 0.68;
  font-size: 56px;
  font-size: 3.5rem;
  font-size: clamp(3.5rem, 0.1775808937rem + 14.1756548536vw, 9.25rem);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-contact__body {
  padding-top: 105px;
  padding-bottom: 80px;
  background-color: #f6f6f6;
}
.p-contact__lead {
  line-height: 1.75;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: center;
  margin: 0 auto;
  color: var(--black);
}
.p-contact__note {
  max-width: 750px;
  line-height: 1.75;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  padding: 1.5em 1.5em;
  margin: 35px auto 0;
  color: var(--black);
  border-radius: 10px;
  border: 1px solid #bbbbbb;
  background-color: var(--white);
}
.p-contact__note > p:last-child {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 0.5em;
  color: #787878;
}
.p-contact__caution {
  line-height: 1.625;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.8em 0;
  margin: 52px auto 0;
  color: var(--white);
  background-color: #4d4d50;
}
.p-contact__form {
  margin: 35px auto 0;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 160px;
  }
  .p-contact__note {
    padding: 1.8em 1.8em;
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact {
    padding-top: 250px;
    background-color: #f6f6f6;
  }
  .p-contact__body {
    padding-top: 175px;
    padding-bottom: 155px;
  }
  .p-contact__lead {
    line-height: 1;
  }
  .p-contact__note {
    padding: 2em 2em;
    margin: 50px auto 0;
  }
  .p-contact__caution {
    margin: 120px auto 0;
  }
  .p-contact__form {
    margin: 100px auto 0;
  }
}

.u-container {
  width: 100%;
  max-width: 1080px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
.u-container--max1136 {
  max-width: 1236px;
}
.u-container--max1000 {
  max-width: 1100px;
}
.u-container--max950 {
  max-width: 1050px;
}
.u-container--max900 {
  max-width: 1000px;
}
.u-container--max850 {
  max-width: 950px;
}
.u-container--max800 {
  max-width: 900px;
}
.u-container--max750 {
  max-width: 850px;
}
@media screen and (min-width: 768px) {
  .u-container {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .u-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.u-hiddenPc {
  display: inline;
}
@media screen and (min-width: 1024px) {
  .u-hiddenPc {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .u-spbr {
    display: none;
  }
}
