@charset "utf-8";
/*
Theme Name: design-life
Theme URI:
Author: zeal
Author URI:
Description:
Version: 1.0
License:
License URI:
Tags:
*/

/*----------------------------------------
	共通
----------------------------------------*/

.white_btn,
.black_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
  background-color: transparent;
  transition: all 0.3s;
}

.btn_text {
  letter-spacing: 0.01em;
}

.btn_arrow {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}

.btn_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.white_btn {
  border: 1px solid #fff;
  color: #fff;
}

.white_btn .btn_arrow::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.white_btn:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none !important;
}

.white_btn:hover .btn_arrow::after {
  border-color: #000;
}

.black_btn {
  border: 1px solid #000;
  color: #000;
}

.black_btn .btn_arrow::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.black_btn:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none !important;
}

.black_btn:hover .btn_arrow::after {
  border-color: #fff;
}

.page_top_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_top_btn.is_active {
  opacity: 1;
  visibility: visible;
}

.page_top_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -65%) rotate(45deg);
}

.page_top_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 18px;
  background-color: #fff;
  transform: translate(-50%, -35%);
}

.page_top_btn:hover {
  background-color: #333;
}

@media screen and (max-width: 768px) {
  .page_top_btn {
    right: 15px;
    bottom: 15px;
    width: 44px;
    height: 44px;
  }
}

.img_darken::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .15);
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    /* transition: background-color .3s; */
}

/*----------------------------------------
	Header
----------------------------------------*/
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
}

.top_head {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.top_head li {
    display: flex;
    flex: 1;
    background-color: #000;
}

.top_head li:nth-child(4) {
    background-color: transparent;
}

.top_head a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    width: 100%;
    padding: 1.3em 5px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.03em;
    line-height: 1.4;
}

.top_head .border_wr {
    border-right: 1px solid #fff;
}

.top_title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.global_nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

@media screen and (max-width: 1200px) {
  .top_head {
    display: none;
  }
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px 50px;
}

.header_logo {
    width: 285px;
}

.header_logo a {
    display: block;
}

.header_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

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

.header_btn_wrap {
    display: flex;
    gap: 15px;
    width: 180px;
}

.header_btn_wrap a {
    display: block;
    width: 100%;
}

.header_nav_list {
    display: flex;
    gap: 20px;
}

.header_nav_list a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.header_nav_list a:hover {
    color: #808080;
}

@media screen and (max-width: 1060px) {
  .header_nav_list {
    display: none;
}
  .header_inner {
    padding: 20px 10px 20px;
}
  .header_right {
    gap: 0;
}
  .header_logo {
    width: 220px;
}
}

@media screen and (max-width: 500px) {
  .header_logo {
    width: 150px;
}
}

/* ドロワー */

.drawer_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #e5e5e5;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 110;
    position: relative;
    padding: 0;
}

.drawer_btn_line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    position: absolute;
}

.drawer_btn_line:nth-child(1) { top: 32px; }
.drawer_btn_line:nth-child(2) { top: 39px; }
.drawer_btn_line:nth-child(3) { top: 46px; }

.drawer_btn.is_active{
  background-color: transparent;
}

.drawer_btn.is_active .drawer_btn_line:nth-child(1) {
    top: 39px;
    transform: rotate(45deg);
    width: 30px;
}
.drawer_btn.is_active .drawer_btn_line:nth-child(2) {
    opacity: 0;
}
.drawer_btn.is_active .drawer_btn_line:nth-child(3) {
    top: 39px;
    transform: rotate(-45deg);
    width: 30px;
}

.drawer_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #e6e6e6;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.drawer_menu.is_active {
    opacity: 1;
    visibility: visible;
}

.drawer_menu_inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 100px 20px;
}

.banner_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.banner_grid a {
    display: block;
}

