.contents__wrapper {
  display: table;
  table-layout: fixed;
  width: 1280px;
  margin: 0 auto;
  padding: 32px 0px;
}

.l-col, .c-col, .r-col {
  display: table-cell;
  vertical-align: top;
}

.l-col {
  width: 256px;
}

.l-col__wrapper {
  padding: 0px 8px;
}

.c-col {
  width: 768px;
}

.c-col__wrapper {
  padding: 0px 8px;
}

.r-col {
  width: 256px;
}

.r-col__wrapper {
  padding: 0px 8px;
}

section {
  margin-top: 8px;
}

section:first-of-type {
  margin-top: 0px;
}

.common-block {
  margin-top: 16px;
}

.common-block__wrapper {
  padding: 0px 4px;
}

.common-block__title {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 2.2rem;
  color: white;
  text-align: left;
  padding: 16px;
  background-color: #000080;
  border-bottom: 6px solid orange;
}

.common-block__title_text {
  display: table-cell;
  padding-left: 8px;
  width: auto;
  vertical-align: middle;
  font-size: 1.8rem;
}

.common-block__title_btn {
  display: table-cell;
  width: 160px;
  text-align: right;
}

.common-block__title_btn .btn {
  display: inline-block;
  width: 128px;
  border-radius: 3px;
}

.common-block__title.icon--logo:before {
  display: table-cell;
  content: "";
  background-image: url("../img/common/img_icon_logo.png");
  background-position: 0,0;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.common-block__accordion {
  padding: 0px 8px;
}

.common-block__accordion__title {
  position: relative;
  font-size: 1.6rem;
  padding: 8px 36px 8px 8px;
  color: white;
  background-color: #55557b;
}

.common-block__accordion__title.js-accordion__btn {
  cursor: pointer;
}

.common-block__accordion__title.js-accordion__btn:after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url("../img/common/img_btn_accordion_lower.svg");
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 8px;
  margin-top: -10px;
}

.common-block__accordion__title.js-accordion__btn.state--open:after {
  background-image: url("../img/common/img_btn_accordion_upper.svg");
}

.common-block__accordion__contents {
  border: 1px solid lightgray;
  border-top: none;
}

.common-block__contents {
  overflow: hidden;
  padding-bottom: 16px;
}

.common-block__contents > .btn {
  display: block;
  width: 50%;
  margin: 16px auto 0px auto;
}

.common-block__caption {
  color: red;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 16px;
}

.common-block__list {
  padding: 16px 8px 0px 8px;
}

.common-block__list table {
  width: 100%;
  table-layout: fixed;
}

.common-block__list th {
  padding: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  color: navy;
  text-align: center;
  background-color: #e8e8e8;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
  border-left: 1px solid lightgray;
}

.common-block__list th:nth-of-type(1) {
  width: auto;
}

.common-block__list th:nth-of-type(2) {
  width: 128px;
  color: white;
  background-color: #e80000;
}

.common-block__list th:nth-of-type(3) {
  width: auto;
  border-right: 1px solid lightgray;
}

.common-block__list th:last-of-type {
  border-right: 1px solid lightgray;
}

.common-block__list__row td {
  padding: 8px;
  font-size: 1.4rem;
  line-height: 1.4;
  color: navy;
  font-weight: bold;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
  border-left: 1px solid lightgray;
  word-break: break-all;
}

.common-block__list__row td a:link {
  color: #0501ee;
}

.common-block__list__row td a:visited {
  color: #0501ee;
}

.common-block__list__row td a:hover {
  text-decoration: underline;
}

.common-block__list__row td .label_contact--red, .common-block__list__row td .label_contact--navy {
  display: inline-block;
  color: white;
  padding: 2px 8px;
  text-align: center;
  font-size: 1.1rem;
  border-radius: 3px;
}

.common-block__list__row td .label_contact--red:link, .common-block__list__row td .label_contact--navy:link {
  color: white;
}

.common-block__list__row td .label_contact--red:visited, .common-block__list__row td .label_contact--navy:visited {
  color: white;
}

.common-block__list__row td .label_contact--red:hover, .common-block__list__row td .label_contact--navy:hover {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}

.common-block__list__row td .label_contact--red:active, .common-block__list__row td .label_contact--navy:active {
  color: white;
}

