@charset "UTF-8";

@media screen and (min-width: 1000px) {}

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

/* ↓reset */
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

textarea {
  overflow: auto;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* ↑reset */

/* ↓共通 */
body {
  color: #333333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
}

input {
  border-color: #B4B4B4;
}

/* .separation {
	border-color: #27282C;
} */
.k-navy {
  color: #0E1C77;
}

.k-orange {
  color: #F4B800;
}

.k-red {
  color: #CC3333;
}

.k-gray {
  color: #B4B4B4;
}

.k-blue {
  color: #3399CC;
}

.k-bg-navy {
  background-color: #0E1C77;
  color: #fff;
}

.k-bg-orange {
  color: #0E1C77;
  background-color: #F4B800;
}

.k-bg-gray {
  color: #333333;
  background-color: #DEDEDE;
}

.wrap {
  margin: 0px auto;
}

@media screen and (min-width: 1000px) {
  .wrap {
    width: 96%;
    min-width: 532px;
    max-width: 1200px;
    padding: 70px 10px 120px;
  }
}

@media screen and (max-width: 999.9px) {
  .wrap {
    width: 89.33vw;
    padding: 8vw 0 13.33vw;
  }
}

/* .banner */
.banner {
  background: #0E1C77;
  width: 100%;
  height: 45px;
}

h1 {
  font-size: 29px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  h1 {
    font-size: 20px;
  }
}

hr.thick {
  border: none;
  background-color: #0E1C77;
  height: 20px;
}

@media screen and (max-width: 999px) {
  hr.thick {
    height: 3px;
  }
}

.twoColumn .container .columnFlex {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.twoColumn .container .columnFlex .sec_sub {
  min-width: 45%;
  max-width: 495px;
  padding: 31px;
  border: 1px solid #B4B4B4;
  border-radius: 10px;
}

.twoColumn .container .columnFlex .sec_main:nth-of-type(2) {
  min-width: 48.55%;
  max-width: 534px;
  /* margin-right: 9%; */
}

.twoColumn .container .columnFlex .sec_sub .title {
  margin-bottom: 17px;
}

.twoColumn .container .columnFlex .sec_sub .order-info {
  border-top: 1px solid #DEDEDE;
}

@media screen and (max-width: 999px) {
  .twoColumn .container .columnFlex {
    flex-direction: column;
  }

  .twoColumn .container .columnFlex .sec_main:nth-of-type(2) {
    max-width: 557px;
  }
}

/* button */
/* TODO: IDセレクタでのスタイル除去 */
.c-btn, button[id^='btn_'] {
  font-weight: bold;
  line-height: 40px;
  width: 260px;
  max-width: 100%;
  height: 40px;
  text-align: center;
  border: none;
  border-radius: 6px;
}

.single button[id^='btn_'] {
  margin: 0 auto;
}

button[id^='btn_'].k-bg-white {
  color: #0E1C77;
  border: 2px solid #0E1C77;
}

button.btn_login.enable {
  color: #fff;
  background-color: #0E1C77;
}

button#btn_signup_full.enable {
  color: #0E1C77;
  background-color: #F4B800;
}

button.arrow span {
  position: relative;
  display: block;
}

button.arrow span:after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 13px;
  height: 18px;
  content: '';
  transform: translateY(-50%);
  background: url(../images/icon_arrow_black@2x.png) no-repeat;
  background-size: cover;
}

button.arrow.enable {
  color: #0E1C77;
  background-color: #F4B800;
}

button.arrow.enable span:after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 13px;
  height: 18px;
  content: '';
  transform: translateY(-50%);
  background: url(../images/icon_arrow_navy@2x.png) no-repeat;
  background-size: cover;
}

button.btn-upper {
  font-size: 15px;
  font-weight: bold;
  width: auto;
  padding: 0 17px 0 10px;
}

button.btn-upper img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  vertical-align: middle;
}

#btn_upper_area {
  margin-bottom: 20px;
  text-align: right;
  position: relative;
}

#btn_upper_area .btn_cart .badge {
  content: "1";
  background-color: #F4B800;
  color: #0E1C77;
  width: 1.6em;
  line-height: 1.6;
  position: absolute;
  top: -14px;
  right: -14px;
  border-radius: 50%;
  font-size: 18px;
}

@media screen and (min-width: 1000px) {
  #btn_upper_area .btn_setting:after {
    content: "設定";
  }

  #btn_upper_area .btn_cart:after {
    content: "カート";
  }

  #btn_upper_area .btn-upper:nth-of-type(n+2) {
    margin-left: 20px;
  }
}

@media screen and (max-width: 999px) {
  #btn_upper_area button {
    background: none;
    margin: 0;
    padding: 0;
  }

  #btn_upper_area button img {
    margin: 0;
    width: 30px;
  }

  #btn_upper_area .btn_cart .badge {
    top: 6px;
    right: -6px;
    border-radius: 50%;
    font-size: 10px;
  }
}

