@charset "utf-8";
/*
 common
============================================*/
html{overflow:auto;}
body{
  position:relative;
  min-width:1024px;
  overflow-x:hidden;
}
a:hover{
  text-decoration: none;
}
.all_contents{
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  color: #333;
}
@media screen and (min-width:1024px) {
  .all_contents {
    min-width: 1024px;
    max-width: none;
    width: 100%;
    padding: 0;
  }
}
.main_section{
  position: relative;
}
.main_section:nth-of-type(odd){
  background-color: #e9f7fc;
}
.main_section:nth-of-type(even){
  background-color: #ffffff;
}
.main_section_inner{
  width: 960px;
  margin: 0 auto;
  padding: 76px 0 80px;
}

/*
 kanban
============================================*/
.kanban_text{
  position: static;
  width: 100%;
  margin: 0;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #458fae;
  text-align: center;
  line-height: 1.4;
}

/*
 title
============================================*/
.main_title{
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 24px;
  font-size: 36px;
  color: #075372;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.main_title::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 66px;
  height: 3px;
  border-radius: 1px;
  margin: 0 auto;
  background-color: #458fae;
}
/*
 mainNavi
============================================*/
.mainNavi_container{
  border-bottom: none!important;
}
.mainNavi_navi{
  height: 64px;
}
.mainNavi_navi .mainNavi_anchor{
  width: calc(960px/6);
  font-size: 16px;
  color: #458fae;
  font-weight: normal;
  border: none;
  line-height: 1.3;
}
.mainNavi_navi .mainNavi_anchor::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: #458fae;
  display: block;
  z-index: 1;
}
.mainNavi_navi .mainNavi_anchor:last-of-type::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: #458fae;
  display: block;
  z-index: 1;
}
.mainNavi_navi .mainNavi_anchor[data-in-viewport=true]{
  background-color: #458fae;
  border: none;
  color: #fff;
  font-weight: bold;
}
.mainNavi_navi .mainNavi_anchor:hover{
  background-color: #458fae;
  color: #fff;
  font-weight: bold;
}
.mainNavi_navi .mainNavi_anchor[data-in-viewport=true]::before,
.mainNavi_navi .mainNavi_anchor:hover::before{
  background-color: #fff;
}

/*
 index
============================================*/
.index{
  width: 960px;
  margin: 48px auto 80px;
}
.index_title{
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
  color: #075372;
  font-size: 32px;
}
.index_list{
  border-top: 2px solid #54666d;
  border-bottom: 2px solid #54666d;
}
.index_list li{
  border-bottom: 1px solid #7d7d7d;
  box-sizing: border-box;
}
.index_list li:nth-child(3n+1):nth-last-child(-n+3),
.index_list li:nth-child(3n+1):nth-last-child(-n+3) ~ li{
  border-bottom: none;
}
.index_list li a{
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 20px;
  color: #333;
  box-sizing: border-box;
}
.index_list li a i{
  margin-left: auto;
  font-weight: bold;
  color: #458fae;
}
.index_list li a:hover > span{
  text-decoration: underline;
}
/*
 btn
============================================*/
.default_btn>a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 0;
  width: 360px;
  height: 72px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: bold;
  color: #fff!important;
  background-color: #075372;
  text-align: center;
}
.default_btn > a i{
  display: inline-block;
  font-size: 16px;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
}
.default_btn>a:hover{
  opacity: .8;
}