.drawer_main_cols {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.drawer_col {
    flex: 1;
}

.drawer_side_nav a {
    display: block;
    padding: 0 0 0 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.drawer_side_nav a:hover {
    color: #808080;
}

.drawer_lower.border_t {
    border-top: 1px solid #ccc;
}

.drawer_sublinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.drawer_sublinks a {
    color: #000;
    text-decoration: none;
}

.drawer_socials {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.icon_black {
    filter: brightness(0);
}

.drawer_side_nav li {
    margin-bottom: 40px;
}

.drawer_side_nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    position: relative;
    text-decoration: none;
    color: #333;
}

.drawer_side_nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 90%;
    background-color: #469ed7;
    border-radius: 3px;
}

.drawer_side_nav .nav_en {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.drawer_side_nav .nav_ja {
    line-height: 1.4;
}

.drawer_col_right{
  max-width: 330px;
}


.banner_grid {
    display: grid;
    width: 100%;
    gap: 20px;
    box-sizing: border-box; 
}

.banner_grid a {
    display: block;
    width: 100%;
    transition: opacity 0.3s;
}

.banner_grid a:hover {
    opacity: 0.7;
}

.banner_grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media screen and (min-width: 769px) {
    .banner_grid {
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: repeat(6, 1fr); 
        gap: 16px;
    }
}

@media screen and (max-width: 991px) {
    .banner_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .drawer_main_cols {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .banner_grid {
        width: 100%;
        margin-inline: auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media screen and (max-width: 599px) {
    .drawer_sublinks {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media screen and (max-width: 500px) {
  .header_logo {
    width: 150px;
  }
  .drawer_btn {
    width: 50px;
    height: 50px;
  }
  .header_btn_wrap {
    width: 120px;
  }
  .drawer_btn_line:nth-child(1) {
    top: 16px;
  }
  .drawer_btn_line:nth-child(2) {
    top: 24px;
  }
  .drawer_btn_line:nth-child(3) {
    top: auto;
    bottom: 16px;
  }
  .drawer_btn.is_active .drawer_btn_line:nth-child(1) {
    top: 25px;
  }
  .drawer_btn.is_active .drawer_btn_line:nth-child(3) {
    top: 25px;
  }
  .drawer_menu {
    display: block;
    padding-top: 70px;
  }
  .drawer_menu_inner {
    margin: 0 auto;
    padding: 0 20px 70px;
  }
  .banner_grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .drawer_side_nav li {
    margin-bottom: 30px;
}
}


/*----------------------------------------
	footer 共通
----------------------------------------*/
.site_footer {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 70px;
  background: #000;
  color: #fff;
  flex-wrap: wrap;
  gap: 2em;
}

.footer_left {
  flex: 1 1 200px;
  max-width: 300px;
}

.footer_left a:hover {
  text-decoration: underline;
}

.footer_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}

.footer_col {
  flex: 1 1 calc(50% - 2em);
  min-width: 320px;
}

.footer_block{
  margin-bottom: 30px;
}

.footer_block ul {
  padding-left: 1em;
  margin: 0 0 0.5em 0;
}
.footer_block p {
  margin-bottom: 0.75em;
}

.footer_block ul li {
  margin-bottom: 1em;
}

.footer_block ul li a {
  text-decoration: none;
  line-height: 1.4;
}

.footer_brand_list {
  padding-left: 1em;
}
.footer_brand_wrap {
  padding-left: 3em;
}

@media screen and (max-width: 768px) {
  .site_footer {
    flex-direction: column;
    gap: 2em;
    padding-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  .footer_right {
    flex-direction: column;
  }

  .footer_col {
    flex: 1 1 100%;
    min-width: auto;
  }
}

@media screen and (max-width: 500px) {
  .footer_col {
    flex-direction: column;
    row-gap: 20px;
  }
  .footer_left {
    flex: 1 1 150px;
  }
}

/*----------------------------------------
	投稿バッジ
----------------------------------------*/

.badge-new {
  display: inline-block;
  background: #469ed7;
  color: #fff;
  padding: 9px 10px;
}

.badge-type {
  display: inline-block;
  background: #000;
  color: #fff;
  border: 1px #000 solid;
  padding: 8px 15px;
}

/*----------------------------------------
	お客様の声・施工事例
----------------------------------------*/

.works_filter,
.works_tags_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter_btn,
.tag_btn {
  border: 1px solid #c6e2f5;
  background: #c6e2f5;
  color: #000;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.filter_btn.active,
.tag_btn.active,
.filter_btn:hover,
.tag_btn:hover {
  background: #469ed7;
  border-color: #469ed7;
  color: #fff;
}

.works_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.works_item {
  border: 1px solid #eee;
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}
.works_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.works_thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.works_info {
  padding: 15px;
}
.work_tag {
  font-size: 14px;
  color: #808080;
  margin-right: 8px;
}
.work_lineup_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #808080;
}

.work_house_icon {
  width: 16px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(50%);
}

.work_thumb_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px 30px 30px 30px;
}

.single_work_labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.others_header_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.more_link_btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.circle_arrow_right {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  position: relative;
}

.circle_arrow_right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #fff;
  transform: translate(-55%, -50%);
}

.circle_arrow_right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-10%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .others_header_flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .others_more_wrap {
    align-self: flex-end;
  }
  
  .circle_arrow_right {
    width: 32px;
    height: 32px;
  }
  .circle_arrow_right::before {
    width: 10px;
  }
  .circle_arrow_right::after {
    width: 6px;
    height: 6px;
  }
}

/*----------------------------------------
	top mv
----------------------------------------*/

.mv_text {
  position: absolute;
  top: 58%;
  left: 5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  color: #fff;
  max-width: 700px;
}
.mv_line1 {
  font-size: clamp(6rem, 7vw, 14rem);
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.mv_line2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.mv_line3 {
  font-size: clamp(5rem, 6vw, 12rem);
  line-height: 1.2;
}

/* ループ */

.image_loop_container {
  overflow: hidden;
  width: 100%;
}
.image_wrapper {
  display: flex;
  width: max-content;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}
.image_wrapper img {
  height: 300px;
  width: 450px;
  flex-shrink: 0;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
.mv_line1 {
  line-height: 1.7;
}
.mv_line2 {
  line-height: 2;
}
.mv_line3 {
  line-height: 1.7;
}
}

@media screen and (max-width: 599px) {
  .image_wrapper img {
    height: 200px;
    width: 300px;
  }
}

@media screen and (max-width: 499px) {
.mv_text {
  top: 53%;
}
}

/*----------------------------------------
	top bunner
----------------------------------------*/

.banner_container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.banner_container img {
  display: block;
}

@media screen and (max-width: 600px) {
  .banner_container {
    flex-direction: column;
  }
}

.bnr_colmn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.bnr_colmn img {
  display: block;
}

/*----------------------------------------
	top btn
----------------------------------------*/

.jc_center{
  justify-content: center;
}

.btn_style {
  display: flex;
}
@media screen and (max-width: 500px) {
  .btn_style {
  justify-content: center;
}
}

.btn_style li {
  position: relative;
  list-style: none;
  display: block;
  min-height: 30px;
  font-size: 1.2rem;
}

.btn_style li a {
  display: inline-block;
  box-sizing: border-box;
  padding: 20px 50px 20px 20px;
  color: #000;
  background: #fff;
  text-decoration: none;
  border: 1px solid #999;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.3s ease;
  min-width: 250px;
}

.btn_style li a::after {
  content: "＞";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #000;
  transition: color 0.3s ease;
  font-weight: bold;
}

.btn_style li a:hover {
  background: #000;
  color: #fff;
}

.btn_style li a:hover::after {
  color: #fff;
}


/*----------------------------------------
	select_brand
----------------------------------------*/

.select_intro_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.select_intro_left {
  width: 50%;
}

.select_intro_right {
  width: 46%;
}

.brand_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

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

.brand_thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.brand_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.brand_label_wrap {
  display: flex;
  top: 0;
  left: 0;
  overflow: hidden;
}

.brand_badge {
  background-color: #469ed7;
  color: #fff;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand_label_wrap .badge-new {
  display: flex;
  align-items: center;
  justify-content: center;
}
.select_type_label {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 5px 20px;
    line-height: 1;
    text-align: center;
    background-color: #fff;
}

@media screen and (max-width: 900px) {
  .brand_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  .select_intro_flex {
    flex-direction: column;
    row-gap: 40px;
  }
  .select_intro_left,
  .select_intro_right {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .brand_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*----------------------------------------
	select_brand詳細
----------------------------------------*/

.brand_mv_flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}
.brand_mv_left {
    width: 52%;
    padding-top: 40px;
}
.brand_mv_right {
    width: 48%;
}

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

.js_brand_slider .splide__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 40px;
}

.js_brand_slider .splide__arrow {
    background-color: #000 !important;
    opacity: 1 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.js_brand_slider .splide__arrow:hover {
    opacity: 0.8 !important;
}

.js_brand_slider .splide__arrow svg {
    display: none !important;
}

.js_brand_slider .splide__arrow::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.js_brand_slider .splide__arrow--prev {
    left: -24px !important;
    transform: translateY(-50%) !important;
}

.js_brand_slider .splide__arrow--prev::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7.828 11H20v2H7.828l5.364 5.364-1.414 1.414L4 12l7.778-7.778 1.414 1.414z'/%3E%3C/svg%3E");
}

.js_brand_slider .splide__arrow--next {
    right: -24px !important;
    transform: translateY(-50%) !important;
}

.js_brand_slider .splide__arrow--next::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M16.172 11H4v2h12.172l-5.364 5.364 1.414 1.414L20 12l-7.778-7.778-1.414 1.414z'/%3E%3C/svg%3E");
}

.js_brand_slider .splide__pagination {
    bottom: -40px !important;
}
.js_brand_slider .splide__pagination__page {
    background-color: #e5e5e5 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 4px 6px !important;
    opacity: 1 !important;
    transition: all 0.3s;
}
.js_brand_slider .splide__pagination__page.is-active {
    background-color: #000 !important;
    transform: scale(1) !important;
}

@media screen and (max-width: 768px) {
    .brand_mv_flex {
        flex-direction: column;
        gap: 40px;
    }
    
    .brand_mv_left {
        width: 100%;
        padding-top: 0;
    }
    
    .brand_mv_right {
        width: 100%;
        order: 2; 
    }
    
    .brand_mv_left {
        order: 1;
    }

    .js_brand_slider .splide__arrow {
        width: 40px !important;
        height: 40px !important;
    }

    .js_brand_slider .splide__arrow--prev {
        left: 10px !important;
    }

    .js_brand_slider .splide__arrow--next {
        right: 10px !important;
    }

    .js_brand_slider .splide__pagination {
        bottom: -30px !important;
    }
}


/*----------------------------------------
	モデルハウス一覧
----------------------------------------*/
.model_card_flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.model_card_img_wrap {
    width: 48%;
    position: relative;
}

.model_card_img_wrap2 {
    width: 52%;
    position: relative;
}

.model_card_img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 30px;
}

.model_reserve_badge {
    background: #262626;
    padding: 9px 16px;
    display: inline-block;
}

.model_card_info_wrap {
    width: 52%;
}
.model_card_info_wrap2 {
    width: 47%;
}

.model_label_area {
    align-items: center;
    gap: 10px;
}

.model_brand_badge {
    display: inline-block;
    border: 1px solid #000;
    padding: 8px 30px;
    border-radius: 20px;
    margin-right: 10px;
    margin-left: 1px;
    background-color: #fff;
}

.model_tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.model_tag_item {
    color: #808080;
}

.model_meta_row {
    display: flex;
    align-items: center;
}

.model_meta_icon {
    width: 18px;
    margin-right: 5px;
    flex-shrink: 0;
}

.model_map_link {
    display: inline-block;
    color: #2271b1;
    margin-left: 10px;
    text-decoration: underline;
}

.model_btn_wrap {
    max-width: 350px;
}

@media screen and (max-width: 768px) {
    .model_card_flex {
        flex-direction: column-reverse;
        gap: 50px;
    }
    
    .model_card_img_wrap,
    .model_card_img_wrap2,
    .model_card_info_wrap,
    .model_card_info_wrap2 {
        width: 100%;
    }
    
    .model_btn_wrap {
        max-width: 100%;
    }
}

/*----------------------------------------
	モデルハウス詳細
----------------------------------------*/

.model_map_iframe iframe {
    width: 100% !important;
    height: 450px !important;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .model_map_iframe iframe,
    .view360_iframe iframe {
        height: 300px !important;
    }
}

/*----------------------------------------
	TOP MV スライダー
----------------------------------------*/
.top_mv_sec {
    overflow: hidden;
}

.top_mv_slide {
    height: auto;
}

.top_mv_link {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-decoration: none;
    background-color: #fff;
    border-radius: 20px;
}

.top_mv_gallery_wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.top_mv_gallery_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.top_mv_info {
    position: relative;
    padding: 0 25px 30px 0;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.top_mv_brand_wrap {
    margin-top: -15%;
    margin-left: -5%;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.top_mv_brand_img {
    width: 100%;
    height: auto;
    display: block;
}

.top_mv_text_area {
    margin-bottom: 30px;
}

.top_mv_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.top_mv_arrow {
    position: absolute;
    right: 10px;
    bottom: 75px;
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.top_mv_arrow::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M16.172 11H4v2h12.172l-5.364 5.364 1.414 1.414L20 12l-7.778-7.778-1.414 1.414z'/%3E%3C/svg%3E");
}

.top_mv_link:hover .top_mv_arrow {
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .top_mv_info {
        padding: 0 15px 20px;
    }
    .top_mv_brand_wrap {
        margin-left: -3%;
    }
    .top_mv_arrow {
        right: 5px;
        bottom: 55px;
        width: 40px;
        height: 40px;
    }
}

/*----------------------------------------
	TOP Works スライダー
----------------------------------------*/
.top_works_lineup {
    overflow: hidden;
}

.top_works_link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 30px;
    overflow: hidden;
}

.top_works_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_works_info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    color: #fff;
    padding-right: 40px;
}

.top_works_badge {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: bold;
}

.top_works_title {
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.js_top_works_slider {
    padding-bottom: 60px;
}

.js_top_works_slider .splide__pagination {
    bottom: 10px;
}

.js_top_works_slider .splide__pagination__page {
    background-color: #e5e5e5;
    width: 12px;
    height: 12px;
    margin: 4px 6px;
    opacity: 1;
    transition: all 0.3s;
}

.js_top_works_slider .splide__pagination__page.is-active {
    background-color: #469ed7; 
    transform: scale(1);
}

@media screen and (max-width: 768px) {
    .top_works_link {
        border-radius: 20px;
    }
    .top_works_info {
        bottom: 25px;
        left: 25px;
        padding-right: 25px;
    }
    .top_works_badge {
        padding: 4px 15px;
        margin-bottom: 10px;
    }
}

/*----------------------------------------
	top モデルハウス　スライダー
----------------------------------------*/

.js_top_model_slider {
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 40px;
}

.js_top_model_slider .splide__pagination {
    bottom: -40px;
}

.js_top_model_slider .splide__pagination__page.is-active {
    background: #000;
    opacity: 1;
}

.js_top_model_slider .splide__pagination__page {
    background: #fff;
    margin: 0 8px;
}

.model_label_area {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.model_wrap{
  padding-top: 140px;
  padding-bottom: 180px;
}

@media screen and (max-width: 768px) {
.model_wrap{
  padding-top: 80px;
  padding-bottom: 100px;
}
}

@media screen and (max-width: 600px) {
.js_top_model_slider {
    padding: 40px 20px 40px;
}
}

/*----------------------------------------
	reservation
----------------------------------------*/

.splide__arrow svg {
    fill: #000;
    height: 1.2em;
    width: 1.2em;
}

.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #808080;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 4em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 42.5%;
    transform: translateY(-50%);
    width: 4em;
    z-index: 1;
}

.is_slider_disabled .splide__arrows {
    display: none;
}
.is_slider_disabled .splide__track,
.is_slider_disabled .splide__list {
    cursor: default !important;
}

.splide__arrow--next {
    right: -4em;
}
.splide__arrow--prev {
    left: -4.5em;
}

@media (max-width: 1240px) {
  .splide__arrow--next {
    right: -2em;
}
  .splide__arrow--prev {
    left: -2em;
}
  .splide__arrow {
    height: 3em;
    width: 3em;
  }
}

@media (max-width: 1100px) {
  .splide__arrow--next {
    right: -1em;
}
  .splide__arrow--prev {
    left: -1em;
}
}
@media (max-width: 768px) {
.splide__arrow {
    top: 42.5%;
}
}
/*----------------------------------------
	top event
----------------------------------------*/

.bg_lightgray {
  background-color: #f7f7f7;
}

.event_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.event_item {
  width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}

.event_thumb {
    position: relative;
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
}

.event_thumb img {
    height: 240px;
    object-fit: cover;
    display: block;
    width: 100%;
}

.event_thumb3 img {
  height: 240px;
  object-fit: cover;
  display: block;
  width: 320px;
}

.event_thumb_item {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event_thumb_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 終了オーバーレイ */
.event_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  z-index: 5;
  max-width: 320px;
}

.event_label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 8;
  flex-wrap: wrap;
}


.event_label.pos_fix {
    left: 12px;
}

.event_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.7;
}

.event_work_area {
  background-color: #fff;
  padding: 20px 10px 30px;
  min-height: 210px;
  max-width: 300px;
  margin-inline: auto;
}
.event_work_area2 {
  background-color: #fff;
  padding: 10px 0 20px;
  min-height: 210px;
  max-width: 320px;
  margin-inline: auto;
}
.event_work_area3 {
  background-color: #fff;
  padding: 10px 0 20px;
  min-height: 150px;
  max-width: 320px;
  margin-inline: auto;
}
.event_work_area4 {
  background-color: #fff;
  padding: 14px 10px 30px;
  min-height: 170px;
  max-width: 300px;
  margin-inline: auto;
}
.event_work_area5 {
  background-color: #fff;
  padding: 10px 0 20px;
  min-height: 100px;
  max-width: 320px;
  margin-inline: auto;
}
.event_work_area6 {
  background-color: #fff;
  padding: 10px 0 20px;
  min-height: 100px;
  max-width: 230px;
  margin-inline: auto;
}

.event_date,
.event_address,
.event_category_type {
  font-size: 13px;
  color: #808080;
  position: relative;
  padding-left: 19px;
}

.event_date{
  letter-spacing: -0.02em;
}

.event_date::before {
  content: url("images/common/calendar_icon.svg");
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: inline-block;
  filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg);
}
.event_address::before {
  content: url("images/common/map_icon.svg");
  position: absolute;
  left: 0;
  top: 35%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: inline-block;
  filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg);
}
.event_category_type::before {
  content: url("images/common/house_icon.svg");
  position: absolute;
  left: 0;
  top: 35%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: inline-block;
  filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

.event_status_label {
  text-align: center;
  display: inline-block;
  width: 100px;
}

.event_status_label.accepting {
  background-color: #b7b595;
  color: #fff;
}

.event_status_label.ended {
  background-color: #e5e5e5;
  color: #000;
}

.event_wrapper2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .event_item {
    width: 100%;
  }
  .event_wrapper {
    gap: 16px;
  }
}