#btn_bottom_area {
  display: flex;
  justify-content: space-between;
  width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 999px) {
  .c-btn, button[id^='btn_'] {
    height: 50px;
  }

  #btn_bottom_area {
    flex-direction: column-reverse;
    width: 89.33vw;
    margin-top: 8vw;
  }

  #btn_bottom_area button {
    width: 89.33vw;
    max-width: 335px;
    margin: 0 auto;
  }

  #btn_bottom_area button:last-child {
    margin-bottom: 4vw;
  }

  #btn_bottom_area #btn_print {
    display: none;
  }
}

/* title */
#title {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  justify-content: space-between;
  margin-bottom: 40px;
}

#title.with-btn {
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  margin-top: 2em;
}

@media screen and (max-width: 999px) {
  #title {
    margin: 0 auto 20px;
  }
}

/* step */
#step {
  font-weight: bold;
  color: #B4B4B4;
  margin-bottom: 50px;
}

#step ul {
  display: flex;
}

#step li {
  position: relative;
  font-size: 20px;
  line-height: 2;
  margin-right: 52px;
}

#step li a {
  color: #3399CC;
  font-size: 20px;
}

#step li:not(:last-of-type):after {
  position: absolute;
  top: 45%;
  right: -52px;
  width: 12px;
  height: 17px;
  transform: translateY(-45%);
  content: '';
  background: url(../images/icon_arrow_gray@2x.png) no-repeat;
  background-size: cover;
}

#step li:nth-of-type(n+2) {
  margin-left: 40px;
}

#step li.active {
  color: #333333;
}

@media screen and (max-width: 999px) {
  #step {
    margin-bottom: 10px;
  }

  #step li {
    font-size: 11px;
    margin-right: 15px;
    font-weight: normal;
  }

  #step li.active {
    font-weight: bold;
  }

  #step li:not(:last-of-type):after {
    width: 7px;
    height: 10px;
    right: -20px;
  }

  #step li:nth-of-type(n+2) {
    margin-left: 15px;
  }

  #step li a {
    font-size: 11px;
    font-weight: normal;
  }
}


/* h2 */
div.title {
  /* display: flex;
	align-items: center;
	justify-content: space-between; */
  /* height: 31px; */
  margin-bottom: 27px;
}

div.title h2 {
  font-size: 18px;
  font-weight: bold;
}

div.title h2:before {
  display: inline-block;
  width: 8px;
  height: 23px;
  margin-right: 16px;
  content: '';
  vertical-align: middle;
  background: #0E1C77;
}

div.title a {
  font-size: 12px;
}

div.title a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 999px) {
  div.title {
    margin-bottom: 17px;
  }
}


/* thanks order_full */
#order_full {
  margin-bottom: 44px;
  border: 1px solid #B4B4B4;
  border-radius: 10px;
  padding: 38px 67px 38px 37px;
}

#order_full .order-detail {
  font-size: 15px;
  font-weight: bold;
  padding: 25px 23px 12px 50px;
}

#order_full .order-detail:first-of-type {
  border-top: 1px solid #CCCCCC;
}

#order_full .order-detail:not(:last-of-type) {
  border-bottom: 1px dotted #CCCCCC;
}

#order_full .order-detail:last-of-type {
  border-bottom: 1px solid #CCCCCC;
}

#order_full .order-detail ul {
  display: flex;
}

#order_full .order-detail .productImage {
  margin-right: 98px;
}

#order_full .order-detail .productImage img {
  width: 134px;
  height: 134px;
}

#order_full .order-detail .nameQuantity {
  display: flex;
  margin-right: auto;
  flex-direction: column;
}

#order_full .order-detail .productName {
  /* width: 370px; */
  margin: 0 50px 16px 0;
}

#order_full .order-detail .productQuantity {
  font-size: 14px;
  /* width: 190px; */
  margin-right: 20px;
}

#order_full .order-detail .productAmount {
  width: 94px;
  text-align: right;
}

#order_full [class$="-area"] {
  padding: 0 23px 0 50px;
}

#order_full [class$="-area"]>ul {
  min-width: 26%;
  max-width: 309px;
  margin-left: auto;
}

#order_full [class$="-area"] .detail:first-of-type {
  margin-top: 16px;
}

#order_full [class$="-area"] .detail {
  margin-bottom: 16px;
}

#order_full [class$="-area"] .detail dl {
  display: flex;
  justify-content: space-between;
}

#order_full [class$="-area"] .detail dd {
  font-weight: bold;
  min-width: 30%;
  max-width: 94px;
  text-align: right;
}

#order_full .total-area {
  font-weight: bold;
  color: #C33;
  border-top: 1px solid #ccc;
}