.common-block__list__row td .label_contact--red {
  background-color: red;
}

.common-block__list__row td .label_contact--navy {
  background-color: navy;
}

.common-block__list__row td:nth-of-type(2) {
  text-align: right;
  font-weight: bold;
  color: red;
}

.common-block__list__row td:nth-of-type(3), .common-block__list__row td:last-of-type {
  border-right: 1px solid lightgray;
}

.common-block__item-grid {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 8px 16px;
}

.common-block__item-grid__row {
  width: 33.333%;
}

.common-block__item-grid__row td {
  border: 1px solid lightgray;
}

.common-block__item-grid__row td.empty {
  border: none;
}

.common-block__item-grid__item {
  vertical-align: top;
}

.common-block__item-grid__item__title {
  position: relative;
  text-align: left;
  font-weight: bold;
  font-size: 1.4rem;
  color: navy;
  padding: 8px 18px 8px 14px;
  background-color: #efefef;
}

.common-block__item-grid__item__title > a:link {
  color: navy;
}

.common-block__item-grid__item__title > a:visited {
  color: navy;
}

.common-block__item-grid__item__title:before {
  position: absolute;
  content: "";
  background-color: orange;
  width: 4px;
  height: 100%;
  top: 0px;
  left: 0px;
}

.common-block__item-grid__item__title:after {
  display: inline-block;
  position: absolute;
  content: "";
  background-image: url("../img/top/img_icon_common_block_arrow.svg");
  width: 12px;
  height: 12px;
  margin-top: -6px;
  top: 50%;
  right: 6px;
}

.common-block__item-grid__item__caption {
  text-align: left;
  font-size: 1.2rem;
  color: navy;
  padding: 8px;
}

.common-block__item-grid__item__caption.empty {
  padding: 0px;
}

.common-block__product-list {
  padding: 0px 8px;
}

.common-block__product-list table {
  width: 100%;
  table-layout: fixed;
}

.common-block__product-list table th:first-of-type {
  width: 196px;
  padding-right: 8px;
}

.common-block__product-list table th:first-of-type img {
  width: 100%;
  vertical-align: bottom;
}

.common-block__product-list table th:last-of-type {
  padding-left: 8px;
  vertical-align: top;
}

.common-block__product-list table td {
  padding-top: 8px;
}

.common-block__product-list__product {
  border-top: 1px dashed lightgray;
  padding: 24px 0px;
}

.common-block__product-list__product:first-of-type {
  border-top: none;
}

.common-block__product-list__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.common-block__product-list__title a:hover {
  color: orange;
  text-decoration: underline;
}

.common-block__product-list__price {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: red;
}

.common-block__product-list__caption {
  background-color: #f5f5f5;
  padding: 16px;
  line-height: 1.4;
}

.common-block__product-list__btn {
  text-align: center;
}

.common-block__product-list__btn .btn {
  display: inline-block;
  margin-top: 8px;
  width: 256px;
}

.common-block__product-label {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 3px;
  font-size: 1.0rem;
  color: white;
}

.common-block__product-label.label--01 {
  background-color: #f5974a;
}

.common-block__product-label.label--02 {
  background-color: #ac4dbc;
}

.common-block__product-label.label--03 {
  background-color: #2daed6;
}

.common-block__product-label.label--04 {
  background-color: #7faf21;
}

.common-block__product-label.label--05 {
  background-color: #ff5983;
}

.common-block__product-detail__code p {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 16px;
}

.common-block__product-detail__title {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.4;
  color: navy;
}

.common-block__product-detail__table {
  margin-top: 16px;
}

.common-block__product-detail__table ul {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.common-block__product-detail__table ul li {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}

.common-block__product-detail__table ul li:nth-of-type(1) {
  padding-right: 8px;
}

.common-block__product-detail__table ul li:nth-of-type(2) {
  padding: 8px 0px 8px 8px;
}

.common-block__product-detail__image img {
  width: 100%;
}

.common-block__product-detail__standard-price {
  margin-top: 4px;
  font-size: 1.4rem;
}

.common-block__product-detail__sales-price {
  color: red;
  font-weight: bold;
  font-size: 1.8rem;
}

.common-block__product-detail__cart {
  margin-top: 16px;
  display: inline-block;
  text-align: right;
  padding: 8px;
  background-color: #f5f5f5;
}

.common-block__product-detail__cart label {
  font-size: 1.6rem;
}

.common-block__product-detail__cart input {
  font-size: 1.6rem;
  padding: 4px;
  text-align: right;
  width: 108px;
  background-color: #fff6d2;
  border: 1px solid #a6a6a6;
}

.common-block__product-detail__cart .btn {
  display: block;
  width: 160px;
  margin: 8px 0px 0px auto;
}

.common-block__product-detail__caption {
  background-color: #f5f5f5;
  padding: 16px;
  line-height: 1.4;
  font-size: 1.4rem;
  margin-top: 16px;
}

.common-block__product-detail__caption > ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin-top: 4px;
}

