@charset "UTF-8";
/* CSS Document */

/* common */
* {
  box-sizing: border-box;
}

img {
  width: 100%;
}


.container {
  width: 1200px;
  max-width: 92%;
  margin: 0 auto;
}


/*メインコンテンツ*/
.content {
  text-align: center;
  width: 100%;
  padding: 0;
  margin-top: 110px;
  color: #000;
}

/* ヒーロー画像 */
.hero {
  margin-top: 121px;
}

/* 赤背景エリア */
#furniture-text {
  background: #9f0001;
  padding: 50px 0;
}

.copy {
  width: 90%;
  max-width: 905px;
  margin: 0 auto;
}

/* 訴求エリア */
#sokyu-text {
  background: #4c4948;
  padding: 30px 0;
}

.sokyu {
  width: 90%;
  max-width: 1141px;
  margin: 0 auto;
}

/* ページ内リンク */

.page-link {
  margin-top: 80px;
}

.link-ttl {
  font-size: 50px;
  color: #9f0001;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-ttl::before,
.link-ttl::after {
  border-top: 1px solid;
  content: "";
  width: 27%;
}

.link-area {
  margin-top: 50px;
  justify-content: space-around;
}

.link-area li {
  width: 30%;
  margin-right: 10px;
}

.link-area li:last-child {
  margin-right: 0;
}

.link-area li a {
  display: block;
  width: 100%;
  padding: 5% 5% 12%;
  transition: all .5s;
}

.link-area li a:hover {
  opacity: 0.6;
}

.link-area li:nth-child(2) ,
.link-area li:nth-child(3){
  background: #878a84;
}

.link-area li:nth-child(1),
.link-area li:nth-child(4) {
  background: #63411e;
}

.type-image {
  font-size: 14px;
  background: #fff;
  padding: 6px 0;
  letter-spacing: 0.1em;
}

.link-area li:nth-child(2) .type-image ,
.link-area li:nth-child(4) .type-image{
  color: #878a84;
}

.link-area li:nth-child(1) .type-image,
.link-area li:nth-child(3) .type-image {
  color: #63411e;
}


.type-name {
  font-size: 36px;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 10px;
  position: relative;
}

.type-name span {
  font-size: 0.6em;
  color: #fff;
}

.type-name span.ja {
  letter-spacing: -1px;
}

span.wic {
  font-size: 14px;
}

.type-name::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -24px;
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #fff;
  border-bottom: 0;
}

/* アンカー調整 */
#a-type .space,
#c-type .space,
#b-type .space,
#g-vin-type .space {
  padding-top: 100px;
  margin-top: -100px;
}

/* ナチュラル Hタイプ */
#a-type {
  margin-top: 100px;
}

.sec-ttl {
  position: relative;
  padding: 8px 16px;
  font-size: 24px;
  letter-spacing: 0.1em;
  display: block;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  margin: 24px;
  margin-inline: auto;
}

.sec-ttl.natu {
  outline: 1px solid #aa8f55;
  color: #aa8f55;
}

.sec-ttl::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 90px;
  height: 90px;
  clip-path: polygon(0 0, 100% 0%, 0 100%);
  z-index: -999;
}

.sec-ttl.natu::before {
  background: #e5dbcd;
}

.sec-ttl::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
}

.sec-ttl.natu::after {
  outline: 1px solid #aa8f55;
}

.sec-ttl div {
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.sub-ttl {
  font-size: 18px;
  color: #fff;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  height: 42px;
  margin-top: 1%;
}

.natu .sub-ttl {
  background: #aa8f55;
}

.main-ttl {
  font-size: 50px;
  position: relative;
  line-height: 1;
}

.natu .main-ttl {
  color: #aa8f55;
}

.main-ttl span {
  font-size: 0.7em;
}

.natu .main-ttl span {
  color: #aa8f55;
}

.sec-ttl .border {
  width: 100px;
  height: 1px;
  margin: 0 40px;
}

.natu .border {
  border-top: 1px solid #aa8f55;
}

/* スライダー */

.slider-area {
  position: relative;
}

.slider {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
}

.arrow_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 50%;
  width: 88%;
  transform: translateY(-50%);
  right: 6%;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: #9f0001;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
}

.arrow_box .prev-arrow:not(:first-of-type),
.arrow_box .next-arrow:not(:last-of-type) {
  display: none !important;
}

.prev-arrow {
  transform: rotate(180deg);
}

.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.slick-slide img {
  max-height: 770px;
}

/* スライダーここまで */

.plan {
  max-width: 1000px;
  padding: 40px;
  margin: 60px auto 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.plan-ttl {
  font-size: 32px;
  color: #fff;
  padding: 1.5% 0;
  background: #9f0001;
}

.content {
  margin-top: 35px;
  justify-content: space-between;
}

.madori {
  width: 47%;
}

.desc {
  width: 47%;
}

.menseki {
  text-align: left;
}

.item li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.item li+li {
  margin-top: 25px;
}

.item li:last-child {
  border-top: 1px solid #4c4948;
  padding-top: 20px;
}

.item-name {
  font-size: 16px;
  position: relative;
  margin-left: 40px;
}

.item-name::before {
  content: "";
  width: 25px;
  height: 33px;
  background-color: #4c4948;
  display: block;
  position: absolute;
  left: -40px;
  top: -8px;
}

.item-num {
  font-size: 36px;
  font-weight: normal;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 2px;
}

.item-num span {
  font-size: 20px;
}

.item-num span.tsubo {
  font-size: 15px;
}

p.notes {
  font-size: 12px;
  margin-top: 16px;
}

.price {
  margin-top: 60px;
}

/* クールアッシュ Cタイプ */
#c-type {
  margin-top: 160px;
}