@media screen and (max-width: 768px) and (min-width: 501px) {
  .event_wrapper2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  .event_wrapper2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .event_wrapper2 article {
    display: flex;
    justify-content: center;
  }
  .event_item {
    display: flex;
    justify-content: center;
  }
}

/*----------------------------------------
	top model_house
----------------------------------------*/

.model_tab_wrap {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  width: 100%;
}

.model_tab {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  color: #000;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #000;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
  /* transition: all 0.2s ease; */
}

.model_tab.active {
  border: 1px solid #000;
  border-bottom: none;
  position: relative;
  z-index: 2;
  background-color: transparent;
}

.model_tab.tab_gray {
    background-color: #000;
}

.model_tab.tab_gray.active {
    background-color: #000;
}

.model_tab:hover {
  opacity: 0.7;
}

.modelhouse_item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e5e5e5;
  gap: 20px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.modelhouse_thumb {
  flex: 0 0 320px;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden; 
}

.modelhouse_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.modelhouse_link_wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.modelhouse_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.model_house_card{
  border-top: #000 1px solid;
}

.modelhouse_text {
  flex: 1;
  display: flex;
  align-items: center;
}

.modelhouse_more_btn {
  text-align: right;
  align-self: flex-end;
  cursor: pointer;
  display: inline-block;
  background: #b7b595;
  color: #fff;
  padding: 8px 20px;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.view360_embed iframe,
.view360_iframe iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 40vh;
}