.common-block__product-detail__caption > ul:first-of-type {
  margin-top: 0px;
}

.common-block__product-detail__caption > ul > li {
  display: table-cell;
}

.common-block__product-detail__caption > ul > li a {
  font-weight: bold;
  color: navy;
}

.common-block__product-detail__caption > ul > li a:hover {
  color: orange;
  text-decoration: underline;
}

.common-block__product-detail__caption > ul > li:nth-of-type(1) {
  width: 90px;
}

.common-block__product-detail__caption > ul > li:nth-of-type(2) {
  width: 16px;
  text-align: center;
}

.common-block__product-detail__caption > ul > li:nth-of-type(3) {
  padding: 2px 8px;
}

.common-block__product-detail__sold-out p {
  display: block;
  font-size: 1.4rem;
  background-color: lightcyan;
  border-radius: 2px;
  border: 1px solid #cde0e0;
  color: red;
  font-weight: bold;
  width: 60%;
  margin: 8px auto 0px 0px;
  padding: 8px 0px;
  text-align: center;
}

.common-block__search-word {
  margin-top: 16px;
  padding: 0px 8px;
}

.common-block__search-word__wrapper {
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  padding: 8px;
}

.common-block__search-word__category p {
  display: inline-block;
  font-size: 1.4rem;
}

.common-block__search-word__category p:first-of-type {
  font-weight: bold;
}

.common-block__search-word__name p {
  display: inline-block;
  font-size: 1.4rem;
}

.common-block__search-word__name p:first-of-type {
  font-weight: bold;
}

.common-block__search-word__result {
  margin-top: 8px;
}

.common-block__search-word__result p {
  display: inline-block;
  font-size: 1.4rem;
}

.common-block__search-word__result p:first-of-type {
  font-weight: bold;
}

.common-block__search-word__result p:last-of-type span {
  font-weight: bold;
  color: red;
}

.common-block__pager--upper, .common-block__pager--lower {
  padding: 0px 8px;
  width: 100%;
}

.common-block__pager__wrapper--upper, .common-block__pager__wrapper--lower {
  display: table;
  table-layout: fixed;
  border-spacing: 8px 0px;
  width: 100%;
  padding: 16px 0px;
}

.common-block__pager__wrapper--upper {
  border-bottom: 1px solid lightgray;
}

.common-block__pager__wrapper--lower {
  border-top: 1px solid lightgray;
}

.common-block__pager__pages {
  display: table-cell;
  width: auto;
}

.common-block__pager__pages ul {
  display: table;
  table-layout: fixed;
  border-spacing: 4px 0px;
}

