@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* BASE STYLE
--------------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll; /* スクロールバー領域を常に確保（ローディング→MVのカクつき防止） */
  scrollbar-gutter: stable;
}

body {
  font-size: 1.6em;
  line-height: 1.5;
  color: #231815;
  font-family: "A1明朝";
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

html {
  scroll-padding-top: 90px; /* ヘッダーの高さが80pxの場合 */
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 20vw;
  }
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.inner {
  max-width: 1200px;
  width: 95%;
  margin: auto;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.is-between {
  justify-content: space-between;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .inner {
    max-width: 100%;
    width: 86.667%;
    margin: auto;
  }
}
/*------------------------------------------------

l-header

-------------------------------------------------*/
.l-header {
  position: sticky; /* PC: 白帯は流し、本体ナビだけ追従 */
  width: 100%;
  top: -36px; /* 白帯(約34px)ぶん上へ逃がす */
  left: 0;
  background-color: #F0E4D8;
  z-index: 1000;
}
.l-header.active {
  background-color: rgba(240, 228, 216, 0.8);
}
.l-header .l-header-top {
  position: relative;
  background-color: #fff;
  text-align: center;
  padding: 10px;
  line-height: 0; /* 白帯の高さを画像実寸に固定（余白ズレ防止） */
}
.l-header .l-header-top::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #00664B;
  height: 2px;
  width: 130px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.l-header .l-header-top__img {
  margin: auto;
}
.l-header .l-header-top__img img {
  width: 100px;
}
.l-header .l-header-inner {
  align-items: center;
  padding: 25px 0;
}
.l-header .l-header-logo__ttl {
  width: 200px;
  margin-left: 40px;
}
.l-header .l-header-logo__ttl .-link {
  display: block;
}
.l-header .l-header-logo__ttl .-link:hover {
  opacity: 1;
}
.l-header .l-header-logo__ttl .-link:focus {
  outline: none;
}
.l-header .l-header-area {
  align-items: center;
  margin-right: 30px;
}
.l-header .l-header-area__list {
  margin-right: 40px;
  gap: 0 30px;
}
.l-header .l-header-area__list-item .-link {
  display: block;
  color: #231815;
  font-family: "EB Garamond", serif;
  font-size: 19px;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.l-header .l-header-area__list-item .-link:hover {
  opacity: 0.7;
}
.l-header .l-header-area__btn {
  width: 150px;
  text-align: center;
}
.l-header .l-header-area__btn a {
  padding: 10px;
  display: block;
  color: #fff;
  font-feature-settings: "palt";
  background-color: #231815;
  font-family: "A1明朝";
  font-size: 15px;
  letter-spacing: 0.05em;
}
.l-header .l-header-humbtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header {
    position: sticky; /* SP: 白帯は流し、本体ナビだけ追従 */
    top: -11.7333333333vw;
    height: 31.4666666667vw;
  }
  .l-header.open {
    background-color: #F0E4D8;
    top: 0; /* 展開中は白帯を消すぶんstickyオフセットも0にし、ナビが上で切れないように */
  }
  .l-header.open .l-header-top {
    display: none;
  }
  .l-header.open { /* メニュー展開時は白帯(住友林業の家)を隠す */ }
  .l-header .l-header-top {
    height: 11.7333333333vw;
    padding: 2.6666666667vw;
  }
  .l-header .l-header-top::before {
    height: 0.5333333333vw;
    width: 34.6666666667vw;
  }
  .l-header .l-header-top__img img {
    width: 22.6666666667vw;
  }
  .l-header .l-header-inner {
    position: relative;
    height: 19.7333333333vw;
    padding: 6.6666666667vw 0;
  }
  .l-header .l-header-logo__ttl {
    width: 42.6666666667vw;
    margin-left: 6.6666666667vw;
  }
  .l-header .l-header-area {
    background-color: #F0E4D8;
    position: fixed;
    height: calc(100vh - 26.6666666667vw);
    top: 26.6666666667vw;
    padding: 0 8vw 0;
    padding-bottom: 16vw;
    width: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease; /* top/height変更は即時に（位置カクつき防止） */
    overflow: scroll;
  }
  .l-header .l-header-area.open {
    opacity: 1;
    z-index: 1000;
    pointer-events: auto;
  }
  .l-header .l-header-area__list {
    width: 100%;
    margin-top: 5.3333333333vw;
    margin-right: 0px;
  }
  .l-header .l-header-area__list-item {
    width: 100%;
    position: relative;
  }
  .l-header .l-header-area__list-item .-link {
    position: relative;
    text-align: center;
    display: block;
    padding: 5.3333333333vw 0;
    font-size: 6.4vw;
  }
  .l-header .l-header-area__btn {
    width: 74.6666666667vw;
    margin: auto;
    text-align: center;
  }
  .l-header .l-header-area__btn a {
    padding: 5.3333333333vw;
    font-size: 4vw;
  }
  .l-header .l-header-humbtn {
    display: block;
    position: absolute;
    top: 1.8666666667vw;
    right: 4vw;
    width: 16vw;
    height: 16vw;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line {
    position: absolute;
    width: 9.3333333333vw;
    height: 0.5333333333vw;
    background-color: #231815;
    top: 50%;
    left: 22%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(1) {
    transform: translateY(0px) rotate(25deg);
    left: 22%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(2) {
    transform: translateY(0px) rotate(-25deg);
    left: 22%;
  }
  .l-header .l-header-humbtn__line {
    position: absolute;
    width: 9.3333333333vw;
    height: 0.5333333333vw;
    background-color: #231815;
    top: 50%;
    left: 22%;
    transition: all 0.3s ease;
  }
  .l-header .l-header-humbtn__line:nth-child(1) {
    transform: translateY(-1.0666666667vw);
    width: 9.3333333333vw;
  }
  .l-header .l-header-humbtn__line:nth-child(2) {
    transform: translateY(1.0666666667vw);
    width: 9.3333333333vw;
  }
}

/*------------------------------------------------

c-catalog-sec

-------------------------------------------------*/
.c-catalog-sec {
  padding: 70px 0;
  background: url(../img/common/cta_bg.jpg) no-repeat center center/cover;
}
.c-catalog-sec .c-catalog-sec--inner {
  max-width: 920px;
}
.c-catalog-sec .c-catalog-sec__area .-img {
  width: 510px;
  margin-right: 50px;
}
.c-catalog-sec .c-catalog-sec__area .-txtbox {
  width: calc(100% - 560px);
}
.c-catalog-sec .c-catalog-sec__area .-ttl {
  text-align: left;
  font-size: 26px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.c-catalog-sec .c-catalog-sec__area .-ttl .-ttl-logo {
  display: inline-block;
  margin-right: 8px;
  width: 180px;
  height: auto;
  vertical-align: baseline; /* 文字と同じ行に。位置は要調整可 */
}
.c-catalog-sec .c-catalog-sec__area .-txt {
  text-align: left;
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "リュウミン R-KL";
}
.c-catalog-sec .c-catalog-sec__area .-btn {
  position: relative;
  width: 345px;
  margin-top: 30px;
}
.c-catalog-sec .c-catalog-sec__area .-btn a {
  font-feature-settings: "palt";
  padding: 20px;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #231815;
  font-size: 20px;
  letter-spacing: 0.15em;
}
.c-catalog-sec .c-catalog-sec__area .-btn .-arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  width: 8.7px;
  height: 14.3px;
  z-index: 1;
}
.c-catalog-sec .c-catalog-sec__area .-btn .-arrow::before,
.c-catalog-sec .c-catalog-sec__area .-btn .-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.c-catalog-sec .c-catalog-sec__area .-btn .-arrow::before {
  transform: rotate(45deg);
}
.c-catalog-sec .c-catalog-sec__area .-btn .-arrow::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  .c-catalog-sec .c-catalog-sec__area .-img {
    width: 400px;
    margin-right: 50px;
  }
  .c-catalog-sec .c-catalog-sec__area .-txtbox {
    width: calc(100% - 450px);
  }
  .c-catalog-sec .c-catalog-sec__area .-btn {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .c-catalog-sec {
    padding: 18.6666666667vw 0;
    background: url(../img/common/cta_bg_sp.jpg) no-repeat center center/cover;
  }
  .c-catalog-sec .c-catalog-sec__area .-img {
    width: 100%;
    margin-right: 0px;
  }
  .c-catalog-sec .c-catalog-sec__area .-txtbox {
    width: 100%;
    margin-top: 8vw;
  }
  .c-catalog-sec .c-catalog-sec__area .-ttl .-ttl-logo {
    width: 48vw;
    margin-right: 2.1333333333vw;
  }
  .c-catalog-sec .c-catalog-sec__area .-ttl {
    text-align: center;
    font-size: 6.9333333333vw;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    letter-spacing: 0.1em;
  }
  .c-catalog-sec .c-catalog-sec__area .-txt {
    text-align: center;
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .c-catalog-sec .c-catalog-sec__area .-btn {
    width: 100%;
    margin-top: 13.3333333333vw;
  }
  .c-catalog-sec .c-catalog-sec__area .-btn a {
    padding: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
  .c-catalog-sec .c-catalog-sec__area .-btn .-arrow {
    right: 10.6666666667vw;
    width: 2.32vw;
    height: 3.8133333333vw;
  }
  .c-catalog-sec .c-catalog-sec__area .-btn .-arrow::before,
  .c-catalog-sec .c-catalog-sec__area .-btn .-arrow::after {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
  }
}

/*------------------------------------------------

c-catalog-caption

-------------------------------------------------*/
.c-catalog-caption {
  padding: 50px 0;
}
.c-catalog-caption .c-catalog-caption--inner {
  max-width: 920px;
}
.c-catalog-caption li {
  text-align: left;
  font-size: 13px;
  letter-spacing: 0;
  padding-left: 1em;
  text-indent: -1em;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイ;
}
@media screen and (max-width: 768px) {
  .c-catalog-caption {
    padding: 13.3333333333vw 0;
  }
  .c-catalog-caption li {
    font-size: 3.2vw;
  }
}/*# sourceMappingURL=common.css.map */