@media screen and (max-width: 660px) {
  .model_tab {
    font-size: 14px;
    padding: 10px 0;
  }

  .modelhouse_item {
    flex-direction: column;
    gap: 16px;
    padding: 12px;
  }

  .modelhouse_thumb {
    flex: none;
    width: 100%;
  }

  .modelhouse_link_wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 12px;
  }

  .modelhouse_content {
    width: 100%;
  }

  .modelhouse_text {
    align-items: flex-start;
  }

  .modelhouse_more_btn {
    position: static;
    align-self: flex-end;
    margin-top: 12px;
    padding: 6px 16px;
    font-size: 14px;
  }
  .sp_overray {
    max-width: none;
    width: 100%;
  }
}

/*----------------------------------------
	top brand
----------------------------------------*/

.top_brand_bg {
  position: relative;
  background-image: url("images/top/top_brand_bg.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 1;
}
.top_brand_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
.top_brand_flex {
  display: flex;
  justify-content: center;
  column-gap: 70px;
}
.brand_box1 {
  width: 50%;
}
.brand_box2 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .top_brand_ttl {
    flex-direction: column;
    row-gap: 20px;
  }
  .sp_pb0 {
    padding-bottom: 0 !important;
  }
  .brand_box1 {
    width: 100%;
    padding-bottom: 100px;
  }
  .ttl_brand {
    transform: translateX(10px);
    max-width: 250px;
  }
}