.common-block__pager__pages li {
  display: table-cell;
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.common-block__pager__pages li:first-of-type {
  background-color: transparent;
}

.common-block__pager__pages li:last-of-type {
  background-color: transparent;
}

.common-block__pager__pages li:hover, .common-block__pager__pages li.active {
  background-color: #ffc36b;
}

.common-block__pager__sort--price, .common-block__pager__sort--newer {
  display: table-cell;
  width: 64px;
  padding: 4px 8px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  font-size: 1.4rem;
}

.common-block__pager__sort--price:hover, .common-block__pager__sort--price.active, .common-block__pager__sort--newer:hover, .common-block__pager__sort--newer.active {
  background-color: #ffc36b;
}

.common-block__pager__view-count {
  display: table-cell;
  width: 128px;
}

.common-block__pager__view-count label {
  margin-right: 4px;
}

.common-block__pager__view-count select {
  min-height: 22px;
}

.common-block__banner a {
  display: inline-block;
  margin-top: 8px;
}

.common-block__banner a:first-of-type {
  margin-top: 0px;
}

.common-block__banner a img {
  width: 100%;
}

.common-block__state-bar {
  text-align: center;
  padding-bottom: 4px;
}

.common-block__state-bar ul {
  display: inline-block;
}

.common-block__state-bar li {
  display: inline-block;
}

.common-block__state-bar li p {
  float: left;
  height: 40px;
  background: #55557b;
  text-align: left;
  padding: 6px 20px 0 20px;
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  width: 176px;
}

.common-block__state-bar li p span {
  font-size: 1.1rem;
  font-weight: normal;
}

.common-block__state-bar li p:before {
  content: "";
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 10px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.common-block__state-bar li p:after {
  content: "";
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 10px solid #55557b;
  position: absolute;
  right: -10px;
  top: 0;
  z-index: 1;
}

.common-block__state-bar li p.bar--active {
  background-color: orange;
}

.common-block__state-bar li p.bar--active:after {
  border-left: 10px solid orange;
}

.common-block__state-bar li:first-of-type p {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.common-block__state-bar li:first-of-type p:before {
  display: none;
}

.common-block__state-bar li:last-of-type p {
  padding-right: 30px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.common-block__state-bar li:last-of-type p:after {
  display: none;
}

.common-block__state-bar li:nth-of-type(2) p {
  width: 205px;
}

.sell-ticket__wrapper {
  width: 240px;
}

.sell-ticket__title {
  color: white;
  text-align: center;
}

.sell-ticket__title img {
  width: 100%;
}

.sell-ticket__contents {
  padding: 16px 8px;
  border: 1px solid lightgray;
  border-top: none;
  border-radius: 2px;
}

.sell-ticket__select {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  height: 29px;
  background-color: #fff6d2;
}

.sell-ticket__btns {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.sell-ticket__btns .btn {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 60px;
  margin-top: 8px;
}

.sell-ticket__btns .btn:first-of-type {
  margin-right: 4px;
}

.buy-ticket__wrapper {
  width: 240px;
}

.buy-ticket__title {
  color: white;
  text-align: center;
}

.buy-ticket__title img {
  width: 100%;
}

.buy-ticket__title_sub {
  position: relative;
  font-weight: bold;
  color: navy;
  margin-top: 16px;
  font-size: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #bbbbbb;
  padding-left: 12px;
  padding-bottom: 4px;
}

.buy-ticket__title_sub:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 4px;
  display: inline-block;
  background-color: orange;
  width: 6px;
}

.buy-ticket__contents {
  padding: 16px 8px;
  border: 1px solid lightgray;
  border-top: none;
  border-radius: 2px;
}

.buy-ticket__select {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  height: 29px;
  background-color: #fff6d2;
}

.buy-ticket__input_search {
  margin-top: 8px;
  width: 100%;
  font-size: 1.4rem;
  padding: 4px;
  background-color: #fff6d2;
  border: 1px solid #a6a6a6;
}

.buy-ticket .btn {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.request-sort__title {
  position: relative;
  background-color: #000080;
  color: white;
  padding: 8px 0px 8px 40px;
  border-bottom: 4px solid orange;
  font-size: 1.8rem;
  font-weight: bold;
}

.request-sort__title:before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url("../img/top/img_icon_sort.png");
  background-position: center;
  background-size: cover;
  left: 8px;
  top: 50%;
  margin-top: -15px;
  width: 28px;
  height: 28px;
}

.request-sort__text span {
  color: red;
}

.request-sort__contents {
  padding: 8px;
  border: 1px solid lightgray;
  border-top: none;
  border-radius: 2px;
}

.request-sort .btn {
  display: block;
  width: 100%;
  margin: 16px auto 0px;
  text-align: center;
}

.update-info__title {
  position: relative;
  background-color: #000080;
  color: white;
  padding: 8px 0px 8px 40px;
  border-bottom: 4px solid orange;
  font-size: 1.8rem;
  font-weight: bold;
}

.update-info__title:before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url("../img/top/img_icon_info.png");
  background-position: center;
  background-size: cover;
  left: 8px;
  top: 50%;
  margin-top: -15px;
  width: 28px;
  height: 28px;
}

.update-info__contents {
  padding: 4px 8px;
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
  border-radius: 2px;
}

.update-info__contents li {
  color: navy;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed lightgrey;
}

.update-info__contents li p:last-of-type {
  margin-top: 4px;
}

.update-info__link {
  border: 1px solid lightgray;
  border-top: none;
  padding: 8px;
  text-align: right;
}

.announce-info__title {
  position: relative;
  background-color: #000080;
  color: white;
  padding: 8px 0px 8px 40px;
  border-bottom: 4px solid orange;
  font-size: 1.8rem;
  font-weight: bold;
}

.announce-info__title:before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url("../img/top/img_icon_announce.png");
  background-position: center;
  background-size: cover;
  left: 8px;
  top: 50%;
  margin-top: -15px;
  width: 28px;
  height: 28px;
}

.announce-info__contents {
  padding: 4px 8px;
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
  border-radius: 2px;
}

.announce-info__contents li {
  color: navy;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed lightgrey;
}

.announce-info__contents li p:last-of-type {
  margin-top: 4px;
}

.announce-info__link {
  border: 1px solid lightgray;
  border-top: none;
  padding: 8px;
  text-align: right;
}

.calender__title {
  position: relative;
  background-color: #000080;
  color: white;
  padding: 8px 0px 8px 40px;
  border-bottom: 4px solid orange;
  font-size: 1.8rem;
  font-weight: bold;
}

.calender__title:before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url("../img/top/img_icon_carender.png");
  background-position: center;
  background-size: cover;
  left: 8px;
  top: 50%;
  margin-top: -15px;
  width: 28px;
  height: 28px;
}

.calender__title_sub {
  position: relative;
  font-weight: bold;
  color: navy;
  margin-top: 8px;
  font-size: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #bbbbbb;
  padding-left: 12px;
  padding-bottom: 4px;
}

.calender__title_sub:first-of-type {
  margin-top: 0px;
}

.calender__title_sub:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 4px;
  display: inline-block;
  background-color: orange;
  width: 6px;
}

