@charset "UTF-8";
/* =====================
  common layouts
===================== */
/*  global
------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

@media screen and (min-width: 480px) {
  html {
    font: 400 62.5% "Noto Sans Japanese", sans-serif;
    color: #333;
  }
}

@media screen and (max-width: 479px) {
  html {
    font: 400 56.25% "Noto Sans Japanese", sans-serif;
    color: #333;
  }
}

html,
body {
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

body.no-scroll {
  position: relative;
  overflow: hidden;
}

body.modalopen {
  position: fixed;
  left: 0;
}

::-moz-selection {
  color: white;
  background-color: #416f8e;
}

::selection {
  color: white;
  background-color: #416f8e;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

/*  clear fix
------------------------*/
.cf:after {
  content: "";
  display: block;
  clear: both;
}

/*  responsive
------------------------*/
[data-lg] {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 999px) {
  [data-lg] {
    padding: 0 15px;
  }
}

[data-md] {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  [data-md] {
    padding: 0 15px;
  }
}

[data-sm] {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 479px) {
  [data-sm] {
    padding: 0 15px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*  grid layout
------------------------*/
[data-grid] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-grid] [data-grid-col][data-grid-col="1/2"] {
  width: 50%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/2"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/3"] {
  width: 33.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/3"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/3"] {
  width: 66.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/3"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/4"] {
  width: 25%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/4"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/4"] {
  width: 50%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/4"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/4"] {
  width: 75%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/4"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/5"] {
  width: 20%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/5"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/5"] {
  width: 40%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/5"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/5"] {
  width: 60%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/5"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/5"] {
  width: 80%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/5"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/6"] {
  width: 16.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/6"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/6"] {
  width: 33.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/6"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/6"] {
  width: 50%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/6"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/6"] {
  width: 66.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/6"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="5/6"] {
  width: 83.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="5/6"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/7"] {
  width: 14.2857142857%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/7"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/7"] {
  width: 28.5714285714%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/7"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/7"] {
  width: 42.8571428571%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/7"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/7"] {
  width: 57.1428571429%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/7"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="5/7"] {
  width: 71.4285714286%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="5/7"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="6/7"] {
  width: 85.7142857143%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="6/7"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/8"] {
  width: 12.5%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/8"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/8"] {
  width: 25%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/8"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/8"] {
  width: 37.5%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/8"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/8"] {
  width: 50%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/8"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="5/8"] {
  width: 62.5%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="5/8"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="6/8"] {
  width: 75%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="6/8"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="7/8"] {
  width: 87.5%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="7/8"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/9"] {
  width: 11.1111111111%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/9"] {
  width: 22.2222222222%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/9"] {
  width: 33.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/9"] {
  width: 44.4444444444%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="5/9"] {
  width: 55.5555555556%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="5/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="6/9"] {
  width: 66.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="6/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="7/9"] {
  width: 77.7777777778%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="7/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="8/9"] {
  width: 88.8888888889%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="8/9"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/10"] {
  width: 10%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/10"] {
  width: 20%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/10"] {
  width: 30%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/10"] {
  width: 40%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="5/10"] {
  width: 50%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="5/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="6/10"] {
  width: 60%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="6/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="7/10"] {
  width: 70%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="7/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="8/10"] {
  width: 80%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="8/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="9/10"] {
  width: 90%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="9/10"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/11"] {
  width: 9.0909090909%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/11"] {
  width: 18.1818181818%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/11"] {
  width: 27.2727272727%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/11"] {
  width: 36.3636363636%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="5/11"] {
  width: 45.4545454545%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="5/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="6/11"] {
  width: 54.5454545455%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="6/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="7/11"] {
  width: 63.6363636364%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="7/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="8/11"] {
  width: 72.7272727273%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="8/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="9/11"] {
  width: 81.8181818182%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="9/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="10/11"] {
  width: 90.9090909091%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="10/11"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="1/12"] {
  width: 8.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="1/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="2/12"] {
  width: 16.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="2/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="3/12"] {
  width: 25%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="3/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="4/12"] {
  width: 33.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="4/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="5/12"] {
  width: 41.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="5/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="6/12"] {
  width: 50%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="6/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="7/12"] {
  width: 58.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="7/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="8/12"] {
  width: 66.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="8/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="9/12"] {
  width: 75%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="9/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="10/12"] {
  width: 83.3333333333%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="10/12"] {
    width: 100%;
  }
}

[data-grid] [data-grid-col][data-grid-col="11/12"] {
  width: 91.6666666667%;
}