/*----------------------------------------
	top company
----------------------------------------*/

.top_company_bg {
  position: relative;
  background-image: url("images/top/company_bg.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 1000px;
  z-index: 1;
}
.top_company_flex {
  display: flex;
  justify-content: center;
  column-gap: 70px;
}

@media screen and (max-width: 768px) {
  .top_company_flex {
    flex-direction: column;
  }
  .top_company_flex > div:first-child {
    padding-bottom: 50px;
  }
  .top_company_bg {
    height: auto;
    padding-bottom: 70px;
  }
}

/*----------------------------------------
　company
----------------------------------------*/

.company_top_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}
.company_top_left {
    width: 55%;
}
.company_top_right {
    width: 40%;
    position: relative;
}
.company_img_group {
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-right: 20px;
}
.company_img_1 {
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.company_img_2 {
    width: 85%;
}
.company_img_medal {
    width: 45%;
    position: absolute;
    bottom: -15%;
    right: -5%;
    z-index: 3;
}

.company_bottom_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company_bottom_left {
    width: 55%;
}
.company_bottom_right {
    width: 40%;
}

.access_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.access_card_thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
}
.access_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.access_card_info {
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.access_card_label {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 4px 20px;
    font-size: 13px;
    margin-bottom: 15px;
    background-color: #fff;
}
.access_card_name {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    line-height: 1.2;
}
.access_card_dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
}
.access_card_dl dt {
    width: 25%;
    color: #808080;
}
.access_card_dl dd {
    width: 75%;
    color: #808080;
}
.access_map_link {
    text-align: right;
    margin-top: auto;
}
.access_map_link a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    gap: 10px;
    text-decoration: none;
}
.access_map_link .circle_arrow_right {
    width: 30px;
    height: 30px;
}
.access_map_link .circle_arrow_right::before {
    width: 10px;
}
.access_map_link .circle_arrow_right::after {
    width: 6px;
    height: 6px;
}
.scroll_mt{
  scroll-margin-top: 180px;
}

@media screen and (max-width: 768px) {
    .company_top_flex {
        flex-direction: column;
        row-gap: 50px;
    }
    .company_bottom_flex {
        flex-direction: column-reverse;
        row-gap: 50px;
    }
    .company_top_left,
    .company_top_right,
    .company_bottom_left,
    .company_bottom_right {
        width: 100%;
    }
    .company_img_group {
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 30px;
    }
    .company_img_medal {
        bottom: -10%;
        right: 0;
    }
    .scroll_mt{
        scroll-margin-top: 80px;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/

.reserve_notice {
  border: 3px solid #d73f5b;
  color: #d73f5b;
  text-align: center;
  padding: 1em;
  margin: 2em 0;
  width: 100%;
  box-sizing: border-box;
}

.contact_points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact_point {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_flex{
  display: flex;
  column-gap: 40px;
}
.contact_flex_box1{
  width: 44%;
}
.contact_flex_box2{
  width: 56%;
}

.btn_more {
    text-align: center;
}

.btn_more a {
    display: inline-block;
    text-align: center;
    padding: 8px 16px 9px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 16px;
}

.btn_more a:hover {
    background-color: #333;
}

.contact_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.btn_select {
  width: 90%;
  margin-inline: auto;
}

.btn_select a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    padding: 20px 16px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
}

.btn_select a .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 6px;
  position: relative;
  top: -3px;
}

.contact_work_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 10px 40px;
  min-height: 300px;
  max-width: 300px;
}

.contact_buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 1024px) {
  .contact_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .contact_points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 660px) {
  .contact_flex{
    flex-direction: column-reverse;
    row-gap: 40px;
    align-items: center;
}
  .contact_flex_box1,
  .contact_flex_box2{
    width: 100%;
}
}

@media screen and (max-width: 600px) {
  .contact_wrapper {
    grid-template-columns: 1fr;
  }
  .event_link_wrapper{
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .contact_points {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .reserve_notice{
    margin-top: 1em;
    margin-bottom: 2.5em;
  }
}

/*----------------------------------------
	footer バナー
----------------------------------------*/

.footer_flex1 {
  display: flex;
  column-gap: 40px;
  justify-content: center;
  align-items: center;
}

.footer_grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .footer_grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .footer_flex1 {
    flex-direction: column;
    row-gap: 50px;
  }
}

@media screen and (max-width: 500px) {
  .footer_grid1 {
    grid-template-columns: 1fr;
  }
}

/*----------------------------------------
　下層　プライバシーポリシー
----------------------------------------*/

.privacy_ttl{
  padding-bottom: 20px;
  line-height: 2;
  font-weight: 500;
}

.privacy_text{
  padding-bottom: 80px;
  line-height: 2;
}

.contact_us {
  background-color: #f7f7f7;
  padding: 20px 30px;
}

@media screen and (max-width: 600px) {
  .privacy_text{
  padding-bottom: 50px;
}
}

/*----------------------------------------
　下層　アクセス
----------------------------------------*/

.access_info {
  width: 100%;
  border-top: 1px solid #e6e6e6;
}

.access_item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 0;
}

.access_item dt {
  width: 27.5%;
  font-size: 1.6rem;
}

.access_item dd {
  width: 72.5%;
  margin: 0;
  font-size: 1.6rem;
}

.access_flex1{
  display: flex;
  column-gap: 40px;
  align-items: center;
}

.access_flex1_box1{
  width: 45%;
}

.access_flex1_box2{
  width: 55%;
}

.access_flex2{
  display: flex;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
}

.access_flex2_box1{
  width: 45%;
  text-align: center;
}

.access_flex2_box2{
  width: 45%;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .access_item dt,
  .access_item dd {
    width: 100%;
  }
  .access_item dt {
    margin-bottom: 16px;
  }
  .access_flex1,
  .access_flex2{
    flex-direction: column;
    row-gap: 40px;
  }
  .access_flex1_box1,
  .access_flex2_box1{
    width: 100%;
  }
  .access_flex1_box2,
  .access_flex2_box2{
    width: 100%;
  }
}

/*----------------------------------------
　下層　FOLTSとは
----------------------------------------*/

.folts_flex{
  display: flex;
  column-gap: 50px;
}

.folts_flex_box1{
  width: 50%;
}
.folts_flex_box2{
  width: 46%;
}

.flex_row_rev{
  flex-direction: row-reverse;
}

@media screen and (max-width: 800px) {
  .folts_flex{
  flex-direction: column;
  row-gap: 50px;
}
  .folts_flex_box1{
  width: 100%;
}
  .folts_flex_box2{
  width: 100%;
}
  .flex_colmn_rev{
  flex-direction: column-reverse;
}
}

@media screen and (max-width: 600px) {
  .sp_ttl{
    width: 17.5%;
    margin-inline: auto;
  }
  .sp_ttl2{
    width: 50%;
    margin-inline: auto;
  }
}


/*----------------------------------------
　下層　泉州ホームについて
----------------------------------------*/

.about_flex{
  display: flex;
  column-gap: 50px;
  align-items: center;
}

.about_flex_box1{
  width: 50%;
}
.about_flex_box2{
  width: 46%;
}

.company_intro_under {
    max-width: 830px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    background-color: #f6f6f6;
    padding: 5% 6.7%;
}
.company_intro_under > div:first-of-type {
    width: 48.6%;
}
.company_intro_under > div:last-of-type {
    width: 41.8%;
}
.company_outline_table {
    margin-inline: auto;
}
.company_outline_table tr {
    border-bottom: #e6e6e6 solid 1px;
}
.company_outline_table tr:first-child {
    border-top: #e6e6e6 solid 1px;
}
.company_outline_table th, .company_outline_table td {
    padding: 15px 0;
    font-size: clamp(14px, 1.875vw, 16px);
    line-height: 1.7;
}
.company_outline_table th {
    width: 38.46%;
    text-align: left;
    font-weight: normal;
}
.company_outline_table td {
    width: 58.97%;
}

.about_flex2 {
  display: flex;
  justify-content: center;
  column-gap: 70px;
}
.about_flex2_box1 {
  width: 50%;
}
.about_flex2_box2 {
  width: 46%;
}

.about_thumb {
  position: relative;
}

.about_thumb img {
  height: auto;
  object-fit: cover;
  display: block;
  width: 100%;
  max-width: 230px;
}

.about_work_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 10px 40px;
  min-height: 170px;
  max-width: 230px;
  box-sizing: border-box;
}

.about_buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn_more2 {
    text-align: center;
}

.btn_more2 a {
    display: inline-block;
    text-align: center;
    padding: 8px 16px 9px;
    background-color: #b7b595;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 16px;
}

.btn_more2 a:hover {
    background-color: #b7b595bb;
}

@media screen and (max-width: 800px) {
  .about_flex{
  flex-direction: column;
  row-gap: 50px;
}
  .about_flex_box1{
  width: 100%;
}
  .about_flex_box2{
  width: 100%;
}
}

@media screen and (max-width: 768px) {
  .about_flex2 {
    flex-direction: column;
  }
  .about_flex2 > div:first-child {
    padding-bottom: 50px;
  }
  .about_flex2_box1 {
    width: 100%;
  }
  .about_flex2_box2 {
    width: 100%;
  }
}

/*----------------------------------------
　下層　folts耐震
----------------------------------------*/

.folts_s_thumb {
  position: relative;
}

.folts_s_thumb img {
  height: auto;
  object-fit: cover;
  display: block;
  width: 100%;
  max-width: 320px;
}

