/*===============================
  Base
===============================*/
html {
  height: 100%;
  font-size: calc((100vw - 320px) / 140 + 14px);
}
body {
  line-height: 1;
  font-family: "a-otf-ryumin-pr6n", serif;
  height: 100%;
  color: #2a3233;
  font-size: 0.8rem;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
a, a::before, a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .4s;
  transition: all .4s;
}
a:hover {
  opacity: 0.7;
}
img {
  width: 50%;
}
h3 {
  font-size: 3.5rem;
}
p {
  line-height: 1.8;
}
.elm {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.center {
  text-align: center;
}
.flbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flbox > div {
  width: 38%;
  margin-top: 80px;
}
.flbox img {
  width: 58%;
}
.wrap {
  margin-left: 3%;
}
.flbox02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flbox02 img {
  width: 100%;
}
.flbox02 p {
  margin-top: 8vw;
  margin-left: 3%;
}
.flbox03 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
/*===============================
  ローダー
===============================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #000;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 10s 4s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 5s 0.5s forwards;
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
.catch {
  margin-bottom: 50px;
}
.loading__logo > img {
  width: 30%;
}
.loading__logo p img {
  width: 30%;
}
.catch02 img {
  margin-bottom: 50px;
  width: 25% !important;
}
@media screen and (max-width: 768px) {
  .loading__logo p img {
    width: 60% !important;
  }
  .loading__logo > img {
    width: 60%;
  }
}
/*===============================
  header
===============================*/
header h1 {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 50;
}
header h1 img {
  width: 33%;
}
.bg01 {
  background: url(../img/bg01.webp) no-repeat center top;
  background-size: cover;
  padding: 120px 0;
}
.bg02 {
  background: url(../img/bg02.webp) no-repeat center top;
  background-size: cover;
  padding: 60px 0;
}
.bg03 {
  background: url(../img/bg03.webp) no-repeat center top 120px;
  background-size: contain;
}
.bg04 {
  background: url(../img/bg04.webp) no-repeat center top;
  background-size: cover;
}
/*===============================
  MV
===============================*/
.bg-bl {
  width: 100%;
  height: auto;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: 2px 2px;
  z-index: 0;
}
.bg-bl img {
  width: 100%;
}
.mv {
  position: relative;
  margin-bottom: 100px;
}
.mv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-text {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
  text-shadow: 1px 1px 8px black;
  z-index: 99;
}
.m-text p {
  color: #fff;
  line-height: 1.6;
}
.m-text p.text02 {
  font-size: 1.3rem;
  margin-top: 2rem;
}
/*===============================
  MENU
===============================*/
.menu ul {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: auto;
  margin-bottom: 100px;
}
.menu ul li {
  width: 31%;
}
.menu ul li a img {
  width: 100%;
}
/*===============================
  ハンバーガーMENU
===============================*/
.sp-menu {
  position: fixed;
  top: 0px;
  right: 0;
  z-index: 80;
  background-color: #fff;
  padding: 15px;
}
.hamburger {
  width: 40px;
  height: 25px;
  position: relative;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: .5s;
}
.hamburger span:first-of-type { /* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.hamburger span:nth-of-type(2) { /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.hamburger span:last-of-type { /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.slide-menu {
  background-color: #fff;
  position: fixed;
  top: 65px;
  width: 50%;
  right: 0;
  transform: translateX(100%);
  transition: .5s;
  z-index: 80;
  padding: 20px;
}
.slide-menu li {
  color: #000;
  line-height: 400%;
  text-align: left;
  border-bottom: 2px solid #000;
}
.slide-menu li a {
  color: #000;
  font-size: 20px;
}
.hamburger.active span:first-of-type { /* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2) { /* ハンバーガーメニューの2番目の線 */
  opacity: 0; /* 透明にする */
}
.hamburger.active span:last-of-type { /* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-45deg);
}
.slide-menu.active {
  transform: translateX(0);
}
/*===============================
  Design Concept
===============================*/
#concept {
  position: relative;
  height: auto;
}
#concept > div {
  position: absolute;
  top: 90px;
  margin: auto;
  width: 100%;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
}
#concept > div h3 {
  margin-bottom: 30px;
  white-space: nowrap;
}
#concept img {
  width: 100%;
}
#concept > div .left {
  width: 48%;
  margin-left: 5%;
}
#concept > div .right {
  margin-left: 3%;
  margin-top: 20px;
  margin-right: 3%;
  width: 50%;
}
#concept > div .right p {
  font-size: 0.7rem;
}
.bigtext01 {
  font-size: 1.2rem;
  margin-bottom: 60px;
}
#l-concept {
  margin-bottom: 120px;
}
#l-concept h3 {
  margin-bottom: 30px;
}
#l-concept .wrap {
  margin: 0 0 0 3%;
}
#plan .wrap {
  margin: 0 0 0 3%;
}
#plan .flbox > div {
  margin-top: 0;
}
#plan h3 {
  margin-bottom: 60px;
}
#madori {
  width: 90%;
  margin: auto;
  margin-bottom: 120px;
}
.explanation {
  border: 2px solid #7C642E;
  padding: 20px;
  margin-right: 30px;
}
.explanation p {
  font-size: 0.6rem;
  text-align: center;
}
.explanation p span {
  font-size: 1rem;
  font-weight: bold;
}
.explanation p .big {
  font-size: 0.8rem;
}
.explanation p .small {
  font-size: 0.5rem;
}
.explanation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 95%;
  margin: auto;
  margin-top: 20px;
}
.explanation ul li {
  width: 43%;
  font-size: 0.6rem;
  background: linear-gradient(90deg, rgba(167, 119, 34, 1) 0%, rgba(132, 102, 34, 1)100%);
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}
#outside {
  position: relative;
  margin-bottom: 80px;
}
#outside h3 {
  margin-left: 7%;
  margin-bottom: 50px;
}
#outside .img02 {
  text-align: right;
}
#outside .img02 img {
  width: 70%;
}
#living {
  position: relative;
  padding-bottom: 20vw;
}
#living h3 {
  margin-bottom: 50px;
}
#living .img01 img, #living .img02 img, #living .img03 img {
  width: 100%;
}
#living .img01 {
  width: 20vw;
  position: absolute;
  top: 25vw;
  left: 40vw;
}
#living .img02 {
  width: 17vw;
  position: absolute;
  top: 23vw;
  left: 5vw;
}
#living .img03 {
  width: 14vw;
  position: absolute;
  top: 40vw;
  left: 20vw;
}
#living .flbox > div {
  margin-top: -100px;
}
#kitchen {
  position: relative;
  padding-bottom: 20vw;
}
#kitchen h3 {
  text-align: right;
  margin-right: 7%;
  margin-bottom: 5vw;
}
#kitchen img {
  width: 100%;
}
#kitchen .flbox03 p {
  margin: 2vw;
}
#kitchen .img01 {
  margin-top: -100px;
}
#kitchen .img03 {
  width: 28vw;
  position: absolute;
  top: 35vw;
  left: 43vw;
}
#kitchen .img04 {
  width: 20vw;
  position: absolute;
  top: 35vw;
  right: 3vw;
}
#bed {
  position: relative;
  padding-bottom: 25vw;
}
#bed h3 {
  margin-left: 7%;
  margin-bottom: 50px;
}
#bed .flbox02 p {
  margin-top: 1vw;
}
#bed .img02 img, #bed .img03 img {
  width: 100%;
}
#bed .img01 {
  width: 100%;
}
#bed .img02 {
  width: 28vw;
  position: absolute;
  top: 18vw;
  right: 0;
  z-index: 10;
}
#bed .img03 {
  width: 30vw;
  position: absolute;
  top: 33vw;
  right: 14vw;
}
#deck {
  position: relative;
  padding-bottom: 10vw;
}
#deck .photo {
  margin-right: 5vw;
}
#deck .flbox02 p {
  margin-top: 3vw;
  margin-bottom: 8vw;
}
#deck .img02 {
  width: 28vw;
  position: absolute;
  left: 4vw;
  margin-top: 4vw;
}
.bnrBox {
  margin: 0 0 10vw 0;
}
#bnr {
  text-align: center;
  /*padding: 10vw 0 ;*/
  padding: 10vw 0 2vw;
}
#bnrToyoyaku1,#bnrToyoyaku1 {
  text-align: center;
  padding: 10vw 0 2vw;
}
/*np21-start*/
#bnr2 {
  text-align: center;
  /*padding: 0 0 10vw;*/
}
.hidden {
  display: none;
}
/*np21-end*/
#info .flbox03 {
  width: 90%;
  margin: auto;
  margin-bottom: 50px;
  align-items: center;
}
#info .flbox03 > img {
  width: 38%;
  margin-right: 3%;
}
#info .flbox03 > div img {
  width: 100%;
}
#info h3 {
  margin-bottom: 50px;
}
.shop p {
  font-size: 1.5rem;
  margin-bottom: 1vw;
}
#info h4 {
  font-size: 2rem;
  margin-bottom: 5vw;
}
#info .center > p {
  font-size: 1rem;
  margin-bottom: 5vw;
  font-weight: bold;
}
#info > p {
  font-size: 1rem;
  margin-bottom: 5vw;
  font-weight: bold;
}
.map {
  text-align: center;
  margin-bottom: 60px;
}
/*===============================
  Footer
===============================*/
.f-in {
  background-color: #555252;
  padding: 60px 0 30px;
}
.f-in .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 70%;
  margin: auto;
  margin-bottom: 30px;
}
.f-in .flex img {
  width: 90%;
}
.f-tel {
  text-align: center;
  color: #fff;
}
.f-tel img {
  width: 35vw;
  margin-bottom: 15px;
}
.f-bnr {
  width: 65vw;
  text-align: right;
  position: fixed;
  bottom: 0;
  right: 0;
}
.top-bnr {
  width: 8vw;
  text-align: right;
  position: fixed;
  bottom: 120px;
  right: 0;
}
/*スマホ対応（ブレイクポイント768px）*/
@media screen and (max-width: 768px) {
  body {
    font-size: 0.9rem;
  }
  .catch {
    font-size: 1.2rem;
  }
  .catch02 {
    font-size: 1.6rem;
  }
  .txt img {
    width: 60%;
  }
  header h1 img {
    width: 40%;
  }
  .m-text {
    width: 95%;
    font-size: 1.3rem;
    white-space: normal;
    z-index: 99;
  }
  .m-text p.text02 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  .mv {
    margin-bottom: 25px;
  }
  .menu ul {
    width: 95%;
    margin-bottom: 25px;
  }
  .bg01 {
    padding: 60px 0;
  }
  .bg03 {
    background: url(../img/bg03.webp) no-repeat center top 155px;
    background-size: contain;
  }
  .flbox > div {
    margin-top: 0;
  }
  .flbox img {
    width: 62%;
    margin-left: 3vw;
  }
  .wrap {
    margin: 0;
  }
  #concept {
    margin-bottom: 30px;
  }
  #concept > div {
    position: absolute;
    top: 10px;
    display: block;
  }
  #concept > div.sp {
    position: absolute;
    bottom: 0;
  }
  #concept > div h3 {
    margin-bottom: 10px;
  }
  #concept > div .left {
    width: 100%;
  }
  #concept > p {
    text-align: center;
    margin-top: 20px;
  }
  #l-concept {
    margin-bottom: 50px;
  }
  #l-concept .flbox {
    position: relative;
  }
  .bigtext01 {
    margin-bottom: 20px;
  }
  #madori {
    width: 98%;
    margin-bottom: 60px;
  }
  #madori .flbox {
    flex-direction: column;
  }
  #madori .flbox img {
    order: 1;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .explanation {
    order: 2;
    width: 96% !important;
    padding: 20px 5px;
  }
  .explanation p {
    font-size: 0.8rem;
  }
  .explanation p .small {
    font-size: 0.5rem;
  }
  .explanation ul {
    width: 100%;
  }
  .explanation ul li {
    width: 32%;
    padding: 10px 0;
  }
  #outside {
    margin-bottom: 20px;
  }
  #outside .flbox02 {
    flex-direction: column;
  }
  #outside h3 {
    margin-bottom: 10px;
  }
  #outside .flbox02 p {
    order: 1;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 25px;
  }
  #outside .flbox02 .img01 {
    order: 2;
  }
  #outside .img02 img {
    width: 100%;
  }
  #living {
    padding-bottom: 80vw;
  }
  #living .flbox {
    flex-direction: column;
  }
  #living .flbox > div {
    margin-top: 0;
    width: 96%;
    margin-bottom: 20px;
    padding: 0 2%;
  }
  #living h3 {
    margin-bottom: 25px;
  }
  #living .flbox img {
    width: 100%;
    margin-left: 0;
  }
  #living .img01 {
    width: 50vw;
    position: absolute;
    top: 39vw;
    left: 5vw;
  }
  #living .img02 {
    width: 35vw;
    position: absolute;
    top: 49vw;
    left: 58vw;
  }
  #living .img03 {
    width: 30vw;
    top: 76vw;
    left: 68vw;
  }
  #kitchen .flbox03 {
    flex-direction: column;
  }
  #kitchen .flbox03 p {
    order: 1;
    margin-bottom: 60px;
  }
  #kitchen .img01 {
    margin-top: 0;
    order: 2;
    width: 55%;
    margin-bottom: 20px;
  }
  #kitchen .img02 {
    order: 3;
    margin-top: -30px;
  }
  #kitchen .img03 {
    width: 42%;
    top: -43vw;
    left: 57vw;
  }
  #kitchen .img04 {
    width: 42%;
    top: -18vw;
    left: 57vw;
  }
  #bed {
    padding-bottom: 50vw;
  }
  #bed h3 {
    margin-bottom: 5vw;
  }
  #bed .flbox02 {
    flex-direction: column;
  }
  #bed .flbox02 p {
    order: 1;
    text-align: right;
    margin-right: 2%;
    margin-bottom: 30px;
  }
  #bed .img01 {
    order: 2;
  }
  #bed .img02 {
    width: 43vw;
    position: absolute;
    top: 33vw;
    left: 2vw;
  }
  #bed .img03 {
    width: 43vw;
    position: absolute;
    top: 5vw;
    right: 2vw;
  }
  #deck h3 {
    margin-bottom: 5vw;
  }
  #deck .flbox02 {
    flex-direction: column;
  }
  #deck .flbox02 .text {
    order: 1;
    text-align: center;
  }
  #deck .flbox02 .photo {
    order: 2;
  }
  #deck .flbox02 p {
    margin-left: 0;
  }
  #deck .img01 {
    width: 45vw;
    margin-left: 3vw;
    margin-top: 20px;
  }
  #deck .img02 {
    width: 45vw;
    position: absolute;
    top: 40vw;
    left: 50vw;
  }
  /*np21-start*/
  #bnr img, #bnr2 img {
    width: 95%;
  }
  /*np21-end*/
  #info .flbox03 {
    flex-direction: column;
  }
  #info .flbox03 > div {
    order: 1;
    text-align: center;
  }
  #info .flbox03 > img {
    order: 2;
    width: 100%;
  }
  #info .flbox03 > div img {
    margin: 20px 0 30px 0;
  }
  .f-in .flex {
    flex-direction: column;
  }
  .f-in .flex img {
    width: 100%;
    margin-bottom: 10px;
  }
  .f-tel img {
    width: 60%;
  }
  .f-bnr {
    width: 100%;
  }
  .f-bnr img {
    width: 100%;
  }
  .top-bnr {
    width: 18vw;
  }
  footer {
    margin-bottom: 80px;
  }
}