@media screen and (max-width: 767px) {
  [data-grid] [data-grid-col][data-grid-col="11/12"] {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  [data-grid] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*  table layout
 ------------------------*/
[data-table] {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

[data-table] > * {
  display: table-cell;
  vertical-align: middle;
}

/*  box layout
------------------------*/
[data-box] {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: no-repeat center center;
  background-size: cover;
}

[data-box][data-box="1:1"]:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* 1:1 */
}

[data-box][data-box="2:1"]:before {
  content: "";
  display: block;
  padding-top: 50%;
  /* 2:1 */
}

[data-box][data-box="1:2"]:before {
  content: "";
  display: block;
  padding-top: 200%;
  /* 1:2 */
}

[data-box][data-box="4:3"]:before {
  content: "";
  display: block;
  padding-top: 75%;
  /* 4:3 */
}

[data-box][data-box="16:9"]:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  /* 16:9 */
}

[data-box][data-box="8:5"]:before {
  content: "";
  display: block;
  padding-top: 62.5%;
  /* 8:5 ≒ 黄金比 */
}

[data-box][data-box="7:5"]:before {
  content: "";
  display: block;
  padding-top: 70%;
  /* 7:5 ≒ 白銀比 */
}

[data-box] .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo img {
  max-width: 80px;
  height: auto;
}

h2 {
  text-align: center;
  font: 400 20px/160% "Noto Sans Japanese", sans-serif;
  font: 400 2rem/160% "Noto Sans Japanese", sans-serif;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

h2 span {
  border-bottom: solid 1px #000;
  padding: 0 5px 5px;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

::placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

.steps {
  max-width: 650px;
  margin: 15px auto 30px;
  overflow: hidden;
}

.steps ul {
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  list-style-type: none;
  width: 33%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
}

.steps li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}

.steps li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #7d7d7d;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.steps li:first-child:after {
  content: none;
}

.steps li.current {
  color: green;
}

.steps li.current:before {
  border-color: #55b776;
}

.steps li.current + li:after {
  background-color: #55b776;
}

.order-style {
  max-width: 650px;
  margin: auto;
  padding: 10px 0;
}

.order-cart,
.order-input,
.order-check,
.order-payment,
.order-complete,
.order-contact {
  max-width: 650px;
  margin: auto;
}

.order-input {
  counter-reset: numbering 0;
}

.order-input:first-of-type {
  padding-top: 20px;
}

.order-input .input-wrap {
  position: relative;
  padding: 15px 0;
  counter-increment: numbering 1;
}

.order-input .input-wrap:not(:first-of-type) {
  border-top: 1px dashed #ddd;
}

.order-input .delete-btn {
  position: absolute;
  right: 0;
  top: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  display: inline-block;
  font-size: 1rem;
  height: 20px;
  outline: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  vertical-align: top;
  width: 20px;
}

.order-input .delete-btn:before, .order-input .delete-btn:after {
  background-color: #fff;
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  content: "";
}

.order-input .delete-btn:before {
  height: 2px;
  width: 50%;
}

.order-input .delete-btn:after {
  height: 50%;
  width: 2px;
}

.order-input .add-btn {
  position: relative;
  text-align: right;
}

.order-input .add-btn .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 1rem;
  height: 2.285em;
  position: relative;
  vertical-align: top;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
          user-select: none;
  border: 1px solid #dbdbdb;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
  background-color: #666;
  border-color: transparent;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.order-input .add-btn .button:hover {
  opacity: 0.70;
}

.order-input .add-btn .button .icon {
  margin-left: -.25rem;
  margin-right: .5rem;
}

.order-input .add-btn .button span {
  font-size: 14px;
}

.order-input .sub-ttl {
  margin-top: 0;
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
}

.order-input .sub-ttl:before {
  content: counter(numbering);
}

.product-ttl,
.order-ttl,
.contact-ttl {
  color: #4d4d4d;
  font: 400 20px/160% "Noto Sans Japanese", sans-serif;
  font: 400 2rem/160% "Noto Sans Japanese", sans-serif;
  letter-spacing: 3px;
  background-color: #ededed;
  text-align: center;
}

.complete-ttl {
  font: 400 20px/160% "Noto Sans Japanese", sans-serif;
  font: 400 2rem/160% "Noto Sans Japanese", sans-serif;
  letter-spacing: 3px;
  text-align: center;
}

.order-desc,
.complete-desc {
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
}

.order-desc .note {
  font: 400 13px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.3rem/160% "Noto Sans Japanese", sans-serif;
}

.order-contact {
  margin-bottom: 60px;
}

.contact-info {
  padding: 0;
}

.contact-info li {
  list-style: none;
  font: 400 14px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.4rem/160% "Noto Sans Japanese", sans-serif;
}

.contact-info li span:after {
  content: "：";
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  counter-increment: numbering 1;
}

.order-table:not(:first-of-type) {
  margin-top: 25px;
}

.order-table caption {
  font: 400 14px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.4rem/160% "Noto Sans Japanese", sans-serif;
  text-align: left;
}

.order-table caption:before {
  content: counter(numbering);
}

.order-table th,
.order-table td {
  font: 400 14px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.4rem/160% "Noto Sans Japanese", sans-serif;
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  padding: .5em;
  vertical-align: middle;
}

.order-table thead th,
.order-table thead td {
  border-width: 0 0 2px;
  color: #7a7a7a;
}

.order-table tfoot th,
.order-table tfoot td {
  border-width: 2px 0 0;
  color: #7a7a7a;
}

.order-table tbody tr:hover {
  background-color: #fafafa;
}

.order-table tbody tr th {
  width: 8em;
}

.order-table tbody tr.not-selectable {
  position: relative;
}

.order-table tbody tr.not-selectable:after {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "在庫切れ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font: 400 13px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.3rem/160% "Noto Sans Japanese", sans-serif;
  color: #d22b2b;
  background-color: rgba(0, 0, 0, 0.2);
}

.order-table tbody tr.not-selectable td {
  opacity: .15;
}

.order-table tbody .input {
  text-align: center;
  max-width: 3em;
}

.order-table tbody select {
  font-family: "Noto Sans Japanese", sans-serif;
}

.order-table tbody ul {
  margin: 0;
  padding: 0;
}

.order-table tbody ul li {
  list-style: none;
}

.order-table.cart-table tbody tr td:nth-child(1) {
  width: calc(100% - (6em + 5em + 6em));
}

.order-table.cart-table tbody tr td:nth-child(2) {
  width: 6em;
}

.order-table.cart-table tbody tr td:nth-child(3) {
  width: 5em;
}

.order-table.cart-table tbody tr td:nth-child(4) {
  width: 6em;
}

.order-table.cart-table span.option-name {
  display: inline-block;
  padding-left: 1em;
}

.order-table .text-left {
  text-align: left;
}

.order-table .text-right {
  text-align: right;
}

.order-table .text-center {
  text-align: center;
}

.order-table .border-none {
  border: none;
}

.order-table .total th,
.order-table .total td {
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
}

.order-table .credit-icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order-table .credit-icon-wrapper img {
  width: auto;
  height: 19px;
}

.order-table .credit-icon-wrapper img:not(:last-child) {
  margin-right: 10px;
}

.flex-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .flex-counter {
    display: block;
  }
}

