@charset "utf-8";

/*
Theme Name: Original Theme
Theme URI:
Author:
Author URI :
Description: オリジナルテーマ
Version: 1.0
*/

/* << INDEX >> ----------------------------------------------------------------
*
* @ 基本定義
* @ サイト共通設定
* @ ヘッダー
* @ フッター
* @ コンテンツ
* @ サイドバー
* @ メイン
* @ ログイン
*
* -------------------------------------------------------------------------- */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 基本定義
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ Webフォント設定
---------------------------------------------------------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/fontawesome-webfont.eot?v=4.0.3');
  src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),
    url('fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'),
    url('fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'),
    url('fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Font Awesome 5 Solid';
  font-style: normal;
  font-weight: 900;
  src: url("fonts/fa-solid-900.eot");
  src: url("fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),
    url("fonts/fa-solid-900.woff2") format("woff2"),
    url("fonts/fa-solid-900.woff") format("woff"),
    url("fonts/fa-solid-900.ttf") format("truetype"),
    url("fonts/fa-solid-900.svg#fontawesome") format("svg");
}
@font-face {
  font-family: 'Font Awesome 5 Regular';
  font-style: normal;
  font-weight: 400;
  src: url("fonts/fa-regular-400.eot");
  src: url("fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),
    url("fonts/fa-regular-400.woff2") format("woff2"),
    url("fonts/fa-regular-400.woff") format("woff"),
    url("fonts/fa-regular-400.ttf") format("truetype"),
    url("fonts/fa-regular-400.svg#fontawesome") format("svg");
}
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("fonts/fa-brands-400.eot");
  src: url("fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("fonts/fa-brands-400.woff2") format("woff2"),
    url("fonts/fa-brands-400.woff") format("woff"),
    url("fonts/fa-brands-400.ttf") format("truetype"),
    url("fonts/fa-brands-400.svg#fontawesome") format("svg");;
}
.awesome {
  font-family: "Font Awesome 5 Solid", "FontAwesome";
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.awesome5s {
  font-family: 'Font Awesome 5 Solid';
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.awesome5r {
  font-family: 'Font Awesome 5 Regular';
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.awesome5b {
  font-family: 'Font Awesome 5 Brands';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opensans {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}
.ubuntu {
  font-family: 'Ubuntu', sans-serif;
}

/* @ Normalize.css調整（原則として改変禁止）
---------------------------------------------------------------------------- */
/* >>> 日本語フォント対応 */
html,
body {
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  /*  font-family: "Yu Gothic","YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;*/
  font-family: "Meiryo UI","Meiryo", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
/* >>> 禁則処理 */
p,li,dt,dd,th,td,pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: strict;
  word-break: strict;
}
/* >>> フルードイメージ対応 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* @ テキスト見出し設定（html要素のfont-sizeを基準に算出、ここでの装飾は行わない）
---------------------------------------------------------------------------- */
h1 { /* 32px */
  font-size: 2rem;
  line-height: 1.5;
}
h2 { /* 28px */
  font-size: 1.75rem;
  line-height: 1.75;
}
h3,h4 { /* 20px */
  font-size: 1.25rem;
  line-height: 1.1667;
}
h5,h6 { /* 18px */
  font-size: 1.125rem;
  line-height: 1.3125;
}

/* @ 見出し設定
---------------------------------------------------------------------------- */
h1 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h2 {
  font-size: 2.25rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h3 {
  font-size: 1.625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h4 {
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h5 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h6 {
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* @ リンク設定
---------------------------------------------------------------------------- */
a {
  color: #000099;
  outline: none;
}
a:hover {
  color: #000099;
  text-decoration: none;
}

/* @ その他
---------------------------------------------------------------------------- */
body {
  color: #000;
  background-color: #fff;
}
strong,b,table th {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
figure {
  margin: 0;
}
input, textarea, select, button {
/*  font-family: "Yu Gothic","YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;*/
  font-family: "Meiryo UI","Meiryo", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
}
input[type='submit'] {
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}
input[type='submit']:hover {
  cursor: pointer;
  opacity: 0.6;
}
:placeholder-shown {
  color: #999;
}
::-webkit-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
::-moz-placeholder {
  color: #999;
}
:-ms-input-placeholder {
  color: #999;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ サイト共通設定
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body > #wrap {
  height: 100%;
}
input[readonly] {
  background-color: #eee;
  border: solid 1px #ccc;
}

.message {
  padding: 1em;
  background-color: #ecf4f9;
  border-left: solid 5px #2969e8;
}
.info {
  padding: 1em;
  background-color: #ecf9ec;
  border-left: solid 5px #050;
}
.warning {
  padding: 1em;
  background-color: #f9ecec;
  color: #a22;
}

/* プルダウンメニュー */
select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
select::-ms-expand {
  display: block;
}

.btn {
  display: block;
  margin: 0 auto 20px;
  padding: 6px 2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  border: solid 2px #000;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  opacity: .6;
}

/* @ ヘッダー
----------------------------------------------------------------------------- */
#header {
  background-color: #a8455b;
  border-top: solid 4px #742f3f;
  border-bottom: solid 1px #ccc;
  overflow: hidden;
}
#header h1 {
  float: left;
  margin: 0;
  padding: 14px 20px 13px 20px;
  line-height: 0;
}
#header .right {
  float: right;
  padding: 12px 20px;
}
@media screen and (max-width: 900px) {
  #header .right {
    overflow: hidden;
  }
}
#header #user_name {
  display: inline-block;
  margin: 0 20px 0 0;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #header #user_name {
    display: block;
    margin: 0 0 10px;
    font-size: 0.875rem;
    text-align: right;
  }
}
#header #user_name > span {
  display: inline-block;
}
#header #user_name > span:not(:first-of-type) {
  margin-left: 1em;
}
#header #logout-btn {
  display: inline-block;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #header #logout-btn {
    float: right;
  }
}
#header #logout-btn a {
  display: block;
  width: 115px;
  padding: 6px 1em;
  background-color: #444;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header #logout-btn a:hover {
  opacity: .6;
}

