@charset "euc-jp";

@media screen and (max-width: 1080px) {


  /*===== common =====*/
  br.sp {
    display: inline;
  }
  .inbox1,
  .inbox2,
  .inbox3 {
    width: 100%;
    padding: 20px;
  }
  h2.midashi { 
    font-size: 22px;
    margin-bottom: 35px;
  }
  
  #fix_bottun_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 50000;
    width: 120px;
  }
  #fix_bottun_box a {
    display: block;
    width: 60px;
  }
  #fix_bottun_box a img {
    width: 60px;
    height: auto;
  }
  #fix_bottun_box.type2 {
    right: 15px;
    width: 60px;
  }

  /*===== header =====*/
  .headline .inbox1 {
    justify-content: center;
    height: 100%;
  }
  .headline ul {
    display: none;
  }
  
  header .main,
  #menu_box {
    display: none;
  }
  
  #sp_header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 50000;
    width: 100%;
    background-color: #fff;
  }
  
  #sp_header .ss1 {
    align-items: center;
    justify-content: space-between;
    height: 55px;
    padding: 0 15px;
  }
  #sp_header .ss1 .logo img {
    width: auto;
    height: 24px;
  }
  #sp_header .ss1 .btn {
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
  }
  #sp_header .ss1 .btn a {
    display: block;    
  }
  #sp_header .ss1 .btn a img {
    width: auto;
    height: 36px;
  }
  
  #sp_header .ss2 {
    border-style: solid;
    border-color: #eaeaea;
    border-top-width: 2px;
    border-bottom-width: 1px;
  }
  #sp_header .ss2 ul.cat {
    display: table;
    width: 100%;
    height: 45px;
  }
  #sp_header .ss2 ul.cat li {
    display: table-cell;
    font-size: 11px;
    line-height: 1em;
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
    cursor: pointer;
  }
  #sp_header .ss2 ul.cat li.arrow {
    position: relative;
  }
  #sp_header .ss2 ul.cat li.arrow::after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 6px);
    bottom: 10px;
    width: 12px;
    height: 8px;
    background: url(https://img17.shop-pro.jp/PA01267/061/etc_base64/YXJyb3dfYl9zcA.png?cmsp_timestamp=20240316135749) no-repeat 0 0;
    transition: all 0.4s;
  }
  #sp_header .ss2 ul.cat li.arrow.this::after {
    transform: rotate(-180deg);
  }
  
  #sub_menu_sp {
    position: absolute;
    left: 0;
    top: 102px;
    z-index: 100;
    width: 100%;
    padding: 20px 20px 10px;
    background-color: #f1f1f1;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
  }
  #sub_menu_sp.open {
    opacity: 1;
    pointer-events: auto;
  }
  #sub_menu_sp > div {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 0;
    overflow: hidden;
    margin: auto;
    opacity: 0;
    transition: all 0.3s;
  }
  #sub_menu_sp > div.open {
    height: auto;
    z-index: 1;
    opacity: 1;
  }
  #sub_menu_sp > div ul {
    justify-content: space-between;
  }
  #sub_menu_sp > div ul:nth-of-type(2) {
    margin-top: 10px;
  }
  #sub_menu_sp > div ul li {
    width: 30.9%;
    margin-bottom: 15px;
  }
  #sub_menu_sp > div ul.b li {
    width: 48%;
  }
  #sub_menu_sp > div ul.s li {
    width: 28%;
  }
  #sub_menu_sp > div ul li a {
    display: block;
    font-size: 13px;
    line-height: 1.2em;
    font-weight: bold;
  }
  #sub_menu_sp > div ul li a img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    background-color: #fff;
    aspect-ratio: 7 / 5;
    border-radius: 5px;
  }
  #sub_menu_sp > div ul.s li a img {
    aspect-ratio: 1 / 1;
  }

  /* ヘッダーアイコンボタン共通 */
  #sp_header .ss1 .btn a.sp-tel-btn,
  #sp_header .ss1 .btn a.sp-icon-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    color: #E8731F !important;
    line-height: 1;
    gap: 8px;
    text-decoration: none;
  }
  #sp_header .ss1 .btn a.sp-tel-btn i,
  #sp_header .ss1 .btn a.sp-icon-btn i {
    font-size: 22px;
  }
  #sp_header .ss1 .btn a.sp-tel-btn span,
  #sp_header .ss1 .btn a.sp-icon-btn span {
    font-size: 9px;
    font-weight: bold;
  }
  /* メニューだけ緑 */
  #sp_header .ss1 .btn a.menu {
    color: #667654 !important;
  }

  /*===== menu =====*/
  #sp_menu {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 60000;
    width: 100%;
    height: 100vh;
    padding-bottom: 20px;
    background-color: #fff;
    opacity: 1;                          /* ← opacity削除（常に1） */
    pointer-events: none;
    transform: translateX(100%);         /* ← 右に隠しておく */
    transition: transform 0.35s ease;   /* ← transformだけ transition */
    overflow-y: scroll;
  }
  #sp_menu.open {
    pointer-events: auto;
    transform: translateX(0);            /* ← 右からスライドイン */
  }
  
  #sp_menu .close_btn {
    position: absolute;
    left: 20px;
    top: 20px;
  }
  #sp_menu .box1 {
    text-align: center;
    padding: 20px 0 0;
  }
  #sp_menu .box1 .calendar {
    position: relative;   
    text-align: left;
    width: 300px;
    padding: 5px 0 5px 75px;
    margin: 25px auto;
  }
  #sp_menu .box1 .calendar div:nth-of-type(1) {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    line-height: 1.3em;  
    text-align: center;
    font-weight: bold;
    width: 60px;
    height: 60px;
    padding-top: 15px;
    background-color: #c0c6c1;
    border-radius: 50%;
  }
  #sp_menu .box1 .calendar div:nth-of-type(2) {
    font-size: 13px;
    line-height: 1em;
  }
  #sp_menu .box1 .calendar div:nth-of-type(3) {
    color: #e8731f;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
    margin: 5px 0;
  }
  #sp_menu .box1 .calendar div:nth-of-type(4) {
    font-size: 12px;
    line-height: 1em;
  }
  
  #sp_menu .search {
    width: 350px;
    margin: 40px auto;
  }
  #sp_menu .search select {
    font-size: 13px;
    width: 160px;
    height: 35px;
    border: 1px solid #afafaf;
    border-radius: 3px;
  }
  #sp_menu .search .box {
    position: relative;
    width: 180px;
    height: 35px;
    border: 1px solid #afafaf;
    border-radius: 3px;
    margin-left: 5px;
  }
  #sp_menu .search .box input[type="text"] {
    display: inline-block;
    width: calc(100% - 36px);
    height: 100%;
    border: none;
    border-radius: 3px;
  }
  #sp_menu .search .box input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    text-indent: -999px;
    width: 34px;
    height: 100%;
    background: url(https://img17.shop-pro.jp/PA01267/061/etc_base64/aWNvbl9zZWFyY2g.png?cmsp_timestamp=20240315161542) #667654 no-repeat 50%;
    border: none;
    border-radius: 0 3px 3px 0;
  }
  
  #sp_menu .list1_title {
    font-size: 13px;
    line-height: 1em;
    padding-left: 20px;
    max-width: 390px;
    margin: 0 auto 10px;
  }
  #sp_menu ul.list1 {
    max-width: 390px;
    margin: 0 auto 40px;
    padding: 0 20px;
  }
  #sp_menu ul.list1 > li {
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;    
    border-bottom: 2px solid #eaeaea;
  }
  #sp_menu ul.list1 > li:nth-of-type(1) {
    border-top: 2px solid #eaeaea;
  }
  #sp_menu ul.list1 > li.arrow {
    position: relative;
  }
  #sp_menu ul.list1 > li.arrow::after {
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    top: 16px;
    width: 12px;
    height: 8px;
    background: url(https://img17.shop-pro.jp/PA01267/061/etc_base64/YXJyb3dfYl9zcA.png?cmsp_timestamp=20240316135749) no-repeat 0 0;
    transition: all 0.4s;
  }
  #sp_menu ul.list1 > li.arrow .sub {
    position: relative;
    height: auto;
    overflow: visible;
    background-color: #f1f1f1;
    transition: all 0.4s;
  }
  #sp_menu ul.list1 > li.arrow .sub.close {
    overflow: hidden;
    height: 0;
  }
  #sp_menu ul.list1 > li.arrow .sub::after {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    top: 0;
    z-index: -1;
    width: calc(100% + 40px);
    height: 100%;
    background-color: #f1f1f1;
  }
  #sp_menu ul.list1 > li.arrow .sub ul {
    justify-content: space-between;
  }
  #sp_menu ul.list1 > li.arrow .sub ul li {
    width: 30.9%;
    margin-bottom: 15px;
  }
  #sp_menu ul.list1 > li.arrow .sub ul.b li {
    width: 48%;
  }
  #sp_menu ul.list1 > li.arrow .sub ul.s li {
    width: 28%;
  }
  #sp_menu ul.list1 > li.arrow .sub ul li a {
    display: block;
    font-size: 13px;
    line-height: 1.2em;
    font-weight: bold;
  }
  #sp_menu ul.list1 > li.arrow .sub ul li a img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    background-color: #fff;
    aspect-ratio: 7 / 5;
    border-radius: 5px;
  }
  #sp_menu ul.list1 > li.arrow .sub ul.s li a img {
    aspect-ratio: 1 / 1;
  }
  
  #sp_menu ul.list1 li a {
    display: block;
    padding: 15px 0 10px;
  }
  
  #sp_menu ul.list2 {
    max-width: 390px;
    margin: auto;
    padding: 0 20px;
  }
  #sp_menu ul.list2 li {
    position: relative;
    width: 50%;
    padding-left: 15px;
  }
  #sp_menu ul.list2 li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 5px);
    width: 8px;
    height: 8px;
    background-color: #667654;
    border-radius: 50%;
  }

  #sp_menu ul.list2 li a {
    display: block;
    color: #404040;
    font-size: 13px;
    line-height: 1em;
    font-weight: bold;
    padding: 11px 0;
  }
  
  /* サイズと価格・法人ボタン */
  #sp_menu .spmenu-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 390px;
    margin: 0 auto 20px;
    padding: 0 20px;
  }
  #sp_menu .spmenu-btn {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    padding: 14px 0;
    border-radius: 4px;
  }
  #sp_menu .spmenu-btn--orange { background-color: #E8731F; }
  #sp_menu .spmenu-btn--green  { background-color: #667654; }

  /*===== footer =====*/
  footer {
    text-align: left;
    padding: 30px 0 45px;
  }
  footer ul {
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  footer ul li {
    width: 50%;
    margin: 0 0 20px;
  }
  footer ul li a {
    display: inline-block;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
  }
  footer .copy {
    font-size: 11px;
    line-height: 1em;
    text-align: center;
  }
  
  
  
  #cat_unit ul li {
    width: 48%;
    margin-bottom: 35px;
  }
  .productlist li a,
  #cat_unit ul li a {
    display: block;
  }
  .productlist li a font,
  #cat_unit ul li a font {
    color: #404040!important;
  }
  .productlist li a .imgBox,
  #cat_unit ul li a .imgBox {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .productlist li a .imgBox img,
  #cat_unit ul li a .imgBox img {
    aspect-ratio: 1 / 1;
  }
  .productlist li a .item_name,
  #cat_unit ul li a .item_name {
    font-size: 15px;
    line-height: 1.26em;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .productlist li a .itemExpl,
  #cat_unit ul li a .itemExpl {
    display: none;
  }
  .productlist li a .itemPrice,
  #cat_unit ul li a .itemPrice {
    font-size: 15px;
    line-height: 1.26em;
    font-weight: bold;
    margin-bottom: 0;    
  }
  
  
  /*===== bestseller =====*/
  #bestseller {
    padding: 0 20px;
    margin-bottom: 55px;
  }
  #bestseller ul,
  #bestseller_rank ul,
  #bestseller_rank2 ul {
    justify-content: space-between;
  }
  #bestseller ul li,
  #bestseller_rank ul li,
  #bestseller_rank2 ul li {
    width: 48%;
  }
  
  #bestseller_rank {
    padding: 0 20px;
  }
  #bestseller_rank2 {
    padding: 0;
  }
  #bestseller_rank ul li:nth-of-type(-n+10) {
    margin-bottom: 20px;
  }
  #bestseller_rank ul li:nth-of-type(n+11) {
    display: none;
  }
  
  #bestseller_rank2 ul li {
    margin: 0 0 20px;
  }
  
  .btn_box {
    margin: 45px 0 90px;
  }
  .btn_box a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 1em;
    text-align: center;
    font-weight: bold;
    width: auto;
    height: 46px;
    padding: 16px 45px 0;
    background-color: #617064;
    border-radius: 23px;
  }
  .btn_box2 {
    text-align: center;
    margin: 45px 0 90px;
  }
  .btn_box2 a {
    display: inline-block;
    color: #617064;
    font-size: 14px;
    line-height: 1em;
    text-align: center;
    font-weight: bold;
    width: auto;
    height: 46px;
    padding: 16px 45px 0;
    background-color: #fff;
    border: 1px solid #617064;
    border-radius: 23px;
  }
  
  
  /*===== choice_unit =====*/
  #choice_unit {
    padding: 70px 0 50px;
  }
  #choice_unit h2 {
    margin-bottom: 35px;
  }

  #choice_unit ul li {
    width: 30.9%;
    margin-bottom: 15px;
  }
  #choice_unit ul.b li {
    width: 48%;
  }
  #choice_unit ul.s li {
    width: 28%;
  }
  #choice_unit ul li a {
    font-size: 13px;
    line-height: 1.3em;
  }
  #choice_unit ul.c2 li div {
    font-size: 12px;
    line-height: 1.3em;
    font-weight: normal;
    margin-top: 8px;
  }
  #choice_unit ul li a img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 5;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  #choice_unit ul.s li a img {
    aspect-ratio: 1 / 1;
  }
  #choice_unit ul.c2 li a img {
    aspect-ratio: 17 / 8;
  }
  #choice_unit ul.b li a img,
  #choice_unit ul.s li a img,
  #choice_unit ul.c2 li a img {
    height: auto;
  }
  
  
  
  /*===== choice_unit =====*/
  #jido_keisan,
  #price_list,
  #price_list_data {
    width: 100%;
  }
  #jido_keisan {
    padding: 45px 0 0;
  }
    
  #jido_keisan h2 {
    font-size: 22px;
    margin-bottom: 45px;
  }
  #jido_keisan .table01 td {
    font-size: 13px;
    line-height: 1.5em;
    font-weight: bold;
    vertical-align: top;    
    padding: 30px 0 0;
  }
  #jido_keisan .table01 tr td:nth-of-type(1) {
    width: 5em;
    padding-right: 1em;
  }
  #jido_keisan .table01 tr td:nth-of-type(2) {
    font-size: 12px;
    padding: 15px 0;
  }
  #jido_keisan .table01 tr td:nth-of-type(2) a.bbtn {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    width: 160px;
    margin-top: 10px;
  }
  #jido_keisan .table01 tr td:nth-of-type(2) div {
    font-size: 11px;
    line-height: 1.5em;
  }

  #jido_keisan .table01 input[type="text"] {
    font-size: 16px;
    width: 100px;
    padding: 10px;
    margin-right: 10px;
  }
  #jido_keisan .table01 tr:nth-of-type(1) input[type="text"] {
    width: 100%;
  }

  #siyo_box {
    padding: 25px 20px 35px;
    border-radius: 10px;
  }
  #siyo_box table {
    display: block;
    width: 100%;    
  }
  #siyo_box table tbody,
  #siyo_box table tbody tr {
    display: block;
  }
  #siyo_box table td {
    display: block;
    font-size: 16px;
    line-height: 1.3em;
    padding: 5px 0;
  }
  #siyo_box table tr td:nth-of-type(1),
  #siyo_box table tr td:nth-of-type(2) {
    width: 100%;
  }
  #siyo_box table tr td:nth-of-type(1) {
    line-height: 1em;
    padding-top: 10px;
  }
  
  #btn_kakaku {
    font-size: 19px;
    line-height: 1em;
    font-weight: bold;
    width: 100%;
    height: 60px;
    margin: 45px auto 100px;
    border-radius: 30px;
    -webkit-appearance: none;
  }
  
  #kekka::before {
    left: calc(50% - 35px);
    top: -70px;
    width: 70px;
    height: 40px;
    background: url(https://file001.shop-pro.jp/PA01267/061/img/mitumori_arrow.png) no-repeat 0 0 / 70px 40px;
  }
  #kekka .text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1em;
    width: 100%;
    height: 160px;
    background-color: #eff1ed;
    border-radius: 10px;
  }
  #kekka .text span {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #kakaku_box {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    font-size: 18px;
    line-height: 1em;
    font-weight: bold;
    text-align: left;
    width: 100%;
    height: 100%;
    padding: 30px 20px 0;
    box-sizing: border-box;
    background-color: #fbbb18;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.4s
  }
  #kakaku_box.open {
    opacity: 1;
  }
  #kakaku_box span:nth-of-type(1) {
    display: block;
    line-height: 1em;
    margin-bottom: 25px;
  }
  #kakaku_box p {
    font-size: 11px;
    line-height: 1.5em;
    font-weight: normal;
    margin-top: 10px;
  }
  #kakaku_box p br {
    display: none;
  }
  #kakaku {
    font-size: 48px;
  }
  
    
  #price_list,
  #price_list_data {
    overflow-x: scroll;
  }
  
  #price_list {
    padding: 0;
    margin: 70px auto 0;
  }
  #price_list h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #price_list h2 span {
    font-size: 14px;
  }
  #price_list p {
    font-size: 11px;
    line-height: 1.5em;
  }
  #price_list table {
    width: 100%;
    border: 2px solid #eaeaea;
    margin-bottom: 30px;
    writing-mode: vertical-lr;
  }
  #price_list table#price_03 {
    margin-bottom: 15px;
  }
  #price_list table td {
    font-size: 15px;
    line-height: 1em;
    text-align: center;
    padding: 15px 0;
    border: 2px solid #eaeaea;
    writing-mode: horizontal-tb !important;
  }
  #price_list table td div {
    width: 100%;
    height: 1em;
    writing-mode: horizontal-tb !important;
  }
  #price_list table tr td:nth-of-type(1) {
    font-weight: bold;
  }
  #price_list table tr td:nth-of-type(1) span {
    font-size: 12px;
  }
  #price_list.ac table tr:nth-of-type(2) td:nth-of-type(n+2)::before {
    content: "\0a5";
  }
  
  
  .freebody,
  .zoom-small-image {
    width: 100% !important;
  }
  
  div.product_images div iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
    height: 100%;
  }
  
  
	.rug_option table#option_tbl th {
		font-size: 14px;
		padding: 5px 0 5px 15px;
	}
	.rug_option table#option_tbl td {
		font-size: 13.6px;
		padding: 20px 0 40px 20px;
	}
  
}