.order-table-left {
  width: 56%;
}

@media screen and (max-width: 767px) {
  .order-table-left {
    width: 100%;
    margin-bottom: 25px;
  }
}

.order-table-right {
  border-top: solid 2px #DBDBDB;
  border-bottom: solid 2px #DBDBDB;
  width: 36%;
  margin-top: 0 !important;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .order-table-right {
    width: 100%;
    margin-bottom: 40px;
  }
}

.order-table-right tbody tr:hover {
  background-color: #fff !important;
}

.order-table-right tbody tr th {
  width: 6em;
  background: #f6f6f6;
}

@media screen and (max-width: 767px) {
  .order-table-right tbody tr th {
    width: 50%;
  }
}

.order-input .input-ttl,
.order-payment .input-ttl {
  font: 400 20px/160% "Noto Sans Japanese", sans-serif;
  font: 400 2rem/160% "Noto Sans Japanese", sans-serif;
}

.order-input .input-area,
.order-payment .input-area {
  margin: 10px 0;
}

.order-input .input-area label,
.order-payment .input-area label {
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
}

.order-input .input-area label span,
.order-payment .input-area label span {
  font-size: 90%;
  color: #d22b2b;
}

.order-input .input-area .label,
.order-payment .input-area .label {
  display: block;
  margin-bottom: .25em;
}

.order-input .input-area .radio,
.order-input .input-area .checkbox,
.order-payment .input-area .radio,
.order-payment .input-area .checkbox {
  margin-right: .5em;
}

.order-input .input-area .must,
.order-payment .input-area .must {
  margin-left: 1em;
  color: #ff3860;
  font: 400 14px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.4rem/160% "Noto Sans Japanese", sans-serif;
}