/* @ メイン
----------------------------------------------------------------------------- */
#main {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .wrap {
    padding: 0 20px;
  }
}

/* @ フッター
----------------------------------------------------------------------------- */
#footer {
  background-color: #742f3f;
  color: #fff;
  text-align: center;
}
#footer p {
  margin: 0;
  padding: 13px 0;
}
@media screen and (max-width: 900px) {
  #footer p span {
    display: none;
  }
}

/* @ 特商法表記に関する記載
----------------------------------------------------------------------------- */
#advertising {
  position: fixed;
  top: 68px;
  bottom: 30px;
  right: 0;
  left: auto;
  width: calc(100% - 2em);
  height: calc(100hv - 60px);
  max-width: 600px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 3px #dd91a2;
  border-radius: 0 0 0 5px / 0 0 0 5px;
  z-index: 200;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#advertising.close {
  right: -600px;
}
#advertising-btn {
  position: relative;
  top: -3px;
  left: -30px;
  float: left;
  display: block;
  width: 30px;
  padding: 1em 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #dd91a2;
  color: #fff;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  text-decoration: none;
  line-height: 1.25em;
}
@media screen and (max-width: 900px) {
  #advertising-btn {
    left: -23px;
    width: 23px;
    font-size: 0.75rem;
    line-height: 1.2em;
  }
}
#advertising_wrap {
  position: relative;
  height: 100%;
}
#advertising_wrap > div {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
}
#advertising h2 {
  margin: 1em 0 10px;
  padding: 10px;
  background-color: #eeebe6;
  color: #ab1717;
  font-size: 1rem;
}
#advertising p {
  margin: 10px;
  word-wrap: break-word;
}
#advertising_bg {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .6);
  z-index: 190;
}
#advertising_bg.close {
  display: none;
}

/* @ ポップアップ
----------------------------------------------------------------------------- */
#popup {
  display: none;
  height: 100vh;
  width: 100%;
  background: rgba(0,0,0,.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
#popup.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#popup_content {
  position: relative;
  background: #fff;
  padding: 20px 30px 30px 150px;
  max-width: calc(100% - 40px);
  width: 450px;
}
#popup_content::before {
  position: absolute;
  top: 10px;
  left: 30px;
  padding: 0 0;
  content: '\f071';
  color: #FFD700;
  font-size: 5em;
  font-family: "Font Awesome 5 Solid", "FontAwesome";
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#popup_btn {
  margin: 1.5em 0 0;
  text-align: right;
}
#popup button {
  padding: 10px 25px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