#order_full .total-area dt,
#order_full .total-area dd,
#order_full .total-area dd span {
  font-size: 19px;
}

@media screen and (max-width: 999px) {
  #order_full {
    width: 89.33vw;
    max-width: 557px;
    margin: 0 auto 30px;
    padding: 20px 4% 0;
    border: 1px #DEDEDE solid;
    border-radius: 10px;
  }

  #order_full .order-detail {
    padding: 22px 0 27px;
  }

  #order_full .order-detail ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 98%;
  }

  #order_full .order-detail .productImage {
    flex-shrink: 0;
    width: 70px;
    margin-right: 4.27vw;
  }

  #order_full .order-detail .productImage img {
    width: 100%;
    height: auto;
  }

  #order_full .order-detail .nameQuantity {
    width: 100%;
  }

  #order_full .order-detail .productName {
    font-size: 12px;
    display: block;
    width: 80%;
    margin: 0 0 2.13vw 0;
  }

  #order_full .order-detail .productQuantity,
  #order_full .order-detail .productQuantity span {
    font-size: 12px;
  }

  #order_full .order-detail .productAmount,
  #order_full .order-detail .productAmount span {
    width: 72px;
    font-size: 12px;
  }

  #order_full [class$="-area"] {
    padding: 0 12px 0 0;
  }

  #order_full [class$="-area"]>ul {
    width: 100%;
    margin-left: auto;
    padding-left: 12px;
  }

  .sec_sub [class$='-area'] .detail dd {
    font-size: 12px;
    font-weight: bold;
    min-width: 30%;
    max-width: 94px;
    text-align: right;
  }

  #order_full .total-area dt,
  #order_full .total-area dd,
  #order_full .total-area dd span {
    font-size: 16px;
  }
}

/* #user_column .sec_main */
.sec_main {
  max-width: 557px;
  margin: 0 auto 112px;
}

.sec_main .mail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.sec_main .mail .title {
  font-size: 12px;
  font-weight: bold;
  align-self: center;
  width: 134px;
  margin-left: 12px;
}

.sec_main .mail .mailaddress {
  display: block;
  width: 70.52%;
  margin-left: 8px;
  padding: 8px;
}

.sec_main form {
  padding: 0 12px;
}

.sec_main label>div {
  /*試作*/
  display: block;
  width: 100%;
}

.sec_main input {
  display: block;
  /* width: 70.52%; */
  width: 98%;
  margin-left: 8px;
  padding: 8px;
  border: 1.5px solid #B4B4B4;
  border-radius: 6px;
  outline: none;

  flex-grow: 1;
}

.sec_main input::-webkit-input-placeholder {
  color: #B4B4B4;
}

.sec_main input:-ms-input-placeholder {
  color: #B4B4B4;
}

.sec_main input::-moz-placeholder {
  color: #B4B4B4;
}

.sec_main label {
  display: flex;
  align-items: flex-start;
  /* flex-wrap: wrap; */
  /*試作*/
}

.sec_main label:not(:last-child) {
  margin-bottom: 30px;
}

.sec_main span.title {
  font-size: 12px;
  font-weight: bold;
  line-height: 40px;
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: space-between;
  width: 170px;
  margin-left: 12px;
}

.sec_main .required {
  line-height: 1;
  padding: 4px;
  color: #C33;
  border: #C33 1px solid;
  border-radius: 2px;
}

.sec_main #post .title {
  align-self: flex-start;
  /* margin-top: 10px; */
  /* flex-shrink: 0.3; */
  /*試作*/
}

.sec_main .inputarea {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* width: 360px; */
  /*試作*/
}

@media screen and (max-width: 999px) {
  .sec_main .inputarea {
    width: 89.33vw;
  }
}

.sec_main .inputarea span {
  padding: 0 8px;
}

.sec_main .inputarea input:last-of-type {
  margin-left: 0;
}

.sec_main input.postalcode {
  width: 79px;
  min-width: 54px;
  flex-grow: 0;
  /*追加*/
}