.calender__contents {
  padding: 8px;
  border: 1px solid lightgray;
  border-top: none;
}

.calender__table {
  width: 100%;
  table-layout: fixed;
  margin-top: 8px;
}

.calender__table tr {
  border-top: 1px solid lightgray;
}

.calender__table tr:last-of-type {
  border-bottom: 1px solid lightgray;
}

.calender__table td, .calender__table th {
  height: 32px;
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid lightgray;
  background-color: #fffff4;
}

.calender__table td:nth-of-type(7n), .calender__table th:nth-of-type(7n) {
  border-right: 1px solid lightgray;
}

.calender__table th {
  font-weight: bold;
}

.calender__table td.holiday {
  color: red;
  background-color: #fde7eb;
}

.calender__table td.empty {
  background-color: #f7f5f5;
}

.calender__table__top {
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
}

.calender__table__top th {
  font-size: 1.4rem;
  color: navy;
  border-left: none;
  background-color: #e8e8e8;
}

.about-info__title {
  position: relative;
  background-color: #000080;
  color: white;
  padding: 8px 0px 8px 40px;
  border-bottom: 4px solid orange;
  font-size: 1.8rem;
  font-weight: bold;
}

.about-info__title:before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url("../img/top/img_icon_first_access.png");
  background-position: center;
  background-size: cover;
  left: 8px;
  top: 50%;
  margin-top: -15px;
  width: 28px;
  height: 28px;
}

.about-info__contents {
  padding: 8px;
  border: 1px solid lightgray;
  border-top: none;
  border-radius: 2px;
}

.about-info__btns .btn {
  display: block;
  width: 100%;
  margin: 16px auto 0px;
  text-align: center;
}

.about-info__btns .btn:first-of-type {
  margin-top: 0px;
}

.mypage-block__contents {
  padding: 8px;
  border: 1px solid lightgray;
}

.mypage-block__member-link li {
  text-align: center;
  margin-top: 16px;
}

.mypage-block__member-link li:first-of-type {
  margin-top: 0px;
}

.mypage-block__member-link .btn {
  display: inline-block;
  width: 100%;
}

.mypage-block__title {
  position: relative;
  background-color: #000080;
  color: white;
  padding: 8px 0px 8px 40px;
  border-bottom: 4px solid orange;
  font-size: 1.8rem;
  font-weight: bold;
}

