@charset "UTF-8";
body {
  margin: 0;
}

a:link {
  text-decoration: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

:root {
  --color-primary: #b07d45;
  --color-accent: #1c3557;
  --color-accent-light: #f5ede0;
  --color-text: #000000;
  --color-text-sub: #666666;
  --color-bg-gray: #f3f3f3;
  --color-bg-light: #fafafa;
  --color-border: #dfdfdf;
  --color-white: #ffffff;
  --color-highlight-row: #fef6ec;
  --color-rule: #cccccc;
  --max-width: 1200px;
  --section-gap: 80px;
  --block-gap: 60px;
}

/*common*/
.common_pankuzu {
  padding: 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.common_pankuzu .pankuzu_link {
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid #000;
  margin-right: 40px;
  position: relative;
}
.common_pankuzu .pankuzu_link::before {
  position: absolute;
  content: "";
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(-45deg) translateY(-50%);
  right: -25px;
  top: 50%;
  width: 5px;
  height: 5px;
}
.common_pankuzu .pankuzu_txt {
  font-size: 16px;
}

/*page_title ページタイトル*/
#page_title.secure-living {
  height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #2a1f17;
  background-image: url("/img/taishin/mv_img.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}
#page_title.secure-living h2 {
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  line-height: 1.4;
  color: var(--color-white);
  top: 0;
  left: 0;
}

#page_title.secure-living + .bread_Area {
  margin-bottom: 0;
  padding: 10px 5px 10px 5px;
}
#page_title.secure-living + .bread_Area .breadcrumb {
  max-width: 1200px;
  width: auto;
}

.page_hero_inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page_subttl {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: var(--color-white);
  letter-spacing: 2px;
  font-weight: bold;
}

/*tab_nav リンクタブ*/
.tab_nav {
  padding: 70px 10px;
}
.tab_nav.secure_living .tab_nav_list {
  justify-content: center;
}
.tab_nav.secure_living .tab_nav_list .tab-nav_item {
  max-width: 280px;
}

.tab_nav_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  max-width: var(--max-width);
  margin-inline: auto;
}

.tab-nav_item {
  flex: 1;
  background-color: #ac9878;
}
.tab-nav_item:last-child .tab_nav_link {
  border-right: none;
}
@media screen and (max-width: 1180px) {
  .tab-nav_item {
    width: calc((100% - 30px) / 2);
    flex: none;
  }
}

.tab_nav_list_col4 {
  display: flex;
  flex-wrap: wrap;
}
.tab_nav_list_col4 .tab-nav_item {
  min-width: calc((100% - 90px) / 4);
  flex: none;
}

.tab_nav_link {
  display: block;
  padding: 20px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-white) !important;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 1px;
  position: relative;
  margin-right: 20px;
}
.tab_nav_link::before {
  position: absolute;
  background-color: var(--color-white);
  content: "";
  width: 17.67px;
  height: 17.67px;
  border-radius: 45px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tab_nav_link::after {
  position: absolute;
  border-bottom: 1.5px solid #ac9878;
  border-right: 1.5px solid #ac9878;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  top: 50%;
  right: 9px;
  transform: rotate(45deg) translateY(-80%);
  transition: 0.3s;
}
.tab_nav_link:hover {
  opacity: 0.7;
}

.tab_nav_link.is-active {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/*セクション*/
.concept_section {
  padding: 110px 10px 0;
  overflow: hidden;
}
.concept_section.first {
  margin-top: -30px;
}
.concept_section:last-of-type {
  padding: 110px 10px 110px 10px;
}

.concept_section_bg_light {
  background-color: var(--color-bg-gray);
}

.concept_sec_inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section_heading {
  text-align: center;
  margin-bottom: 90px;
}

.section_heading_title {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
  line-height: 1.5;
  letter-spacing: 2px;
}

.section_heading_lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 2px;
}

.content_block {
  margin-bottom: 100px;
}
.content_block:last-child {
  margin-bottom: 0;
}
.content_block p {
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 1px;
}
.content_block p:last-child {
  margin-bottom: 0;
}

.content_block_bg_gray {
  background-color: var(--color-bg-gray);
  padding: 110px 10px;
  margin: 0 -10px;
  margin-top: 110px;
  border-radius: 4px;
}
.content_block_bg_gray.in_padding {
  padding: 100px 20px;
}

.content_block_heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 15px;
  padding-bottom: 0;
  letter-spacing: 3px;
}

