@media (min-width: 1001px) {
  header {
    position: fixed; /* fixedヘッダーの固定absolute解除 */
  }
}
/*フォントテキスト*/
article.address ul {
  font-size: 14px;
  font-weight: 200;
}
.news-text {
  font-size: 14px;
}
/****************/
/*店舗紹介*/
/****************/
.bg-img-fs {
  background-image: url(../img/top/bg-img-fs.png);
  background-position: center;
  background-size: cover;
}
.flex-1 {
  display: flex;
  justify-content: space-between;
}
.flex-1 div {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}
.btn_alignment {
  margin-top: auto;
  text-align: center;
}
.flex-1 div:nth-child(1) {
  width: 35%;
}
.flex-1 div:nth-child(2) {
  width: 60%;
}
.text1 {
  text-align: left;
}
.inner.flex-1 img {
  width: 190px;
  margin-top: 100px;
}
@media screen and (min-width: 1001px) {
	.introduction-tx {
		text-align: left;
	}
	.tex-center {
		text-align: center;
	}
}
@media (max-width: 1000px) {
  .bg-img-fs {
    background-image: url(../img/top/bg-img-fs-sp.png);
  }
  .flex-1 {
    flex-direction: column-reverse;
  }
  .flex-1 div {
    padding: 30px 20px;
  }
  .flex-1 div:nth-child(1) {
    width: 100%;
	gap: 20px;
  }
  .flex-1 div:nth-child(2) {
    margin-bottom: 10px;
    width: 100%;
  }
  .flex-1 .mt-60 {
    margin-top: 0;
  }
  .inner.flex-1 img {
    margin-top: 0;
  }
  p.stor_fs {
    margin-top: 0;
  }
}
/****************/
/*カーテン*/
/****************/
.curtain {
  background-color: #EBEEF2;
  padding: 50px 0;
}
.curtain img {
  padding: 30px 20px;
}
.curtain h1.heading {
  padding-bottom: 10px;
}
h4.curtain__order {
    margin: 0;
}
@media (max-width: 1000px) {
  .curtain img {
    padding: 20px 10px;
  }
}
/****************/
/*works*/
/****************/
.works {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 110px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.works article div {
  text-align: left;
}
.bg-1 {
  background-color: #F2EDEB;
}
.btn_works {
  background-color: #C79D79;
  margin-top: 20px;
  text-align: center;
}
.works span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 700px) {
  /*.works {
    grid-template-columns: 1fr;
    gap: 70px;
    width: 80%;
    margin: 0 auto;
  }*/
}
/****************/
/*CONCEPT*/
/****************/
#concept .txt {
  background: #EBEEF2;
  padding: 50px 70px 40px;
  text-align: left;
}
#concept .txt h1 {
  font-size: 22px;
  margin-bottom: 20px;
}
#concept .txt a {
  margin-right: 0;
  margin-top: 20px;
}
@media screen and (min-width: 1001px) {
  #concept .wrap {
    position: relative;
    display: flex;
  }
  #concept img {
    z-index: 2;
    width: 47%;
  }
  #concept .txt {
    width: 56%;
    position: absolute;
    bottom: -50px;
    right: 0;
  }
}
@media screen and (max-width: 1000px) {
  #concept .txt {
    padding: 40px 34px 26px;
  }
  #concept .txt h1 {
    font-size: 18px;
  }
}
/****************/
/*CUSTOMER’S VOICE*/
/****************/
.voice-svg-top {
  margin-bottom: -10px;
}
#voice .inner {
	padding: 0;
}
#voice {
  background-color: #FAF3E5;
  font-family: "Zen Maru Gothic", serif;
}
#voice p.txt-top {
  position: relative;
  font-size: 24px;
  width: 500px;
  background-color: #fff;
  border-radius: 15px;
  padding: 14px 0;
  margin-bottom: 30px;
}
#voice p.txt-top img {
  position: absolute;
  bottom: -60px;
  right: -100px;
}
#voice ul {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}
#voice ul li {
  width: calc((100% - 30px * 2) / 3);
  display: flex;
  flex-flow: column;
}
#voice ul li span.transparent {
  position: relative;  /* 基準位置とする */
}
#voice ul li span.transparent::before {
  content: "";         /* 疑似要素に必須 */
  width: 100%;         /* 幅いっぱい */
  height: 100%;        /* 高さいっぱい */
  display: block;      /* 高さを指定するためにブロック要素にする */
  background: linear-gradient(rgba(255,255,255,0) 0, #fff8f8 80%); /* 徐々に透明にする */
  position: absolute;  /*  */
  top: 0;
  left: 0;
}
#voice ul li p {
	background-color: #fff8f8;
	padding: 30px 30px 40px;
	text-align: left;
	height: 100%;
}
#voice p.txt-bottom {
    background-color: #fff;
    color: #4e4d4d;
    width: 520px;
    border-radius: 46px;
    padding: 20px 30px;
    text-align: left;
    position: relative;
    font-size: 18px;
	margin: 0 auto;
    margin-right: 0;
}
#voice p.txt-bottom a.btn.btn_alignment{
	position: absolute;
	top: 10px;
	right: 30px;
	width: 150px;
	padding: 5px;
}
#voice p.txt-bottom br.pc-no{
	display: none;
}
@media screen and (max-width: 1000px) {
	#voice .inner {
	    padding: 50px 0;
    }
	#voice p.txt-top {
		font-size: 18px;
		width: 310px;
        margin: 0 auto 30px;
        margin-right: 0;
	}
	#voice p.txt-top img {
        bottom: 0;
        right: 170px;
        width: 70%;
   }
   #voice ul {
	    flex-wrap: wrap;
	    gap: 10px;
   }
   #voice ul li {
        width: calc((100% - 10px) / 2);
   }
   #voice p.txt-bottom {
        margin: 0 auto;
   }
}
@media screen and (max-width: 599px) {
	#voice ul {
        flex-flow: column;
		gap: 50px;
   }
	#voice ul li {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
  }
	#voice p.txt-bottom {
		width: 100%;
        text-align: center;
        padding: 10px;
   }
    #voice p.txt-bottom a.btn.btn_alignment {
        margin-top: 10px;
        position: initial;
  }
  #voice p.txt-bottom br.pc-no{
	display: block;
  }
}
/****************/
/*ニュース*/
/****************/
.flex-4 {
  display: flex;
  justify-content: space-between;
}
.flex-4 article {
  width: 50%;
}
.news-title {
  float: left;
  margin: 0;
  font-size: 18px;
  width: 25%;
  text-align: right;
  padding-right: 10px;
}
.news-text {
  float: left;
  border-left: solid 1px;
  padding-left: 10px;
  width: 75%;
}
.news-text li {
  text-align: left;
  margin-bottom: 50px;
}
.news-text li:first-of-type {
  margin-top: 0;
}
.news-text li:last-of-type {
  margin-bottom: 0;
}
.news-text li:hover {
  opacity: 0.5;
}
ul.news-text span, ul.news-text li {
  float: left;
}
ul.news-text span {
  width: 25%;
}
ul.news-text li {
  width: 75%;
}
/*ul.news-text span::after,ul.news-text li::after {
  content: "";
  display: block;
  clear: both;
}*/
@media (max-width: 1000px) {
  .news-title {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
  }
  .news-text {
    border-left: none;
    width: 100% !important;
    padding: 0;
  }
  .news-text li {
    border-bottom: solid 1px;
    padding-bottom: 10px;
  }
  ul.news-text span {
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
  }
  ul.news-text li {
    width: 100%;
  }
}
/****************/
/*インスタ*/
/****************/
.sns {
  padding: 10px 100px;
}
@media (max-width: 480px) {
  .sns {
    padding: 0;
  }
}
/****************/
/*商品*/
/****************/
.grid_products {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid_products article {
  background-color: #EBEEF2;
  padding: 10px;
}
.grid_products article h4 {
  margin: 0;
  font-size: 14px;
}
.product_name {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px;
  margin: 10px 0;
}
.product_name h4 {
  padding-bottom: 10px;
}
.product_name .text-size {
	font-size: 10px;
}
.ptb_10 {
  padding: 15px 0;
}
.grid_products img:hover {
  opacity: 0.5;
}
@media (min-width: 1251px) {
	#products h1.heading {
    text-align: left;
    width: 280px;
    border-right: solid 1px #707070;
    padding: 15px 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .grid_products {
    grid-template-columns: 1fr 1fr;
  }
}
/****************/
/*店舗情報*/
/****************/
.flex-5 {
  font-family: 'Sawarabi Mincho', Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
}
.flex-5 .store_img {
  width: 60%;
}
.flex-5 .address {
  width: 40%;
}
.store_img img {
  width: 80%;
}
article.address ul {
  width: 65%;
  margin: 0 auto;
}
.address li {
  text-align: left;
  margin: 40px 0;
}
.btn-store {
  width: 300px;
}
@media (max-width: 1000px) {
  .flex-5 .store_img {
    width: 100%;
  }
  .flex-5 .address {
    width: 100%;
  }
  .store_img img {
    width: 100%;
  }
  .address {
    margin-top: 20px;
  }
  article.address img {
    width: 180px;
  }
  article.address ul {
    width: 85%;
  }
  .address li {
    margin: 30px 0;
  }
	#company_access iframe{
		height: 400px;
	}
}
/****************/
/****************/
/*flexスマホ*/
@media (max-width: 1199px) {
  .flex-2, .flex-3, .flex-4, .flex-5 {
    display: block;
  }
  .flex-2 article, .flex-3 article, .flex-4 article, .flex-5 article {
    width: 100%;
  }
}
/****************/
/****************/
/* 202205もっと見る */
.flex_works {
  display: flex;
  flex-wrap: wrap;
  gap: 0 80px;
}
.flex_works li {
  width: calc((100% - 80px * 2) / 3);
}
.flex_works li span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
.flex_works_tx_left {
  text-align: left;
}
a.btn.btn_works.btn_load {
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .flex_works li {
    width: calc((100% - 80px) / 2);
  }
}
@media screen and (max-width: 700px) {
  .flex_works {
    flex-flow: column;
    gap: 0;
  }
  .flex_works li {
    width: 100%;
  }
}
ul.catList {
  border: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.catList li {
  padding: 0;
  margin: 0;
}
ul.catList li a {
  display: block;
  text-decoration: none;
}
ul.catList li:last-child a {
  border: none;
}
ul.catList li a p {
  font-size: 0.95rem;
  font-family: Helvetica;
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 1.3;
}
.catTop {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  margin-bottom: 5px;
}
p.catDate {
  color: #aaa;
}
ul.catList li a p.catTitle {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  color: #313131;
}
ul.catList li a:hover {
  background: #fafafa;
}
ul.catList li a p.catName {
  margin-left: 10px;
  background: #fafafa;
  color: #707070;
  font-size: 0.8rem;
  padding: 2px 12px;
  border-radius: 9999px;
  vertical-align: 1px;
  display: inline-block;
}
/* もっと見るのボタン */
/*.catListInnerBlock .more {
    text-align: center;
    padding-top: 15px;
    cursor: pointer;
    position: relative;
    padding-bottom: 15px;
	font-family: 'Sawarabi Mincho', Helvetica, Arial, sans-serif;
}
.catListInnerBlock .more:hover {
    background: #fafafa;
}
.more button {
    position: relative;
    border: none;
    background: none;
	color: #505050;
}
.more button:after {
    color: #406B8E;
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1em;
    content: "\f055";
    padding-left: 10px;
}*/
/* もっと見るの非表示 */
.catList li.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}
.child_box {
  display: flex;
  justify-content: space-between;
  flex-direction: column; /* 子要素を縦並べ */
}
.child_box_1 {
  flex-grow: 1;
}
.child_box_2 {}