<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

@import "settings.css";

/*============================================================================================
      Header
=============================================================================================*/
.header{
  position: fixed;
  padding: 25px 20px;
  z-index: 99999;
}
.header.change_color{
  background-color: var(--color-main);
  transition: 0.9s;
  color: var(--color-bg);
}
.header.change_color .header_link div{
  border: 1px solid var(--color-bg);
}
.header_logo {
  top: 5px;
  left: 5px;
  width: 110px;
}
.logo_black{
  display: none;
}
.header.change_color .logo_black{
  display: block;
}
.header.change_color .logo_white{
  display: none;
}
.top_mv{
  display: table;/*.top_mv_ttlを中央寄せ*/
  width: 100%;
  height: 100svh;
  background-image: url(../img/top/mv_sp.jpg);
  background-size: cover;
  background-position: center center;
}
.top_mv_ttl{
  display: table-cell;
  vertical-align: middle;
}
.top_garage .top_mv_ttl{
  display: block;
  padding-top: 150px;
}
.header_itm{
  position: relative;
}
.header_link{
  position: absolute;
  right: 50px;
}
.header_link div{
  padding: 10px 15px;
  font-family: var(--font-sans);
  align-items: center;
  vertical-align: middle;
  line-height: 1.5;
  border: 1px solid var(--color-main);
}
@media (min-width:897px){
  .top_mv{
    background-image: url(../img/top/mv.jpg);
  }
  .top_mv h2,
  .top_mv p{
    width: 70vw;
    margin: 0 auto;
  }
  .header_logo{
    width: 160px;
  }
}

/* Scroll down */
.scrolldown_wrap {
  position: relative;
  width: 85vw;
  margin: auto;
}
.scrolldown {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 130px;
}
/*Scroll text*/
.scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: var(--color-main);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  display: inline-block;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  white-space: nowrap;
}
/* Scroll Line Decoration*/
.scrolldown::after {
  content: "";
  top: -10px;
  left: -15px;
  width: 1px;
  height: 130px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: -20px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 130px;
    opacity: 0;
  }
}

/*    Navigation
=====================================================*/
.header_gnav .gnav_cont {
  height: 100%;
}
.header_gnav .gnav_list {
  gap: 20px;
}
.header_gnav .gnav_list_item {
  position: relative;
	display: block;
	color: var(--color-main);
	transition: color .2s, background .2s;
}
.header_gnav .gnav_list_item a {
	position: relative;
	display: block;
	height: 100%;
	font-size: 1.4rem;
	font-weight: bold;
	transition: font-size .2s;
}
.header_gnav .gnav_list_item a::before {
  content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 2px;
	left: 0;
	bottom: -5px;
	background-color: var(--color-blue);
	transition: width .2s;
}
@media (any-hover: hover) {
  .header_gnav .gnav_list_item a:hover::before {
    width: 100%;
	}
}
.header_gnav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
}
.header_gnav .gnav_cont{
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #0B0B27;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow-y: scroll;
}
.header_gnav .gnav_cont_box {
  width: 85vw;
  margin: 130px auto 0;
}
.header_gnav .gnav_list {
  gap: 0;
}
.header_gnav .gnav_list_item {
  width: 100%;
}
.header_gnav .gnav_list_item a {
  padding: 15px 0;
  color: var(--color-white);
}
.header_gnav .gnav_list_item a::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: var(--color-blue);
  transition: width .2s;
}
.header_gnav .gnav_cont_box {
  margin: 20vw auto;
}
.header_gnav .gnav_list {
  gap: 0;
}
.header_gnav .gnav_list_item {
  width: 100%;
}
.header_gnav .gnav_list_item a {
  padding: 5px 0;
  line-height: 1.7;
}
.header_gnav .gnav_list_item a::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: var(--color-blue);
  transition: width .2s;
}
.u_scrollPrevent .header_link{
  display: none;
}
.u_scrollPrevent .logo_black{
  display: none !important;
}
.u_scrollPrevent .logo_white{
  display: block !important;
}
.g_hamb.js_open .g_hamb_inr div {
  background-color: var(--color-main)
}