.folts_s_work_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 10px 30px;
  min-height: 170px;
  max-width: 320px;
  box-sizing: border-box;
}

.seismic_list {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

.seismic_list article:nth-child(1) {
    grid-column: 1 / 3;
}
.seismic_list article:nth-child(2) {
    grid-column: 3 / 5;
}
.seismic_list article:nth-child(3) {
    grid-column: 1 / 3;
}
.seismic_list article:nth-child(4) {
    grid-column: 3 / 5;
}
.seismic_list article:nth-child(5) {
    grid-column: 2 / 4;
}

.seismic_flex{
  display: flex;
  column-gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.seismic_flex_box1{
  width: 50%;
}
.seismic_flex_box2{
  width: 46%;
}

.seismic2_flex_box1{
  width: 46%;
}
.seismic2_flex_box2{
  width: 46%;
}
.seismic3_flex_box1{
  width: 65%;
}
.seismic3_flex_box2{
  width: 35%;
}
.seismic4_flex_box1{
  width: 60%;
}
.seismic4_flex_box2{
  width: 46%;
}

.video_wrapper_s {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.video_wrapper_s iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video_wrapper_m {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.video_wrapper_m video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

/* 再生ボタン */
.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid white;
}

.al_normal{
  align-items: normal;
}
.jc_space_even{
  justify-content: space-evenly;
}
.c_gap25{
  column-gap: 25px;
}


@media screen and (min-width: 769px) {
    .seismic_list {
        grid-template-columns: repeat(9, 1fr);
        grid-template-areas:
        "a a a b b b c c c"
        ". d d d . e e e .";
    }
    .seismic_list article:nth-child(1) {
        grid-area: a;
    }
    .seismic_list article:nth-child(2) {
        grid-area: b;
    }
    .seismic_list article:nth-child(3) {
        grid-area: c;
    }
    .seismic_list article:nth-child(4) {
    grid-column: 3 / 6;
    transform: translateX(-25%);
    }
    .seismic_list article:nth-child(5) {
    grid-column: 6 / 9;
    transform: translateX(-15%);
    }
  }

  @media screen and (max-width: 768px) {
    .seismic_list article:nth-child(4),
    .seismic_list article:nth-child(5) {
        transform: none;
    }
  .seismic_flex{
  flex-direction: column-reverse;
  /* row-gap: 50px; */
}
  .seismic_flex_box1,
  .seismic2_flex_box1,
  .seismic_flex_box2,
  .seismic2_flex_box2,
  .seismic3_flex_box1,
  .seismic3_flex_box2,
  .seismic4_flex_box1,
  .seismic4_flex_box2{
  width: 100%;
}
  .flex_d_c{
    flex-direction: column;
  }
}

@media screen and (max-width: 500px) {
    .seismic_list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seismic_list article {
        grid-column: auto;
        transform: none;
    }

    .seismic_list article:nth-child(1),
    .seismic_list article:nth-child(2),
    .seismic_list article:nth-child(3),
    .seismic_list article:nth-child(4),
    .seismic_list article:nth-child(5) {
        grid-column: auto;
        transform: none;
    }
    .seismic_item{
    justify-self: center;
    width: 100%;
    max-width: 320px;
    }
    .sp_pb40{
      padding-bottom: 20px;
    }
}

/*----------------------------------------
　下層　folts断熱
----------------------------------------*/

.insulation_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  align-items: center;
  justify-items: stretch;
  box-sizing: border-box;
}
.insulation_grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  align-items: center;
  justify-items: stretch;
  box-sizing: border-box;
}

.insulation_flex{
  display: flex;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
}

.insulation_flex_box1{
  width: 50%;
  margin-inline: auto;
  text-align: right;
}
.insulation_flex_box2{
  width: 50%;
  margin-inline: auto;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .insulation_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: center;
  }
  .insulation_grid2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: center;
  }
  .insulation_flex{
  flex-direction: column;
  row-gap: 20px;
}
  .insulation_flex_box1,
  .insulation_flex_box2{
  width: 100%;
  text-align: center;
}
}

/*----------------------------------------
　下層　folts保証
----------------------------------------*/

.warranty_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 40px;
  row-gap: 30px;
  width: 100%;
  align-items: center;
  justify-items: stretch;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .warranty_grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}

/*----------------------------------------
　下層　sitemap
----------------------------------------*/

.footer_block2{
  margin-bottom: 80px;
}

.footer_block2 ul {
  padding-left: 1em;
  margin: 0 0 0.5em 0;
}
.footer_block2 p {
  margin-bottom: 0.75em;
}

.footer_block2 ul li {
  margin-bottom: 1em;
}

.footer_block2 ul li a {
  text-decoration: none;
  line-height: 1.4;
}

.sitemap_wrap {
    display: flex;
    gap: 40px;
}

.sitemap_left {
    width: 50%;
}

.sitemap_right {
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 70px;
}

@media screen and (max-width: 768px) {
  .footer_block2{
  margin-bottom: 50px;
}
  .sitemap_wrap {
  flex-direction: column;
}
  .sitemap_right {
  width: 100%;
  flex: 1 1 auto;
}
.sitemap_left {
  width: 100%;
}
}



/*----------------------------------------
	sideボタン
----------------------------------------*/

.side_fixed {
  position: fixed;
  right: 0;
  top: 25vh;
  z-index: 8;
  width: 55px;
}

@media screen and (max-width: 600px) {
  .side_fixed {
    display: none;
  }
}

/*----------------------------------------
	イベントページ
----------------------------------------*/

/* 詳細ページャー */

.single_pager {
  display: flex;
  justify-content: center;
}

.single_pager li {
  position: relative;
  list-style: none;
  display: block;
  min-height: 30px;
  text-align: center;
  font-size: 1.2rem;
}

.single_pager li a {
  display: inline-block;
  box-sizing: border-box;
  padding: 18px 130px 18px 10px;
  color: #000;
  background: transparent;
  text-decoration: none;
  border: 1px solid #000;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.3s ease;
}