#popup button:hover {
  opacity: .6;
}
#popup_ok {
  margin-right: 1em;
  background-color: #bb556c;
  color: #fff;
}
#popup_cancel {
  background-color: #666;
  color: #fff;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ログイン
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#page-login {
  padding: 20px 20px 0;
  background-color: #fff;
}
@media screen and (min-height: 600px) {
  #page-login {
    padding-top: 100px;
  }
}
@media screen and (min-height: 800px) {
  #page-login {
    padding-top: 180px;
  }
}
#page-login .contents-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
#page-login h1 {
  margin: 0 0 50px;
  text-align: center;
}
#page-login form {
  color: #fff;
}
#page-login form > p {
  margin: 0;
  line-height: 2rem;
}
#page-login form > p.warning {
  margin-bottom: 10px;
}
#page-login form input#password {
  width: 100%;
  margin: 0 0 20px;
  padding: 16px 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ddd;
  border: none;
}
#page-login form button#submit {
  width: 100%;
  margin: 0;
  padding: 15px .5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #742f3f;
  border: solid 2px #742f3f;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.15s, border-color 0.15s;
  transition: background-color 0.15s, border-color 0.15s;
}
#page-login form button#submit:hover {
  color: #fff;
  background-color: #691717;
  border: solid 2px #691717;
}
#page-login .paygent_link_message {
  padding: 1em;
  background-color: #f3f3ea;
  border: solid 3px #dedecd;
  color: #8b886c;
  font-size: 1.25em;
  text-align: center;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ご注文フォーム
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.note {
  margin: 20px 0 30px;
  padding: 20px;
  background: #dedecd;
}
.note > div {
  min-height: 85px;
  padding: 0 0 0 125px;
  background: url('../images/page-order_bgimg01.png') no-repeat top left;
  color: #ab1717;
  font-size: 1.125rem;
  font-weight: bold;
}
.note > div p {
  margin: 10px 0;
}
.note > div p > span {
  display: inline-block;
}
.note > div p strong {
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 1.75rem;
}
.note hr {
  width: 100%;
  margin: 20px 0;
  padding: 1px 0 0 0;
  background: #8b886c;
  border: none;
}
.note p.messages {
  margin: 0;
}
@media screen and (max-width: 900px) {
  .note > div {
    padding: 0 0 0 100px;
    font-size: 1rem;
  }
  .note > div p strong {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .note > div {
    padding: 0;
    background-image: none;
  }
  .note > div p strong {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}

#required {
  min-height: 230px;
  padding-right: 250px;
  background: url('../images/page-order_bgimg02.png') no-repeat top right;
}
@media screen and (max-width: 1200px) {
  #required {
    background-image: none;
    padding-right: 0;
  }
}
#required h2 {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, transparent), color-stop(50%, #ffe361));
  background: linear-gradient(transparent 45%, #ffe361 50%);
  color: #444;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.75rem;
}
#required h2 strong {
  display: inline-block;
  margin-left: 50px;
}
#required h2 strong small {
  font-size: 1rem;
}
#required ul {
  margin: 30px 0;
  padding: 0;
  overflow: hidden;
}
#required ul li {
  float: left;
  width: calc(50% - 2rem);
  margin: 0 0 10px 2rem;
  padding: 0 1em 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#required ul li:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (max-width: 900px) {
  #required ul li {
    float: none;
    width: calc(100% - 2rem);
    margin: 0 0 10px 2rem;
    padding: 0;
  }
}

#elective h2 {
  margin: 30px 0 20px;
  padding: 0;
  color: #444;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.75rem;
}
#elective table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}
#elective table th {
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #444;
  border: solid 1px #fff;
  color: #fff;
  text-align: center;
}
#elective table tr {
  background-color: #dddbdb;
}
#elective table tr:nth-of-type(2n) {
  background-color: #ddd8d0;
}
#elective table td {
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #efefef;
  border: solid 1px #fff;
}
#elective table tr:nth-of-type(2n) td {
  background-color: #eeebe6;
}
#elective table .select {
  width: 70px;
  text-align: center;
}
#elective table tr td.select {
  background-color: transparent;
}
#elective table .price  {
  width: 180px;
  text-align: center;
}
#elective table .publisher{
  width: 180px;
}
#elective table tr.shipping_fee {
  border: none;
}
#elective table tr.shipping_fee .title,
#elective table tr.total .title {
  text-align: right;
}
#elective table .product_none {
  padding-left: 1em;
}
/*
#elective table input[type=checkbox] {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
*/
@media screen and (max-width: 900px) {
  #elective table tr {
    position: relative;
    clear: both;
    display: block;
    border-bottom: solid 1px #fff;
    overflow: hidden;
  }
  #elective table tr.shipping_fee {
    margin: 0;
    padding: 0;
    border-bottom: solid 1px #fff;
  }
  #elective table tr > .select {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
    width: 70px;
    border: none;
  }
  #elective table tr > :not(.select) {
    display: block;
    float: right;
    width: calc(100% - 70px);
    padding: 5px 10px;
    border: none;
    text-align: left;
  }
  #elective table tr > th {
    text-align: center;
  }
  #elective table tr > td.title {
    padding-top: 10px;
  }
  #elective table tr > td.price {
    padding-bottom: 10px;
  }
  #elective table tr > .product_none {
    padding: 10px 1em;
  }
}
.shipping_fee {
  margin: 20px 0 40px;
  padding: 10px;
  border: solid 2px #444;
  border-radius: 3px;
  color: #444;
  font-size: 1.125rem;
  text-align: center;
}