.mypage-block__title li {
  margin-top: 16px;
}

.mypage-block__title li:first-of-type {
  margin-top: 0px;
}

.mypage-block__title:before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url("../img/top/img_icon_sort.png");
  background-position: center;
  background-size: cover;
  left: 8px;
  top: 50%;
  margin-top: -15px;
  width: 28px;
  height: 28px;
}

.banner-area__contents a {
  display: inline-block;
  margin-top: 16px;
}

.banner-area__contents a:link {
  color: navy;
}

.banner-area__contents a:visited {
  color: navy;
}

.banner-area__contents a:hover {
  text-decoration: underline;
}

.banner-area__contents a:first-of-type {
  margin-top: 0px;
}

.banner-area__contents a img {
  width: 100%;
}

.cart-area__title {
  position: relative;
  background-color: #000080;
  color: white;
  padding: 8px 0px 8px 40px;
  border-bottom: 4px solid orange;
  font-size: 1.8rem;
  font-weight: bold;
}

.cart-area__title:before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url("../img/top/img_icon_cart.png");
  background-position: center;
  background-size: cover;
  left: 8px;
  top: 50%;
  margin-top: -15px;
  width: 28px;
  height: 28px;
}

.cart-area__contents {
  padding: 8px;
  border: 1px solid lightgray;
  border-top: none;
  border-radius: 2px;
}

.cart-area__info li {
  margin-top: 2px;
}

.cart-area__info li:first-of-type {
  margin-top: 0px;
}

.cart-area__info label {
  color: navy;
  font-size: 1.5rem;
  padding-right: 8px;
}

.cart-area__badge, .cart-area__price {
  font-weight: bold;
  font-size: 1.6rem;
}

.cart-area__badge {
  color: red;
}

.cart-area__btn-area {
  margin-top: 8px;
}

.cart-area__btn-area .btn {
  display: inline-block;
  width: 100%;
}

.cart-area__message {
  font-size: 1.2rem;
  margin-top: 4px;
  color: red;
}

.explan__wrapper {
  overflow: hidden;
}

.explan__block {
  margin-top: 16px;
}

.explan__block:first-of-type {
  margin-top: 8px;
}

.explan__title {
  position: relative;
  font-weight: bold;
  color: navy;
  font-size: 1.4rem;
  text-align: left;
  border-bottom: 1px solid #bbbbbb;
  padding: 4px 0px 4px 12px;
}

.explan__title:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 4px;
  display: inline-block;
  background-color: navy;
  width: 6px;
}

.explan__content {
  padding: 8px 8px 0px 8px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.contact-complete__block {
  margin-top: 32px;
}

.contact-complete__block:first-of-type {
  margin-top: 0px;
}

.contact-complete__title {
  position: relative;
  font-weight: bold;
  color: navy;
  font-size: 1.8rem;
  text-align: left;
  border-bottom: 1px solid #bbbbbb;
  padding-left: 12px;
  padding-bottom: 4px;
}

.contact-complete__title:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 4px;
  display: inline-block;
  background-color: orange;
  width: 6px;
}

.contact-complete__title:nth-of-type(2) {
  margin-top: 48px;
}

.contact-complete__caption {
  margin-top: 16px;
  padding: 0px 8px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.contact-complete__caption > span {
  color: red;
}

.contact-complete__caption p:nth-of-type(1) {
  font-size: 1.6rem;
  font-weight: bold;
  color: navy;
}

.contact-complete__caption p:nth-of-type(2) {
  margin-top: 16px;
}

.contact-complete__contact {
  border-top: 1px dashed lightgray;
}

.contact-complete__contact p {
  font-size: 1.2rem;
}

.contact-complete__contact p:nth-of-type(1) {
  margin-top: 16px;
  font-weight: bold;
  color: navy;
}

.contact-complete__contact p:nth-of-type(2) {
  margin-top: 4px;
  padding-left: 8px;
}

.contact-complete__contact p:nth-of-type(2) a {
  text-decoration: underline;
}

.contact-complete__btn-area {
  width: 100%;
  text-align: center;
  margin-top: 32px;
}

.contact-complete__btn-area a {
  display: inline-block;
  width: 200px;
  margin-right: 64px;
}

.contact-complete__btn-area a:last-of-type {
  margin-right: 0px;
}
