@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを18pxに設定（解像度基準1400） */
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  text-align: justify;
  line-height: 1.5555555556;
}
@media screen and (max-width: 959px) {
  body {
    /* bodyの基本サイズを16pxに設定（解像度基準768） */
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  body {
    /* bodyの基本サイズを14pxに設定（解像度基準375） */
    font-size: 1.4rem;
  }
}

.f-han {
  font-family: YakuHanJP, "Shippori Mincho", serif;
}

.f-zen {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.f-bar {
  font-family: "Barlow Condensed", sans-serif;
}

.f-mont {
  font-family: "Montserrat", sans-serif;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

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

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

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

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

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

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

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

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  overflow-x: hidden;
}

.drawer--open {
  overflow: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

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

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

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

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-inner {
  margin: 0 auto;
  padding: 0 3rem;
  max-width: 106rem; /* コンテンツ幅1400px */
  width: 100%;
  height: auto;
}

.l-inner--900 {
  max-width: 96rem;
}

@media screen and (max-width: 519px) {
  .l-inner--point {
    padding: 0;
  }
}

/* component
------------------------------------------------ */
.c-head01 {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 959px) {
  .c-head01 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-head01 {
    font-size: 2.1rem;
  }
}

.c-footer {
  position: relative;
  padding: 25rem 0 3rem;
  color: #c8bc86;
  text-align: center;
  background-color: #3b5e64;
}
@media screen and (max-width: 959px) {
  .c-footer {
    padding: 19rem 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer {
    padding: 14rem 0 1.5rem;
  }
}

.c-footer__logo {
  width: 17.4rem;
}
@media screen and (max-width: 519px) {
  .c-footer__logo {
    width: 13rem;
  }
}

.c-footer__copy {
  margin-top: 1.7rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.c-footer__insta {
  margin: 2rem auto 0;
  width: 2.6rem;
}
@media screen and (max-width: 959px) {
  .c-footer__insta {
    width: 2.3rem;
  }
}

.c-footer__top {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 7rem;
}
@media screen and (max-width: 959px) {
  .c-footer__top {
    width: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4.1rem;
  }
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 0;
  width: 100%;
  max-width: 20rem;
  height: 4rem;
  color: #3b5e64;
  letter-spacing: 0.06em;
  background-color: #c8bc86;
  border-radius: 5rem;
}
@media screen and (max-width: 519px) {
  .c-btn {
    height: 4.5rem;
    font-size: 1.525rem;
  }
}

/* project
------------------------------------------------ */
.p-mv {
  position: relative;
  width: 100%;
}

.p-mv__copy {
  position: absolute;
  top: 7.5rem;
  right: 3%;
  z-index: 1;
  color: #c8bc86;
  font-size: 3.575rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 519px) {
  .p-mv__copy {
    top: 10.5%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    font-size: 2.463rem;
  }
}

.p-mv__logo {
  position: absolute;
  top: 50%;
  left: 11%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  width: 19rem;
}
@media screen and (max-width: 519px) {
  .p-mv__logo {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 14.4rem;
  }
}

.p-mv__btn {
  display: none;
}
@media screen and (max-width: 519px) {
  .p-mv__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 15%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #c8bc86;
    background-color: #3b5e64;
  }
}

.p-mv__slides {
  width: 100%;
  height: 70vh;
  height: 81vh;
}
@media screen and (max-width: 519px) {
  .p-mv__slides {
    height: 100vh;
    height: 100lvh;
  }
}
.p-mv__slides .splide {
  height: 100%;
}
.p-mv__slides .splide .splide__track {
  height: 100%;
}
.p-mv__slides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept {
  position: relative;
  padding: 23rem 0;
  color: #c8bc86;
  text-align: center;
  background-color: #3b5e64;
}
@media screen and (max-width: 959px) {
  .p-concept {
    padding: 19rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-concept {
    padding: 14rem 0;
  }
}

@media screen and (max-width: 519px) {
  .p-concept__container {
    padding: 0 3rem;
  }
}

.p-concept__text {
  margin-top: 6rem;
  font-size: 2.2rem;
  line-height: 2.1818181818;
}
@media screen and (max-width: 959px) {
  .p-concept__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-concept__text {
    margin-top: 2.5rem;
    font-size: 1.525rem;
    text-align: justify;
    letter-spacing: -0.02em;
  }
}

.p-concept__insta {
  margin: 8rem auto 0;
  width: 2.6rem;
}
@media screen and (max-width: 959px) {
  .p-concept__insta {
    width: 2.3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-concept__insta {
    margin-top: 6rem;
  }
}

.p-concept__btn {
  position: absolute;
  top: 3rem;
  right: 3.5%;
}
@media screen and (max-width: 519px) {
  .p-concept__btn {
    display: none;
  }
}

.p-point {
  padding: 23rem 0 23rem;
  color: #a6514c;
  background-color: #c8bc86;
}
@media screen and (max-width: 959px) {
  .p-point {
    padding: 19rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-point {
    padding: 14rem 0;
  }
}

.p-point__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7.6rem;
  margin-top: 5.5rem;
}
@media screen and (max-width: 959px) {
  .p-point__cards {
    gap: 5rem 3rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-point__cards {
    display: block;
    margin-top: 1rem;
  }
}

.p-point__card {
  width: calc(33.333% - 5.0666666667rem);
}
@media screen and (max-width: 959px) {
  .p-point__card {
    width: calc(33.333% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .p-point__card {
    width: 100%;
    margin: 0 1.5rem;
  }
}
.p-point__card:nth-child(2n) {
  color: #3b5e64;
}

.p-point__num {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  aspect-ratio: 1;
  width: 5rem;
  height: auto;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #c8bc86;
  border-radius: 50%;
}
@media screen and (max-width: 519px) {
  .p-point__num {
    width: 4.5rem;
    font-size: 2.111rem;
  }
}

.p-point__slides {
  margin-top: -1.6rem;
}
.p-point__slides .splide .splide__track .splide__list .splide__slide img {
  aspect-ratio: 280/185;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-point__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10rem;
}
@media screen and (max-width: 519px) {
  .p-point__icon {
    height: 8rem;
  }
}
.p-point__icon img {
  display: inline-block;
  width: auto;
  height: 40%;
}

.p-point__icon--2 img {
  height: 25%;
}

.p-point__icon--3 img {
  height: 50%;
}

.p-point__icon--4 img {
  height: 38.2%;
}

.p-point__icon--5 img {
  height: 33.6%;
}

.p-point__head {
  margin-top: -0.5rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 519px) {
  .p-point__head {
    font-size: 1.759rem;
  }
}

.p-point__text {
  margin-top: 2rem;
  text-wrap: pretty;
}
@media screen and (max-width: 519px) {
  .p-point__text {
    margin-top: 1rem;
  }
}

.p-manner {
  padding: 23rem 0 23rem;
  color: #c8bc86;
  background-color: #3b5e64;
}
@media screen and (max-width: 959px) {
  .p-manner {
    padding: 19rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-manner {
    padding: 14rem 0;
  }
}

.p-manner__slides {
  margin-top: 8rem;
}
@media screen and (max-width: 959px) {
  .p-manner__slides {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-manner__slides {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-manner__slides .splide__arrow--prev {
    left: 0;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}
@media screen and (max-width: 519px) {
  .p-manner__slides .splide__arrow--next {
    right: 0;
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
  }
}

.p-manner__content {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-manner__content {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-manner__content {
    margin-top: 5rem;
  }
}
.p-manner__content h3 {
  margin-top: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .p-manner__content h3 {
    font-size: 1.759rem;
  }
}
.p-manner__content p {
  margin-top: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .p-manner__content p {
    text-align: justify;
    text-wrap: pretty;
  }
}

.p-system {
  padding: 23rem 0;
  color: #3b5e64;
  background-color: #c8bc86;
}
@media screen and (max-width: 959px) {
  .p-system {
    padding: 19rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-system {
    padding: 14rem 0;
  }
}

.p-system__table {
  margin-top: 5rem;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 519px) {
  .p-system__table {
    margin-top: 3rem;
  }
}
.p-system__table th, .p-system__table td {
  padding: 1rem 0;
  font-weight: 500;
  border-top: 1px solid #3b5e64;
}
@media screen and (max-width: 519px) {
  .p-system__table th, .p-system__table td {
    display: block;
    padding: 1.2rem 0;
    text-align: center;
  }
}
.p-system__table th {
  width: 15.7rem;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  vertical-align: top;
}
@media screen and (max-width: 519px) {
  .p-system__table th {
    width: 15rem;
  }
}
@media screen and (max-width: 519px) {
  .p-system__table th {
    padding-bottom: 0.2rem;
    width: 100%;
  }
}
.p-system__table th span {
  display: inline-block;
  padding: 0 1rem;
  width: 13.6rem; /* 一番長い「設備・アメニティ」(8文字) に合わせる */
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 959px) {
  .p-system__table th span {
    padding: 0 0.5rem;
    width: 12.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-system__table th span {
    padding: 0 0.2rem;
    width: 6.1rem;
  }
}
.p-system__table th.facility span {
  padding: 0;
}
@media screen and (max-width: 519px) {
  .p-system__table th.facility span {
    padding: 0 0.2rem;
    width: 11rem;
  }
}
.p-system__table td {
  padding-left: 1rem;
}
@media screen and (max-width: 519px) {
  .p-system__table td {
    padding: 0 0 1.2rem;
    border: none;
  }
}
@media screen and (max-width: 519px) {
  .p-system__table td span {
    display: none;
  }
}
.p-system__table tr:last-child th, .p-system__table tr:last-child td {
  border-bottom: 1px solid #3b5e64;
}
@media screen and (max-width: 519px) {
  .p-system__table tr:last-child th {
    border-bottom: none;
  }
}

.p-system__btn {
  margin-top: 6rem;
  color: #c8bc86;
  background-color: #3b5e64;
}
@media screen and (max-width: 519px) {
  .p-system__btn {
    margin-top: 4rem;
  }
}

.p-access {
  color: #a6514c;
  background-color: #c8bc86;
}

.p-access__text {
  margin-top: 4.5rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-access__text {
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-access__text {
    margin-top: 2.5rem;
  }
}

.p-access__map {
  margin-top: 4.9rem;
}
@media screen and (max-width: 959px) {
  .p-access__map {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-access__map {
    margin-top: 3.5rem;
  }
}
.p-access__map iframe {
  aspect-ratio: 1366/605;
  width: 100%;
  height: auto;
  -webkit-transform: translateY(0.6rem);
          transform: translateY(0.6rem);
}
@media screen and (max-width: 519px) {
  .p-access__map iframe {
    aspect-ratio: 1;
  }
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */