@charset "utf-8";

a:hover {
  opacity: 1;
}

main {
  position: relative;
  background: #fff;
  padding: 0 0 0.1px;
  margin-bottom: 50px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.page__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 75/16;
  background-color: #555555;
  background-image: url(../img/select/bg-select.jpg);
  background-position: center center;
}

@media screen and (min-width:768px) {
  .page__hero {
    aspect-ratio: 288/32;
    background-position: center center;
  }
}

.page__hero .page__hero--title {
  font-size: 22px;
  letter-spacing: 0.2em;
  color: #fff;
}

@media screen and (min-width:768px) {
  .page__hero .page__hero--title {
    font-size: 30px;
  }
}

/* ===== セレクトシステム ===== */
.page_head {
  text-align: center;
  font-size: 18px;
  line-height: 3;
  letter-spacing: 0.1em;
  padding: 60px 0 60px;
}
.page_head .notes {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: 15px;
}

section.sec {
  margin-bottom: 120px;
}

.sec_ttl {
  /*padding-top: 20px;*/
  background-color: #ac8450;
  position: relative;
}
.sec_ttl .inner {
  position: relative;
  padding: 30px 0;
}
.sec_ttl h3 {
  color: #fff692;
  font-size: clamp(30px,2.6vw,36px);
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
}
.sec_ttl h3 small {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.5em;
}
.sec_ttl p {
  color: #fff;
  margin-top: 1.5em;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.sec_ttl h3::before {
  content: '';
  width: 85px;
  height: 85px;
  display: block;
  position: absolute;
  /*top: -50px;*/
  top: 50%;
  transform: translateY(-50%);
  left: -140px;
  background: url(../img/select/icon_01.png) no-repeat top center;
  background-size: contain;
}
.sec_ttl_copy {
  margin-top: 3.5em;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-size: 18px;
}

.sec_ttl.option {
  background-color: #7d5c32;
}
.sec_ttl.option h3::before {
  background: url(../img/select/icon_02.png) no-repeat top center;
  background-size: contain;
}

/* tab */
.tab_menu {
  display: flex;
  width: 100%;
  margin: 60px auto 30px;
}

.tab_menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border: transparent solid 1px;
  padding: 20px 0;
  cursor: pointer;
  transition: all .5s;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  flex-direction: column;
  letter-spacing: 0.2em;
}
.tab_menu li span {
  font-size: 0.7em;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.tab_menu li:not(:last-of-type) {
  margin-right: 2%;
}

.tab_menu li:nth-of-type(1) {
  background: #63411d;
}

.tab_menu li:nth-of-type(2) {
  background: #aa8f55;
}

.tab_menu li:nth-of-type(3) {
  background: #878a84;
}

.tab_menu li:nth-of-type(4) {
  background: #a29380;
}

.tab_menu li.selected {
  opacity: 1;
  border: #fff solid 1px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0.3);
}

.tab_menu li:hover {
  opacity: 0.7;
  border: #fff solid 1px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0.3);
}


.tab_panel_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tab_panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

.tab_panel.is-show {
  overflow: visible;
  height: auto;
  opacity: 1;
  transition: opacity .4s ease-in-out;
}

.color_flex {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background: #fff;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
  box-sizing: border-box;
}

.color_flex li {
  width: 100%;
}

.color_flex li .color_img {
  width: 100%;
}

.color_flex .color_ttl {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
}

.color_flex .color_ttl span {
  display: inline-block;
  line-height: 1.5;
}

.color_flex .color_ttl span.color_name {
  display: block;
  color: #fff;
  font-size: min(1.8vw,24px);
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  width: 30%;
  padding: 0.25em 0.75em;
  text-align: left;
  position: relative;
}
.color_flex .color_ttl span.color_name::after {
  content: "";
  display: block;
  height: 101%;
  aspect-ratio: 2/3;
  background: #edeeee;
  clip-path: polygon(100% 0,100% 100%,0 100%);
  position: absolute;
  top: 0.5%;
  right: -1px;
}
.color_flex .color_ttl span.color_name span {
  color: #fff;
  font-size: 0.5em;
  margin-left: 1em;
  letter-spacing: 0.05em;
}
.color_flex .color_ttl span.txt {
  font-size: min(1.2vw,14px);
color: #4c4948;
background: #edeeee;
  width: 70%;
  text-align: left;
  padding: 0.25em 0.75em;
  display: flex;
  align-items: center;
}


.vintage {
background: #63411d;
}

.natural {
background: #aa8f55;
}

.cool_ash {
background: #878a84;
}

.calm_white {
background: #a29380;
}
.calm_white.color_ttl span.color_name {
  letter-spacing: 0.05em;
}

.value {
  margin: 70px auto;
}
.value h4 {
  font-size: 50px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
.value h4 small {
  font-size: 0.7em;
}
.value h4 span {
  font-size: 40px;
}
.value h4 span small {
  font-size: 0.7em;
  letter-spacing: 0.05em;
}
.value h4::after {
  content: "";
  width: 70%;
  height: 3px;
  background: #ac8450;
  display: block;
  margin: 15px auto;
}
.value p {
  font-size: 18px;
  line-height: 1.7;
}
.value p span {
  font-size: 1.3em;
}
.value p span.senyu {
  font-size: 1.7em;
}
.value p small {
  font-size: 0.8em;
}

.plan_wrap {
  justify-content: space-between;
  align-items: center;
}
.plan_wrap .plan_box {
  width: 43.64%;
  max-width: 480px;
}
.plan_wrap .plan_box .plan_head p {
  color: #ac8450;
  font-size: 22px;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
  margin: 10px 0 15px;
}
.plan_wrap .plan_box .plan_head p:first-of-type {
  background-color: #ac8450;
  color: #fff;
  padding: 0.4em;
  margin: 0;
  font-size: 28px;
}
.plan_wrap li.arrow {
  width: 69px;
  aspect-ratio: 69/72;
  padding-left: 20px;
  background: url(../img/select/arrow.png) no-repeat center right;
  background-size: contain;
  box-sizing: content-box;
  position: relative;
}
.plan_wrap li.arrow span {
  position: absolute;
  white-space: nowrap;
  text-align: center;
  left: calc(50% + 6px);
/*    left: 50%;*/
  transform: translateX(-50%);
  top: -48px;
  font-size: 16px;
  font-size: clamp(10px,1.1vw,16px);
  color: #a0122c;
}

.hanrei {
  width: 70%;
  max-width: 333px;
  margin: 30px auto 0;
}
.detail_btn a {
  display: block;
  border: 1px solid #ac8450;

  color: #ac8450;
  background-color: #fff;
  /*border-radius: 50vh;*/
  width: fit-content;
  padding: 1.5% 8%;
  margin: 70px auto 0;
}
.detail_btn a:hover {
  background-color: #ac8450;
  color: #fff;
}

.option_wrap {
  justify-content: space-between;
  margin-top: 70px;
}
.option_wrap h4 {
  background: linear-gradient(90deg, #7d5c32 0%, #52432f 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5% 3.5%;
  font-size: clamp(16px,2.0vw,32px);
  letter-spacing: 0.15em;
  max-width: 22%;
  font-family: "Noto Serif JP", serif;
}
.option_wrap h4 span {
  color: #fff;
  font-size: 14px;
  font-size: clamp(10px,1vw,14px);
  letter-spacing: 0.05em;
}
.option_wrap h4 span::before {
  content: "";
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
  margin: 10px auto;
  width: 100%;
  height: 1px;
}
.option_wrap .option_box {
  background-color: #fff;
  filter: drop-shadow(4px 4px 5px rgba(0,0,0,0.2));
  width: 37%;
  text-align: left;
  padding: 2.5%;
  box-sizing: border-box;
}
.option_wrap .option_box h5 {
  font-size: 20px;
  color: #ac8450;
  line-height: 1.5;
  margin-bottom: 10px;
}
.option_wrap .option_box ul li {
  line-height: 1.5;
  padding-left: 1.2em;
  position: relative;
}
.option_wrap .option_box ul li::before {
  content: "⚫︎";
  color: #ac8450;
  position: absolute;
  top: 0;
  left: 0;
}

/* caption */
.corCap {
  width: 100%;
}
.optCap {
  width: 94%;
}
.corCap,
.optCap {
  max-width: 1200px;
  margin: 0 auto;
}

.corCap p,
.optCap p {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 15px;
  text-align: left;
}

.att_Area .notes {
  text-align: left;
}




@media only screen and (max-width : 1024px) {



}

@media only screen and (max-width : 767px) {


  /* ===== セレクトシステム ===== */
  
  .page_head {
    letter-spacing: 0.1em;
    line-height: 2;
    font-size: 14px;
    padding: 40px 0;
  }
  .page_head .notes {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  section.sec {
    margin-bottom: 60px;
  }

  .sec_ttl .inner {
    padding: 30px 0 30px;
  }
  .sec_ttl h3 {
    font-size: 20px;
    display: block;
    padding-left: 60px;
  }
  .sec_ttl p {
    font-size: 14px;
  }
  .sec_ttl h3::before {
    width: 60px;
    height: 60px;
    left: 30px;
  }
  .sec_ttl_copy {
    font-size: 14px;
    margin-top: 2.5em;
  }

  /* tab */
  .tab_menu {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto 20px;
  }
  .tab_menu li {
    display: block;
    flex: initial;
    width: 48%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 3%;
    padding: 10px 0;
  }
  .tab_menu li span {
    display: block;
    margin-top: 3px;
    font-size: 0.5em;
  }
  .tab_menu li:not(:last-of-type) {
    margin-right: 0;
  }

  .color_flex {
    padding: 10px;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.3));
  }
  .color_flex li .color_img img {
    width: 100%;
  }
  .color_flex .color_ttl {
    margin-bottom: 10px;
    flex-direction: column;
  }

  .color_flex .color_ttl span.color_name {
    width: 100%;
    font-size: 17px;
    text-align: center;
  }
  .color_flex .color_ttl span.color_name span {
    display: block;
    margin-left: 0;
  }
  .color_flex .color_ttl span.txt {
    width: 100%;
    font-size: 13px;
    text-align: center;
    display: block;
    padding: 0.5em;
  }
  .color_flex .color_ttl span.color_name::after {
    content: none;
  }

  .value {
    margin: 40px auto 20px;
  }
  .value h4 {
    font-size: 40px;
  }
  .value h4 span {
    font-size: 32px;
  }
  .value h4::after {
    width: 90%;
    height: 2px;
    margin: 10px auto;
  }
  .value p {
    font-size: 16px;
    line-height: 1.5;
    /*text-align: left;*/
    padding: 0 5%;
  }

  .plan_wrap .plan_box {
    width: 100%;
    max-width: 100%;
  }
  .plan_wrap .plan_box .plan_head {
    display: none;
  }
  .plan_wrap .plan_box .plan_head p {
    font-size: 18px;
    margin: 10px 0 15px;
  }
  .plan_wrap .plan_box .plan_head p:first-of-type {
    padding: 0.4em;
    margin: 0;
    font-size: 20px;
  }
  .plan_wrap .tab_content {
    width: 100%;
  }

  /* SPのみ間取りをタブで変更 */
  /* タブで切り替え */
  .tabs {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
    width: 90%;
    margin: 40px auto 0;
  }

  .tabs label {
    box-sizing: border-box;
    display: block;
    font-size: 14px;
    width: 50%;
    width: calc((100% - 10px)/2);
    border: 1px solid #ac8450;
    padding: 12px 0;
    position: relative;
    letter-spacing: 0.05em;
  }

  .tabs label::after {
    display: block;
    content: "";
    border: 6px solid transparent;
    border-top: 7px solid #ac8450;
    position: absolute;
    top: 56%;
    right: 10px;
    transform: translateY(-50%);
  }

  .tab_item {
    display: block;
    width: calc((100% - 10px)/2);
    font-size: 13px;
    color: #ac8450;
    text-align: center;
    background-color: #fff;
    border-bottom: 3px solid #ac8450;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
  }
  .tab_item span {
    font-size: 11px;
    display: block;
    margin: 3px 0 0;
  }

  input[name="tab_item"] {
    display: none;
  }

  .tab_content {
    display: none;
    overflow: hidden;
  }

  .tab_content_description {
    margin: 40px auto 0;
  }
  .tab_content_description .note_img {
    max-width: 80%;
    width: 250px;
    margin: 10px auto 0;
  }

  #basic:checked~#basic_content,
  #menu:checked~#menu_content {
    display: block;
  }

  .tabs input:checked+.tab_item {
    color: #fff;
    background-color: #ac8450;
  }

  .tabs input:checked+.tab_item::after {
    border-top: 7px solid #fff;
  }

  .hanrei {
    margin: 20px auto 0;
  }
  .detail_btn a {
    padding: 15px 50px;
    margin: 30px auto 0;
    font-size: 14px;
  }


  .option_wrap {
    margin-top: 40px;
    flex-direction: column;
  }
  .option_wrap h4 {
    padding: 20px;
    font-size: 20px;
    max-width: 100%;
  }
  .option_wrap h4 span {
    font-size: 12px;
  }
  .option_wrap .option_box {
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
    width: 100%;
    padding: 20px 40px;
    margin-top: 20px;
  }
  .option_wrap .option_box h5 {
    font-size: 14px;
  }
  .option_wrap .option_box ul li {
    position: relative;
    font-size: 13px;
  }

  /* caption */
  .optCap {
    width: 90%;
  }

  .corCap p,
  .optCap p {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

}