@media (any-hover: hover) {
  .header_link a:hover,
  .entry_btn a:hover{
    opacity: var(--opacity);
  }
  .g_btn.u_ic:hover::after {
    border-top: 1px solid var(--color-main);
    border-right: 1px solid var(--color-main);
  }
  .g_hamb:hover{
    cursor: pointer;
  }
}
@media (min-width:897px){
  .header_gnav .gnav_list_item a{
    font-size: 1.8rem;
    text-align: center;
    line-height: 2;
  }
  .header_gnav .gnav_cont_box {
    margin: 10vw auto;
  }
}
.entry_btnLst{
  width: 910px;
  margin: auto;
}
/* Tablet */
@media (max-width:896px){
  .entry_btnLst{
    max-width: 390px;
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width:896px){
  .header_gnav .gnav_list_item a {
    font-size: 1.6rem;
  }
}


/*============================================================================================
      Footer
=============================================================================================*/
.footer {
  background-color: var(--color-footer);
}
.footer_icon figure img{
  width: 35px;
}
.copyright{
  font-family: var(--font-sans);
}
.footer_logo{
  width: 145px;
  margin: 0 auto;
}
@media (any-hover: hover) {
  .footer_icon a:hover{
    opacity: var(--opacity);
  }
  .g_link a:hover{
    opacity: var(--opacity) !important;
  }
}
@media (min-width:897px){
  .footer_logo{
    width: 200px;
  }
}
/*    Common
=====================================================*/
body {
  background-color: var(--color-bg);
}
.main_contents {
  overflow-x: hidden;
}
.sec_wrap_inr {
  width: 85vw;
  max-width: var(--cont-width);
  margin: auto;
}
.sec_ttl {
  font-size: 2.8rem;
  line-height: 1.7;
}
.sec_ttl::before {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1;
}
.sec_works,.sec_about {
  position: relative;
}
.sec_line::before {
  content: "";
  border: 1px solid var(--color-border-thin);
  width: 200px;
  transform: rotate(40deg);
  top: 20px;
  left: -30px;
}
.sec_line.sec_about::before {
  content: "";
  border: 1px solid var(--color-border-thin);
  width: 200px;
  transform: rotate(-35deg);
  right: -400px;
}
.sec_line.sec_create_imagination::before {
  content: "";
  border: 1px solid var(--color-border-thin);
  width: 200px;
  transform: rotate(40deg);
  top: 115px;
  left: -30px;
}
.g_btn a {
  text-align: center;
}
@media (min-width:897px) {
  .sec_ttl {
    font-size: 3.4rem;
  }
.pc_wrap_inr{
  width: 920px;
  margin: 0 auto;
}
}
/*============================================================================================
      Contents
=============================================================================================*/
/* Section: One story house
===========================*/
.sec_one_story_grid_up {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 45% 55%;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.sec_one_story_grid_up_itm_01 {
  grid-area: 1 / 1 / 2 / 2;
}
.sec_one_story_grid_up_itm_02 {
  grid-area: 1 / 2 / 2 / 3;
}
.sec_one_story_grid_up_itm_03 {
  grid-area: 2 / 1 / 3 / 3;
}
.sec_one_story_grid_up figure img,.sec_one_story_grid_btm figure img{
  height: 100%;
  object-fit: cover;
}
.sec_one_story_grid_btm {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: 50% 50%;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.sec_one_story_grid_btm_itm_01 {
  grid-area: 1 / 1 / 2 / 2;
}
.sec_one_story_grid_btm_itm_02 {
  grid-area: 1 / 2 / 2 / 3;
}
.sec_one_story_grid_btm_itm_03 {
  grid-area: 2 / 1 / 3 / 3;
}
@media screen and (min-width:897px){
  .sec_one_story_grid_up {
    grid-template-columns: 60% 40%;
    grid-template-rows: 40rem 50rem;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .sec_one_story_grid_btm {
    grid-template-columns: 40% 60%;
    grid-template-rows: 40rem 60rem;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

/* Section: Book a tour
===========================*/
/* 注意事項 */
.request_info_inr{
  width: 90vw;
  margin: 0 auto;
}
.request_info {
  background-color: #191919;
}
.request_info p {
  font-size: 15px;
}
.request_info span {
  font-size: 15px;
  font-weight: bold;
}
.request_info a {
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 2px;
}
.sec_book_tour_notes_ttl {
  cursor: pointer;
}
.sec_book_tour_notes_ttl::before{
  position: absolute;
	width: 7px;
	height: 7px;
  top:0;
  bottom: 0;
  left: -15px;
	border-top: 1px solid var(--color-main);
	border-right: 1px solid var(--color-main);
	-webkit-transform: rotate(135deg);
}
.js_acd.sec_book_tour_notes_ttl::before {
  transition: all 0.3s linear;
  -webkit-transform: rotate(135deg) translateY(0px);
  transform: rotate(135deg) translateY(0px);
}
.js_acd.js_open.sec_book_tour_notes_ttl::before {
  transition: all 0.3s linear;
  -webkit-transform: rotate(-45deg) translateY(0px);
  transform: rotate(-45deg) translateY(0px);
}
.sec_book_tour_bd{
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 30px;
  border: 1px solid var(--color-border-thin);
}
@media (any-hover: hover) {
  .request_info_inr div span a:hover{
    opacity: var(--opacity);
  }
  .request_info a:hover{
    border-bottom: none;
  }
}
@media (min-width:897px){
  .sec_book_tour_bd,
  .sec_book_tour_notes,
  .request_info_inr{
    width: 920px;
  }
  .book_tour_grid {
    display: grid;
    grid-template-columns: repeat(2, 360px);
    grid-template-rows: 267px;
    grid-column-gap: 80px;
    grid-row-gap: 55px;
    justify-content: center;
  }
  .book_tour_grid .sec_wrap_inr{
    width: auto;
    margin: 0
  }
  .sec_book_tour_notes dd {
    padding: 0 85px 45px 85px;
  }
}

/* Section: Award
===========================*/
.award_itm {
  padding: 20px 0 15px 0;
  border-top: 1px solid var(--color-border-thin);
}
.award_itm:last-child {
  border-bottom: 1px solid var(--color-border-thin);
}
.sec_award p {
  font-size: 1rem;
  line-height: 1.5;
}
.award_txt {
  font-family: var(--font-sans);
}
@media (min-width:897px) {
  .sec_award p {
    font-size: 1.3rem;
  }
  .award_img{
    width: 50rem;
  }
  .award_no1{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .award_itm{
    width: 350px;
    margin: auto;
  }
}

/* Section: Works
===========================*/
.sec_works_tab {
  width: 45%;
  text-align: center;
  background-color: var(--color-main);
  color: var(--color-bg);
  padding: 15px 0;
  margin-bottom: -1px;
  cursor: pointer;
}
.sec_works_tab.js_crnt {
  background-color: var(--color-bg);
  color: var(--color-main);
  border-top: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
}
.sec_works_tab_content {
  display: none;
}
.sec_works_tab_content.js_crnt {
  display: block;
}
.skybalcony_ttl,.black_galvalume_ttl,.l_shaped_ttl{
  line-height: 1.5;
}
.skybalcony_itm {
  font-size: 1.1rem;
}
.works_grid_up {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: 32vw;
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  }
.works_grid_itm_01,
.works_grid_itm_05{
  grid-area: 1 / 1 / 2 / 2;
}
.works_grid_itm_02,
.works_grid_itm_06 {
  grid-area: 1 / 2 / 2 / 3;
}
.works_grid_bm {
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: 140px;
  grid-column-gap: 5px;
  grid-row-gap: 0px;
}
.works_grid_itm_03,
.works_grid_itm_07{
  grid-area: 1 / 1 / 2 / 2;
}
.works_grid_itm_04,
.works_grid_itm_08{
  grid-area: 1 / 2 / 2 / 3;
}

.works_grid_up figure img,
.works_grid_bm figure img{
  height: 100%;
  object-fit: cover;
}
.skybalcony_lst_contain{
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--color-main);
}

@media (min-width:483px){
  .works_grid_bm {
    grid-template-rows: 260px;
  }
}
@media (min-width:897px){
  /* PCレイアウト：タブ右寄せ */
  .skybalcony_sec_wrap_inr.sec_wrap_inr{
    width: auto;
  }
  .works_wrap{
    max-width: var(--cont-width);
    margin: 0 auto;
  }
  .works_wrap:nth-child(3),
  .works_wrap:nth-child(4){
    margin-top: 150px;
  }
  .works_grid_tab{
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  }
  .works_grid_tab_itm1 img{
    height: 100%;
    object-fit: cover;
  }
  .works_grid_tab_itm2{
    margin: auto 0 0 0;
  }
  .skybalcony_ttl{
    text-align: left;
    margin-left: 95px;
  }
  .skybalcony_ttl_sub{
    margin-left:95px;
  }
  .skybalcony_itm{
    font-size: 1.5rem;
  }
  .sec_works_tab{
    width: 40%;
    text-align: center;
    padding: 15px 0;
  }
  .sec_works_tab_lst {
    width: 100%;
  }
  .skybalcony_flex figure{
    width: 20.864vw;
    max-width: 285px;
    height: 210px;
  }
  .skybalcony_flex figure img{
    height: 100%;
    object-fit: cover;
  }
  .js_view.js_crnt {
    border-top: none;
  }
  .works_grid_up,
  .works_grid_bm {
    display: flex;
    gap: 30px;
  }
  .works_grid_contain{
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .works_grid_contain div figure img {
    height: 100%;
    object-fit: cover;
  }
  .works_tab_description{
    margin: -5px 0 0 50%;
  }
}

/* Section: Model house
===========================*/
.sec_model_house,
.model_house_top_img{
  position: relative;
}

.model_house_moka{
  display: inline-block;
  position: absolute;
  top: -30px;
  left: 0;
  padding: 10px 20px;
  color: var(--color-main);
  letter-spacing: 1px;
  background-color: #666666;
}
.model_house_itm {
  margin-left: 20px;
  padding: 10px 0;
  border-bottom: 1px dotted #9191a8;
}
.model_house_itm:first-child {
  padding: 0 0 10px 0;
}
.model_house_itm:last-child {
  border-bottom: none;
}
.model_house_itm::before{
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.model_house_lst {
  position: relative;
}
.blueprint_img {
  background-color:#403d3c;
  padding: 10px;
}
.model_house_img {
  width: 165px;
}
.moka_add_txt {
  font-size: 1.3rem;
}
.points_watch{
  display: inline;
}
.points_watch::before{
  position: absolute;
  content: "";
  border-left: 1px solid var(--color-main);
  height: 13px;
  bottom: 0;
  left: -10px;
  transform: rotate(-30deg);
}
.points_watch::after{
  position: absolute;
  content: "";
  border-left: 1px solid var(--color-main);
  height: 13px;
  bottom: 2px;
  right: -5px;
  transform: rotate(30deg);
}

@media (min-width:897px) {
  .model_house_flex{
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  }
  .model_house_flex_itm_01{
    flex-shrink: 0;
  }
  .model_house_flex_itm_02{
    flex-shrink: 0;
  }
  .model_house_btn{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
  }
  .model_house_btn .g_btn{
    width: 340px;
  }
  .model_house_top_img{
    width: 920px;
    margin: 0 auto;
  }
  .blueprint_img{
    object-fit: cover;
    width: 490px;
    height: 280px;
    margin: auto;
  }
}
@media (min-width:1038px) {
  .model_house_moka{
    top: -30px;
    left: -50px;
  }
}
/* Section: About us
===========================*/
.about_us_img {
  width: 120px;
}
.about_us_txt {
  line-height: 1.5;
}
.about_us_slider{
  position: relative;
}
.about_us_slider_itm figure{
  margin: auto;
}

@media (min-width:897px) {
  .about_us_img {
    width: 200px;
  }
  .about_us_flex{
    display: flex;
    align-items: center;
    gap: 50px;
  }
  .about_us_flex_itm1{
    flex-shrink: 0;
    width: 30%;
  }
  .about_us_flex_itm2{
    flex-shrink: 0;
    width: 70%;
  }

}
/* Section: Create your imagination
===========================*/
.sec_create_imagination {
  position: relative;
  padding-top: 400px;
}
.create_img_contain_01,
.create_img_contain_02,
.create_img_contain_03{
  position: relative;
}
.sec_create_imagination &gt; figure {
  position: absolute;
  top: 190px;
  right: 0;
  width: 280px;
  height: 180px;
}

.create_img_01 {
  position: absolute;
  width: 180px;
  top: 0;
  left: 0;
}
.create_img_02 {
  position: absolute;
  width: 180px;
  top: 140px;
  right: 0;
}
.create_img_03 {
  position: absolute;
  width: 180px;
  top: 0;
  left: 0;
}
.create_img_04 {
  position: absolute;
  width: 180px;
  top: 140px;
  right: 0;
}
.create_img_05 {
  position: absolute;
  width: 180px;
  top: 0;
  left: 0;
}
.create_img_06 {
  position: absolute;
  width: 180px;
  top: 140px;
  right: 0;
}
.create_txt_contain_01 {
  position: relative;
  margin-top: 340px;
}
.create_txt_contain_02 {
  position: relative;
  margin-top: 340px;
}
.create_txt_contain_03 {
  position: relative;
  margin-top: 340px;
}

@media (min-width:897px) {
  .sec_create_imagination{
    height: 3500px;
  }
  .sec_create_imagination &gt; figure {
    top: 190px;
    right: 100px;
    width: 82.5rem;
  }
  .create_imagination_ttl_contain{
    margin-top: 350px;
  }
  .create_img_01 {
    width: 400px;
    /* width: 29.283vw; */
    top: 0;
    left: 0;
  }
  .create_img_02 {
    width: 400px;
    top: 295px;
    right: 0;
  }
  .create_img_03 {
    width: 400px;
    top: 520px;
    left: 0;
  }
  .create_img_04 {
    width: 400px;
    top: 820px;
    right: 0;
  }
  .create_img_05 {
    width: 400px;
    top: 1320px;
    left: 0;
  }
  .create_img_06 {
    width: 400px;
    top: 1620px;
    right: 0;
  }
  .create_txt_01{
    position: absolute;
    width: 640px;
    top: 300px;
    left: 0;
  }
  .create_txt_02{
    position: absolute;
    width: 630px;
    top: 1110px;
    right: 0px;
  }
  .create_txt_03{
    position: absolute;
    width: 670px;
    top: 1920px;
    left: 50px;
  }
}
/* Section: Company
===========================*/
.company_lst {
  border-bottom: 1px solid var(--color-border-thin);
}
.company_itm {
  border-top: 1px solid var(--color-border-thin);
  /* padding-top: 15px; */
}
.company_map {
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 5px;
}
.company_map::before{
  content: '';
  background-image: url(../img/common/sec_company_tab.png);
  width: 10px;
  height: 10px;
  top: 8px;
  right: -15px;
}
@media (any-hover: hover) {
  .company_map:hover,
  .company_map a:hover{
    opacity: var(--opacity);
  }
  .company_map:hover{
    border-bottom: none;
  }
}
@media (min-width:897px) {
  .company_lst {
    width: 50vw;
    margin: 0 auto;
  }
  .company_lst dt,.company_lst dd{
    padding-left: 95px;
  }
  .address_flex{
    display: flex;
    justify-content: center;
    gap: 70px;
  }
}
/* Section: Request Information link
===========================*/
.link_request_info,
.link_book_tour,
.link_field_trip {
  position: relative;
}
.link_request_info figure::before {
  content: "資料請求";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.link_book_tour figure::before {
  content: "見学予約";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.link_field_trip figure::before {
  content: "見学会一覧";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.link_field_garage_hamb figure::before {
  content: "ガレージのある家を作りたい方はこちら";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
}
.link_field_onestory_hamb figure::before {
  content: "デザイン平屋を作りたい方はこちら";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
}
.link_field_onestory_hamb figure{
  line-height: 1.3;
}
.u_scrollPrevent .link_book_tour figure::before,
.u_scrollPrevent .link_request_info figure::before,
.u_scrollPrevent .link_field_onestory_hamb figure::before,
.u_scrollPrevent .link_field_garage_hamb figure::before{
  color: var(--color-main);
}

@media (any-hover: hover) {
  .link_request_info:hover,
  .link_book_tour:hover,
  .link_field_trip:hover {
    opacity: var(--opacity);
  }
}
@media (min-width:897px){
  .link_flex{
    display: flex;
    gap: 30px;
  }
  .link_request_info figure::before {
    content: "資料請求";
    font-size: 1.8rem;
  }
  .link_book_tour figure::before {
    content: "見学予約";
    font-size: 1.8rem;
  }
  .link_field_trip figure::before {
    content: "見学会一覧";
    font-size: 1.8rem;
  }
  .link_field_garage_hamb figure::before {
    content: "ガレージのある家を作りたい方はこちら";
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .link_field_onestory_hamb figure::before {
    content: "デザイン平屋を作りたい方はこちら";
    font-size: 1.7rem;
    line-height: 1.3;
  }
}
/* Tablet */
@media (min-width: 576px) and (max-width:896px){
  .entry_btnLst{
    max-width: 390px;
    width: 100%;
    margin: auto;
  }
  .header_gnav .gnav_list_item a {
    font-size: 1.6rem;
  }
  .link_request_info figure::before {
    content: "資料請求";
    font-size: 1.6rem;
  }
  .link_book_tour figure::before {
    content: "見学予約";
    font-size: 1.6rem;
  }
  .link_field_trip figure::before {
    content: "見学会一覧";
    font-size: 1.6rem;
  }
  .link_field_garage_hamb figure::before {
    content: "ガレージのある家を作りたい方はこちら";
    font-size: 1.6rem;
  }
  .link_field_onestory_hamb figure::before {
    content: "デザイン平屋を作りたい方はこちら";
    font-size: 1.6rem;
  }
}

/* Section: Email
===========================*/
.sec_mail {
  z-index: 999999;
}
.email_modal_content{
  position: relative;
  max-width: 300px;
  width:81.967vw;
}
.btn_mail {
  width: 275px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 15px;
}
.mail_txt input {
  width: 275px;
  height: 50px;
  color: var(--color-text-dark);
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 15px 10px;
}
.btn_close {
  position: absolute;
  width: 33px;
  height: 33px;
  top: -45px;
  right: -15px;
  background-color: var(--color-main);
  border: 1px solid var(--color-bg);
  border-radius: 25px;
}
.btn_close::before,
.btn_close::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 14px;
  width: 1px;
  height: 13px;
  background: var(--color-bg);
  z-index: 500;
}
.btn_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.email_modal_content_itm{
  padding: 0 40px 20px 40px;
}

.form_input {
  display: none;
}

.form_input.form_show {
  display: block;
}

.form_complete {
  display: none;
}
.form_complete.form_show  {
  display: block;
  animation: appear .5s ease;
}
@keyframes appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.error {
  display: block;
  color: #FF0000;
  font-size: 1.2rem;
  margin-top: 5px;
  cursor: inherit;
}
input[type="submit"].btn_mail {
  width: 275px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 15px;
}
.form_complete {
  height: 420px;
}

/* Section: form
===========================*/
.form.-event {
  margin: 120px 0 -180px;
  padding: 120px 0;
  background: #eff0f2
}

.form__head {
  margin-bottom: 30px;
}
.form__head::before{
    content: attr(data-subtitle);
    display: block;
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1;
}
.form__wrap {
  margin-bottom: 100px
}

.form__box {
  margin-bottom: 80px
}

.form__items {
  max-width: 1080px;
  margin: 0 auto 68px
}
.form__item {
    display: block;
}

.form__item+.form__item {
  margin-top: 20px
}

.form__item dt {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-right: 0px;
  padding-top: 12px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.form__item dt span {
  flex-shrink: 0;
  width: 53px;
  font-size: 1.3rem;
  line-height: 1.5625;
  font-weight: 400;
  color: #fff;
  background: #FF0000;
  text-align: center;
  border: 1px solid #FF0000;
}

.form__item dd {
  position: relative;
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 2
}

.form__item dd * {
  position: relative
}

.form__item dd .formError {
}

.form__item &gt; dd.-name {
  display: flex;
  flex-wrap: wrap;
}

.form__item dd.-check {
  display: flex;
  flex-wrap: wrap;
  align-items: center
}

.form__privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 68px;
  padding: 40px 60px 60px;
  box-sizing: border-box;
  border: solid 1px #707070;
  background: var(--color-bg);
  font-size: 1.5rem;
}

.form__privacy dt {
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 700
}

.form__privacy dd a {
  text-decoration: underline
}

.form__privacy dd a:hover {
  opacity: .5
}

.form input[type=date],
.form input[type=email],
.form input[type=number],
.form input[type=password],
.form input[type=tel],
.form input[type=text],
.form input[type=url],
.form select {
  width: 100%;
  height: 60px;
  padding: 0 28px;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 2;
  border: solid 1px #707070;
  background-color: #3E3E3E;
  transition: all .4s
}
/* .form input:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #3E3E3E inset;
    -webkit-text-fill-color: #fff !important;
} */
.form input[type=date] ::placeholder,
.form input[type=email] ::placeholder,
.form input[type=number] ::placeholder,
.form input[type=password] ::placeholder,
.form input[type=tel] ::placeholder,
.form input[type=text] ::placeholder,
.form input[type=url] ::placeholder,
.form select ::placeholder {
  color: #707070!important;
}
.form input[type=date]:focus,
.form input[type=email]:focus,
.form input[type=number]:focus,
.form input[type=password]:focus,
.form input[type=tel]:focus,
.form input[type=text]:focus,
.form input[type=url]:focus,
.form select:focus {
  background-color: #fff;
  color : #000000;
}
/* .form input:focus:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-text-fill-color: #000000 !important;
} */
.form__item__name{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.form__item__familyname,
.form__item__firstname{
  width: 35px;
}
.form__item__name input{
  width: calc( 100% - 46px) !important;
}
.form .-name&gt;label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.form .-name&gt;label+label {
  margin-left: 0px;
  margin-top: 40px;
}

.form .-name&gt;label span {
  min-width: 2em;
  margin-right: 10px;
}

.form .-tel {
}

.form .-tel i {
  flex-shrink: 0;
  margin: 0 10px;
}

.form .-mail {
}

.form .-mail i {
  flex-shrink: 0;
  margin: 0 10px;
}

.form textarea {
  width: 100%;
  height: 230px;
  box-sizing: border-box;
  padding: 16px 28px;
  font-size: 18px;
  border: solid 1px #707070;
  background-color: #3E3E3E;
  transition: all .4s;
}

.form textarea ::placeholder {
  color: #707070;
}

.form textarea:focus {
  background-color: #fff;
  color : #000000;
}

.form__btn {
  display: block;
  width: 240px;
  height: 64px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  letter-spacing: .15em;
  text-indent: .15em;
  background: var(--color-button);
  border: solid 1px var(--color-button);
  transition: .2s;
  cursor: pointer;
}

.form__btn:hover {
  opacity: .7;
}

.form__check {
  display: block;
  margin-bottom: 60px
}

.form__check .mwform-checkbox-field.horizontal-item {
  width: 100%
}

.form__check .mwform-checkbox-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0
}

.form__check .mwform-checkbox-field-text::before {
  position: inherit;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  top: auto;
  left: auto;
  transform: none;
  margin-right: 10px
}

.form__check .mwform-checkbox-field-text::after {
  content: none
}

.form__check input[type=checkbox]:checked+.mwform-checkbox-field-text::before {
  background: #fff url(../img/icn_check.svg) no-repeat center/14px 14px
}

input[type=checkbox],
input[type=file],
input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  opacity: 0
}

.mwform-checkbox-field,
.mwform-radio-field {
  padding-top: 13px
}

.mwform-checkbox-field.horizontal-item,
.mwform-radio-field.horizontal-item {
  display: inline-block;
  width: 100%;
  margin-right: 30px
}

.mwform-checkbox-field.horizontal-item+.horizontal-item,
.mwform-radio-field.horizontal-item+.horizontal-item {
  margin-left: 0 !important
}

.mwform-checkbox-field.vertical-item,
.mwform-radio-field.vertical-item {
  display: block
}

.mwform-radio-field-text {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 1.5rem;
  line-height: 2.66667;
  cursor: pointer
}

.mwform-radio-field-text::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  border: 1px solid #111;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #fff inset;
  background: #f5f7f9;
  transition: .3s
}

input[type=radio]:checked+.mwform-radio-field-text::before {
  background: #fff;
  box-shadow: 0 0 0 2px #fff inset
}

input[type=radio]:focus+.mwform-radio-field-text::before {
  box-shadow: 0 0 0 2px #fff inset, 0 0 3px #111
}

.mwform-checkbox-field-text {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 1.5rem;
  line-height: 1.86667;
  cursor: pointer
}

.mwform-checkbox-field-text::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  border: 1px solid #707070;
  background: #3E3E3E;
}

.mwform-checkbox-field-text::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 2px;
  transform: translateY(-40%) rotate(30deg);
  background: url(../img/common/icn_check.svg) no-repeat center/contain;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.mwform-checkbox-field-text input[type=checkbox] {
  font-size: 1.5rem;
  line-height: 1.86667
}

input[type=checkbox]:checked+.mwform-checkbox-field-text::before {
  background: #fff
}

input[type=checkbox]:checked+.mwform-checkbox-field-text::after {
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible
}

input[type=checkbox]:focus+.mwform-checkbox-field-text::before {
  box-shadow: 0 0 2px #111
}
#alert {
  max-width: 1080px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 16px;
}
.dgwt-jg-item:not(:root) {
  position: absolute;
  display: inline-block;
  opacity: .1;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: 0 0
}

.dgwt-jg-item:not(:root) .jg-no-link-wrapp,
.dgwt-jg-item:not(:root) a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column
}

.dgwt-jg-item:not(:root) img {
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  border: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  min-height: 0
}

.dgwt-jg-effect-standard:not(:root) .dgwt-jg-caption {
  display: block;
  height: auto;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  padding: 0;
  color: #111;
  text-align: left;
  overflow: inherit;
  background: 0 0;
  animation: none !important
}

.dgwt-jg-effect-standard:not(:root) .dgwt-jg-caption span {
  color: #fff;
  display: block;
  font-weight: 900;
  line-height: 120%;
  position: relative;
  padding: 14px 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #111;
  letter-spacing: 0;
  top: auto;
  transform: none;
  opacity: 1
}

.dgwt-jg-effect-standard:not(:root) .dgwt-jg-caption svg {
  display: none
}

.dgwt-jg-effect-standard:not(:root) a .dgwt-jg-caption {
  cursor: pointer
}

.errMsg {
  margin-left: 1em !important;
  padding-bottom: 1px !important;
  display: block !important;
  line-height: 1.4 !important;
  text-indent: -.9em !important;
  font-size: 100% !important
}

.formError {
  position: absolute;
  padding-bottom: 13px;
  display: block;
  bottom: 100%;
  left: 0
}

.fixed {
  padding-bottom: 0
}

.formError .formErrorClose {
  border: solid #252525 2px;
  border-radius: 9px 9px 9px 9px;
  -moz-border-radius: 9px 9px 9px 9px;
  -webkit-border-radius: 9px 9px 9px 9px;
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -4px;
  right: -4px;
  color: #efefef;
  background: #333;
  font-weight: 700;
  text-align: center;
  line-height: middle;
  cursor: pointer;
  box-shadow: 1px -1px 3px #888;
  -moz-box-shadow: 1px -1px 3px #888;
  -webkit-box-shadow: 1px -1px 3px #888
}

.formError .formErrorClose:hover {
  background: #666
}

.fixed .formErrorClose {
  display: none
}

.formError .formErrorContent {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  padding: 6px 10px;
  width: 180px;
  position: relative;
  color: #fff;
  background: #252525;
  font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ丸ゴ Pro W4", HiraMaruPro-W4, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, sans-serif;
  font-size: 11px;
  box-shadow: 0 0 6px #888;
  -moz-box-shadow: 0 0 6px #888;
  -webkit-box-shadow: 0 0 6px #888
}

.fixed .formErrorContent {
  margin-top: .5em;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background: #FF0000;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none
}

.fadeOut {
  opacity: .2
}

.formError .formErrorArrow {
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 20px
}

.fixed .formErrorArrow {
  display: none
}

.formError .formErrorArrowBottom {
  margin: -6px;
  top: 0
}

.fixed .formErrorArrowBottom {
  display: none
}

.formError .formErrorArrow div {
  margin: 0 auto;
  display: block;
  height: 1px;
  background: #252525;
  line-height: 0;
  font-size: 0;
  box-shadow: 0 2px 3px #888;
  -moz-box-shadow: 0 2px 3px #888;
  -webkit-box-shadow: 0 2px 3px #888
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none
}

.formError .formErrorArrow .line10 {
  width: 19px
}

.formError .formErrorArrow .line9 {
  width: 17px
}

.formError .formErrorArrow .line8 {
  width: 15px
}

.formError .formErrorArrow .line7 {
  width: 13px
}

.formError .formErrorArrow .line6 {
  width: 11px
}

.formError .formErrorArrow .line5 {
  width: 9px
}

.formError .formErrorArrow .line4 {
  width: 7px
}

.formError .formErrorArrow .line3 {
  width: 5px
}

.formError .formErrorArrow .line2 {
  width: 3px
}

.formError .formErrorArrow .line1 {
  width: 1px
}
@media (min-width:897px){
    .form__item {
        display: flex;
        align-items: flex-start
      }
      .form__item dt {
        display: flex;
        flex-shrink: 0;
        justify-content: space-between;
        align-items: center;
        width: 280px;
        margin-right: 50px;
        padding-top: 12px;
        font-size: 1.8rem;
        line-height: 1.8;
      }
      .form__item dd {
        font-size: 1.8rem;
      }
      .form__item dd.-name {
        display: flex;
        flex-wrap: nowrap;
      }
      .form__item dd.-name.l_flexwrap {
        display: flex;
        flex-wrap: wrap;
      }
      .form input[type=date],
      .form input[type=email],
      .form input[type=number],
      .form input[type=password],
      .form input[type=tel],
      .form input[type=text],
      .form input[type=url],
      .form select {
        font-size: 1.8rem;
      }
      .form .-name&gt;label+label {
        margin-left: 40px;
        margin-top: 0px;
    }
    .mwform-checkbox-field.horizontal-item,
    .mwform-radio-field.horizontal-item {
        display: inline-block;
        width: calc(100% / 3 - 30px);
        margin-right: 30px
    }
}

/* 20231222追記 :5000円CP削除時 */
/* .book_tour_grid {
  display: block;
} */</pre></body></html>