.content_block_rule {
  border: none;
  border-top: 3px solid #ac9878;
  margin: 0 0 50px;
}

.content_block_note {
  font-size: 14px !important;
  color: var(--color-text) !important;
  margin-top: 30px !important;
}

.content_block_body {
  margin-top: 16px;
}

.content_block_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content_block_body_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 1050px) {
  .content_block_body_2col {
    display: block;
  }
  .content_block_body_2col .content_block_figure {
    width: 70%;
    margin: 50px auto;
  }
}
.content_block_body_2col .content_txt_wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.body_2col_right {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1050px) {
  .body_2col_right {
    display: block;
  }
  .body_2col_right .content_block_text {
    width: 100% !important;
  }
  .body_2col_right .content_block_figure {
    width: 70% !important;
    margin: 50px auto 0 auto;
  }
}
.body_2col_right .content_block_text {
  width: 48.66%;
}
.body_2col_right .content_block_figure {
  width: 64%;
}

.content_block_body_reverse {
  direction: rtl;
}
.content_block_body_reverse > * {
  direction: ltr;
}

.content_block_figure {
  margin: 0;
}
.content_block_figure.padding_bottom {
  padding-bottom: 2rem;
}
.content_block_figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.content_block_caption {
  text-align: center;
  font-size: 16px;
  color: var(--color-text);
  margin-top: 15px;
  line-height: 1.6;
}
.content_block_caption.margin_top {
  margin-top: 35px;
}

.feature_list {
  margin: 24px 0 0;
  padding: 0;
}

.feature_list_long {
  margin: 65px 0 20px;
}

.feature_list_item {
  margin-bottom: 20px;
}
.feature_list_item:last-child {
  margin-bottom: 0;
}

.feature_list_term {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 4px 0 4px;
  padding-left: 15px;
  border-left: 3px solid #000;
  letter-spacing: 0.5px;
}

.feature_list_desc {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.7;
  letter-spacing: 1px;
}

.feature_list_3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.feature_list_3col .feature_list_item {
  border-left: none;
  border-top: 3px solid var(--color-accent);
  padding: 14px 12px 12px;
  background: var(--color-white);
  margin-bottom: 0;
}

.feature_box {
  background-color: var(--color-bg-gray);
  padding: 40px 40px;
  margin: 45px 0 0 0;
  border: 1px solid #000;
}
.feature_box.white {
  background-color: #fff;
  margin-bottom: 50px;
}

.feature_box_list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature_box_item {
  display: flex;
  gap: 25px;
}

.feature_box_term {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  padding-left: 20px;
  border-left: 4px solid #000;
  letter-spacing: 1px;
}

.feature_box_desc {
  font-size: 16px;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
  letter-spacing: 1px;
}

.check_list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.check_list_item {
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.7;
}
.check_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

.grade_icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: flex-end;
}

.grade_icons_item {
  text-align: center;
}
.grade_icons_item figure {
  margin: 0;
}

.grade_icons_item_highlight {
  border-color: var(--color-accent);
  border-width: 2px;
  background: var(--color-accent-light);
  padding-bottom: 20px;
}

.grade_icons_figure {
  margin: 0 0 8px;
}
.grade_icons_figure img {
  width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.grade_icons_label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.grade_icons_num {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
}

.grade_icons_num_large {
  font-size: 2rem;
  color: var(--color-accent);
  display: block;
  line-height: 1.1;
  margin-top: 4px;
}

.table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 45px 0 0;
  border: 1px solid #838383;
}
.table_wrap.table02 thead th:nth-child(1) {
  width: 21.66%;
}
.table_wrap.table02 thead th:nth-child(2) {
  width: 39.16%;
}
.table_wrap.table02 thead th:nth-child(3) {
  width: 39.18%;
}
.table_wrap.table03 {
  margin-bottom: 90px;
}
.table_wrap.table03 thead th:nth-child(1) {
  width: 23.33%;
}
.table_wrap.table03 thead th:nth-child(2) {
  width: 15%;
}
.table_wrap.table03 thead th:nth-child(3) {
  width: 15%;
}
.table_wrap.table03 thead th:nth-child(4) {
  width: 46.67%;
}
.table_wrap.table04 {
  margin-bottom: 20px;
}

.table_wrap_footnote {
  font-size: 16px !important;
  color: var(--color-text) !important;
  margin: 20px 0 0 !important;
}

.comparison_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 500px;
}
.comparison_table thead tr {
  background-color: #838383;
  color: var(--color-white);
}
.comparison_table thead th {
  padding: 20px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  letter-spacing: 1px;
}
.comparison_table thead th:last-child {
  border-right: none;
}
.comparison_table thead th:nth-child(1) {
  width: 20%;
}
.comparison_table thead th:nth-child(2) {
  width: 26.66%;
}
.comparison_table thead th:nth-child(3) {
  width: 26.66%;
}
.comparison_table thead th:nth-child(4) {
  width: 26.68%;
}
.comparison_table thead .comparison_table_col_highlight {
  background-color: #f7f0e6 !important;
  color: var(--color-white);
}
.comparison_table tbody tr {
  border-bottom: 1px solid var(--color-border);
}
.comparison_table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.comparison_table tbody th {
  padding: 30px 20px;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid var(--color-border);
  line-height: 1.6;
  background-color: #fff;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
}
.comparison_table tbody td {
  padding: 30px 20px;
  vertical-align: middle;
  border-right: 1px solid var(--color-border);
  line-height: 1.6;
  background-color: #fff;
}
.comparison_table tbody td:last-child {
  border-right: none;
}

.comparison_table_row_highlight td {
  background-color: #f7f0e6 !important;
  font-weight: bold;
}
.comparison_table_row_highlight th {
  background-color: #f7f0e6 !important;
  font-weight: bold !important;
}

.comparison_table_col_highlight {
  background-color: #f7f0e6 !important;
  font-weight: 600;
}

.comparison_table_note {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 1px;
}

.text_center {
  text-align: center !important;
}

.spec_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 400px;
}
.spec_table thead tr {
  background-color: #838383;
  color: #fff;
}
.spec_table thead th {
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid #dfdfdf;
}
.spec_table thead th:last-child {
  border-right: none;
}
.spec_table tbody tr {
  border-bottom: 1px solid var(--color-border);
}
.spec_table tbody tr:first-child td {
  background-color: #f7f0e6;
}
.spec_table tbody th {
  padding: 30px 20px;
  font-weight: 400;
  text-align: left;
  background-color: #fff;
  border-right: 1px solid var(--color-border);
  white-space: nowrap;
  color: var(--color-text);
}
.spec_table tbody td {
  padding: 30px 20px;
  border-right: 1px solid var(--color-border);
  line-height: 1.6;
}
.spec_table tbody td:last-child {
  border-right: none;
}

.figcaption_list {
  padding-left: 1.4em;
  margin: 8px 0 4px;
  font-size: 0.8rem;
  color: var(--color-text-sub);
  line-height: 1.7;
}
.figcaption_list li {
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  .tab_nav_list {
    flex-wrap: wrap;
  }
  .tab-nav_item {
    flex: 0 0 50%;
  }
  .tab_nav_link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    padding: 12px 6px;
  }
  .feature_list_3col {
    grid-template-columns: 1fr;
  }
  .feature_list_3col .feature_list_item {
    border-top: none;
    border-left: 3px solid var(--color-accent);
    padding: 10px 0 10px 16px;
  }
  .feature_box_list {
    grid-template-columns: 1fr;
  }
  .grade_icons {
    gap: 10px;
  }
  .grade_icons_item {
    flex: 1;
    padding: 12px 8px;
  }
}
@media (max-width: 720px) {
  .content_block_body_2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .content_block_body_reverse {
    direction: ltr;
  }
  .content_block_bg_gray {
    padding: 24px 16px;
  }
  :root {
    --section-gap: 50px;
    --block-gap: 40px;
  }
  .section_heading {
    margin-bottom: 32px;
  }
  .section_heading_title {
    font-size: 1.2rem;
  }
}
strong.orange {
  color: #d1680f;
}