/*
 alcor
============================================*/
.searchAlcor_wrap{
  margin: 0 16px;
}
.searchAlcor_item{
  padding: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.ranking_note{
  margin: 48px 30px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.ranking_note > li{
  text-indent: -1em;
  padding-left: 1em;
}

/*
 model
============================================*/
.model_con + .model_con{
  margin-top: 72px;
}
.model_title{
  margin-bottom: 32px;
  color: #075372;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.model_select_link{
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  font-size: 18px;
  padding: 10px 12px 10px 20px;
  border: 1px solid #333!important;
  border-radius: 5px;
  background-color: #fff;
}
.model_select_link:hover{
  opacity: .8;
  text-decoration: none!important;
}
.model_select_icon{
  margin-left: auto;
  margin-right: 0;
  font-weight: bold;
  color: #458fae;
}

/*
 search
============================================*/
 /* selectSearch01 */
.selectSearch01 .rc-searchForm__selectContainer{
  position: relative;
}
.selectSearch01 .rc-searchForm__select,
.selectSearch01 .rc-searchForm__textInput{
  width: 100%;
  height: 56px;
  background-color: #fff;
  text-align: left;
  cursor: pointer;
  border: 1px solid #4f4f4f;
  font-size: 18px;
  color: #333;
  padding: 0 24px;
  border-radius: 5px;
  appearance: none;
  outline: none;
}
.selectSearch01 .rc-searchForm__selectContainer::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #075372 transparent transparent transparent;
  padding: 0;
  pointer-events: none;
}
.selectSearch01 .rc-searchForm__textInput{
  box-sizing: border-box;
  border-radius: 5px;
  text-indent: 0;
}
.selectSearch01 .sggstInputWrap input::placeholder{
  color: #7f7f7f;
}
.selectSearch01 .searchInner{
  width: 670px;
  margin: 0 auto;
}
.selectSearch01 .searchInner__ttl{
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin: 52px 0 24px;
}
.selectSearch01 .formWrap input[type="checkbox"] {
  display: none;
}
.selectSearch01 .inputWrap{
  display: flex;
  flex-wrap: wrap;
}
.selectSearch01 .formWrap .inputWrap > li.checked_disNone {
  display: none;
}
.selectSearch01 .formWrap .inputWrap label{
  cursor: pointer;
  position: relative;
}
.selectSearch01 .formWrap .inputWrap label:hover{
  opacity: .8;
}
.selectSearch01 .formWrap .inputWrap{
  display: flex;
  flex-wrap: wrap;
}
.selectSearch01 .formWrap .inputWrap._type_area{
  margin-bottom: -30px;
}
.selectSearch01 .formWrap .inputWrap._type_area > li{
  width: 33.33%;
  margin-bottom: 30px;
}
.selectSearch01 .formWrap .inputWrap._type_area label{
  padding-left: 40px;
  font-size: 20px;
}
.selectSearch01 .formWrap .inputWrap._type_area label::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto 0;
  background-color: #fff;
  border: 1px solid #333;
}
/*.selectSearch01 .formWrap .inputWrap._type_area input:hover + label::after{
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 3px;
  width: 20px;
  height: 12px;
  border-right: 3px solid #ccc;
  border-top: 3px solid #ccc;
  transform: rotate(135deg);
  z-index: 1;
}*/
.selectSearch01 .formWrap .inputWrap._type_area input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 3px;
  width: 20px;
  height: 12px;
  border-right: 3px solid #075372!important;
  border-top: 3px solid #075372!important;
  transform: rotate(135deg);
  z-index: 1;
}

