@charset "UTF-8";
body {
  font-family: "Roboto", "Noto Sans JP", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1, h2, h3, p {
  margin-bottom: 1em;
}

h1 {
  font-size: clamp(40px, 9cqw, 56px);
}

h2 {
  font-size: clamp(24px, 7cqw, 40px);
}

h3 {
  font-size: clamp(20px, 3cqw, 24px);
}

p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

span {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

a {
  color: #000;
  text-decoration: none;
}

summary {
  display: block;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

li {
  list-style: none;
}

.inner {
  padding-inline: min(5vw, 32px);
}

.contents-area--l {
  width: min(100%, 1200px);
  margin-inline: auto;
}
.contents-area--m {
  width: min(100%, 800px);
  margin-inline: auto;
}

.aspect--landscape {
  aspect-ratio: 1.7777777778;
  object-fit: cover;
}
.aspect--square {
  aspect-ratio: 1;
  object-fit: cover;
}

.paragraph {
  margin-bottom: 1rem;
  line-height: 2;
}

.sec__ttl {
  text-align: center;
}

/*
=================
ヘッダー
=================
*/
#header {
  width: 100%;
  height: clamp(3.75rem, 3.295rem + 2.27vw, 5rem);
  background-color: #f3f3f3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 300ms;
}
#header.hidden {
  transform: translateY(-100%);
}

.logo__link {
  width: fit-content;
  height: clamp(3.75rem, 3.295rem + 2.27vw, 5rem);
  margin-inline: auto;
  display: grid;
  place-content: center;
}
.logo__link img {
  width: clamp(18.75rem, 16.477rem + 11.36vw, 25rem);
  padding-inline: 32px;
}

/*
=================
キービジュアル
=================
*/
.kv {
  width: 100%;
  height: 100vh;
  background: center/cover no-repeat url(../img/kv_pc.jpg);
  display: grid;
  place-content: center;
  place-items: center;
}
@media (width < 765px) {
  .kv {
    background: center/cover no-repeat url(../img/kv_sp.jpg) center;
  }
}
.kv img {
  width: clamp(5.313rem, 4.744rem + 2.84vw, 6.875rem);
  opacity: 0;
  animation: fadaIn 3s ease forwards;
  animation-delay: 0.5s;
}
@keyframes fadaIn {
  to {
    opacity: 1;
  }
}

.prologue {
  width: 100%;
}
.prologue__inner {
  padding-top: clamp(2rem, 0.455rem + 7.73vw, 6.25rem);
}

.form-btn {
  width: fit-content;
  min-width: 300px;
  margin: 16px auto 40px auto;
  text-align: center;
  border: solid 2px #E3DAD1;
  background-color: #E3DAD1;
  border: solid 2px #7D7873;
  transition: opacity 300ms;
}
.form-btn a {
  display: block;
  padding: 0.75rem 3rem;
}
.form-btn p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
}
.form-btn:hover {
  opacity: 0.5;
}

.present-bnr {
  width: min(100%, 296px);
  margin-top: 40px;
  margin-inline: auto;
}

/*
=================
部屋の紹介
=================
*/
.room {
  width: 100%;
}
.room__inner {
  padding-block: clamp(2rem, 0.455rem + 7.73vw, 6.25rem);
  display: grid;
  align-items: stretch;
  row-gap: 32px;
}
@media (width < 671px) {
  .room__inner {
    display: block;
  }
}
@media (672px < width) {
  .room__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features__thumb {
  position: relative;
  width: fit-content;
  height: fit-content;
}
.features__txt {
  padding: 1.5em;
  margin-bottom: 0;
}

.room-name {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: end;
  color: #fff;
  font-weight: bold;
  font-size: clamp(72px, 8cqw, 80px);
  line-height: 0.65;
  margin-bottom: 0;
}

/*
=================
漆喰の家の良さ
=================
*/
.plaster {
  width: 100%;
}
.plaster__inner {
  padding-block: clamp(2rem, 0.455rem + 7.73vw, 6.25rem);
}

.accordion__item {
  width: min(100%, 600px);
  margin-inline: auto;
  padding: 1rem 2rem;
  background-color: #E3DAD1;
  border-radius: 10px;
}
.accordion__item:not(:last-child) {
  margin-bottom: 16px;
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion h3 {
  margin-bottom: 0;
  color: #7D7873;
}
.accordion p {
  margin: 8px 0 0 0;
}

.icon-plus {
  width: 20px;
  height: 20px;
  display: grid;
  place-content: center;
}
.icon-plus::before, .icon-plus::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 4px;
  background-color: #7D7873;
  transition: all 300ms;
}
.icon-plus::after {
  transform: rotate(90deg) translateX(-3px);
}
.icon-plus.show::before {
  opacity: 0;
}
.icon-plus.show::after {
  transform: rotate(0) translateX(0);
}

/*
=================
フォトギャラリー
=================
*/
.gallery__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/*
=================
フッター
=================
*/
footer {
  width: 100%;
  height: 600px;
  background-color: #E8E8E8;
  margin-top: clamp(3.75rem, 3.295rem + 2.27vw, 5rem);
}

.information {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: inherit;
}
.information__list {
  display: grid;
  place-self: center;
}
.information__item {
  display: flex;
  align-items: center;
}
.information__item:not(:last-child) {
  margin-bottom: 1rem;
}
.information__item span {
  display: inline-block;
  width: 6em;
  background-color: #7D7873;
  text-align: center;
  margin-right: 1rem;
  padding: 0.25em 1em;
  border-radius: 6px;
  color: #f3f3f3;
}
.information__item h3 {
  margin-inline: auto;
  color: #7D7873;
}
.information__item p {
  margin-bottom: 0;
}
.information__item a {
  text-decoration: underline solid;
}

.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (width < 840px) {
  footer {
    height: fit-content;
  }
  .information {
    display: flex;
    flex-direction: column-reverse;
  }
  .information__list {
    padding-block: 64px;
  }
  .map iframe {
    height: 300px;
  }
}
/*# sourceMappingURL=style.css.map */