#underfloor-ventilation {
  padding: 0 10px;
}

/*secure-living 安心して永く住み続けられる家*/
#page_title.customer-care {
  height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #2a1f17;
  background-image: url("/img/kiso/mv_img.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}
#page_title.customer-care h2 {
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  line-height: 1.4;
  color: var(--color-white);
  top: 0;
  left: 0;
}

#page_title.customer-care + .bread_Area {
  margin-bottom: 0;
  padding: 10px 5px 10px 5px;
}
#page_title.customer-care + .bread_Area .breadcrumb {
  max-width: 1200px;
  width: auto;
}

.section_heading_label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 3px;
  margin: 0 0 12px;
}
.section_heading_label.orange {
  color: #ed7610;
  font-size: 40px;
  font-weight: bold;
}

.table_wrap.table_warranty {
  margin-top: 30px;
}
.table_wrap.table_warranty .comparison_table {
  min-width: 600px;
}
.table_wrap.table_warranty .comparison_table thead th:nth-child(1) {
  width: 16%;
}
.table_wrap.table_warranty .comparison_table thead th:nth-child(2) {
  width: 30%;
}
.table_wrap.table_warranty .comparison_table thead th:nth-child(3) {
  width: 54%;
}

.content_block_figure_mt {
  margin-top: 70px;
}

.content_block_figure_mb {
  margin-bottom: 20px;
}

.faq_list {
  display: flex;
  flex-direction: column;
}

.faq_item {
  margin-bottom: 50px;
}
.faq_item:last-child {
  margin-bottom: 0;
}

.faq_question {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.faq_question_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ac9878;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  font-family: "Roboto";
}

.faq_question_text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.faq_answer {
  background-color: var(--color-bg-gray);
  padding: 40px;
}
.faq_answer p {
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-text);
  margin: 0 0 14px;
  letter-spacing: 0.5px;
}
.faq_answer p:last-child {
  margin-bottom: 0;
}

.faq_answer_inner_2col {
  display: flex;
  gap: 60px;
}
.faq_answer_inner_2col .faq_answer_inner_text {
  width: 35.71%;
}
.faq_answer_inner_2col .content_block_figure {
  width: 64.29%;
}

.faq_answer_inner_text p {
  margin: 0 0 14px;
}
.faq_answer_inner_text p:last-child {
  margin-bottom: 0;
}

#faq.concept_section {
  padding: 100px 10px;
}

/*comfort-home 一年中快適に過ごせる家*/
#page_title.comfort-home {
  height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #2a1f17;
  background-image: url("/img/dannetu/mv_img.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}
#page_title.comfort-home h2 {
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  line-height: 1.4;
  color: var(--color-white);
  top: 0;
  left: 0;
}

#page_title.comfort-home + .bread_Area {
  margin-bottom: 0;
  padding: 10px 5px 10px 5px;
}
#page_title.comfort-home + .bread_Area .breadcrumb {
  max-width: 1200px;
  width: auto;
}

#dannetu-system.content_block_bg_gray {
  margin-top: 0;
}

#health.content_block_bg_gray {
  margin-top: 0;
}

.concept_section.health {
  padding: 110px 10px 0 10px;
}

/*perfect-planning 理想の設計・プランニング*/
#page_title.perfect-planning {
  height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #2a1f17;
  background-image: url("/img/sekkei/mv_img.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}
#page_title.perfect-planning h2 {
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  line-height: 1.4;
  color: var(--color-white);
  top: 0;
  left: 0;
}

#page_title.perfect-planning + .bread_Area {
  margin-bottom: 0;
  padding: 10px 5px 10px 5px;
}
#page_title.perfect-planning + .bread_Area .breadcrumb {
  max-width: 1200px;
  width: 100%;
}

#process.content_block_bg_gray {
  margin-top: 0;
}

#design-performance.content_block_bg_gray {
  margin-top: 0;
}

.concept_section.sekkei-performance {
  padding: 110px 10px 0 10px;
}

.detail {
  margin-top: 24px !important;
}/*# sourceMappingURL=style.css.map */