.selectSearch01 .formWrap .inputWrap._color_area{
  margin: 0 auto -16px;
}
.selectSearch01 .formWrap .inputWrap._color_area > li{
  width: 54px;
  height: 54px;
  margin-right: calc((100% - (54px * 10))/9);
  margin-bottom: 16px;
  border-radius: 50%;
  box-sizing: border-box;
}
.selectSearch01 .formWrap .inputWrap._color_area > li:nth-of-type(10n){
  margin-right: 0;
}
.selectSearch01 .formWrap .inputWrap._color_area input[type="checkbox"] + label {
  display: inline-block;
  box-sizing: border-box;
}
.selectSearch01 .formWrap .inputWrap._color_area input:checked + label {
  position: relative;
}
.selectSearch01 .formWrap .inputWrap._color_area input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  left: 33%;
  top: 34%;
  width: 20px;
  height: 12px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(135deg);
}
.selectSearch01 .formWrap .inputWrap._color_area ._white input:checked + label::after{
  border-right: 2px solid #999;
  border-top: 2px solid #999;
}
.submit_btn_wrap{
  width: 490px;
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
}
.selectSearch01 .searchReset01{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 56px;
  padding: 0;
  border-radius: 28px;
  font-size: 20px;
  color: #075372;
  background-color: #fff;
  border: 1px solid #075372;
  outline: none;
  text-align: center;
  box-sizing: border-box;
}
.selectSearch01 .searchSubmit01{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 56px;
  padding: 0;
  border-radius: 28px;
  font-size: 20px;
  color: #fff;
  background-color: #075372;
  border: none;
  outline: none;
  text-align: center;
  font-weight: bold;
}
.selectSearch01 .searchReset01:hover,
.selectSearch01 .searchSubmit01:hover{
  opacity: .8;
}
/* color_box */
.selectSearch01 .color_box label{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
}
.selectSearch01 .color_box._black label{
  background-color: #333333;
}
.selectSearch01 .color_box._gray label{
  background-color: #999999;
}
.selectSearch01 .color_box._white label{
  background-color: #ffffff;
  border: 1px solid #999999;
}
.selectSearch01 .color_box._brown label{
  background-color: #955322;
}
.selectSearch01 .color_box._cream label{
  background-color: #d9c7a2;
}
.selectSearch01 .color_box._khaki label{
  background-color: #6b692c;
}
.selectSearch01 .color_box._lightpink label{
  background-color: #ffb1bf;
}
.selectSearch01 .color_box._pink label{
  background-color: #b33e5c;
}
.selectSearch01 .color_box._red label{
  background-color: #d62525;
}
.selectSearch01 .color_box._orange label{
  background-color: #f49000;
}
.selectSearch01 .color_box._yellow label{
  background-color: #e7dd40;
}
.selectSearch01 .color_box._green label{
  background-color: #009600;
}
.selectSearch01 .color_box._lightblue label{
  background-color: #04a3d7;
}
.selectSearch01 .color_box._blue label{
  background-color: #060f80;
}
.selectSearch01 .color_box._purple label{
  background-color: #6c1e98;
}
.selectSearch01 .color_box._gold label{
  background: linear-gradient(-45deg,#f0d23c,#f0d23c 50%,#ffe762 0,#ffe762);
}
.selectSearch01 .color_box._gold,
.selectSearch01 .color_box._silver,
.selectSearch01 .color_box._transparent,
.selectSearch01 .color_box._multicolor{
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 9px;
  font-weight: bold;
}
.selectSearch01 .color_box._silver label{
  background: linear-gradient(-45deg,#c9c9c9,#c9c9c9 50%,#dfdfdf 0,#dfdfdf);
}
.selectSearch01 .color_box._transparent label{
  background: linear-gradient(-45deg,#d0eeff,#d0eeff 50%,#e9f7ff 0,#e9f7ff);
}
.selectSearch01 .color_box._multicolor label .multicolor_circle{
  display: inline-block;
  box-sizing: border-box;
  border-color: #eff273 #fd7562 #54adff #4df388;
  border-style: solid;
  border-width: 27px;
  border-radius: 50%;
  width: 54px;
  height: 54px;
}


.room_logo{
  display: inline-block;
  margin-right: 8px;
  line-height: 1;
  font-size: 1;
}
.room_logo > img{
  width: 115px;
  height: auto;
}
  


/*
 floating_btmAnc
============================================*/
.floating_btmAnc_wrap[data-module-name=ecm-floating][data-static=false]{
  top: auto;
  bottom: 76px;
  right: 32px;
}
.floating_btmAnc_wrap a.floating_btmAnc{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
  padding: 0;
  border: 3px solid #fff;;
  border-radius: 50%;
  background-color: #458fae;
  font-size: 13px;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, .25);
  line-height: 1.2;
}
.floating_btmAnc_wrap a.floating_btmAnc .floating_btmAnc_icon{
  margin-bottom: 2px;
  font-size: 28px;
}
.floating_btmAnc_wrap a.floating_btmAnc:hover{
  opacity: .8;
}


[data-layout=shop] .rb-banner{
  box-sizing: border-box;
  overflow: hidden;
}
[data-layout=shop] .rb-banner img{
  width: 100%;
}

.other_list01 a{
  display: block;
  border-radius: 16px;
  border: 1px solid #383838;
  box-sizing: border-box;
  overflow: hidden;
}
.other_list01 a:hover{
  opacity: .8;
}
/*
 関連商品
============================================*/
.main_title_p{
  position: relative;
  margin-bottom: 4px;
  font-size: 28px;
  color: #075372;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}



.related_wrap{
  gap: 24px;
  margin-top: 25px;
}

.hover li :hover{
    opacity: 0.8;
}