.sec-ttl.cool {
  outline: 1px solid #878a84;
  color: #878a84;
}

.sec-ttl.cool::before {
  background: #dbdcdb;
}

.sec-ttl.cool::after {
  outline: 1px solid #878a84;
}

.cool .sub-ttl {
  background: #878a84;
}

.cool .main-ttl {
  color: #878a84;
}

.cool .main-ttl span {
  color: #878a84;
}

.cool .border {
  border-top: 1px solid #878a84;
}

/* ヴィンテージ Gタイプ */
#g-vin-type {
  margin-top: 160px;
}

.sec-ttl.vin {
  outline: 1px solid #63411e;
  color: #63411e;
}

.sec-ttl.vin::before {
  background: #d0c5ba;
}

.sec-ttl.vin::after {
  outline: 1px solid #63411e;
}

.vin .sub-ttl {
  background: #63411e;
}

.vin .main-ttl {
  color: #63411e;
}

.vin .main-ttl span {
  color: #63411e;
}

.vin .border {
  border-top: 1px solid #63411e;
}

/* クールアッシュ Cタイプ  20250603追記*/

#b-type {
  margin-top: 160px;
}

/* バナー */
.public-text {
  margin-top: 160px;
  margin-bottom: 100px;
}

.kado {
  margin-left: 15px;
}
.kado img {
  width: 120px;
  height: auto;
}


/* 20250523追記 */
.campaign_text{
  margin-top: 30px;
  font-size: 28px;
  line-height: 1.5;
}

/*1180px以下　TAB
=========================================*/
@media only screen and (max-width: 1180px) {
  .sec-ttl .border {
    margin: 0 20px;
  }

  .sub-ttl {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .main-ttl {
    font-size: 30px;
  }
}


/*767px以下　SP
=========================================*/
@media only screen and (max-width: 767px) {

  .content {
    max-width: 100%;
    margin-top: 0;
  }

  /* ヒーロー画像 */
  .hero {
    margin-top: 0px;
  }

  #furniture-text {
    padding: 20px 0;
  }

  #sokyu-text {
    padding: 15px 0;
  }

  .page-link {
    margin: 50px auto 0;
  }

  .link-ttl {
    font-size: 22px;
  }

  .link-ttl::before,
  .link-ttl::after {
    width: 13%;
  }

  .link-area {
    margin-top: 20px;
    justify-content: space-between;
	flex-wrap: wrap;
  }

  .link-area li {
    width: 48%;
	margin-right: 4%;
	margin-bottom: 4%;
  }
  
  .link-area li:nth-child(2n) {
	margin-right: 0;
  }

  .link-area li a {
    padding: 10px 10px 30px;
  }

  .type-image {
    font-size: 12px;
  }

  .type-name {
    font-size: 26px;
  }

  .type-name::after {
    bottom: -18px;
  }

  .sec-ttl {
    width: 96%;
  }

  .sec-ttl::before {
    width: 40px;
    height: 40px;
  }

  .sec-ttl div {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .sub-ttl {
    justify-content: center;
    width: 96%;
    height: 30px;
    font-size: 14px;
    text-align: center;
  }

  .main-ttl {
    font-size: 32px;
    margin-left: 0;
    margin-top: 10px;
  }

  .main-ttl span {
    font-size: 16px;
  }

  .sec-ttl .border {
    display: none;
  }

  .slider {
    margin-top: 30px;
  }

  .arrow_box {
    width: 96%;
    bottom: 45%;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }

  .prev-arrow,
  .next-arrow {
    width: 30px;
    height: 30px;
  }

  .plan {
    padding: 20px;
    margin: 30px auto 0;
  }

  .plan-ttl {
    font-size: 20px;
    padding: 8px 0;
    margin-bottom: 20px;
  }

  .content {
    flex-wrap: wrap;
  }

  .madori {
    width: 100%;
  }

  .desc {
    width: 100%;
  }

  .item {
    margin-top: 20px;
  }

  .item-name {
    font-size: 12px;
    white-space: nowrap;
    margin-left: 10px;
  }

  .item-name::before {
    width: 12px;
    height: 12px;
    top: 0px;
    left: -18px;
  }

  .item-num {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .item-num span.tsubo {
    font-size: 12px;
  }

  .item li+li {
    margin-top: 14px;
  }

  p.notes {
    padding-left: 1em;
  }

  .price {
    margin-top: 30px;
  }

  #c-type,
  #g-vin-type,
  #b-type,
  .public-text {
    margin-top: 80px;
  }

  .container.public-text {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }

  /* アンカー調整 */
  #a-type .space,
  #c-type .space,
  #g-vin-type .space 
  #b-type .space{
    padding-top: 0;
    margin-top: 0;
  }

  .kado {
    margin-left: 10px;
  }
  .kado img {
    width: 70px;
  }

  #a-type {
    margin-top: 50px;
}

.campaign_text{
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}

}