.order-input .input-field,
.order-payment .input-field {
  display: inline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.order-input .input-field input,
.order-input .input-field textarea,
.order-input .input-field select,
.order-payment .input-field input,
.order-payment .input-field textarea,
.order-payment .input-field select {
  border-radius: 3px;
  display: inline;
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
  height: 2.285em;
  line-height: 1.5;
  padding: .25em 1em;
  margin: .25em;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  color: #363636;
  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
          box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.order-input .input-field textarea,
.order-payment .input-field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100px;
}

.order-input .input-field input[type="radio"],
.order-input .input-field input[type="checkbox"],
.order-payment .input-field input[type="radio"],
.order-payment .input-field input[type="checkbox"] {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  vertical-align: middle;
  border-radius: 0;
  background: none;
  line-height: 1;
  height: auto;
  position: relative;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: 24px;
  height: 24px;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 24px;
  -webkit-box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  cursor: pointer;
}

.order-input .input-field input[type="radio"]:checked:after,
.order-input .input-field input[type="checkbox"]:checked:after,
.order-payment .input-field input[type="radio"]:checked:after,
.order-payment .input-field input[type="checkbox"]:checked:after {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 12px;
}

.order-input .input-field .notes,
.order-payment .input-field .notes {
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
}

.order-input .input-field *:focus,
.order-payment .input-field *:focus {
  outline: 0;
  border-color: #00d1b2;
}

.order-input .input-field .short,
.order-payment .input-field .short {
  width: calc(30% - 1em);
}

@media screen and (min-width: 480px) {
  .order-input .input-field .short,
.order-payment .input-field .short {
    max-width: 120px;
  }
}

.order-input .input-field .medium,
.order-payment .input-field .medium {
  width: 100%;
}

@media screen and (min-width: 480px) {
  .order-input .input-field .medium,
.order-payment .input-field .medium {
    max-width: 230px;
  }
}

.order-input .input-field .long,
.order-payment .input-field .long {
  width: 100%;
}

@media screen and (min-width: 480px) {
  .order-input .input-field .long,
.order-payment .input-field .long {
    max-width: 400px;
  }
}

.order-input .input-field .full,
.order-payment .input-field .full {
  width: 100%;
}

@media screen and (max-width: 479px) {
  .order-input .input-field.box,
.order-payment .input-field.box {
    position: relative;
  }
  .order-input .input-field.box .select,
.order-payment .input-field.box .select {
    width: calc(100% - 3em);
  }
  .order-input .input-field.box .select select,
.order-payment .input-field.box .select select {
    width: inherit;
  }
  .order-input .input-field.box .notes,
.order-payment .input-field.box .notes {
    width: 1em;
  }
}

.order-check {
  counter-reset: numbering 0;
}

.order-check .survey .survey-ttl {
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
  margin-bottom: .25em;
}

.order-check .notes {
  font: 400 14px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.4rem/160% "Noto Sans Japanese", sans-serif;
}

.notes-list {
  padding: 0;
  margin: 1em;
}

.notes-list li {
  position: relative;
  padding-left: 1.25em;
  font: 400 13px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.3rem/160% "Noto Sans Japanese", sans-serif;
  list-style: none;
}

.notes-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  content: "※";
}

.pagenation {
  margin: 30px 0;
  text-align: center;
}

.pagenation .back,
.pagenation .next {
  display: inline-block;
  width: 47%;
  margin: 1%;
  max-width: 200px;
}

.pagenation button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: .25em .5em;
  margin: 0;
  font: 400 18px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.8rem/160% "Noto Sans Japanese", sans-serif;
  color: #666;
  border: 1px solid;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pagenation button:hover {
  color: white;
  background: #666;
}

.conditions {
  max-width: 650px;
  margin: 60px auto 0;
  padding: 15px 30px;
  letter-spacing: 1px;
  border: solid 1px #00a5b3;
}

.conditions h5 {
  margin: 0;
  position: relative;
  font: 400 20px/160% "Noto Sans Japanese", sans-serif;
  font: 400 2rem/160% "Noto Sans Japanese", sans-serif;
}

.conditions ul {
  margin: 5px 0;
  padding: 0;
  list-style: none;
}

.conditions ul li {
  position: relative;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 1.5em;
}

.conditions ul li::before {
  content: '・';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.privacy_policy {
  max-width: 650px;
  margin: 60px auto 0;
  padding: 15px 30px;
  letter-spacing: 1px;
  border: solid 1px #00a5b3;
}

.privacy_policy h5 {
  margin: 0;
  position: relative;
  font: 400 20px/160% "Noto Sans Japanese", sans-serif;
  font: 400 2rem/160% "Noto Sans Japanese", sans-serif;
}

.privacy_policy p {
  font-size: 13px;
  position: relative;
  line-height: 1.6;
}

.agreement {
  text-align: center;
}

.agreement .check {
  font: 400 16px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.6rem/160% "Noto Sans Japanese", sans-serif;
}

.agreement .note {
  font: 400 12px/160% "Noto Sans Japanese", sans-serif;
  font: 400 1.2rem/160% "Noto Sans Japanese", sans-serif;
}
/*# sourceMappingURL=order.css.map */