@charset "UTF-8";
/* ------------------------------------------------------------ */
/* ミックスインの定義
@mixin kadomaru($radius: 11px) {
border-radius: $radius;
}
.hoge1 {
@include kadomaru;
}
.hoge2 {
@include kadomaru(10px); ←上書き
}
*/
/* ------------------------------------------------------------ */
/*
$black: $blk;
$border-radius: 0.25rem;
$box-shadow: 0 0.5rem 1rem rgba($black, 0.15);

.hoge {
border-radius: $border-radius;
box-shadow: $box-shadow;
}
*/
/* ------------------------------------------------------------ */
/* 基本、レイアウト指定 */
* html body {
  background: url(null) fixed;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.1px;
  background: #c7e2cc;
  font-weight: normal;
}
html {
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}
ol, ul, menu {
  padding: 0;
}
.pc {
  display: none;
}
.ff-ZenOldMincho {
  font-family: "Zen Old Mincho", serif;
}
.ff-Jost {
  font-family: 'Jost', sans-serif;
  font-optical-sizing: auto;
}
.ff-NSJ {
  font-family: 'Noto Sans JP', sans-serif;
}
.AG, .acod .show_more {
  font-family: "alternate-gothic-atf", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.FT {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.NSCr {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.NSCm {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.NSCb {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.base {
  position: relative;
  z-index: 2;
}
.dsp-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fw-b {
  font-weight: bold;
}
.bd-radius {
  border-radius: 11px;
}
.pos-rel {
  position: relative;
}
.sticky-cnt {
  min-height: 100vh;
  top: 0;
  overflow: visible;
}
.dash {
  display: inline-block;
  min-width: 20px;
  width: 5%;
  height: 1px;
  background: #fff;
  vertical-align: middle;
}
.dash.bk {
  background: #000;
  position: relative;
  top: -2.5px;
}
.btn-box .btn {
  border-radius: 50px;
  padding: 15px;
  border: 1px solid #808080;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  z-index: 2;
  background: #fff;
  color: #808080;
  width: 100%;
  font-size: 13px;
  line-height: 20px;
}
.btn-box .btn.col2 {
  width: calc(100% / 2 - 1%);
  max-width: 299px;
}
.btn-box .btn::after {
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .4s, transform 0s;
  transition-delay: 0s, .3s;
  color: #fff;
  background: #808080;
  border-color: #808080;
}
.btn-box .btn:hover {
  color: #fff;
}
.btn-box .btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .6s, transform .4s ease-in-out;
}
.grecaptcha-badge {
  visibility: hidden;
}
/* ------------------------------------------------------------ */
/* アニメーション */
/* FadeIn */
.FadeIn {
  opacity: 0;
  transition: 1s;
  transition-delay: 0.5s;
  transition-duration: 1s;
}
.FadeIn.show {
  opacity: 1;
}
/* InUp */
.InUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 1s;
}
.InUp.show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* Matrix */
.Matrix .bg-wrap, .Matrix .bg-wrap .inn {
  display: block;
}
.Matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.Matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
.Matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.Matrix.show .bg-wrap {
  opacity: 1;
}
.Matrix.show .bg-wrap .inn {
  opacity: 0;
  animation-name: MatrixAnim;
  animation-fill-mode: backwards;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes MatrixAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
/* StickerX */
.StickerX {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerX.show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* StickerY */
.StickerY {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerY.show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* Zoom */
.Zoom {
  opacity: 0;
  transform: scale(1.4);
  transition: 1s;
  transform-origin: center;
}
.Zoom.show {
  opacity: 1;
  transform: scale(1);
}
/* Furfur */
.Furfur {
  opacity: 0;
  transform: rotate(0deg);
}
.Furfur.show {
  animation-name: FurfurAnim;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}
@keyframes FurfurAnim {
  0% {
    transform: rotate(-5deg);
    opacity: 0;
  }
  20%, 60% {
    opacity: 1;
    transform: rotate(5deg);
  }
  40%, 80% {
    opacity: 1;
    transform: rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.in01 {
  animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}
.in02 {
  animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}
.in03 {
  animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}
.in04 {
  animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
} /* ------------------------------------------------------------ */
/* ローディング */
#loading {
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #3EDB57;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  transition: all .5s;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  max-width: 200px;
  width: 35%;
}
/* ------------------------------------------------------------ */
/* fsv */
.fsv {
  background: #808080;
  width: 100%;
  height: 100vh;
  height: 100svh;
  top: 0;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.fsv .inner {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.fsv .txt-box {
  position: relative;
  z-index: 2;
  justify-content: center;
  text-align: center;
  color: #fff;
  top: -5%;
}
.fsv .txt-box h1.logo {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}
.fsv .txt-box h1.logo img {
  width: 100%;
}
.fsv .txt-box h2 {
  width: 100%;
  font-size: min(35px, 8.4vw);
  line-height: 1.2;
  letter-spacing: 8px;
  margin-top: 30px;
  position: relative;
  left: 5%;
}
.fsv .txt-box p {
  font-size: 13px;
  letter-spacing: 0.1px;
}
.fsv .txt-box .tags {
  max-width: 240px;
  margin: 24px auto 0;
  line-height: 24px;
}
.fsv .txt-box .tags .tag {
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  display: block;
}
.fsv .txt-box .tags .tag:not(:last-of-type) {
  margin-right: 15px;
}
.fsv .txt-box .tags .bg-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.fsv .fsv-slider {
  height: 100vh;
  height: 100svh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fsv .fsv-slider::before {
  content: "";
  background: #A57C52;
  opacity: .6;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
}
.fsv .fsv-slider-rgt, .fsv .fsv-slider-lft {
  height: calc(100vh / 3);
  height: calc(100svh / 3);
}
.fsv .fsv-slider .swiper-slide img {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fsv .fsv-slider .swiper-wrapper {
  transition-timing-function: linear; /*等速で流れ続ける*/
}
.fsv .fsv-book {
  max-width: 147px;
  width: 50%;
  position: absolute;
  right: 5%;
  bottom: 3%;
}
.fsv .scroll-down {
  position: absolute;
  left: 5%;
  bottom: 5%;
}
.fsv .scroll-down::after {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 4;
  background-color: #fff;
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 71px;
  animation: scroll-down 2.5s infinite;
}
@keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ------------------------------------------------------------ */
/* intr */
.intr {
  background: #fff;
  color: #000;
  position: relative;
  top: 0;
  padding: 104px 0 55px;
  text-align: center;
  overflow: hidden;
}
.intr .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.intr .inner .bg {
  width: 100%;
}
.intr .logo {
  max-width: 193px;
  width: 100%;
  margin: 0 auto 45px;
}
.intr .logo img {
  width: 100%;
}
.intr p {
  font-size: 12px;
  line-height: 33px;
  letter-spacing: 0;
  margin-bottom: 37px;
}
.intr .bg-box {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  height: 100%;
}
.intr .bg-box .bg-fix {
  position: fixed;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  pointer-events: none;
  z-index: -1;
  object-fit: cover;
}
.intr .bg {
  width: 100%;
}
/* ------------------------------------------------------------ */
/* book */
.book {
  background: #fff;
  color: #3E3A3A;
  padding: 55px 0 50px;
}
.book .inner {
  max-width: 335px;
  width: 85%;
  margin: 0 auto;
}
.book h2 {
  font-size: 16px;
  text-align: center;
  color: #221815;
  font-weight: 600;
  letter-spacing: 0.15px;
}
.book .ph-box {
  position: relative;
  z-index: 3;
  width: 70%;
  margin: 0 auto;
}
.book .ph-box .ph-sdc {
  margin: 24px auto;
  width: 100%;
}
.book .circle {
  position: absolute;
  top: -8%;
  right: -13%;
  z-index: -1;
  color: #4D4D4D;
  min-width: 75px;
  min-height: 75px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(10deg) !important;
}
.book .circle::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #4D4D4D;
}
.book .num {
  justify-content: flex-start;
  width: 100%;
}
.book .num .large {
  font-size: 19px;
  margin-right: 3%;
}
.book .price {
  text-align: right;
  float: right;
  width: max-content;
}
.book .price .large {
  font-size: 17px;
}
.book .price .small {
  font-size: 12px;
}
.book .txt {
  font-size: 13px;
  line-height: 25px;
  margin: 24px auto 20px;
}
.book .btn-box {
  margin: 30px auto 0;
}
.book .btn-box .btn {
  border: 1px solid #4D4D4D;
  color: #4D4D4D;
  letter-spacing: 0.15px;
}
.book .btn-box .btn::after {
  background: #4D4D4D;
  border-color: #4D4D4D;
}
.book .btn-box .btn:hover {
  color: #fff;
}
/* ------------------------------------------------------------ */
/* wood stove */
.wood-stove {
  background: #CCB196;
  padding: 80px 0;
}
.wood-stove h2 {
  font-size: 16px;
  text-align: center;
  color: #221815;
  font-weight: 600;
  letter-spacing: 0.15px;
  margin-bottom: 75px;
}
.wood-stove .wood-stove-item {
  min-height: 250px;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.wood-stove .wood-stove-item:hover {
  opacity: .8;
}
.wood-stove .wood-stove-item:not(:last-of-type) {
  margin-bottom: 5px;
}
.wood-stove .wood-stove-item a {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}
.wood-stove .wood-stove-item.dr-craft {
  background: url("../img/recd-bg1.jpg") center / cover no-repeat;
}
.wood-stove .wood-stove-item.dr-craft .logo {
  max-width: 150px;
}
.wood-stove .wood-stove-item.dld {
  background: url("../img/recd-bg2.jpg") center / cover no-repeat;
}
.wood-stove .wood-stove-item.dld .logo {
  max-width: 45px;
}
.wood-stove .wood-stove-item.snow-style {
  background: url("../img/recd-bg3.jpg") center / cover no-repeat;
}
.wood-stove .wood-stove-item.snow-style .logo {
  max-width: 47px;
}
/* ------------------------------------------------------------ */
/* recd */
.recd {
  color: #fff;
  background: #fff;
  position: relative;
  z-index: 2;
}
.recd .inner {
  width: 100%;
}
.recd .inner img {
  width: 100%;
}
.recd a {
  transition: .3s;
  display: block;
}
.recd .recd-list {
  padding-bottom: 5px;
}
.recd .recd-item {
  min-height: 250px;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.recd .recd-item:hover {
  opacity: .8;
}
.recd .recd-item:not(:last-of-type) {
  margin-bottom: 5px;
}
.recd .recd-item a {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}
.recd .recd-item p {
  font-size: 13px;
  border-bottom: 1px solid #fff;
  display: block;
  max-width: max-content;
  width: 100%;
  letter-spacing: 2px;
  padding-bottom: 10px;
  margin: 0 auto;
}
.recd .recd-box {
  display: inline-block;
}
.recd .saunature {
  background: url("../img/recd-bg4.jpg") center / cover no-repeat;
}
.recd .saunature .logo {
  max-width: 199px;
  margin-bottom: 25px;
}
.recd .mics {
  background: url("../img/recd-bg5.jpg") center / cover no-repeat;
}
.recd .mics .logo {
  max-width: 136px;
  margin-bottom: 35px;
}
.recd .niwalabo {
  background: url("../img/recd-bg6.jpg") center / cover no-repeat;
}
.recd .niwalabo .logo {
  max-width: 156px;
  margin-bottom: 40px;
}
.recd .yanesolar {
  background: url("../img/recd-bg7.jpg") center / cover no-repeat;
}
.recd .yanesolar .logo {
  max-width: 280px;
  margin-bottom: 45px;
}
.recd .yanesolar .icon {
  max-width: 73px;
  position: absolute;
  right: 3%;
  bottom: 5%;
}
/* -------------------------*/
/* panorama */
.panorama.clip_mask {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 6;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  color: #FFF;
  transition: .3s;
}
.panorama:hover {
  opacity: .8;
}
.panorama.clip_mask .clip_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../img/recd-bg8.jpg")center bottom / cover no-repeat;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.panorama .inner, .panorama .panorama-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.panorama .panorama-box {
  flex-direction: row-reverse;
  margin-top: -5%;
  height: max-content;
  text-align: center;
}
.panorama .panorama-box .logo {
  max-width: 173px;
  margin-bottom: 65px;
}
.panorama .panorama-box p {
  font-size: 13px;
  line-height: 22px;
  border-bottom: 1px solid #fff;
  display: block;
  max-width: max-content;
  width: 100%;
  letter-spacing: 2px;
  padding-bottom: 10px;
  margin: 0 auto;
  text-align: center;
}
.panorama .txt {
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  max-width: 13px;
}
/* ------------------------------------------------------------ */
/* bldr-select */
.bldr-select {
  background: #808080;
  padding: 110px 0 65px;
  color: #fff;
  /* 続きを読むボタン・アコーディオン */
}
.bldr-select .inner {
  width: 90%;
  margin: 0 auto;
  align-items: flex-start;
}
.bldr-select .bldr-select-ttl {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 030px;
  display: block;
  text-align: center;
}
.bldr-select .map-box {
  position: relative;
  margin: 0 auto;
  max-width: 306px;
  width: 100%;
}
.bldr-select .map-box .map-select {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
.bldr-select .map-box .ttl-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
.bldr-select .map-box .ttl-box h2 {
  font-size: 23px;
  line-height: 33px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  background: #808080;
  padding: 0 10px;
}
.bldr-select .map-box .ttl-box h3 {
  font-size: 16px;
  line-height: 24px;
  margin: 25px auto;
}
.bldr-select .map-box .ttl-box span.fuki {
  max-width: 74px;
  position: absolute;
  top: -55px;
  left: -30px;
}
.bldr-select .map-box .ttl-box span.fuki img {
  width: 100%;
}
.bldr-select .map-box .order-box h2 {
  font-size: 25px;
  letter-spacing: 0;
}
.bldr-select .map-box .order-box h3 {
  font-size: 20px;
  text-align: center;
}
.bldr-select a:hover .cls-2 {
  fill: #7FB726;
}
.bldr-select .cls-1 {
  fill: #000;
}
.bldr-select .cls-2 {
  fill: #808080;
  stroke: #fff;
  stroke-miterlimit: 10;
  transition: 0.5s;
}
.bldr-select .cls-3 {
  fill: #fff;
  stroke: #fff;
  stroke-miterlimit: 10;
}
.bldr-select .list-box {
  max-width: 345px;
  width: 100%;
  margin: 60px auto 0;
  text-align: center;
}
.bldr-select .list-box .order-box h2 {
  font-size: 20px;
  text-align: center;
}
.bldr-select .list-box .search-result {
  background: #fff;
  color: #595757;
  padding: 10px 5%;
  margin: 0 auto 25px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
}
.bldr-select .list-box .search-result span.large {
  font-size: 40px;
  vertical-align: sub;
  margin: 0 5px;
}
.bldr-select .map-name {
  border: 1px solid #4D4D4D;
  background: #fff;
  border-radius: 50px;
  width: max-content;
  position: absolute;
  color: #4D4D4D;
}
.bldr-select .map-name.nanshin {
  bottom: 0;
  right: 0;
}
.bldr-select .map-name.chushin {
  left: 0;
  top: 0;
}
.bldr-select .map-name.toshin {
  right: 0;
  top: 0;
}
.bldr-select .map-name.hokushin {
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.bldr-select .show_more {
  border-radius: 50px;
  padding: 15px 0;
  border: 1px solid #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  z-index: 2;
  position: absolute;
  bottom: -40px;
  right: -3%;
  max-width: 129px;
  width: 45%;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4D4D4D;
  font-size: 16px;
}
.bldr-select .show_more::after {
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .4s, transform 0s;
  transition-delay: 0s, .3s;
}
.bldr-select .show_more::after {
  background: #fff;
}
.bldr-select .show_more:hover {
  color: #333;
}
.bldr-select .show_more:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .6s, transform .4s ease-in-out;
}
.bldr-select .acod {
  color: #fff;
  width: 100%;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  text-align: left;
}
.bldr-select .acod::before {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.bldr-select .acod .ttl-box {
  padding: 13px 5% 25px;
}
.bldr-select .acod .slider {
  width: 90%;
  margin: 0 auto;
}
.bldr-select .acod .acod-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.bldr-select .acod .acod-inner {
  overflow: hidden;
  position: relative;
  height: 0;
}
.bldr-select .acod .acod-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 90%;
  background: #fff;
}
.bldr-select .acod h4 {
  position: relative;
  left: -7%;
  background: #808080;
  margin: 30px 0;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.bldr-select .acod h4 .hash {
  font-size: 25px;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  color: #808080;
}
.bldr-select .acod h4 .num {
  font-size: 40px;
  letter-spacing: 0.1px;
  margin-left: 7px;
}
.bldr-select .acod h4 .name {
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.15px;
  width: 80%;
}
.bldr-select .acod h4 .name.ls-n {
  letter-spacing: normal;
}
.bldr-select .acod h4 .name .small {
  font-size: 13px;
  letter-spacing: normal;
}
.bldr-select .acod h4 .AG {
  width: -webkit-max-content;
  width: max-content;
  margin-right: 5%;
}
.bldr-select .acod .mainph {
  max-width: 110%;
  position: relative;
  z-index: 2;
  top: 0;
  left: -10%;
}
.bldr-select .acod h5 {
  font-size: 15px;
  line-height: 1.6;
}
.bldr-select .acod .txt-box {
  padding: 0 5% 25px;
}
.bldr-select .acod .area-box, .bldr-select .acod .type-box {
  font-size: 12px;
  display: flex;
  align-items: flex-start;
  padding-left: 5%;
  padding-rigth: 5%;
}
.bldr-select .acod .area-box .line, .bldr-select .acod .type-box .line {
  display: inline-block;
  border-bottom: 1px solid #fff;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 47%;
  letter-spacing: 0.1px;
  padding-bottom: 5px;
  margin-right: 16px;
}
.bldr-select .acod .area-box .area, .bldr-select .acod .type-box .type {
  width: 63%;
}
.bldr-select .acod .area-box .area span, .bldr-select .acod .type-box .type span {
  border: 1px solid #fff;
  border-radius: 5px;
  display: inline-block;
  padding: 2.5px 5px;
}
.bldr-select .acod .area-box .area span:not(:last-of-type), .bldr-select .acod .type-box .type span:not(:last-of-type) {
  margin-right: 7px;
}
.bldr-select .acod .type-box {
  padding: 15px 5% 50px;
}
.bldr-select .acod .slick-dots {
  top: -30px;
  left: 0;
  bottom: auto;
  right: auto;
  width: -webkit-max-content;
  width: max-content;
}
.bldr-select .acod .txt-inner {
  width: 90%;
  margin: 45px auto 80px;
}
.bldr-select .acod .txt-inner p {
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}
.bldr-select .acod .slick-slide img {
  width: 100%;
}
.bldr-select .acod .article {
  width: 80%;
  margin: 40px auto;
}
.bldr-select .acod .article h6 {
  font-size: 30px;
}
.bldr-select .acod .article p {
  font-size: 14px;
  text-align: left;
  margin: 0;
}
.bldr-select .acod .article img {
  width: 100%;
  margin: 16px auto 20px;
  background: #fff;
}
.bldr-select .acod .article .btn {
  max-width: -webkit-max-content;
  max-width: max-content;
  min-width: 80%;
  padding: 15px;
  text-align: center;
  border: 1px solid #4D4D4D;
  color: #4D4D4D;
}
.bldr-select .acod .article .btn-box .btn:hover {
  color: #fff;
}
.bldr-select .acod .article .btn-box .btn::after {
  background: #4D4D4D;
  border-color: #4D4D4D;
}
.bldr-select .acod .bldr-checkbox {
  background: #000;
  padding: 20px 5%;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: flex;
  border: 2px solid #fff;
}
.bldr-select input[type=checkbox] {
  display: none;
}
.bldr-select .bldr-pamphlet {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-left: 30px;
  position: relative;
  width: auto;
}
.bldr-select .bldr-pamphlet::before {
  border: 1px solid #fff;
  content: '';
  display: block;
  height: 22px;
  width: 22px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.bldr-select .bldr-pamphlet::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: '';
  display: block;
  height: 23px;
  width: 15px;
  left: 3px;
  top: -12px;
  opacity: 0;
  position: absolute;
  transform: rotate(45deg);
}
.bldr-select input[type=checkbox]:checked + .bldr-pamphlet::before {
  border-color: #fff;
}
.bldr-select input[type=checkbox]:checked + .bldr-pamphlet::after {
  opacity: 1;
}
.bldr-select .btn-search-box .btn-search {
  font-size: 12px;
  max-width: 221px;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  color: #4D4D4D;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 30px;
  font-weight: 500;
  margin: 30px auto 0;
  animation: pulsate 1.5s infinite;
  box-shadow: 0 0 0 0 #a1aa82;
  transition: 0.8s;
}
section.form #checkedBuilder {
  color: #245380;
  padding: 8px 0;
}
section.form .row.bld-area-box {
  margin-top: 20px;
}
section.form .row.row-other {
  margin-top: 0 !important;
  padding: 5px 0 0 !important;
}
/* ------------------------------------------------------------ */
/* footer */
footer {
  background: #fff;
  color: #000;
  padding: 20px 0 40px;
}
footer h2 {
  max-width: 138px;
  margin: 0 auto 16px;
}
footer h2 img {
  width: 100%;
}
footer p {
  font-size: 12px;
  line-height: 20px;
}
footer p .copy {
  display: inline-block;
  margin-top: 10px;
}
footer .inner {
  width: 85%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
footer a {
  transition: .3s;
}
footer a:hover {
  opacity: .6;
}
@media screen and (min-width: 1025px) {
  /* ------------------------------------------------------------ */
  /* 基本、レイアウト指定 */
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .btn-box .btn {
    font-size: 15px;
  }
  .pc-dsp-flx {
    display: flex;
    align-items: flex-start;
    position: relative;
  }
  /* ------------------------------------------------------------ */
  /* fsv */
  .fsv .inner {
    position: relative;
  }
  .fsv .txt-box {
    display: block;
    text-align: center;
  }
  .fsv .txt-box h1.logo {
    max-width: 725px;
  }
  .fsv .txt-box h2 {
    font-size: 78px;
    letter-spacing: 10px;
    margin-top: 70px;
  }
  .fsv .txt-box .tags {
    max-width: 100%;
    margin-top: 50px;
    font-size: 18px;
  }
  .fsv .scroll {
    right: -4%;
    bottom: 2%;
  }
  .fsv .fsv-book {
    max-width: 248px;
    bottom: 50px
  }
  .fsv .scroll-down {
    height: 98px;
    bottom: 50px
  }
  /* ------------------------------------------------------------ */
  /* intr */
  .intr {
    padding: 180px 0 0;
    text-align: left;
  }
  .intr .inner {
    width: 100%;
  }
  .intr .txt-inner {
    width: 100%;
    max-width: 638px;
    margin: 0 auto -170px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    left: -15%;
  }
  .intr .logo {
    max-width: 210px;
    width: 50%;
    margin: 0;
  }
  .intr p {
    font-size: 15px;
    line-height: 49px;
    width: 50%;
    max-width: -webkit-max-content;
    max-width: max-content;
  }
  /* ------------------------------------------------------------ */
  /* book */
  .book {
    padding: 100px 0;
  }
  .book .inner {
    max-width: 878px;
  }
  .book h2 {
    margin-bottom: 70px;
    font-size: 20px;
  }
  .book .pc-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  .book .ph-box {
    width: 44%;
    max-width: 380px;
    margin: 0;
  }
  .book .ph-box .ph-sdc {
    margin: 0;
  }
  .book .txt-box {
    width: 52%;
    max-width: 365px;
    position: relative;
  }
  .book .txt-box .logo {
    max-width: 333px;
    width: 100%;
    margin: 0 0 40px;
  }
  .book .circle {
    top: -18%;
    right: -16%;
    min-width: 120px;
    min-height: 120px;
    font-size: 20px;
  }
  .book .num .large {
    font-size: 28px;
    letter-spacing: 0.2px;
  }
  .book .txt {
    font-size: 15px;
    line-height: 2.3;
  }
  .book .price {
    text-align: left;
    float: none;
  }
  .book .price .large {
    font-size: 20px;
  }
  .book .price .small {
    font-size: 15px;
  }
  /* ------------------------------------------------------------ */
  /* bldr-select */
  .bldr-select {
    padding: 65px 0 160px;
  }
  .bldr-select .inner {
    display: flex;
    align-items: center;
    max-width: 1066px;
  }
  .bldr-select .map-box {
    width: 50%;
    max-width: 455px;
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 80px
  }
  .bldr-select .map-box .map-select {
    margin: 0;
    max-width: 455px;
  }
  .bldr-select .map-box .ttl-box {
    margin: 0;
  }
  .bldr-select .map-box .ttl-box h2 {
    text-align: left;
    font-size: 30px;
    line-height: 41px;
  }
  .bldr-select .map-box .ttl-box span.fuki {
    max-width: 93px;
    top: -65px;
    left: -55px;
  }
  .bldr-select .bldr-select-ttl {
    font-size: 19px;
  }
  .bldr-select .list-box {
    max-width: 433px;
    width: 50%;
    margin: 50px auto 0;
  }
  .bldr-select .list-box .order-box h2 {
    font-size: 25px;
    line-height: 45px;
    letter-spacing: 0.15px;
    text-align: left;
    max-width: -webkit-max-content;
    max-width: max-content;
    margin: 0 auto;
  }
  .bldr-select .list-box .search-result {
    margin: 40px auto;
  }
  .bldr-select .acod .area-box, .bldr-select .acod .type-box {
    font-size: 15px;
  }
  .bldr-select .acod .area-box .line, .bldr-select .acod .type-box .line {
    margin-right: 30px;
  }
  .bldr-select .acod .article img {
    margin: 25px auto;
  }
  .bldr-select .acod h5 {
    line-height: 1.8;
  }
  .bldr-select .acod .bldr-checkbox {
    font-size: 16px;
    justify-content: center;
  }
  .bldr-select .acod .txt-inner p {
    line-height: 1.8;
  }
  .bldr-select .acod-inner .btn-box .btn {
    font-size: 15px;
  }
  .bldr-select .slide-items img {
    width: 100%;
  }
  .bldr-select .show_more {
    bottom: -35px;
  }
  .bldr-select.active .inner {
    align-items: flex-start;
  }
  .bldr-select.active .list-box .order-box h2 {
    display: none;
  }
  .btn-search-box .btn-search {
    font-size: 15px;
  }
  /* ------------------------------------------------------------ */
  /* wood stove */
  .wood-stove {
    padding: 125px 0 130px;
  }
  .wood-stove h2 {
    margin-bottom: 70px;
    font-size: 20px;
  }
  .wood-stove .wood-stove-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wood-stove .wood-stove-item {
    min-height: 580px;
    aspect-ratio: 473 / 530;
    width: calc(100% / 3 - 5px);
  }
  .wood-stove .wood-stove-item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .wood-stove .wood-stove-item a {
    min-height: 580px;
    aspect-ratio: 473 / 530;
  }
  .wood-stove .wood-stove-item.dr-craft {
    background: url("../img/pc_recd-bg1.jpg") center / cover no-repeat;
  }
  .wood-stove .wood-stove-item.dr-craft .logo {
    max-width: 214px;
  }
  .wood-stove .wood-stove-item.dld {
    background: url("../img/pc_recd-bg2.jpg") center / cover no-repeat;
  }
  .wood-stove .wood-stove-item.dld .logo {
    max-width: 60px;
  }
  .wood-stove .wood-stove-item.snow-style {
    background: url("../img/pc_recd-bg3.jpg") center / cover no-repeat;
  }
  .wood-stove .wood-stove-item.snow-style .logo {
    max-width: 62px;
  }
  /* ------------------------------------------------------------ */
  /* recd */
  .recd .recd-item.col1 {
    min-height: 450px;
    margin-bottom: 10px;
    aspect-ratio: 16 / 5;
  }
  .recd .recd-item.col2 {
    max-width: calc(100% / 2 - 5px);
    min-height: 325px;
    margin: 0 10px 10px 0;
    aspect-ratio: 11 / 5;
  }
  .recd .recd-item.col2:nth-of-type(2n) {
    margin-right: 0;
  }
  .recd .recd-item.col1 a {
    min-height: 450px;
    aspect-ratio: 16 / 5;
  }
  .recd .recd-item.col2 a {
    min-height: 325px;
    aspect-ratio: 11 / 5;
  }
  .recd .recd-item p {
    padding-bottom: 15px;
  }
  .recd .recd-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .recd .saunature {
    background-image: url("../img/pc_recd-bg4.jpg");
  }
  .recd .saunature .logo {
    max-width: 451px;
    margin-bottom: 15px;
  }
  .recd .mics {
    background-image: url("../img/pc_recd-bg5.jpg");
  }
  .recd .mics .logo {
    max-width: 265px;
    margin-bottom: 35px;
  }
  .recd .niwalabo {
    background-image: url("../img/pc_recd-bg6.jpg");
  }
  .recd .niwalabo .logo {
    max-width: 228px;
    margin-bottom: 45px;
  }
  .recd .yanesolar {
    background-image: url("../img/pc_recd-bg7.jpg");
  }
  .recd .yanesolar .logo {
    max-width: 364px;
    margin-bottom: 52px;
  }
  .recd .yanesolar .icon {
    max-width: 89px;
  }
  /* ------------------------------------------------------------ */
  /* panorama */
  .panorama.clip_mask {
    height: 100svh;
    height: 100vh;
    aspect-ratio: initial;
  }
  .panorama.clip_mask .clip_bg {
    background: url("../img/pc_recd-bg8.jpg")center bottom / cover no-repeat;
    bottom: 0;
    top: 0;
  }
  .panorama .panorama-box .logo {
    max-width: 430px;
    margin-bottom: 45px;
  }
  .panorama .panorama-box p {
    padding-bottom: 15px;
    line-height: 23px;
  }
  .panorama .txt {
    max-width: 24px;
  }
  /* ------------------------------------------------------------ */
  /* footer */
  footer {
    padding: 30px 0;
  }
  footer .inner {
    max-width: -webkit-max-content;
    max-width: max-content;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  footer h2 {
    max-width: 153px;
    margin: 0 35px 0 0;
  }
  footer p {
    font-size: 11px;
    line-height: 24px;
  }
  footer p .copy {
    margin: 0 0 0 10px;
  }
  /* ------------------------------------------------------------ */
  /* form */
  section.form {
    padding: 60px 0 347px !important;
  }
  section.form .form-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  section.form .form-inner .pc-dsp-flx .pc-dsp-flx-item {
    width: 50%;
  }
  section.form h4 {
    font-size: 20px;
  }
  section.form #step01 .inner h5, section.form #step02 .inner h5, section.form #step03 .inner h5, section.form #step04 .inner h5 {
    font-size: 15px;
  }
  section.form #step01 span, section.form #step02 span, section.form #step03 span, section.form #step04 span {
    margin-left: 0;
  }
  section.form.confirm {
    font-size: 15px;
  }
  section.form.confirm #step04 {
    margin-top: 70px;
  }
  section.form .form-btn {
    position: absolute;
    bottom: -200px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
/* -------------------------*/
/* 縦文字 */
.tate {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
}
/* -------------------------*/
/* fix_nav */
.fix_nav {
  position: fixed;
  z-index: 999;
  right: 0;
  color: #fff;
  width: 40px;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 15px;
  bottom: 6%;
  display: flex;
}
.fix_nav.is-fixed {
  opacity: 1;
  transition: .3s;
}
.fix_nav .navlink {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 6px 6px;
  border-radius: 8px 0 0 8px;
  /*margin-bottom: 8px;*/
  transition: .3s;
}
.fix_nav .navlink:hover {
  background: #7FB726;
}
.fix_nav, .fix_nav.is-hide {
  opacity: 0;
  transition: .3s;
}
/* -------------------------*/
/* book */
.book .btn-box {
  flex-wrap: wrap;
}
.btn-box .btn.col2 {
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {}
@media screen and (min-width: 1025px) {
  .fix_nav {
    font-size: 20px;
  }
  .fix_nav .navlink {
    padding: 15px 10px;
  }
}