@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body, table, input, textarea, select, option {
  box-sizing: border-box;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

button:not([disabled]) {
  cursor: pointer;
}

a, button, input[type=submit], input[type=image] {
  transition: all 0.3s;
  text-decoration: none;
}

a:hover, button:hover:not([disabled]), input[type=submit]:hover:not([disabled]), input[type=image]:hover:not([disabled]) {
  opacity: 0.7;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=url],
input[type=number],
input[type=submit],
input[type=image],
textarea,
select {
  -webkit-appearance: none;
}

.checkboxLabel {
  cursor: pointer;
}

select, input, button, textarea {
  font-size: 99%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
}

/*-----------------------------------------------
Wrapper
-----------------------------------------------*/
#wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  #wrapper {
    max-width: initial;
  }
}

/* Header
------------------------------------ */
header {
  padding: 1em;
  text-align: center;
}

/* Contents
------------------------------------ */
#contents {
  padding: 1em;
}

/*-----------------------------------------------
見出し
-----------------------------------------------*/
h1 {
  margin: 0 0 1.2em;
}
h1 img {
  max-width: 300px;
}

h2 {
  border-left: 5px solid #26547c;
  margin: 2em 0 1em;
  padding-left: 0.5em;
  font-size: 2.6rem;
}

/*-----------------------------------------------
テーブル
-----------------------------------------------*/
.formTable {
  margin: 2em 0 5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.formTable th {
  background: #fafafa;
  text-align: left;
  width: 25%;
}
.formTable th,
.formTable td {
  padding: 0.8em 1em;
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .formTable th,
  .formTable td {
    display: block;
    width: 100%;
  }
}
.formTable input[type=text],
.formTable input[type=password],
.formTable input[type=email],
.formTable input[type=tel],
.formTable input[type=number],
.formTable select,
.formTable textarea {
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
}
.formTable input[type=text],
.formTable input[type=password],
.formTable input[type=email],
.formTable input[type=tel],
.formTable input[type=number],
.formTable textarea {
  width: 100%;
}
.formTable input[type=text].auto,
.formTable input[type=password].auto,
.formTable input[type=email].auto,
.formTable input[type=tel].auto,
.formTable input[type=number].auto,
.formTable textarea.auto {
  width: auto;
}
.formTable input[type=checkbox] {
  margin: 0 5px 0 0;
}
.formTable .numberInput {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .formTable .numberInput input {
    width: 9rem;
    flex: 1;
  }
}
.formTable dl dd {
  margin: 0 0 0.5em;
}
.formTable dl dd:last-of-type {
  margin-bottom: 0;
}

.deliveryCompany {
  background: #fafafa;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  padding: 15px 20px;
}

.notes {
  display: block;
  color: #666;
}

.btnArea {
  margin: 5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .btnArea {
    column-gap: 0;
    row-gap: 10px;
    flex-direction: column;
  }
}
.btnArea input[type=submit],
.btnArea button[type=submit] {
  padding: 15px 0;
  width: 400px;
  border: 1px solid #c00;
  background: #c00;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .btnArea input[type=submit],
  .btnArea button[type=submit] {
    width: 100%;
  }
}
.btnArea input[type=submit][disabled],
.btnArea button[type=submit][disabled] {
  background: rgb(229.5, 229.5, 229.5);
  border-color: #ccc;
}
.shipping .btnArea input[type=submit],
.shipping .btnArea button[type=submit] {
  border-color: #26547c;
  background: #26547c;
}
.shipping .btnArea {
  margin: 1.5em 0 2em;
}

.backBtn {
  background: #666;
  border: 1px solid #666;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  padding: 15px 0;
  width: 400px;
  text-decoration: none;
  text-align: center;
  font-size: 1.8rem;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .backBtn {
    width: 100%;
  }
}
.required {
  color: #ffd166;
  font-weight: bold;
}

.reqIcon {
  margin: 0 0 0 5px;
  padding: 3px 8px;
  border-radius: 5px;
  background: #c00;
  color: #fff;
  line-height: 1.1;
  font-size: 1.2rem;
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}

.complete {
  margin: 0 0 80px;
}
.complete p {
  margin: 0 0 1em;
}

.message {
  clear: both;
  background: rgb(49.962962963, 110.4444444444, 163.037037037);
  border: 3px solid #c00;
  margin: 0 0 1em 0;
  color: #fff;
  font-size: 1.6rem;
  padding: 7px 14px;
}
.message.success {
  border: 3px solid #0c0;
  background: #f0f6da;
  color: inherit;
}
.message.error {
  background: #fee;
  color: #c00;
}
.message.notice {
  color: #000;
  display: block;
  font-size: 1.2rem;
  padding: 0.8em;
  margin: 1em 0;
}

.error-message {
  color: #c00;
}

.error-message:not(:empty)::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f06a";
  margin-right: 4px;
}

.important {
  border: 2px solid #c00;
  font-weight: bold;
  margin: 2em 0 3em;
  padding: 1.5em;
  text-align: center;
}
.important dt i {
  margin-right: 5px;
}
.important dl:not(:last-of-type) {
  margin: 0 0 10px;
  padding-bottom: 10px;
}
.important .emp {
  color: #c00;
}
.important .headline {
  display: grid;
  grid-template-columns: auto 1fr;
  border-bottom: 1px dashed #ccc;
  column-gap: 2em;
  text-align: left;
}
.important a {
  color: inherit;
  text-decoration: underline;
}
.important a:hover {
  text-decoration: none;
}

.notice {
  margin: 5em 0 5em;
  padding: 3em 0 0;
  border-top: 1px dashed #000;
}
.notice h2 {
  border-left: 5px solid #c00;
  font-size: 1.8rem;
  margin: 2em 0 1em;
  padding: 0 0 0 10px;
}
.notice p, .notice ul {
  margin: 0 0 1.5em;
  font-size: 1.4rem;
}

#message {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #message {
    text-align: left;
  }
}

.checked .important {
  animation: fadeOut 1s ease forwards;
}
.checked + .notice {
  display: none;
}

#checkForm.fadeOut {
  animation: fadeOut 1s ease forwards;
}

#selectForm {
  opacity: 0;
  display: none;
}
#selectForm.fadeIn {
  display: block;
  animation: fadeIn 1.5s ease forwards;
}
#selectForm ul {
  margin: 2em auto 0;
  width: 80%;
  display: flex;
  flex-direction: column;
}
#selectForm ul input[type=radio] {
  display: none;
}
#selectForm ul input[type=radio] + span {
  border-bottom: 1px solid #ccc;
  padding: 10px 10px 10px 35px;
  display: block;
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
}
#selectForm ul input[type=radio] + span:hover {
  opacity: 0.7;
}
#selectForm ul input[type=radio] + span::before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  display: inline-block;
  position: absolute;
  left: 10px;
}
#selectForm ul input[type=radio]:checked + span {
  border: 1px solid #05abe0;
  background: #05abe0;
  color: #fff;
}
#selectForm ul input[type=radio]:checked + span::before {
  content: "\f14a";
  font-weight: 900;
}

.hidden {
  display: none;
}

.confirmCheck {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.fontLarge {
  font-size: larger;
}

.marker {
  background: linear-gradient(transparent 50%, #ffff7f 50%);
}

.fadeIn {
  animation: fadeIn 3s ease forwards;
}

.fadeOut {
  animation: fadeOut 4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
    display: block;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
    position: absolute;
  }
}

/*# sourceMappingURL=style.css.map */
