﻿/* IMPORT RESET */
@import url("reset.css");
* {
  margin: 0;
  padding: 0;
  outline: 0
}
body {
  font-family: "Yu Gothic", "游ゴシック体", "游ゴシック", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", sans-serif;
  color: #333333;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-size: 16px;
}
h1, h2, p, ul, li, img {
  margin: 0;
  padding: 0
}
a,a:visited,a:link {
  color: #333333;
  text-decoration: none
}
a:hover,a:focus {
  color: #333333;
  opacity: 0.7
}
a:hover img {
  opacity: 0.7;
}
iframe {
  border: none;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
img {
  max-width: 100%;
}
/* common */

.wrapper{
  width:100%;
  position:relative;
}
.wrapper::after{
  content:'';
  display:block;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2100px;
  background-color:#fcf7f7;
}
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}


main, footer {
  width: 100%;
}
footer {
  margin: 0 auto 3em;
}
footer .copyright {
  margin: 0 10% 0 0;
  text-align: right;
  font-size: 10px;
}
/* header */
header {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-top: 30px;
}
h1.logo {
  width: 100%;
}
h1.logo img{
  display:block;
  width: 166px;
  margin: 30px auto;
}
.header_copy {
  width:100%;
  margin: 0 auto 0px;
  text-align: center;
  font-size: .8rem;
  font-weight: bold;
}
#global_nav {
  position: fixed;
  top: 13px;
  right: 15px;
  z-index: 999999;
}
#global_nav_checkbox {
  display: none;
}
#global_nav_icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  position: relative;
  cursor: pointer;
  z-index: 999999;
  font-size: .6rem;
  letter-spacing: 0;
}
#global_nav_icon span {
  background: #000000;
  border-radius: 2px;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8% 0 0 -42%;
  transition: all 0.3s ease-in-out;
}
#global_nav_icon span::before, #global_nav_icon span::after {
  -webkit-transform: rotate(0);
  background: #000000;
  border-radius: 6px;
  content: '';
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#global_nav_icon span::before {
  margin-top: -38%;
}
#global_nav_icon span::after {
  margin-top: 28%;
  content: 'menu';
}
#global_nav_checkbox:checked ~ #global_nav_icon {
  position: fixed;
  top: 13px;
  right: 15px;
  left: auto;
}
#global_nav_checkbox:checked ~ #global_nav_icon span {
  background: rgba(255, 255, 255, 0);
}
#global_nav_checkbox:checked ~ #global_nav_icon span::before, #global_nav_checkbox:checked ~ #global_nav_icon span::after {
  content: '';
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}
#global_nav_checkbox:checked ~ #global_nav_icon span::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#global_nav_checkbox:checked ~ #global_nav_icon span::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#global_nav_content {
  /*overflow: auto;*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: #FCF7F7;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  transform: translateX(-100%);
}
#global_nav_checkbox:checked ~ #global_nav_content {
  transform: translateX(0);
  opacity: 1;
}
#global_nav_close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#global_nav_checkbox:checked ~ #global_nav_close {
  display: block;
  opacity: 0.3;
}
.global_nav {
  width: 100%;
}
.global_nav_content {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}
ul.main_nav {
  width: 200px;
  height:60vh;
  margin:30px auto 0;
  display: flex;
  flex-flow: row wrap;
  align-items:center;
  justify-content: center
}
ul.main_nav li {
  flex-basis: 100%;
  padding: .2em 10%;
}
ul.main_nav li a {
  font-size:1.0rem;
  font-weight: bold;
}
ul.main_nav li a:hover{
  opacity:1;
}
ul.main_nav li#ac a{
  cursor:pointer;
}
ul.main_nav li#ac ul {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between
}
ul.main_nav li#ac ul li {}
.sns_nav {
  width: 60px;
  margin: 10px auto 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between
}

/* main_visual */