#orderer h2 {
  padding: 11px 20px;
  background-color: #742f3f;
  color: #fff;
  font-size: 1.375rem;
}
#orderer table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}
#orderer table th {
  width: 240px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}
#orderer table td {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#orderer table th strong {
  margin-right: 1em;
  color: #742f3f;
}
#orderer table th small {
  color: #dd91a2;
  font-size: .75rem;
}
#orderer input[ type="text"],
#orderer input[ type="email"],
#orderer textarea,
#orderer select {
  max-width: 100%;
  padding: 13px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #eeebe6;
  border: solid 1px #eeebe6;
  border-radius: 5px;
}
#orderer .radio_label {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#orderer table input[type=radio] {
  margin-right: 10px;
  /*
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  */
}
#order_form .btn_area {
  margin: 15px 0 95px;
  text-align: center;
}
#order_form input[type="submit"] {
  width: 260px;
  margin: 0 auto 1.5em;
  padding: 20px 10px;
  background-color: #253b55;
  border: solid 1px #253b55;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
#order_form #submit-btn:disabled {
  background-color: #ccc;
  cursor: default;
  border-color: #ccc;
}
#order_form #submit-btn:disabled:hover {
  opacity: 1;
}
#order_form p.btn_area span.submit {
  display: block;
  width: 260px;
  margin: 0 auto 1.5em;
  padding: 20px 10px;
  background-color: #ddd;
  border: solid 1px #ddd;
  border-radius: 5px;
  color: #a22;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
#order_form .deadline_error {
  text-align: center;
}
#order_form input#name { width: 330px; }
#order_form input#zipcode { width: 180px; }
#order_form input#prefectures { width: 180px; }
#order_form input#municipalities { width: 250px; }
#order_form input#house_number { width: 250px; }
#order_form input#building { width: 460px; }
#order_form input#phone { width: 180px; }
#order_form input#email { width: 460px; }
#order_form textarea#note {
  width: 460px;
  height: 7em;
}
@media screen and (max-width: 900px) {
  #orderer table th,
  #orderer table td {
    display: block;
    width: 100%;
    padding: 5px 20px;
  }
  #orderer table td {
    margin-bottom: 20px;
  }
  #orderer .radio_label {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    padding-left: .5em;
  }
}
@media screen and (max-width: 600px) {
  #order_form input[type="submit"],
  #order_form p.btn_area span.submit {
    width: 100%;
  }
}

.error_mes {
  margin: 5px 0;
  padding: 0;
  color: #a22;
  font-size: 0.875rem;
  font-weight: bold;
  -webkit-animation: flash 1.5s linear infinite;
  animation: flash 1.5s linear infinite;
}
.error_mes::before {
  content: '※';
  padding-right: 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
}
.warning_mes {
  margin: 5px 0;
  padding: 0;
  color: #f90;
  font-size: 0.875rem;
  font-weight: bold;
}
.warning_mes::before {
  content: '\f071';
  padding-right: 10px;
  font-family: "Font Awesome 5 Solid", "FontAwesome";
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ご注文確認
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#page-confirm .note > p {
  color: #ab1717;
}
@media screen and (max-width: 900px) {
  #page-confirm #elective table tr > th,
  #page-confirm #elective table tr > td {
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
  }
  #page-confirm #elective table tr.shipping_fee td,
  #page-confirm #elective table tr.total td {
    text-align: right;
  }
}
#order_form input#back-btn {
  width: 100px;
  margin-right: 1.5em;
  background-color: #691717;
  border: solid 1px #691717;
}
@media screen and (max-width: 600px) {
  #order_form input#back-btn {
    width: 100%;
    margin: 0 auto 1.5em;
  }
}
.alert {
  border: solid 3px #e19eac;
  padding: 0 1em .5em;
  margin: 2em;
}
.alert_ttl {
  color: #ab1717;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ご注文完了
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