.single_pager li a::after {
  content: "＞";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #000;
  transition: color 0.3s ease;
}

.single_pager li a:hover {
  background: #000;
  color: #fff;
}

.single_pager li a:hover::after {
  color: #fff;
}
.single_prev {
  width: 23.5%;
  margin-right: 1.5%;
}
.single_list {
  width: 100%;
}
.single_next {
  width: 23.5%;
  margin-left: 1.5%;
}
.single_pager li.single_prev a:before {
  content: "＜";
  position: absolute;
  left: 5%;
  top: 40%;
  width: 20px;
  height: 8px;
  z-index: 2;
}
.single_pager li.single_next a:before {
  content: "＞";
  position: absolute;
  right: 5%;
  top: 40%;
  width: 20px;
  height: 8px;
  z-index: 2;
}

/* @media screen and (max-width: 768px){

	.single_prev{ width: 28.5%; }
	.single_list{ width: 40%; }
	.single_next{ width: 28.5%; }

}

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

	.single_pager li a{
		font-size: 1.2rem;
		padding: 15px 3px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.single_pager li.single_prev a:before,
	.single_pager li.single_next a:before{
		top: 42%;
	}
	.single_pager li.single_prev a:before{
		left:1.4%;
	}
	.single_pager li.single_next a:before{
		right:1.4%;
	}

} */

/* 一覧ページャー */

.pager {
  position: relative;
  overflow: hidden;
}
.pager ul {
  position: relative;
  float: left;
  left: 50%;
}
.pager li {
  position: relative;
  float: left;
  left: -50%;
  color: #000;
  list-style: none;
  font-size: clamp(1.2rem, 1.35vw, 1.6rem);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.pager li a,
.pager li .current {
  display: inline-block;
  margin-right: 4px;
  text-align: center;
}
.pager li a {
  background: #e6e6e6;
  color: #000;
  text-decoration: none;
  width: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.pager li a.prev,
.pager li a.next {
  width: auto;
  padding-inline: 15px;
}
.pager li a.prev {
  margin-right: 8px;
}
.pager li a.next {
  margin-left: 4px;
}
.pager li .current {
  background: #333;
  color: #fff;
  width: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.pager li a:hover {
  background: #333;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .pager li {
    font-size: 1.1rem;
    height: 36px;
  }
  .pager li a,
  .pager li span {
    width: 30px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-sizing: border-box;
  }
  .pager li a.prev,
  .pager li a.next {
    width: auto;
  }
  .pager li a.prev {
    margin-right: 4px;
  }
  .pager li a.next {
    margin-left: 0;
  }
  .pager li .current {
    width: 30px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-sizing: border-box;
  }
  .pager li a.prev img,
  .pager li a.next img {
    vertical-align: -30%;
  }
}

.bg_gold {
  background-color: #b7b595;
}
.btn01 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.btn02{
  width: 55%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* .event_btn_reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  background-color: #b7b595;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
  opacity: 1;
  width: 100%;
}

.event_btn_reserve:hover {
  opacity: 0.7;
} */

.event_btn_reserve {
  display: none;
}

.event_btn_icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  padding-right: 20px;
}

.event_btn_text {
  white-space: nowrap;
}

@media screen and (max-width: 499px) {
  .event_btn_reserve {
  display: inline-flex;
  transition: background-color 0.3s;
  opacity: 1;
  width: 100%;
  position: fixed;
  bottom: 0;
}

.event_btn_reserve:hover {
  opacity: 0.7;
}
.btn02{
  width: 75%;
}
}

/*----------------------------------------
	map
----------------------------------------*/
.map {
  overflow: hidden;
  width: 100%;
  height: 500px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: contain;
} /*END*/

@media screen and (max-width: 499px) {
  .map {
  overflow: hidden;
  width: 100%;
  height: 300px;
}
}

/*----------------------------------------
	追従ボタン　SP
----------------------------------------*/

.sp_menu{
	width: 100%;
  position: fixed;
  box-sizing: border-box;
  z-index: 8;
  transition: all 0.4s;
  bottom: 0;
}
.sp_menu ul{
  display: flex;
}
.sp_menu a{
	display: none;
}
@media screen and (max-width: 599px){
	.sp_menu a{
		display: block;
	}
}

.event_slider .slick-slide {
  height: auto;
}

/*----------------------------------------
	スライダー
----------------------------------------*/

.slick-prev:before,
.slick-next:before {
    content: '' !important;
    display: block;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1 !important;
    z-index: 5 !important;
}

.slick-prev{
  left: -75px !important;
}
.slick-next{
  right: -35px !important;
}

.slick-prev:before {
    background-image: url(images/common/slider_prev_btn.png);
}

.slick-next:before {
    background-image: url(images/common/slider_next_btn.png);
}

/* スライド間の余白 */
.event_slider .slick-slide {
    padding: 0 12px;
    box-sizing: border-box;
}

.event_slider {
    margin: 0 -12px;
}

.event_slider_wrap {
    position: relative;
}

/* 矢印共通 */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5 !important;
}

.slick-prev:before,
.slick-next:before {
    width: clamp(35px, 6vw, 60px);
    height: clamp(35px, 6vw, 60px);
}

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

.slick-prev {
    left: -25px !important;
}

.slick-next {
    right: clamp(15px, 4vw, -40px) !important;
}

}

@media screen and (max-width: 1024px){
.slick-prev {
    left: -10px !important;
}
}

@media screen and (max-width: 500px){
.slick-prev {
    left: 0px !important;
}
}

.slick-prev, .slick-next {
    top: 40% !important;
}

/* 修正追加分 */

.seis_item_title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    background-color: #fff;
    padding: 20px 0;
}

.seis_grid_item {
    max-width: 320px;
    min-height: 320px;
    margin-inline: auto;
}

.seis_grid10 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-items: stretch;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
.seis_grid10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 500px) {
.seis_grid10 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
.seis_grid_item {
    min-height: auto;
}
}