.index_main_visual{
  width:100%;
  height:70vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.index_main_visual img{
  display:block;
  width:80%;
  max-width:260px;
  height:auto;
}

.index_main_visual{
  width:100%;
  height:70vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.header_topics{
  width:100%;
  height:100vh;
}
.header_topics iframe{
  width:100%;
  height:90vh;
}
.header_topics_btn_scroll{
  width:150px;
}
.header_topics_btn_scroll a{
  background:url(../images/common/icon-scroll.svg) no-repeat left center;
  background-size:14px;
  display:block;
  line-height:1.0;
  margin-left:5%;
  padding-top:5px;
  padding-left:20px;
  font-weight:bold;
  font-size:.75rem
}

.index_main_visual_img{
	width:100%;
	height:60vh;
	position:relative;
	overflow:hidden;
	}
	.index_main_visual_img_logo{
		width:100%;
		height:100%;
		display:flex;
		align-items:center;
		justify-content:center;
		position:absolute;
		top:0;
		left:0;
		z-index:1;
		filter: invert(100%) grayscale(100%) contrast(100);
	}
	.index_main_visual_img_logo img{
		width:90%;
		max-width:200px;
		display:block;


	}
	.index_main_visual_img_bg{
		width:100%;
		height:60vh;
		object-fit:cover;
		object-position: center center;
		position:absolute;
		top:0;
		left:0;
		z-index:0;
	}
	.index_main_visual_content{
		width:90%;
		max-width:960px;
		margin:20px auto;
		display:flex;
		flex-flow:row wrap;
		align-items:flex-start;
		justify-content: space-between;
	}
	.index_main_visual_title{
    margin:0 0 10px 0;
		flex-basis:100%;
		font-size:1.0rem;
		font-weight:bold;
	}
	.index_main_visual_text{
    margin:0 0 10px 0;
		flex-basis:100%;
		font-size:.8rem;
	}
  .section_link.index_main_visual_link{
   max-width:960px;
  }
  .section_link.index_main_visual_link a{
    width:175px;
  }


.prev_top {
  width: 90px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 10000000
}
.prev_top a {
  width: 90px;
  padding: 75px 0 0 0;
  display: block;
  position: relative;
  font-weight: bold;
  text-align: center;
}
.prev_top a::before {
  content: '';
  width: 15px;
  height: 70px;
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
  background: url(../images/common/icon-arrow_top.svg) no-repeat center top;
  background-size: 15px;
}
section {
  width: 100%;
  margin: 3em 0;
}
section h2 {
  font-size: 30px;
  font-weight: normal;
}
.bl-container {
  width: 100%;
}
.bl-flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.contact p {
  text-align: center;
  margin: 5px 0
}
.about {
  position: relative;
  /*height:1600px;*/
}
section.about {
  margin:0 auto 3em auto;
}
.about iframe {
  width: 100%;
  height: 360px;
}
.about .inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}

.about_head_ttl {
  margin: 0 0 10px;
  line-height: 1.0;
}
.about_head_text {
  margin: 0 0 40px;
  letter-spacing: 0rem;
}
.about .bl-col {
  flex-basis: 100%;
}
.about_images img {
  width: 100%;
}
.about_contents {}
.about_contents_name {
  margin: 10px 0 10px 0;
  font-size: 1.2rem;
  line-height: 1.0;
}
.about_contents_address {
  margin: 0 0 15px;
  font-size: .95rem;
  letter-spacing: 0rem;
}
.about_contents_btn {
  width: 100%;
  margin: 0 0 20px;
}
.about_contents_btn a {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1px solid #333;
  background-color: #fff !important;
  padding: 1rem 0rem 1rem 0;
  text-align: center;
  box-sizing: border-box;
  font-weight: bold;
}
.about_contents_btn a::before {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  padding: 0 3px 0 0;
  content: url(../images/common/icon-contact.svg);
}
.about_indoorview {
  margin: 30px 0 0 0;
}
.about_indoorview_note {font-size: .95rem}

.company{margin:50px 0}
.company table {width: 100%;margin: 0 auto}
.company tr {border-bottom: 1px solid #666}
.company tr:last-child {border-bottom: none}
.company th {width: 90px;text-align: left;font-weight: normal}
.company th, .company td {padding: 8px;font-size: .95rem}

.event {}
.event_inner {
  width: 90%;
  max-width: 860px;
  height: 590px;
  margin: 50px auto;
  position: relative;
}
.event_ttl {
  position: relative;
  left: 0;
  top: 0;
}
.event_text {
  width: 100%;
  max-width: 530px;
  margin: 0 0 20px 0;
  position: relative;
  letter-spacing: 0rem;
}
.event_image {
  position: relative;
}
.event_link.section_link {
  width: 90%;
}
.event_link.section_link a {
  max-width: 175px;
}
.works {}
.works_header {
  width: 90%;
  max-width: 860px;
  margin: 30px auto;
}
.works_header_text {
  letter-spacing: 0;
}
.works_block {
  width: 100%;
}
.works_block {
  width: 100%;
  position: relative;
}
.works_block::before {
  display: block;
  content: '';
  width: 60%;
  border-top: 2px solid #333;
  height: 2px;
  position: absolute;
  top: 0;
}
.works_block:nth-child(odd)::before {
  left: 0;
}
.works_block:nth-child(even)::before {
  right: 0;
}
.works_block_inner {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 0;
}
/* index-furniture */
.works_furniture_container {
  width: 100%;
  height: 720px;
  margin: 0 auto 30px;
  position: relative;
}
.works_furniture_ttl {
  width: 100%;
  max-width: 400px;
  position: relative;
  font-size: 28px;
}
.works_furniture_text {
  width: 100%;
  max-width: 400px;
  margin: 0 0 20px 0;
  position: relative;
  font-size: 14px;
}
.works_furniture_copy {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-weight: bold;
}
.works_furniture_image {}
.works_furniture_image img {
  display: block;
  position: absolute;
}
.works_furniture_image_l1 {
  width: 90%;
  height: auto;
  left: 0;
  top: 20px;
}
.works_furniture_image_r1 {
  width: 100%;
  height: auto;
  left: 0;
  top: 490px;
}
.works_furniture_image_r2 {
  width: 60%;
  height: auto;
  right: 0;
  top: 740px;
}
.section_link {
  width: 100%;
  max-width: 860px;
  height: 35px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.section_link a {
  display: block;
  width: 90%;
  height: 30px;
  font-weight: bold;
  background: url(../images/common/icon-arrow_left.svg) no-repeat right bottom;
  background-size: 120px;
  font-size:.8rem;
}
.works_furniture_link.section_link {
  margin: 30px 0 0 0;
}
.works_furniture_link.section_link a {
  max-width: 190px;
}
.works_furniture_brandlist {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}
.works_furniture_brandlist_ttl {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
  padding: 0 0 5px;
  border-bottom: 2px solid #000000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.works_furniture_brandlist div {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
.works_furniture_brandlist div a {
  width: 60%;
  display: block;
  margin: 2em auto;
}
.works_furniture_brandlist div a img {
  width: 100%;
  max-width: 100%;
}
/* index-kitchen */
.works_kitchen_container {
  width: 100%;
  height: 550px;
  margin: 0 auto;
  position: relative;
}
.works_kitchen_ttl {
  width: 100%;
  max-width: 400px;
  position: relative;
  font-size: 28px;
}
.works_kitchen_text {
  width: 100%;
  max-width: 400px;
  margin: 0 0 20px 0;
  position: relative;
  font-size: 14px;
}
.works_kitchen_copy {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-weight: bold;
}
.works_kitchen_image img {
  display: block;
  position: absolute;
}
.works_kitchen_link.section_link {
  margin: 40px 0 0 0;
}
.works_kitchen_link.section_link a {
  max-width: 215px;
}
/* index-reform */
.works_reform_container {
  width: 100%;
  height: 780px;
  margin: 0 auto;
  position: relative;
}
.works_reform_ttl {
  width: 100%;
  position: relative;
  right: 0;
  top: 0px;
  font-size: 28px;
}
.works_reform_text {
  width: 100%;
  position: relative;
  margin: 0 0 20px 0;
  left: 0px;
  top: 0px;
  font-size: 14px;
}
.works_reform_copy {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-weight: bold;
}
.works_reform_link.section_link {
  margin: 30px 0 0 0;
}
.works_reform_link.section_link a {
  max-width: 235px;
}
/* index-coordinate */
.works_coordinate_container {
  width: 100%;
  height: 640px;
  margin: 0 auto;
  position: relative;
}
.works_coordinate_ttl {
  width: 100%;
  max-width: 400px;
  position: relative;
  left: 0px;
  top: 0px;
  font-size: 28px;
}
.works_coordinate_text {
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: 0 0 20px 0;
  left: 0px;
  top: 0px;
  font-size: 14px;
}
.works_coordinate_copy {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-weight: bold;
}
.works_coordinate_order {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.works_coordinate_order h4 {
  font-weight: bold;
  margin: 40px 0 20px;
  font-size: 1.2rem;
}
.works_coordinate_order h5 {
  font-weight: bold;
  margin: 0 0 5px;
}
.works_coordinate_order p {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 10px 0;
}
.works_coordinate_order div, .works_coordinate_order figure {
  width: 100%;
}
.works_coordinate_order figure img {
  width: 100%;
}
.works_coordinate_link.section_link {
  margin: 50px auto 0;
}
.works_coordinate_link.section_link a {
  max-width: 260px;
}

@media screen and (min-width:768px) and (max-width:1280px) {
.wrapper::after{
  width:96%;
  height:1800px;
  }
}
@media (min-width:1281px) {
  .wrapper::after{
    width:96%;
    height:1800px;
  }
}

@media (min-width:769px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .container{
    display:flex;
    flex:0 1 auto;
  }
  main{
    width:80%;
  }
  section {
    width: 100%;
    margin: 5em 0;
  }
  header {
    position:sticky;
    top:0;
    left:10px;
    z-index:10000000;
    width:250px;
    height:0;
    background-color:transparent;
    display: block;
    padding-top:0;
  }
  h1.logo {
    margin: 0 auto 10px;
    padding-top:50px;
  }
  #global_nav {
    position:relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 50px;
  }
  #global_nav_checkbox {
    display: none;
  }
  #global_nav_icon {
    display: none;
  }
  #global_nav_icon span {}
  #global_nav_icon span::before, #global_nav_icon span::after {
    -webkit-transform: none;
    transform: none;
    transition: none;
  }
  #global_nav_checkbox:checked ~ #global_nav_icon span::before {
    -webkit-transform: none;
    transform: none;
  }
  #global_nav_checkbox:checked ~ #global_nav_icon span::after {
    -webkit-transform: none;
    transform: none;
  }
  #global_nav_content {
    /*display: flex;*/
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: 50px;
    background: transparent;
    transition: none;
    transform: none;
    opacity: 1 !important;
  }
  #global_nav_checkbox:checked ~ #global_nav_content {
    transform: none;
  }
  #global_nav_close {
    transition: none;
  }
  #global_nav_checkbox:checked ~ #global_nav_close {
    display: none;
    opacity: 0;
  }
  .global_nav_content {
    width: 100%;
  }
  ul.main_nav {
    width:90%;
    margin:40px auto;
    height:auto;
    justify-content:space-between
  }
  ul.main_nav li {
    flex-basis:100%;
    /*padding: 0 0;*/
    text-align:center;
  }
  ul.main_nav li a {
    display:block;
    text-align:left;
  }
  ul.main_nav li a::after {
    content:'';
    display:block;
    height:2px;
    padding:0 10px;
    /*border-top:2px solid #333;*/
    box-sizing:border-box;
  }
  ul.main_nav li a:hover::after {
    /*border-top:2px solid #333;*/
  }
  ul.main_nav li#ac a.icon {
    /*background:url(../images/common/icon-arrow.svg) no-repeat right center;
    background-size:16px 18px;

    padding-right:20px;*/
  }
  ul.main_nav li#ac {
    position: relative;
  }
  ul.main_nav li#ac div{
    /*position: absolute;
    width: 100%;
    max-width:600px;
    top: 40px;*/
  }
  ul.main_nav li#ac ul {
    position:relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between
  }
  ul.main_nav li#ac ul li {

  }
  ul.main_nav li#ac ul li a{
    /*font-weight:normal;
    font-size:.9rem;*/
  }

  .sns_nav {
    width: 70px;
    margin: 0 35px 0;
    position:relative;
  }
  .sns_nav a {
    width: 48%;
  }
  
  .index_main_visual_img{
    height:80vh;
    }
    .index_main_visual_img_bg{
      height:80vh;
    }

	.index_main_visual_title{
    margin:0 0 0 0;
		flex-basis:35%;
	}
	.index_main_visual_text{
    margin:0 0 0 0;
		flex-basis:60%;
	}






  .about {
    /*height: 1300px;*/
  }
  section.about {
    margin:0 auto 5em auto;
  }
  .about iframe {
    height: 535px;
  }
  .about .inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
  }
  .about .bl-col {
    flex-basis: 48%;
  }
  .about_contents_btn {
    margin: 0 0;
  }
  .event {
    padding: 50px 0 0 0;
  }
  .event_image {
    position: absolute;
    top: 0;
  }
  .works_header {
    width: 90%;
    max-width: 860px;
    margin: 5em auto;
  }
  .works_furniture_container {
    height: 800px;
  }
  .works_furniture_ttl {
    width: 100%;
    max-width: 400px;
    position: absolute;
    left: 500px;
    top: 0px;
    font-size: 28px;
  }
  .works_furniture_text {
    width: 100%;
    max-width: 400px;
    position: absolute;
    left: 500px;
    top: 60px;
    font-size: 14px;
  }
  .works_furniture_copy {
    position: absolute;
    left: 0px;
    top: 650px;
  }
  .works_furniture_image {
    position: absolute;
    width: 100%;
    max-width: 919px;
    top: 10px;
  }
  .works_furniture_brandlist div a {
    width: 18%;
  }
  /* index-kitchen */
  .works_kitchen_container {
    width: 100%;
    height: 650px;
    margin: 5em auto;
    position: relative;
  }
  .works_kitchen_ttl {
    width: 100%;
    max-width: 400px;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 28px;
  }
  .works_kitchen_text {
    width: 100%;
    max-width: 400px;
    position: absolute;
    left: 0px;
    top: 60px;
    font-size: 14px;
  }
  .works_kitchen_copy {
    position: absolute;
    left: auto;
    right: -20px;
    bottom: 105px;
  }
  .works_kitchen_image {
    position: absolute;
    top: 10px;
    left: 80px;
    width: 100%;
    max-width: 848px;
  }

  /* index-reform */
  .works_reform_container {
    width: 100%;
    height: 800px;
    margin: 5em auto;
    position: relative;
  }
  .works_reform_ttl {
    width: 100%;
    max-width: 330px;
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 28px;
  }
  .works_reform_text {
    width: 100%;
    max-width: 330px;
    position: absolute;
    right: 0px;
    left: auto;
    top: 50px;
    font-size: 14px;
  }
  .works_reform_copy {
    position: absolute;
    left: 0px;
    top: 640px;
    font-weight: bold;
  }
  .works_reform_image {
    position: absolute;
    max-width: 966px;
  }

  /* index-coordinate */
  .works_coordinate_container {
    height: 720px;
    margin: 5em auto 0;
  }
  .works_coordinate_ttl {
    width: 100%;
    max-width: 400px;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 28px;
  }
  .works_coordinate_text {
    width: 100%;
    max-width: 400px;
    position: absolute;
    left: 0px;
    top: 60px;
    font-size: 14px;
  }
  .works_coordinate_copy {
    position: absolute;
    left: 450px;
    bottom: 190px;
    font-weight: bold;
  }
  .works_coordinate_image {
    position: absolute;
    top: 10px;
  }
  .works_coordinate_order {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin: 20px 0 0 0;
  }
  .works_coordinate_order h4 {
    font-weight: bold;
    margin: 0 0 20px;
  }
  .works_coordinate_order h5 {
    font-weight: bold;
    margin: 0 0 10px;
  }
  .works_coordinate_order p {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    justify-content: space-between;
  }
  .works_coordinate_order div, .works_coordinate_order figure {
    width: 48%;
  }
  .works_coordinate_link.section_link {
    margin: 50px 0 0;
  }

}