@media screen and (max-width: 999px) {
  .sec_main {
    width: 89.33vw;
    margin: 0 auto 30px;
    padding-top: 20px;
  }

  .sec_main div.title {
    font-size: 16px;
    width: 92%;
    margin: 0 auto 20px 0;
    /* padding: 0 0 15px 0; */
    color: #333;
    background: none;
  }

  .sec_main .mail {
    flex-direction: column;
  }

  .sec_main .mail .title {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .sec_main form {
    padding: 0 3.58%;
    margin-bottom: 13.33vw;
  }

  .sec_main label {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .sec_main span.title {
    font-size: 14px;
    align-self: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 8px 0;
    padding-left: 0;
  }

  .sec_main .required {
    font-size: 11px;
    margin-left: 2.99%;
    padding: 3px;
  }

  .sec_main input {
    width: 100%;
    margin-left: 0;
  }
}

/* #order_column .sec_sub */
.sec_sub {
  margin-bottom: 44px;
}

.sec_sub .order-detail {
  font-size: 15px;
  font-weight: bold;
  padding: 22px 0 27px;
}

.sec_sub .order-detail:not(:last-of-type) {
  border-bottom: 1px dotted #CCCCCC;
}

.sec_sub .order-detail:last-of-type {
  border-bottom: 1px solid #CCCCCC;
}

.sec_sub .order-detail ul {
  display: flex;
  justify-content: space-between;
  /* max-width: 414px; */
}

.sec_sub .order-detail .productImage {
  flex-shrink: 0;
  width: 100px;
  height: auto;
  margin-right: 16px;
}

.sec_sub .order-detail .productImage img {
  width: 100%;
  max-height: 100%;
}

.sec_sub .order-detail .nameQuantity {
  width: 100%;
}

.sec_sub .order-detail .productName {
  width: 80%;
  display: block;
  margin-bottom: 16px;
}

.sec_sub .order-detail .productAmount {
  width: 72px;
  text-align: right;
  font-size: 12px;
}

.sec_sub .order-detail .productName span,
.sec_sub .order-detail .productQuantity,
.sec_sub .order-detail .productQuantity span,
.sec_sub .order-detail .productAmount span {
  font-size: 12px;
}

.sec_sub [class$="-area"] {
  padding-right: 12px;
}

.sec_sub [class$='-area']>ul {
  width: 100%;
  margin-left: auto;
  padding-left: 24px;
}

.sec_sub [class$="-area"] .detail:first-of-type {
  margin-top: 16px;
}

.sec_sub [class$="-area"] .detail {
  margin-bottom: 16px;
}

.sec_sub [class$="-area"] .detail dl {
  display: flex;
  justify-content: space-between;
}

.sec_sub [class$='-area'] .detail dd {
  font-size: 12px;
  font-weight: bold;
  min-width: 30%;
  max-width: 94px;
  text-align: right;
}

.sec_sub [class$="-area"] .detail span {
  font-size: 12px;
}

.sec_sub .total-area {
  font-weight: bold;
  color: #C33;
  border-top: 1px solid #ccc;
}

.sec_sub .total-area .detail dd span {
  font-size: 14px;
}

@media screen and (max-width: 999px) {
  .twoColumn .container .columnFlex .sec_sub {
    width: 89.33vw;
    max-width: 557px;
    margin: 0 auto 30px;
    padding: 20px 4% 0;
    border: 1px #DEDEDE solid;
    border-radius: 10px;
  }

  .sec_sub .order-detail .productImage {
    width: 70px;
    margin-right: 4.27vw;
  }

  .sec_sub .order-detail .productName {
    margin-bottom: 2.13vw;
  }

  .sec_sub .order-detail ul {
    align-items: flex-start;
    width: 98%;
  }

  .sec_sub .total-area .detail dd span {
    font-size: 16px;
  }
}

/* section_bottom */
#section_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

#section_bottom [id$="_column_s"] {
  flex-basis: 48.91%;
}

#section_bottom .each-info {
  border: 1px solid #B4B4B4;
  border-radius: 10px;
  padding: 38px 37px 27px;
}

/* #section_bottom .each-info .text {
	margin-top: 16px;
	padding: 0 23px 0 20px;
}
#section_bottom .each-info .text span {
	display: block;
}
#section_bottom #payment_column_s .text {
	display: none;
}
#section_bottom #payment_column_s .text .paytype {
	font-weight: bold;
}
#section_bottom #payment_column_s .text .credit-info {
	display: flex;
	margin-top: 16px;
}
#section_bottom #payment_column_s .text .credit-info li span {
	display: inline-block;
}
#section_bottom #payment_column_s .text.select {
	display: block;
}
#section_bottom textarea {
	width: 100%;
	padding: 8px 10px;
	resize: vertical;
	border: 1px solid #B4B4B4;
	border-radius: 6px;
} */
#section_bottom .each-info div:nth-of-type(n+2) {
  margin-bottom: 40px;
}

#section_bottom .each-info .heading {
  font-weight: bold;
  margin-bottom: 5px;
}

#section_bottom .each-info .text {
  width: 90.91%;
}

#section_bottom .each-info .text span {
  display: block;
}

#section_bottom .each-info .credit-info+.text {
  margin-top: 16px;
}

#section_bottom .each-info .annotation {
  font-size: 11px;
}

@media screen and (max-width: 999px) {
  #section_bottom {
    flex-direction: column;
    width: 89.33vw;
  }

  #section_bottom .each-info {
    width: 89.33vw;
    max-width: 557px;
    margin: 0 auto 30px;
    padding: 20px 4% 0;
    border: 1px #DEDEDE solid;
    border-radius: 10px;
  }
}
