@charset "utf-8";
/* CSS Document */

/***************************
 ** ハンバーガーメニューアイコン
 */
.openbtn1 {
    display: inline-block;
    position: absolute;
    left: 5px;
    top: 0;
    z-index: 2;
    background: none;
    cursor: pointer;
    width: 58px;
    height: 58px;
}

.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 2px;
    border-radius: 2px;
    background: #000;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:27px;
}

.openbtn1 span:nth-of-type(3) {
  top:39px;
}

.openbtn1.menu_active span:nth-of-type(1) {
  top: 20px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
}

.openbtn1.menu_active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.menu_active span:nth-of-type(3){
  top: 32px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
}

@media screen and (max-width: 767px) {
.openbtn1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.75);
}
}


/***************************
 ** グローバルナビ　PC・SP共通
 */
.global-nav {
  margin: 0;
  position: relative;
  text-align: left;
}

.global-nav * {
  box-sizing: border-box;
}

.global-nav .acMenu li a {
  display: block;
  text-decoration: none;
}

/* フォームの初期スタイルリセット */
.gnav_search_box input, 
.gnav_search_box button, 
.gnav_search_box textarea, 
.gnav_search_box select { 
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* テキストボックス、テキストエリア、セレクトボックス */
.gnav_search_box input[type="text"],
.gnav_search_box textarea,
.gnav_search_box select { 
  outline: none;
  line-height: 2;
  padding: 0.5em;
  border: 1px solid #d9d8d0;
  -webkit-transition: all .3s;
  transition: all .3s;
  background: #fff;
}

.gnav_search_box input[type="text"]:focus,
.gnav_search_box textarea:focus,
.gnav_search_box select:focus {
  box-shadow: 0 0 7px #87c3c1;
  border: 1px solid #003d44;
}

.gnav_search_box input.input_key {
	width: 100%;
}

.gnav_search_box input.input_price {
    width: 40%;
}
.gnav_search_box .sort_order_radio label {
    position: relative;
    padding-left: 20px;
    margin-right: 1.5rem;
    line-height: 2;
}

.gnav_search_box .sort_order_radio label:before {
    content: "";
    background: #fff;
    border-radius: 100%;
    border: 1px solid #d9d8d0;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    transition: all 0.3s ease;
}

.gnav_search_box .sort_order_radio label input[type=radio]:checked:after {
    content: "";
    background-color: #003d44;
    border-radius: 100%;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 6px;
    margin-top: -4px;
}

.gnav_search_box .sort_order_radio label span {
  display: inline-block;
  margin-left: 2em;
  font-size: 0.875rem;
}

.gnav_search_btn_area {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.gnav_search_btn_area .fs-c-button--secondary {
    background: #ffffff;
    border: 1px solid #003d44;
    border-radius: 4px;
    color: #003d44;
    cursor: pointer;
    display: inline-block;
    line-height: 2;
    text-decoration: none;
    text-align: center;
    min-width: 240px;
    max-width: 400px;
    margin: 0 auto;
}

.gnav_search_btn_area .fs-c-button--secondary::before {
    font-family: 'fs-icon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e932";
    font-size: 1.8rem;
    margin: auto;
    position: relative;
    top: 0.3rem;
    bottom: 0;

	text-align: center;
    width: 1em;
    height: 1em;
}

.gnav_search_btn_area .fs-c-button--secondary:hover, .gnav_search_btn_area .fs-c-button--secondary:visited, .gnav_search_btn_area .fs-c-button--secondary:active {
    color: #003d44;
    text-decoration: none;
}
.gnav_search_btn_area .fs-c-button--secondary:hover {
    opacity: 0.8;
}
/***************************
 ** グローバルナビ　PC用仕様
 */
@media screen and (min-width: 768px) {
  .global-nav {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    background: #155159;
  }
  
  /* アコーディオンメニュー全体のボックス */
  .acMenu { 
    max-width: 1040px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
  }
  
  /*メニューが横並びになるように*/
  .global_nav_list { 
    display: flex;
  }
  
  /* 第一カテゴリ名 */
.acMenu .global_nav_list > li > a.first_category {
    color: #fff;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 0.75rem;
    cursor: pointer;
    position: relative;
    font-size: 0.875rem;
}
  
  /* 第一カテゴリ名の仕切り線 */
  .acMenu .global_nav_list > li:not(:last-child) a.first_category::before { 
    content: "|";
    display: inline-block;   
    position: absolute;
    right: -2px;
    top: 0;
  }
  
  /*サブメニューありの矢印*/
.acMenu .global_nav_list > li > a.first_category.has_sub::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 0.5rem;
    margin-top: -0.5rem;
}
	
  /* ホバー時のボタンの背景を白く */
  .acMenu .global_nav_list > li:hover { 
    background: #fff;
  }
  
  .acMenu .global_nav_list > li:hover a.first_category {
    color: #003d44;
  }
  
  .acMenu .global_nav_list > li:not(:last-child):hover a.first_category::before {
    color: #fff;
  }
  
  .acMenu .global_nav_list > li:hover > a.first_category.has_sub::after {
    border-color: #003d44;
  }
  
  /* メニューコンテンツエリアを幅いっぱいに */
  .acMenu .global_nav_list > li > .menu_contents {
    left: 0;
    margin: 0 calc(50% - 50vw);
    opacity: 0;
    position: absolute;
    top: 50px;
    transition: all 0.2s ease;
    visibility: hidden;
    width: 100vw;
    background: rgba(255,255,255);
	  padding-top:30px;
    padding-bottom: 30px;
	  box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
  }
  .acMenu .global_nav_list > li:first-child > .menu_contents {
    padding-top: 0;
  }
  .acMenu .global_nav_list li ul li ul {
    /*display: flex;*/
    margin: 0 auto;
    width: 1000px;
  }

  /* ホバーでメニューが見えるように */
  .acMenu .global_nav_list > li:hover a + .menu_contents { 
    opacity: 1;
    visibility: visible;
  }
  
  /* コンテンツエリアの中身の幅 */
  .menu_contents ul { 
    max-width: 1040px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
  } 
  
  /*タブ切替パネルボタンエリア*/
  .tab_btn_area { 
    max-width: 1040px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto 2rem;
    display: -webkit-box;
    display: flex;
  }
  
  /*タブ切替パネルボタン*/
.tab_btn {
    box-sizing: border-box;
    width: 138px;
    margin: 0 4px;
    color: #000;
    text-align: center;
    cursor: pointer;
    border-bottom: 2px solid #d9d8d0;
    transition: all 0.2s ease 0s;
    padding-top: 30px;
}
  .tab_btn:hover,
  .tab_btn.active {
    border-bottom: 2px solid #003d44;
  }

  .tab_panel .second_category {
    display: none;
  }

  .tab_panel {
    display:none;
  }

  .tab_panel.active {
    display:block;
  }

  /* 「カーテンを探す」メニュー内コンテンツ */
  .curtain_item_list li:not(:last-child) { 
    margin-bottom: 1rem;
  }
  
  .third_category {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    border-bottom: 1px solid #000;
    margin-bottom: 0.5rem;
  }
	
  .thmb_list {
    display: flex;
    flex-wrap: wrap;
  }
  
  .thmb_list p {
    flex-basis: 9%;
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-right: 1%;
    margin-bottom: 1rem;
  }
  
  .thmb_list p a {
    color: #000;
    transition: 0.5s;
  }
  
  .thmb_list p a:hover img {
    opacity: 0.7;
  }
  
  .thmb_list p span {
    display: block;
  }
  
  /* PC版フォームレイアウト */
.gnav_search_box_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}
  
  .gnav_search_box_inner p {
    flex-basis: 48%;
	  max-width: 48%;
		  min-width: 48%;
    margin-bottom: 1rem;
  }

.gnav_search_box_inner p:nth-child(3), .gnav_search_box_inner p:nth-child(4), .gnav_search_box_inner p:nth-child(5) , .gnav_search_box_inner p:nth-child(6) {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
}
  .gnav_search_box_inner p > span {
    display: block;
    font-size: 0.8125rem;
  }
.gnav_search_box_inner .color_category > span.color_category_items {
    display: inline-block;
    font-size: 1rem;
    margin-right: 1.5rem;
}
  /* VENIRCについて */
  .gnav_btn_list { 
    display: flex;
    flex-wrap: wrap;
  }
  
  .gnav_btn_list li {
    flex-basis: 23.5%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .gnav_btn_list li:not(:nth-child(4n)) {
    margin-right: 2%;
  }
  
  .gnav_btn_list li a {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    box-sizing: border-box;
    padding: 0.8rem 0.5rem;
    background: #fff;
    border: 1px solid #003d44;
    transition: 0.5s;
  }
  
  .gnav_btn_list li a:hover {
    background: #cee1e3;
  }
  
  .gnav_btn_list li .long_text {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    font-size: 0.75rem;
  }
}


/***************************
 ** グローバルナビ　SP用仕様
 */
@media screen and (max-width: 767px) {
  /* PCだけに利用するタブ機能のボタンを消す */
  .tab_btn_area { 
    display: none;
  }

  .global-nav .acMenu {
    background: rgba(0, 0, 0, 0.8); /* 背景全体の色 */
    display: none;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%;
    font-size: 0.875rem;
  }
  
  .acMenu {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
  }
  
  /* メニューボタンのボックス */
  .global_nav_list { 
    background: #fff;
    margin-top: 50px;
  }

  /* 第一階層カテゴリ */
  .global-nav .acMenu li .first_category { 
    border-top: 1px solid #ccc;
    border-right: none;
    color: #000;
    padding: 1rem 0.5rem;
    text-align: left;
    position: relative;
  }
  
  /*第二回層カテゴリ */
  .second_category { 
    display: block; /* PCで消していたのを復活させる */
    background: #f5f5f5;
    font-size: 0.75rem;
    padding: 1rem 0.5rem;
    border-top: 1px solid #ccc;
    position: relative;
  }
  
  /* アコーディオンの矢印 */
  .global-nav .acMenu li .first_category.has_sub::after,
  .second_category::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    right: 0.8rem;
    top: 1.5rem;
  }
  
  .global-nav .acMenu li .first_category.has_sub.first_active::after,
  .second_category.second_active::after {
    transform: rotate(-135deg);
  }

  /*第三回層カテゴリ */
  .third_category { 
    display: block;
    font-size: 0.75rem;
    text-align: center;
    background: #ccc;
    padding: 0.5rem;
  }
  
  /*サムネ付きリストメニュー */
  .thmb_list { 
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
  }
  
  .thmb_list > p {
    flex-basis: 19.2%;
    font-size: 0.625rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  
  .thmb_list > p:not(:nth-child(5n)) {
    margin-right: 1%;
  }
  
  /* 条件で探すフォーム */
  .gnav_search_box_inner { 
    padding: 0.5rem;
  }
  
.gnav_search_box_inner > p {
    margin-bottom: 1rem;
}
  
  .gnav_search_box_inner > p > span {
    display: block;
  }
	
  .gnav_search_box_inner > p input {
    box-sizing: border-box;
  }
  
  .gnav_search_box_inner > p:first-child input {
    width: 100%;
    margin: 0;
  }
  
.gnav_search_box_inner > p:nth-child(2) input {
    width: 40%;
}
  
  .sort_order_radio label {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .gnav_search_box .sort_order_radio label span {
    font-size: 0.75rem;
    margin-left: 2.5em;
  }
  
  .gnav_search_btn_area {
    width: 100%;
    text-align: center;
    margin: 0 0 1rem;
  }
 .gnav_search_btn_area .fs-c-button--secondary{
    font-size: 1rem;
    line-height: 1.5;
}

.gnav_search_btn_area .fs-c-button--secondary::before {
    font-size: 1.5rem;
    width: 0.75rem;
    height: 0.75rem;
} 
  .gnav_search_btn_area input {
    padding: 0.5rem;
  }
  
  .gnav_btn_list li {
    background: #f5f5f5;
    font-size: 0.75rem;
    padding: 1rem 0.5rem;
    border-top: 1px solid #ccc;
  }
  
  /* ナビ全体*/
  .global-nav { 
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
  }
}

  /* カテゴリーで探す　に追加（221117）*/
.third_category_table4 {
    max-width: 96%;
    flex: 96%;
    margin: 1rem 2% 0;
}
.third_category_table2 {
    max-width: 48%;
    flex: 48%;
    margin: 1rem 2% 0;
}
.third_category_table1 {
    max-width: 24%;
    flex: 24%;
    margin: 1rem 2% 0;
}
.third_category_table2:last-of-type {
	margin-bottom: 1rem;
}
.third_category_table1, .third_category_table2, .third_category_table4 {
	font-size: 0.625rem;
}
.third_category_table1 th, .third_category_table2 th, .third_category_table4 th {
    text-align: center;
    font-size: 0.625rem;
    border-bottom: 1px solid #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #000;
}
.third_category_table1 td {
    width: 100%;
    padding: 0.5rem 4% 0;
}
.third_category_table2 td {
    width: 46%;
    padding: 0.5rem 2% 0;
}
.third_category_table4 td {
    width: 23%;
    padding: 0.5rem 1% 0;
}
.third_category_table1 img, .third_category_table2 img, .third_category_table4 img {
    display: block;
    margin-bottom: 0.2rem;
}
.third_category_table1 span,.third_category_table2 span, .third_category_table4 span {
    display: block;
    line-height: 1.2;
    color: #000; 
}

@media screen and (min-width: 768px) {
.third_category_table4 {
    max-width: 40%;
    flex: 40%;
    margin: 0;
}
.third_category_table2 {
    max-width: 20%;
    flex: 20%;
    margin: 0;
}
.third_category_table1 {
    max-width: 10%;
    flex: 10%;
	margin: 0;
}
.third_category_table1, .third_category_table2, .third_category_table4 {
	font-size: 0.8125rem;
}
.third_category_table1 th, .third_category_table2 th, .third_category_table4 th {
    font-size: 0.8125rem;
}
.third_category_table1 td {
    width: 92%;
    padding: 0.5rem 4% 0;
}
.third_category_table1:last-of-type {
	margin: 0;
}
}