@charset 'utf-8';
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

共通
・レイアウト
・ボタン類

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  word-break: break-all;
}
body {
  width: 100%;
  height: 100%;
  font-size: 13.5px;
  line-height: 180%;
  color: #2e2e2b;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  background-color: #fbfbfa;
}
a:link,
a:visited {
  text-decoration: none;
  color: #686f5f;
}
a:hover {
  text-decoration: none;
  color: #ff3300;
}
img {
  vertical-align: top;
}
p {
  margin: 0;
  padding-bottom: 2px;
}
.tx_center {
  text-align: center;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*共通レイアウト*/
.inner {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px 0 10px;
}
/*本文エリア*/
.container {
  z-index: 0;
  box-sizing: border-box;
  position: relative;
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
/*フッタ*/
.footer {
  margin: 0;
  padding: 40px 0 40px 0;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*共通要素*/
h1.in,
h2.in,
h3.in,
h4.in,
h5.in {
  margin-top: 50px;
}
h1,
h2,
h3,
h4,
h5 {
  position: relative;
}
.dotline {
  clear: both;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  background: url("../assets/img/dot_line.png") center center repeat-x;
  background-size: 4px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*アニメーション設定*/
@keyframes ele_common_q_img_animname {
  100% {
    transform: translate(0px, -4px);
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*ボックスボタン*/
.boxlink {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 30px;
  background-color: #e9e9e9;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 40px;
  border-radius: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.boxlink[data-linktype="right"] {
  padding: 0 40px 0 30px;
}
.boxlink[data-linktype="right"]::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(38%);
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
  opacity: 0.5;
}
.boxlink[data-linktype="left"] {
  padding: 0 30px 0 40px;
}
.boxlink[data-linktype="left"]::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(38%);
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-45deg);
  opacity: 0.5;
}
.boxlink[data-linktype="edit"] {
  padding: 0 10px 0 20px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 30px;
}
.boxlink[data-linktype="edit"]::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(20%);
  left: 5px;
  width: 10px;
  height: 18px;
  background: url(../assets/img/b_edit.svg) center center no-repeat;
  background-size: 100%;
}
.boxlink[data-linktype="delete"] {
  padding: 0 10px 0 20px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 30px;
}
.boxlink[data-linktype="delete"]::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(32%);
  left: 5px;
  width: 10px;
  height: 10px;
  background: url(../assets/img/b_delete.svg) center center no-repeat;
  background-size: 100%;
}
.boxlink[data-color="green"]:hover {
  background-color: #82c868;
}
.boxlink[data-color="red"]:hover {
  background-color: #d5385f;
}
.boxlink[data-color="blue"]:hover {
  background-color: #5d68ce;
}
.boxlink[data-color="gray"]:hover {
  background-color: #a4a4a1;
}
@keyframes boxlink_animname {
  100% {
    transform: translate(0px, -4px);
  }
}
.boxlink[data-color="green"] {
  background-color: #54b431;
  color: #ffffff;
}
.boxlink[data-color="red"] {
  background-color: #c90032;
  color: #ffffff;
}
.boxlink[data-color="blue"] {
  background-color: #3e4bc4;
  color: #ffffff;
}
.boxlink[data-color="gray"] {
  background-color: #7c7d78;
  color: #ffffff;
}
.small {
  font-size: 0.8rem;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*オーダーボタン*/
/*ベース*/
.order input[type="radio"] {
  display: none;
}
.order .label {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 7px 14px 7px 14px;
  background-color: #e1f2db;
  border: 2px solid #e1f2db;
  border-radius: 5px;
  position: relative;
  text-align: center;
}
.order textarea {
  resize: none;
}
.label:hover {
  background-color: #ffffff;
  border: 2px solid #e1f2db;
}
/*ラジオボタン（通常）*/
/*
.order .label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #e1f2db;
  background-color: #ffffff;
}
*/
/*チェック済みラジオボタンの設定*/
.order input[type="radio"]:checked + .label {
  display: block;
  width: 100%;
  padding: 7px 14px 7px 14px;
  background-color: #ffffff;
  border: 2px solid #54b431;
  box-sizing: border-box;
}
.order .list input[type="radio"]:checked + .label {
  width: 95%;
}
/*
.order input[type="radio"]:checked + .label:after {
  background-color: #54b431;
  border: 2px solid #ffffff;
}
*/
.order input[type="checkbox"] {
  display: none;
}
/*ベース*/
.order .check_label {
  display: block;
  box-sizing: border-box;
  padding: 7px 14px 7px 30px;
  margin-bottom: 5px;
  background-color: #e1f2db;
  border: 2px solid #e1f2db;
  border-radius: 5px;
  position: relative;
  width: 100%;
}
.check_label:hover {
  background-color: #ffffff;
  border: 2px solid #e1f2db;
}
/*チェックボタン（通常）*/
.order .check_label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -7px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 2px solid #e1f2db;
  background-color: #ffffff;
}
/*チェック済みラジオボタンの設定*/
.order input[type="checkbox"]:checked + .check_label {
  background-color: #96d181;
  border: 2px solid #96d181;
  color: #ffffff;
  box-sizing: border-box;
}
.order input[type="checkbox"]:checked + .check_label:after {
  top: 45%;
  left: 8px;
  background-color: #96d181;
  width: 12px;
  height: 7px;
  border-radius: 0;
  border: none;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(-60deg);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*通常ボタン*/
input.btn,
button {
  position: relative;
  margin: 0px 5px 5px 0;
  padding: 20px 50px 20px 60px;
  font-size: 1.4rem;
  font-weight: bold;
  border: none;
  filter: progid;
  background-color: #bbc1b9;
}
input.btn:hover,
button:hover {
  background-color: #d0d4ce;
}
input.btndisabled,
buttondisabled {
  background-color: #bbc1b9;
  filter: progid;
}
input.btn[data-color="green"],
button[data-color="green"] {
  color: #ffffff;
  background: linear-gradient(90deg, #54b431 0%, #008d5c 100%);
  filter: progid;
}
input.btn[data-color="green"]:hover,
button[data-color="green"]:hover {
  background: linear-gradient(90deg, #008d5c 0%, #00533d 100%);
}
input.btn[data-color="green"]disabled,
button[data-color="green"]disabled {
  background-color: #f8f8fa;
  background: -moz-linear-gradient(top, #f8f8fa, #f8f8fa);
  /* mozilla */
  background: -webkit-gradient(linear, center top, center bottom, from(#f8f8fa), to(#f8f8fa));
  /* Webkit */
  color: #b0b0c8;
}
input.btn[data-color="red"],
button[data-color="red"] {
  color: #ffffff;
  background: linear-gradient(90deg, #d5385f 0%, #c90032 100%);
  filter: progid;
}
input.btn[data-color="red"]:hover,
button[data-color="red"]:hover {
  background: linear-gradient(90deg, #c90032 0%, #a00032 100%);
}
input.btn[data-color="red"]disabled,
button[data-color="red"]disabled {
  background-color: #f8f8fa;
  background: -moz-linear-gradient(top, #f8f8fa, #f8f8fa);
  /* mozilla */
  background: -webkit-gradient(linear, center top, center bottom, from(#f8f8fa), to(#f8f8fa));
  /* Webkit */
  color: #b0b0c8;
}
input.cartset,
button.cartset::after {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 25px;
  width: 20px;
  height: 20px;
  background: url(../assets/img/cart.svg) center left no-repeat;
  background-size: 100%;
}
input.new_cart,
button.new_cart::after {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 25px;
  width: 20px;
  height: 20px;
  background: url(../assets/img/new_cart.svg) center left no-repeat;
  background-size: 100%;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*テキストエリア*/
input.inputBox {
  box-sizing: border-box;
  margin: 4px 0 4px 0;
  padding: 10px;
  width: 100%;
  font-size: 1rem;
  line-height: 100%;
  background-color: #ffffff;
  font-family: 'courier';
  border: 1px solid #bbc1b9;
}
input.small {
  width: 45%;
}
input.e5 {
  width: 5em;
}
input.e10 {
  width: 10em;
}
input.e15 {
  width: 15em;
}
input.e20 {
  width: 20em;
}
input.e25 {
  width: 25em;
}
input.e30 {
  width: 30em;
}
textarea {
  box-sizing: border-box;
  margin: 4px 0 4px 0;
  padding: 10px;
  width: 100%;
  font-size: 1rem;
  line-height: 100%;
  background-color: #ffffff;
  font-family: 'courier';
  border: 1px solid #bbc1b9;
}
textarea.small {
  width: 45%;
}
textarea.e5 {
  width: 5em;
}
textarea.e10 {
  width: 10em;
}
textarea.e15 {
  width: 15em;
}
textarea.e20 {
  width: 20em;
}
textarea.e25 {
  width: 25em;
}
textarea.e30 {
  width: 30em;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*セレクトフォーム*/
.selectdiv {
  position: relative;
  min-width: 200px;
  width: 100%;
}
/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none;
}
.selectdiv:after {
  content: '< >';
  font: 15px "MS Pゴシック", sans-serif;
  color: #333;
  transform: rotate(90deg);
  right: 7px;
  /*Adjust for position however you want*/
  top: 7px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  display: block;
  width: 100%;
  height: 40px;
  margin: 5px 0;
  padding: 0 10px;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #bbc1b9;
  -ms-word-break: normal;
  word-break: normal;
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

PC向け

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
@media all and (min-width: 1000px) {
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*PC、タブレット向けレイアウト調整*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ヘッダエリア*/
  .fv {
    position: relative;
    margin: 0 0 50px 0;
    padding: 0;
    height: 20vh;
    min-height: 200px;
    max-height: 300px;
    background: url("../assets/img/fv_contents.jpg") top center no-repeat;
    background-size: 100%;
    background-color: #e9e9e9;
  }
  .fv[data-contents="top"] {
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    margin: 0 0 300px 0;
    background: url("../assets/img/fv.jpg") top center no-repeat;
    background-size: 100%;
    background-attachment: fixed;
    background-color: #32322a;
  }
  .fv[data-contents="contents"] {
    margin: 0;
  }
  .fv::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: #fbfbfa;
    transform: skewY(-2.5deg);
  }
  .fv h1 {
    z-index: 1;
    position: absolute;
    bottom: -150px;
    left: 50%;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 220px;
    height: 0 !important;
    line-height: 250%;
    width: 800px;
    background: url(../assets/img/logo_sitename.svg) center center no-repeat;
    background-size: 100%;
    transform: translate(-50%, 0);
    mix-blend-mode: multiply;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*共通要素*/
  .page_title {
    margin: -80px 0 100px 0;
    padding: 0;
  }
  .page_title i {
    margin: 0;
    padding: 20px 80px;
    border: 2px solid #54b431;
    background-color: #ffffff;
    font-style: normal;
    color: #54b431;
  }
  .gs_title {
    position: relative;
    margin: 0 0 20px 0;
    padding: 10px 10px;
    border-left: 2px solid #54B431;
    border-right: 2px solid #54B431;
    color: #54B431;
  }
  .gs_title.narrow {
    margin: 0 auto 20px auto;
    width: 80%;
    max-width: 400px;
    text-align: center;
  }
  .gs_sub_title {
    position: relative;
    margin: 0 0 10px 0;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #54B431;
  }
  /*以上*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け ロゴとメニューエリア*/
  .sitemenu {
    position: relative;
    z-index: 1;
  }
  .sp_menu {
    display: none;
  }
  .sitemenu h1 a {
    z-index: 1;
    position: fixed;
    top: 20px;
    left: 20px;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 50px;
    height: 0 !important;
    line-height: 250%;
    width: 260px;
    background: url(../assets/img/top_logo.svg) center center no-repeat;
    background-size: 100%;
  }
  .sitemenu ul {
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    right: 100px;
    height: 50px;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    background-color: #ffffff;
    text-align: center;
    font-weight: bold;
    color: #54b431;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 #6a7669;
    border: 2px solid #54b431;
  }
  .sitemenu ul li {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .sitemenu ul a {
    display: block;
    height: 100%;
    margin: 0;
    padding: 10px 10px 10px 10px;
    color: #54b431;
  }
  .sitemenu ul a:hover {
    background-color: #e1f2db;
  }
  .sitemenu ul li ul {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 5px 0;
    grid-template-columns: 1fr;
    border-radius: 10px;
    font-weight: normal;
    text-align: left;
    font-size: .9rem;
  }
  .sitemenu ul li ul li {
    margin: 0;
    padding: 0;
  }
  .sitemenu ul li ul li a {
    display: block;
    height: 100%;
    margin: 0;
    padding: 0 10px 0 10px;
    color: #54b431;
  }
  .sitemenu ul li ul li a:hover {
    background-color: #e1f2db;
  }
  /*カートボタン*/
  .cart {
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    right: 20px;
    height: 50px;
    width: 70px;
    background-color: #54b431;
    text-align: center;
    font-weight: bold;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 #6a7669;
  }
  .cart a {
    display: block;
    overflow: hidden;
    margin: 10px 0 0 0;
    padding-top: 30px;
    height: 0 !important;
    line-height: 250%;
    width: 100%;
    background: url(../assets/img/cart.svg) center center no-repeat;
    background-size: 25px auto;
  }
  .cart a:hover {
    opacity: 0.8;
  }
  .cart output {
    position: absolute;
    bottom: -27px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    margin-left: -15px;
    background-color: #c90032;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*PC　ケース紹介箇所*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ケース紹介箇所*/
  .item_info {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1fr;
    grid-gap: 20px;
    min-height: 200px;
    margin: 60px 0 100px 0;
    padding: 20px 0 0 0;
    border-top: 0 solid #fbfbfa;
  }
  /*テキストエリア側*/
  .item_info .in_text {
    position: relative;
    z-index: 1;
    margin: 20px -100px 0 0;
    padding: 30px 30px 30px 30px;
    background-color: #fbfbfa;
    border-left: 1px solid #54B431;
    border-right: 1px solid #54B431;
  }
  .item_info .in_text h1 {
    box-sizing: border-box;
    width: 100%;
    border-bottom: 0 solid #bbc1b9;
    margin: 0;
    padding: 0 0 10px 0;
    color: #54B431;
  }
  .item_info .in_text p {
    margin: 0;
    padding: 0 0 20px 0;
  }
  .item_info .in_text .boxlink_box {
    position: absolute;
    bottom: -20px;
    left: 30px;
  }
  /*写真側*/
  .item_info .photo_area {
    position: relative;
    z-index: 0;
    background-color: #e9e9e9;
    text-align: center;
  }
  .item_info .photo_area .fit_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .item_info .photo_area .item_image {
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 250px;
    height: auto;
  }
  /*左右逆にする設定*/
  .item_info[data-order="reverse"] {
    grid-template-columns: 1fr .8fr;
  }
  .item_info[data-order="reverse"] .text_link {
    order: 2;
  }
  .item_info[data-order="reverse"] .photo_area {
    order: 1;
  }
  .item_info[data-order="reverse"] .text_link .in_text {
    margin: 20px 0 0 -100px;
  }
  .item_info[data-order="reverse"] .item_image {
    left: -60px;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け 注文ページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .order {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-gap: 20px;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*選択リスト*/
  .form-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    margin: 0;
    padding: 0;
  }
  .form-columns-color-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    margin: 0;
    padding: 0;
  }
  .q_img {
    display: block;
    position: absolute;
    top: -10px;
    right: 25px;
    width: 30px;
    height: 30px;
    background: url("../assets/img/q_img.svg") left 2px top 2px no-repeat;
    background-size: 80%;
    background-color: #ffffff;
    border: 2px solid #54B431;
    border-radius: 50%;
    cursor: pointer;
  }
  .q_img:hover {
    -webkit-animation: ele_common_q_img_animname 0.2s forwards;
    animation: ele_common_q_img_animname 0.2s forwards;
    filter: sepia(10%) hue-rotate(270deg) contrast(100%);
  }
  /*横並びリスト*/
  .item_list {
    display: grid;
    grid-gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .item_list[data-column="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .item_list[data-column="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .item_list[data-column="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .item_list li {
    margin: 0;
    padding: 0;
  }
  .item_list li .info_text {
    float: left;
    width: 55%;
    margin-right: 1%;
  }
  .item_list li input {
    width: 40%;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*インラインウインドウ*/
  #in_cart_message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }
  #in_cart_message .message {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    width: 90%;
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
  }
  #in_cart_message .message h5 {
    margin: 0px 0px 0px 0px;
    padding: 20px;
    background-color: #54b431;
    font-size: 1.5rem;
    color: #ffffff;
  }
  #in_cart_message .message .inner {
    margin: 0px 0px 0px 0px;
    padding: 20px;
  }
  #in_cart_message .message p:nth-of-type(1) {
    font-size: 1.2rem;
    margin: 0px 0px 10px 0px;
  }
  #in_cart_message .message p:nth-of-type(2) {
    font-size: .8rem;
  }
  #in_cart_message .message p:nth-of-type(3) {
    font-size: .8rem;
    margin: 0px 0px 20px 0px;
  }
  #in_cart_message .message p:nth-of-type(1) #number_text,
  #in_cart_message .message p:nth-of-type(1) #total_text {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*その他*/
  .gs_sub_title {
    z-index: 1;
  }
  [data-descr]:hover::after {
    content: attr(data-descr);
    position: absolute;
    right: 0;
    top: 40px;
    min-width: 200px;
    border: 1px solid #d0d4ce;
    background-color: #ffffff;
    color: #60765b;
    padding: 10px;
    z-index: 1;
  }
  .price {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .button_area {
    margin: 30px 0 0;
    padding: 0;
  }
  .note {
    position: relative;
    margin: 20px 0 0 0;
    padding: 20px;
    border: 1px solid #bbc1b9;
    background-color: #ffffff;
  }
  .note::after {
    content: "";
    display: block;
    position: absolute;
    top: -12px;
    right: 0;
    width: 30px;
    height: 30px;
    background: url("../assets/img/itemclip.svg") center center no-repeat;
    background-size: 80%;
  }
  .memo {
    margin-top: 10px;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け カートページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .cart_step {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1px;
    margin: -50px auto 50px;
    padding: 0;
    width: 400px;
    list-style: none;
    text-align: center;
    font-weight: bold;
  }
  .cart_step li {
    padding: 10px;
    background-color: #d0d4ce;
  }
  .cart_step li.pass {
    background-color: #54B431;
    color: #ffffff;
  }
  .cart_step li:nth-of-type(1) {
    border: none;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*注文のリスト*/
  .item_info_sp {
    display: none;
  }
  .order_items_th {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr 0.5fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 30px 0 10px 0;
    font-size: 0.8rem;
    text-align: center;
  }
  .order_items_th li {
    background-color: #d0d4ce;
  }
  .order_items_th li:nth-of-type(3),
  .order_items_th li:nth-of-type(4),
  .order_items_th li:nth-of-type(5) {
    text-align: center;
  }
  .order_items_th li:nth-of-type(6) a {
    margin-bottom: 3px;
  }
  .order_items_data {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr 0.5fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-top: 2px solid #858a8e;
  }
  .order_items_data:last-of-type {
    border-bottom: 2px solid #858a8e;
  }
  .order_items_data img {
    width: 100%;
    height: auto;
  }
  .order_items_data li:nth-of-type(2) p {
    margin: 0;
  }
  .order_items_data .attachment_icon {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background: url("../assets/img/attachment_img.svg") no-repeat;
    background-color: #ffffff;
    vertical-align: middle;
    margin: 1px;
  }
  .order_items_data li:nth-of-type(3),
  .order_items_data li:nth-of-type(4),
  .order_items_data li:nth-of-type(5) {
    text-align: center;
  }
  .order_items_data li:nth-of-type(6) a {
    margin-bottom: 3px;
  }
  .message-no-items {
    font-size: x-large;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .display-div {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    margin: 10px 0;
    padding: 0;
    justify-content: end;
    text-align: right;
  }
  .total-output {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .bottom_button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px 0 0;
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .bottom_button li:nth-of-type(2) {
    text-align: right;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*お客様情報のご入力*/
  .user_datas {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 20px 0;
    list-style: none;
    margin: 0 auto;
    padding: 10px 0;
    width: 70%;
    max-width: 1000px;
  }
  .user_datas dd,
  .user_datas dt {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #bbc1b9;
  }
  /*入れ子*/
  .user_datas dd dl {
    margin: 0;
    padding: 0;
  }
  .user_datas dd dt {
    padding: 0;
    border: none;
  }
  .user_datas dd dd {
    padding: 0 0 10px;
    border: none;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*情報のまとめ*/
  .order_items_fix_th {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 30px 0 10px 0;
    font-size: 0.8rem;
    text-align: center;
  }
  .order_items_fix_th li {
    background-color: #d0d4ce;
  }
  .order_items_fix_th li:nth-of-type(3),
  .order_items_fix_th li:nth-of-type(4),
  .order_items_fix_th li:nth-of-type(5) {
    text-align: center;
  }
  .order_items_data_fix {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-top: 2px solid #858a8e;
  }
  .order_items_data_fix:last-of-type {
    border-bottom: 2px solid #858a8e;
  }
  .order_items_data_fix img {
    width: 100%;
    height: auto;
  }
  .order_items_data_fix li:nth-of-type(2) p {
    margin: 0;
  }
  .order_items_data_fix li:nth-of-type(3),
  .order_items_data_fix li:nth-of-type(4),
  .order_items_data_fix li:nth-of-type(5) {
    text-align: center;
  }
  .user_confirm {
    margin-top: 50px;
  }
  .user_confirm .user_datas {
    width: 100%;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け お問い合わせページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*お客様情報のご入力*/
  .user_datas {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 20px 0;
    list-style: none;
    margin: 0 auto;
    padding: 10px 0;
    width: 70%;
    max-width: 1000px;
  }
  .user_datas dd,
  .user_datas dt {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #bbc1b9;
  }
  /*入れ子*/
  .user_datas dd dl {
    margin: 0;
    padding: 0;
  }
  .user_datas dd dt {
    padding: 0;
    border: none;
  }
  .user_datas dd dd {
    padding: 0 0 10px;
    border: none;
  }
  .bottom_button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px auto;
    padding: 0;
    width: 70%;
    max-width: 1000px;
    list-style: none;
  }
  .bottom_button li:nth-of-type(2) {
    text-align: right;
  }
  #message_div {
    display: block;
    box-sizing: border-box;
    width: 70%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 10px;
    color: #60765b;
    background-color: #e1f2db;
  }
  #message_div:empty {
    display: none;
  }
  .error-message {
    color: #ff3300;
  }
  .error-message:empty {
    display: none;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け フッタ設定*/
  .footer .shopping_info_box {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 60px 10px 60px 10px;
    background: url(../assets/img/bg_stripe_2.png);
    background-size: 10px;
  }
  .footer .shopping_info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
  }
  .footer .shopping_info .box {
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 6px 0 #a0aa9f;
  }
  .footer .shopping_info .box h5 {
    margin: 0 0 10px 0;
    padding: 0 0 5px 0;
    border-left: 2px solid #54B431;
    border-right: 2px solid #54B431;
    border-bottom: 0 solid #858a8e;
    text-align: center;
    font-size: 1rem;
  }
  .footer .shopping_info .box p {
    font-size: .85rem;
    line-height: 1.5;
  }
  .footer ul {
    margin: 30px auto 20px auto;
    padding: 0;
    width: 80%;
    max-width: 400px;
    list-style: none;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer ul li {
    margin: 0;
    padding: 0;
  }
  .footer .copy {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: .75rem;
  }
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

タブレット向け

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
@media all and (min-width: 800px) and (max-width: 1000px) {
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*PC、タブレット向けレイアウト調整*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ヘッダエリア*/
  .fv {
    position: relative;
    margin: 0 0 50px 0;
    padding: 0;
    height: 20vh;
    min-height: 200px;
    max-height: 300px;
    background: url("../assets/img/fv_contents.jpg") top center no-repeat;
    background-size: 100%;
    background-color: #e9e9e9;
  }
  .fv[data-contents="top"] {
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    margin: 0 0 300px 0;
    background: url("../assets/img/fv.jpg") top center no-repeat;
    background-size: 100%;
    background-attachment: fixed;
    background-color: #32322a;
  }
  .fv[data-contents="contents"] {
    margin: 0;
  }
  .fv::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: #fbfbfa;
    transform: skewY(-2.5deg);
  }
  .fv h1 {
    z-index: 1;
    position: absolute;
    bottom: -150px;
    left: 50%;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 220px;
    height: 0 !important;
    line-height: 250%;
    width: 800px;
    background: url(../assets/img/logo_sitename.svg) center center no-repeat;
    background-size: 100%;
    transform: translate(-50%, 0);
    mix-blend-mode: multiply;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*共通要素*/
  .page_title {
    margin: -80px 0 100px 0;
    padding: 0;
  }
  .page_title i {
    margin: 0;
    padding: 20px 80px;
    border: 2px solid #54b431;
    background-color: #ffffff;
    font-style: normal;
    color: #54b431;
  }
  .gs_title {
    position: relative;
    margin: 0 0 20px 0;
    padding: 10px 10px;
    border-left: 2px solid #54B431;
    border-right: 2px solid #54B431;
    color: #54B431;
  }
  .gs_title.narrow {
    margin: 0 auto 20px auto;
    width: 80%;
    max-width: 400px;
    text-align: center;
  }
  .gs_sub_title {
    position: relative;
    margin: 0 0 10px 0;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #54B431;
  }
  /*以上*/
  .sitemenu {
    position: relative;
    z-index: 1;
  }
  .sitemenu h1 a {
    z-index: 1;
    position: fixed;
    top: 10px;
    left: 10px;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 10%;
    height: 0 !important;
    line-height: 250%;
    width: 50%;
    background: url(../assets/img/top_logo.svg) center center no-repeat;
    background-size: 100%;
  }
  .sp_menu {
    z-index: 1;
    position: fixed;
    top: 20px;
    right: 100px;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 50px;
    height: 0 !important;
    line-height: 250%;
    width: 50px;
    background: url(../assets/img/sp_menu.svg) center center no-repeat;
    background-size: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 4px 0 #6a7669;
  }
  .sitemenu ul {
    z-index: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    top: -500px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 100px 20px 0 20px;
    list-style: none;
    background-color: #ffffff;
    font-weight: bold;
    color: #54b431;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 #6a7669;
    border: 2px solid #54b431;
  }
  .sitemenu ul li {
    position: relative;
  }
  .sitemenu ul a {
    display: block;
    margin: 0;
    padding: 10px 0 10px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #858a8e;
  }
  .sitemenu ul li:last-of-type a {
    border: none;
  }
  /*下層メニュー*/
  .sitemenu ul ul {
    display: none;
    z-index: 1;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    background-color: #ffffff;
    font-weight: bold;
    color: #54b431;
    box-shadow: 0 1px 4px 0 #6a7669;
    border: 2px solid #54b431;
  }
  /*カートボタン*/
  .cart {
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    right: 20px;
    height: 50px;
    width: 70px;
    background-color: #54b431;
    text-align: center;
    font-weight: bold;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 #6a7669;
  }
  .cart a {
    display: block;
    overflow: hidden;
    margin: 10px 0 0 0;
    padding-top: 30px;
    height: 0 !important;
    line-height: 250%;
    width: 100%;
    background: url(../assets/img/cart.svg) center center no-repeat;
    background-size: 25px auto;
  }
  .cart a:hover {
    opacity: 0.8;
  }
  .cart output {
    position: absolute;
    bottom: -27px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    margin-left: -15px;
    background-color: #c90032;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*PC　ケース紹介箇所*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ケース紹介箇所*/
  .item_info {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1fr;
    grid-gap: 20px;
    min-height: 200px;
    margin: 60px 0 100px 0;
    padding: 20px 0 0 0;
    border-top: 0 solid #fbfbfa;
  }
  /*テキストエリア側*/
  .item_info .in_text {
    position: relative;
    z-index: 1;
    margin: 20px -100px 0 0;
    padding: 30px 30px 30px 30px;
    background-color: #fbfbfa;
    border-left: 1px solid #54B431;
    border-right: 1px solid #54B431;
  }
  .item_info .in_text h1 {
    box-sizing: border-box;
    width: 100%;
    border-bottom: 0 solid #bbc1b9;
    margin: 0;
    padding: 0 0 10px 0;
    color: #54B431;
  }
  .item_info .in_text p {
    margin: 0;
    padding: 0 0 20px 0;
  }
  .item_info .in_text .boxlink_box {
    position: absolute;
    bottom: -20px;
    left: 30px;
  }
  /*写真側*/
  .item_info .photo_area {
    position: relative;
    z-index: 0;
    background-color: #e9e9e9;
    text-align: center;
  }
  .item_info .photo_area .fit_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .item_info .photo_area .item_image {
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 250px;
    height: auto;
  }
  /*左右逆にする設定*/
  .item_info[data-order="reverse"] {
    grid-template-columns: 1fr .8fr;
  }
  .item_info[data-order="reverse"] .text_link {
    order: 2;
  }
  .item_info[data-order="reverse"] .photo_area {
    order: 1;
  }
  .item_info[data-order="reverse"] .text_link .in_text {
    margin: 20px 0 0 -100px;
  }
  .item_info[data-order="reverse"] .item_image {
    left: -60px;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け 注文ページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .order {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-gap: 20px;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*選択リスト*/
  .form-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    margin: 0;
    padding: 0;
  }
  .form-columns-color-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    margin: 0;
    padding: 0;
  }
  .q_img {
    display: block;
    position: absolute;
    top: -10px;
    right: 25px;
    width: 30px;
    height: 30px;
    background: url("../assets/img/q_img.svg") left 2px top 2px no-repeat;
    background-size: 80%;
    background-color: #ffffff;
    border: 2px solid #54B431;
    border-radius: 50%;
    cursor: pointer;
  }
  .q_img:hover {
    -webkit-animation: ele_common_q_img_animname 0.2s forwards;
    animation: ele_common_q_img_animname 0.2s forwards;
    filter: sepia(10%) hue-rotate(270deg) contrast(100%);
  }
  /*横並びリスト*/
  .item_list {
    display: grid;
    grid-gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .item_list[data-column="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .item_list[data-column="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .item_list[data-column="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .item_list li {
    margin: 0;
    padding: 0;
  }
  .item_list li .info_text {
    float: left;
    width: 55%;
    margin-right: 1%;
  }
  .item_list li input {
    width: 40%;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*インラインウインドウ*/
  #in_cart_message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }
  #in_cart_message .message {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    width: 90%;
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
  }
  #in_cart_message .message h5 {
    margin: 0px 0px 0px 0px;
    padding: 20px;
    background-color: #54b431;
    font-size: 1.5rem;
    color: #ffffff;
  }
  #in_cart_message .message .inner {
    margin: 0px 0px 0px 0px;
    padding: 20px;
  }
  #in_cart_message .message p:nth-of-type(1) {
    font-size: 1.2rem;
    margin: 0px 0px 10px 0px;
  }
  #in_cart_message .message p:nth-of-type(2) {
    font-size: .8rem;
  }
  #in_cart_message .message p:nth-of-type(3) {
    font-size: .8rem;
    margin: 0px 0px 20px 0px;
  }
  #in_cart_message .message p:nth-of-type(1) #number_text,
  #in_cart_message .message p:nth-of-type(1) #total_text {
    font-size: 1.4rem;
    font-weight: bold;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*その他*/
  .gs_sub_title {
    z-index: 1;
  }
  [data-descr]:hover::after {
    content: attr(data-descr);
    position: absolute;
    right: 0;
    top: 40px;
    min-width: 200px;
    border: 1px solid #d0d4ce;
    background-color: #ffffff;
    color: #60765b;
    padding: 10px;
    z-index: 1;
  }
  .price {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .button_area {
    margin: 30px 0 0;
    padding: 0;
  }
  .note {
    position: relative;
    margin: 20px 0 0 0;
    padding: 20px;
    border: 1px solid #bbc1b9;
    background-color: #ffffff;
  }
  .note::after {
    content: "";
    display: block;
    position: absolute;
    top: -12px;
    right: 0;
    width: 30px;
    height: 30px;
    background: url("../assets/img/itemclip.svg") center center no-repeat;
    background-size: 80%;
  }
  .memo {
    margin-top: 10px;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け カートページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .cart_step {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1px;
    margin: -50px auto 50px;
    padding: 0;
    width: 400px;
    list-style: none;
    text-align: center;
    font-weight: bold;
  }
  .cart_step li {
    padding: 10px;
    background-color: #d0d4ce;
  }
  .cart_step li.pass {
    background-color: #54B431;
    color: #ffffff;
  }
  .cart_step li:nth-of-type(1) {
    border: none;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*注文のリスト*/
  .item_info_sp {
    display: none;
  }
  .order_items_th {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr 0.5fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 30px 0 10px 0;
    font-size: 0.8rem;
    text-align: center;
  }
  .order_items_th li {
    background-color: #d0d4ce;
  }
  .order_items_th li:nth-of-type(3),
  .order_items_th li:nth-of-type(4),
  .order_items_th li:nth-of-type(5) {
    text-align: center;
  }
  .order_items_th li:nth-of-type(6) a {
    margin-bottom: 3px;
  }
  .order_items_data {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr 0.5fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-top: 2px solid #858a8e;
  }
  .order_items_data:last-of-type {
    border-bottom: 2px solid #858a8e;
  }
  .order_items_data img {
    width: 100%;
    height: auto;
  }
  .order_items_data li:nth-of-type(2) p {
    margin: 0;
  }
  .order_items_data li:nth-of-type(3),
  .order_items_data li:nth-of-type(4),
  .order_items_data li:nth-of-type(5) {
    text-align: center;
  }
  .order_items_data li:nth-of-type(6) a {
    margin-bottom: 3px;
  }
  .order_items_data .attachment_icon {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background: url("../assets/img/attachment_img.svg") no-repeat;
    background-color: #ffffff;
    vertical-align: middle;
    margin: 1px;
  }
  .message-no-items {
    font-size: x-large;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .display-div {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    margin: 10px 0;
    padding: 0;
    justify-content: end;
    text-align: right;
  }
  .total-output {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .bottom_button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px 0 0;
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .bottom_button li:nth-of-type(2) {
    text-align: right;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*お客様情報のご入力*/
  .user_datas {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 20px 0;
    list-style: none;
    margin: 0 auto;
    padding: 10px 0;
    width: 70%;
    max-width: 1000px;
  }
  .user_datas dd,
  .user_datas dt {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #bbc1b9;
  }
  /*入れ子*/
  .user_datas dd dl {
    margin: 0;
    padding: 0;
  }
  .user_datas dd dt {
    padding: 0;
    border: none;
  }
  .user_datas dd dd {
    padding: 0 0 10px;
    border: none;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*情報のまとめ*/
  .order_items_fix_th {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 30px 0 10px 0;
    font-size: 0.8rem;
    text-align: center;
  }
  .order_items_fix_th li {
    background-color: #d0d4ce;
  }
  .order_items_fix_th li:nth-of-type(3),
  .order_items_fix_th li:nth-of-type(4),
  .order_items_fix_th li:nth-of-type(5) {
    text-align: center;
  }
  .order_items_data_fix {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    grid-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-top: 2px solid #858a8e;
  }
  .order_items_data_fix:last-of-type {
    border-bottom: 2px solid #858a8e;
  }
  .order_items_data_fix img {
    width: 100%;
    height: auto;
  }
  .order_items_data_fix li:nth-of-type(2) p {
    margin: 0;
  }
  .order_items_data_fix li:nth-of-type(3),
  .order_items_data_fix li:nth-of-type(4),
  .order_items_data_fix li:nth-of-type(5) {
    text-align: center;
  }
  .user_confirm {
    margin-top: 50px;
  }
  .user_confirm .user_datas {
    width: 100%;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け お問い合わせページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*お客様情報のご入力*/
  .user_datas {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 20px 0;
    list-style: none;
    margin: 0 auto;
    padding: 10px 0;
    width: 70%;
    max-width: 1000px;
  }
  .user_datas dd,
  .user_datas dt {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #bbc1b9;
  }
  /*入れ子*/
  .user_datas dd dl {
    margin: 0;
    padding: 0;
  }
  .user_datas dd dt {
    padding: 0;
    border: none;
  }
  .user_datas dd dd {
    padding: 0 0 10px;
    border: none;
  }
  .bottom_button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px auto;
    padding: 0;
    width: 70%;
    max-width: 1000px;
    list-style: none;
  }
  .bottom_button li:nth-of-type(2) {
    text-align: right;
  }
  #message_div {
    display: block;
    box-sizing: border-box;
    width: 70%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 10px;
    color: #60765b;
    background-color: #e1f2db;
  }
  #message_div:empty {
    display: none;
  }
  .error-message {
    color: #ff3300;
  }
  .error-message:empty {
    display: none;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け フッタ設定*/
  .footer .shopping_info_box {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 60px 10px 60px 10px;
    background: url(../assets/img/bg_stripe_2.png);
    background-size: 10px;
  }
  .footer .shopping_info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
  }
  .footer .shopping_info .box {
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 6px 0 #a0aa9f;
  }
  .footer .shopping_info .box h5 {
    margin: 0 0 10px 0;
    padding: 0 0 5px 0;
    border-left: 2px solid #54B431;
    border-right: 2px solid #54B431;
    border-bottom: 0 solid #858a8e;
    text-align: center;
    font-size: 1rem;
  }
  .footer .shopping_info .box p {
    font-size: .85rem;
    line-height: 1.5;
  }
  .footer ul {
    margin: 30px auto 20px auto;
    padding: 0;
    width: 80%;
    max-width: 400px;
    list-style: none;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer ul li {
    margin: 0;
    padding: 0;
  }
  .footer .copy {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: .75rem;
  }
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

スマホ向け

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
@media all and (max-width: 800px) {
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*SP向けレイアウト調整*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ヘッダエリア*/
  .fv {
    position: relative;
    margin: 0 0 100px 0;
    padding: 0;
    height: 20vh;
    min-height: 200px;
    max-height: 300px;
    background: url("../assets/img/fv_contents.jpg") top center no-repeat;
    background-size: auto 100%;
    background-color: #e9e9e9;
  }
  .fv[data-contents="top"] {
    height: 70vh;
    min-height: 400px;
    max-height: 850px;
    margin: 0 0 300px 0;
    background: url("../assets/img/fv.jpg") top center no-repeat;
    background-size: auto 100%;
    background-color: #32322a;
  }
  .fv[data-contents="contents"] {
    margin: 0;
  }
  .fv::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fbfbfa;
    transform: skewY(-2.5deg);
  }
  .fv h1 {
    z-index: 1;
    position: absolute;
    top: 87%;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 30%;
    height: 0 !important;
    line-height: 250%;
    width: 100%;
    background: url(../assets/img/logo_sitename.svg) center center no-repeat;
    background-size: 90%;
    mix-blend-mode: multiply;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*共通要素*/
  /*タイトル*/
  .page_title {
    margin: -70px 0 50px 0;
    padding: 0;
  }
  .page_title i {
    display: block;
    margin: 0;
    padding: 20px 0;
    width: 100%;
    border: 2px solid #54b431;
    background-color: #ffffff;
    font-style: normal;
    color: #54b431;
    text-align: center;
  }
  .gs_title {
    position: relative;
    margin: 0 0 20px 0;
    padding: 10px 10px;
    border-left: 2px solid #54B431;
    border-right: 2px solid #54B431;
    color: #54B431;
  }
  .gs_title.narrow {
    margin: 0 auto 20px auto;
    width: 80%;
    max-width: 400px;
    text-align: center;
  }
  .gs_sub_title {
    position: relative;
    margin: 0 0 10px 0;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #54B431;
  }
  .sitemenu {
    position: relative;
    z-index: 1;
  }
  .sitemenu h1 a {
    z-index: 1;
    position: fixed;
    top: 10px;
    left: 10px;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 10%;
    height: 0 !important;
    line-height: 250%;
    width: 50%;
    background: url(../assets/img/top_logo.svg) center center no-repeat;
    background-size: 100%;
  }
  .sp_menu {
    z-index: 1;
    position: fixed;
    top: 20px;
    right: 100px;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 50px;
    height: 0 !important;
    line-height: 250%;
    width: 50px;
    background: url(../assets/img/sp_menu.svg) center center no-repeat;
    background-size: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 4px 0 #6a7669;
  }
  .sitemenu ul {
    z-index: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    top: -500px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 100px 20px 0 20px;
    list-style: none;
    background-color: #ffffff;
    font-weight: bold;
    color: #54b431;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 #6a7669;
    border: 2px solid #54b431;
  }
  .sitemenu ul li {
    position: relative;
  }
  .sitemenu ul a {
    display: block;
    margin: 0;
    padding: 10px 0 10px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #858a8e;
  }
  .sitemenu ul li:last-of-type a {
    border: none;
  }
  /*下層メニュー*/
  .sitemenu ul ul {
    display: none;
    z-index: 1;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    background-color: #ffffff;
    font-weight: bold;
    color: #54b431;
    box-shadow: 0 1px 4px 0 #6a7669;
    border: 2px solid #54b431;
  }
  /*カートボタン*/
  .cart {
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    right: 20px;
    height: 50px;
    width: 70px;
    background-color: #54b431;
    text-align: center;
    font-weight: bold;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 #6a7669;
  }
  .cart a {
    display: block;
    overflow: hidden;
    margin: 10px 0 0 0;
    padding-top: 30px;
    height: 0 !important;
    line-height: 250%;
    width: 100%;
    background: url(../assets/img/cart.svg) center center no-repeat;
    background-size: 25px auto;
  }
  .cart a:hover {
    opacity: 0.8;
  }
  .cart output {
    position: absolute;
    bottom: -27px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    margin-left: -15px;
    background-color: #c90032;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  .container {
    width: 90%;
  }
  .item_info {
    position: relative;
    margin: 60px 0 100px;
    padding: 20px 0 0;
  }
  /*テキストエリア側*/
  .item_info .in_text {
    position: relative;
    z-index: 1;
    margin: 20px 0;
    padding: 0;
    background-color: #fbfbfa;
  }
  .item_info .in_text h1 {
    box-sizing: border-box;
    width: 100%;
    border-left: 2px solid #54B431;
    border-right: 2px solid #54B431;
    margin-bottom: 10px;
    padding: 10px;
    color: #54B431;
  }
  .item_info .in_text p {
    margin: 0;
    padding: 0 0 20px;
  }
  .item_info .in_text .boxlink_box {
    position: relative;
  }
  .boxlink {
    padding: 0 40px 0 20px;
  }
  /*写真側*/
  .item_info .photo_area {
    position: relative;
    z-index: 0;
    background-color: #e9e9e9;
    text-align: center;
  }
  .item_info .photo_area .fit_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .item_info .photo_area .item_image {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 150px;
    height: auto;
  }
  /*左右逆にする設定*/
  .item_info[data-order="reverse"] .item_image {
    left: 0;
  }
  .order .photo_info {
    margin: 0;
    padding: 0 0 50px 0;
  }
  .form-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    margin: 0;
    padding: 0;
  }
  .form-columns-color-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    margin: 0;
    padding: 0;
  }
  .q_img {
    display: block;
    position: absolute;
    top: -10px;
    right: 25px;
    width: 30px;
    height: 30px;
    background: url("../assets/img/q_img.svg") left 2px top 2px no-repeat;
    background-size: 80%;
    background-color: #ffffff;
    border: 2px solid #54B431;
    border-radius: 50%;
    cursor: pointer;
  }
  .q_img:hover {
    -webkit-animation: ele_common_q_img_animname 0.2s forwards;
    animation: ele_common_q_img_animname 0.2s forwards;
    filter: sepia(10%) hue-rotate(270deg) contrast(100%);
  }
  /*横並びリスト*/
  .item_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .item_list li {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .item_list li .info_text {
    float: left;
    width: 45%;
    margin-right: 1%;
  }
  .item_list li .info_text br {
    display: none;
  }
  .item_list li input {
    width: 50%;
  }
  .button_area {
    margin: 30px 0 0;
    padding: 0;
  }
  .button_area button {
    padding: 20px 0px 20px 40px;
    text-align: left;
  }
  .button_area button:nth-of-type(1) {
    width: 55%;
  }
  .button_area button:nth-of-type(2) {
    width: 40%;
  }
  input.cartset,
  button.cartset::after {
    left: 7px;
  }
  input.new_cart,
  button.new_cart::after {
    left: 10px;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*インラインウインドウ*/
  #in_cart_message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }
  #in_cart_message .message {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    width: 90%;
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
  }
  #in_cart_message .message h5 {
    margin: 0px 0px 0px 0px;
    padding: 20px;
    background-color: #54b431;
    font-size: 1.5rem;
    color: #ffffff;
  }
  #in_cart_message .message .inner {
    margin: 0px 0px 0px 0px;
    padding: 20px;
  }
  #in_cart_message .message p:nth-of-type(1) {
    font-size: 1.2rem;
    margin: 0px 0px 10px 0px;
  }
  #in_cart_message .message p:nth-of-type(2) {
    font-size: .8rem;
  }
  #in_cart_message .message p:nth-of-type(3) {
    font-size: .8rem;
    margin: 0px 0px 20px 0px;
  }
  #in_cart_message .message p:nth-of-type(1) .number,
  #in_cart_message .message p:nth-of-type(1) .total {
    display: block;
  }
  #in_cart_message .message p:nth-of-type(1) #number_text,
  #in_cart_message .message p:nth-of-type(1) #total_text {
    font-size: 1.4rem;
    font-weight: bold;
  }
  #in_cart_message .message a {
    box-sizing: border-box;
    width: 100%;
    margin-top: 1px;
    margin-bottom: 1px;
  }
  .gs_sub_title {
    z-index: 1;
  }
  [data-descr]:hover::after {
    content: attr(data-descr);
    position: absolute;
    right: 0;
    top: 40px;
    min-width: 200px;
    border: 1px solid #d0d4ce;
    background-color: #ffffff;
    color: #60765b;
    padding: 10px;
    z-index: 1;
  }
  .price {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .price span {
    display: block;
  }
  .note {
    position: relative;
    margin: 20px 0 0 0;
    padding: 20px;
    border: 1px solid #bbc1b9;
    background-color: #ffffff;
  }
  .note::after {
    content: "";
    display: block;
    position: absolute;
    top: -12px;
    right: 0;
    width: 30px;
    height: 30px;
    background: url("../assets/img/itemclip.svg") center center no-repeat;
    background-size: 80%;
  }
  .memo {
    margin-top: 10px;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け カートページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .cart_step {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1px;
    margin: -50px auto 50px;
    padding: 0;
    width: 100%;
    list-style: none;
    text-align: center;
    font-weight: bold;
  }
  .cart_step li {
    padding: 10px;
    background-color: #d0d4ce;
  }
  .cart_step li.pass {
    background-color: #54B431;
    color: #ffffff;
  }
  .cart_step li:nth-of-type(1) {
    border: none;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*注文のリスト*/
  .order_items .e10 {
    width: auto;
  }
  .order_items_th {
    display: none;
  }
  .order_items_data {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    grid-gap: 0 10px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    border-top: 2px solid #858a8e;
  }
  .order_items_data:last-of-type {
    border-bottom: 2px solid #858a8e;
  }
  .order_items_data li {
    box-sizing: border-box;
    padding: 4px 0;
  }
  .order_items_data li:nth-of-type(3),
  .order_items_data li:nth-of-type(4),
  .order_items_data li:nth-of-type(5),
  .order_items_data li:nth-of-type(6) {
    grid-column: 1 / span 2;
    align-items: center;
    border-top: 1px solid #d0d4ce;
  }
  .order_items_data img {
    width: 100%;
    height: auto;
  }
  .order_items_data li:nth-of-type(2) p {
    margin: 0;
  }
  .order_items_data li:nth-of-type(6) a {
    margin-bottom: 3px;
  }
  .item_info_sp {
    margin: 0px 10px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: .8rem;
  } 
  .order_items_data .attachment_icon {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background: url("../assets/img/attachment_img.svg") no-repeat;
    background-color: #ffffff;
    vertical-align: middle;
    margin: 1px;
  }
  .message-no-items {
    font-size: x-large;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .display-div {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    margin: 10px 0;
    padding: 0;
    justify-content: end;
    text-align: right;
  }
  .total-output {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .bottom_button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px 0 0;
    padding: 0;
    width: 100%;
    list-style: none;
  }
  .bottom_button li:nth-of-type(2) {
    text-align: right;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*お客様情報のご入力*/
  .user_datas {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px 0;
    list-style: none;
    margin: 0 auto;
    padding: 10px 0;
    width: 95%;
  }
  .user_datas dd,
  .user_datas dt {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #bbc1b9;
  }
  /*入れ子*/
  .user_datas dd dl {
    margin: 0;
    padding: 0;
  }
  .user_datas dd dt {
    padding: 0;
    border: none;
  }
  .user_datas dd dd {
    padding: 0 0 10px;
    border: none;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*情報のまとめ*/
  .order_items_fix_th {
    display: none;
  }
  .order_items_data_fix {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    grid-gap: 0 10px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    border-top: 2px solid #858a8e;
  }
  .order_items_data_fix:last-of-type {
    border-bottom: 2px solid #858a8e;
  }
  .order_items_data_fix li {
    padding: 4px 0;
    box-sizing: border-box;
  }
  .order_items_data_fix li:nth-of-type(3),
  .order_items_data_fix li:nth-of-type(4),
  .order_items_data_fix li:nth-of-type(5) {
    grid-column: 1 / span 2;
    border-top: 1px solid #d0d4ce;
  }
  .order_items_data_fix img {
    width: 100%;
    height: auto;
  }
  .order_items_data_fix li:nth-of-type(2) p {
    margin: 0;
  }
  .user_confirm {
    margin-top: 50px;
  }
  .user_confirm .user_datas {
    width: 100%;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*パソコン向け お問い合わせページ*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*お客様情報のご入力*/
  .user_datas {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px 0;
    list-style: none;
    margin: 0 auto;
    padding: 10px 0;
    width: 95%;
  }
  .user_datas dd,
  .user_datas dt {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #bbc1b9;
  }
  /*入れ子*/
  .user_datas dd dl {
    margin: 0;
    padding: 0;
  }
  .user_datas dd dt {
    padding: 0;
    border: none;
  }
  .user_datas dd dd {
    padding: 0 0 10px;
    border: none;
  }
  .bottom_button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px auto;
    padding: 0;
    width: 95%;
    list-style: none;
  }
  .bottom_button li:nth-of-type(2) {
    text-align: right;
  }
  #message_div {
    display: block;
    box-sizing: border-box;
    width: 95%;
    margin: 0 auto 10px;
    padding: 10px;
    background-color: #e1f2db;
    color: #60765b;
  }
  #message_div:empty {
    display: none;
  }
  .error-message {
    color: #ff3300;
  }
  .error-message:empty {
    display: none;
  }
  .footer .shopping_info_box {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 60px 10px;
    background: url("../assets/img/bg_stripe_2.png");
    background-size: 10px;
  }
  .footer .shopping_info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
  }
  .footer .shopping_info .box {
    margin: 0;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 1px 6px 0 #a0aa9f;
  }
  .footer .shopping_info .box h5 {
    margin: 0 0 10px;
    padding: 0 0 5px;
    border-left: 2px solid #54B431;
    border-right: 2px solid #54B431;
    text-align: center;
    font-size: 1rem;
  }
  .footer .shopping_info .box p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .footer ul {
    margin: 30px auto 20px;
    padding: 0;
    width: 80%;
    max-width: 400px;
    list-style: none;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer ul li {
    margin: 0;
    padding: 0;
  }
  .footer .copy {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0.75rem;
  }
}
/*以上*/
