@charset "UTF-8";
/*----------------------------------------------------
基本設定、リンクカラーなど
----------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, Osaka, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background: #f6f6f6;
}

.font-min {
  font-family: '游明朝', YuMincho, serif;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

.font-Montserrat {
  font-family: 'Montserrat', sans-serif;
}

a {
  transition: opacity 0.2s ease;
}

a:link, a:visited, a:active {
  color: #333;
  text-decoration: none;
  overflow: hidden;
  outline: none;
}

a:hover {
  opacity: .8;
  text-decoration: none;
  overflow: hidden;
  outline: none;
}

a.link:link, a.link:visited, a.link:active {
  color: #DD0000;
}

a.btn-basic {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #DD0000;
  color: #fff;
  padding: 15px 40px;
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  margin: 40px 0;
  text-align: center;
  font-weight: bold;
}

.alert {
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.alert a.btn-basic {
  width: auto;
  margin-bottom: 0;
}

.frame {
  background: #fff;
  border: 3px solid #f6f6f6;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 30px;
}

.frame p:last-child {
  margin-bottom: 0;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.pc {
  display: block !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*----------------------------------------------------
共通
----------------------------------------------------*/
body > header {
  text-align: center;
  background: #DD0000;
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 90px;
  /*グローバルメニュー*/
  /*ハンバーガーメニューエフェクト*/
}

body > header .heading {
  text-align: left;
}

body > header .heading .flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 90px;
}

body > header .heading i.fa {
  padding-right: 3px;
}

body > header .heading nav {
  margin-left: auto;
  display: inline-block;
}

body > header .heading nav ul {
  margin-bottom: 0;
}

body > header .heading li {
  font-weight: bold;
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  margin-right: 15px;
}

body > header .heading li a {
  color: #fff;
}

body > header .heading .exhibit {
  font-size: 18px;
  font-size: 1.8rem;
}

body > header h1 {
  margin: 0;
  margin-right: auto;
}

body > header h1 img {
  width: 237px;
}

body > header h1 span {
  padding-left: 5px;
  font-size: 14px;
}

body > header dl.search {
  position: relative;
  background-color: #f6f6f6;
  border-radius: 10px;
  margin: 0;
}

body > header dl.search dt {
  padding: 5px;
}

body > header dl.search dt input {
  font-size: 16px;
  font-size: 1.6rem;
  width: 180px;
  transition: all 0.4s ease;
  background: none;
  border: none;
  outline: none;
  line-height: normal;
}

body > header dl.search dt input:focus {
  width: 300px;
}

body > header dl.search dd {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 20px;
  font-size: 2rem;
  color: #DD0000;
}

body > header dl.search dd input[type=submit] {
  width: 30px;
  height: 35px;
  outline: none;
  font-family: FontAwesome;
  background: none;
  border: none;
  -webkit-appearance: none;
}

body > header #menu-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
}

body > header .menu-trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 25px;
  height: 20px;
}

body > header .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

body > header .menu-trigger span:nth-of-type(1) {
  top: 2px;
}

body > header .menu-trigger span:nth-of-type(2) {
  top: 9px;
}

body > header .menu-trigger span:nth-of-type(3) {
  bottom: 1px;
}

body > header .menu-trigger.open span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}

body > header .menu-trigger.open span:nth-of-type(2) {
  opacity: 0;
}

body > header .menu-trigger.open span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

body > #main {
  padding-top: 130px;
}

@media (max-width: 1099px) {
  body > header {
    height: auto;
  }
  body > header .heading {
    padding: 1rem 0;
  }
  body > header .heading .flex {
    display: block;
    height: auto;
  }
  body > header .heading h1 {
    margin: 0;
    line-height: 0;
  }
  body > header .heading h1 img {
    width: 180px;
    vertical-align: bottom;
  }
  body > header .heading h1 span {
    padding-left: 5px;
    font-size: 14px;
  }
  body > header .heading nav {
    margin-bottom: 1rem;
  }
}

@media (max-width: 1099px) {
  body > header dl.search dd input[type=submit] {
    height: 40px;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media (max-width: 1099px) {
  body > header #gmenu {
    display: none;
    margin-left: -15px;
    margin-right: -15px;
  }
  body > header #gmenu dl.search {
    margin-left: 15px;
    margin-right: 15px;
  }
  body > header #gmenu nav {
    display: block;
    padding-top: 10px;
  }
  body > header #gmenu li {
    font-size: 14px;
    font-size: 1.4rem;
    display: block;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  body > header #gmenu li.exhibit {
    font-size: 24px;
    font-size: 2.4rem;
  }
  body > header #gmenu li:first-child {
    border-top: 1px solid #fff;
  }
  body > header #gmenu li a {
    display: block;
  }
  body > header #menu-btn {
    display: block;
  }
}

@media (max-width: 1099px) {
  body > #main {
    padding-top: 93px;
  }
}

.message {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.message p {
  margin: 0 0 10px 0;
}

.message p strong {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #DD0000;
}

.message p:last-child {
  margin-bottom: 0;
}

.message .speech-bubble {
  position: relative;
  background: #fff;
  border: 6px solid #DD0000;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 2rem;
}

.message .speech-bubble:after, .message .speech-bubble:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.message .speech-bubble:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 10px;
  margin-left: -10px;
}

.message .speech-bubble:before {
  border-color: rgba(34, 34, 34, 0);
  border-top-color: #DD0000;
  border-width: 18px;
  margin-left: -18px;
}

body > footer {
  padding: 60px 0;
  text-align: center;
}

body > footer .copy {
  color: #999;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
}

body > footer .sns {
  margin-bottom: 30px;
}

body > footer .sns ul {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

body > footer .sns li {
  display: inline-block;
  list-style: none;
  text-align: center;
  font-size: 24px;
  margin-right: 5px;
}

body > footer .sns li:last-child {
  margin-right: 0;
}

body > footer nav li {
  display: inline-block;
  border-right: 1px solid #ccc;
  padding-right: 10px;
  margin-right: 5px;
}

body > footer nav li:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

body > footer #page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

body > footer #page-top a {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 60px;
  background: #DD0000;
  text-decoration: none;
  color: #fff;
  width: 65px;
  height: 65px;
  text-align: center;
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

@media (max-width: 767px) {
  body > footer nav li {
    display: block;
    border: none;
    padding: 0;
    margin: 0 0 5px 0;
  }
}

.category-list-side {
  margin: 30px 0;
}

.category-list-side ul {
  margin-bottom: 0;
}

.category-list-side ul li {
  padding: 0;
}

.category-list-side ul li a {
  border: 1px solid #f6f6f6;
  background: #fff;
  display: block;
  padding: 15px 20px;
  color: #DD0000;
  font-weight: bold;
  transition: all 0.2s ease;
}

.category-list-side ul li a:hover {
  opacity: 1;
  background: #DD0000;
  color: #fff;
}

.category-list-side ul li.current-cat a {
  background: #DD0000;
  color: #fff;
}

.category-list {
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
}

.category-list ul {
  margin-bottom: 0;
}

.category-list ul li {
  float: left;
  width: 25%;
  padding: 0;
  text-align: center;
}

.category-list ul li a {
  border: 1px solid #f6f6f6;
  background: #fff;
  display: block;
  padding: 15px 0;
  color: #DD0000;
  font-weight: bold;
  transition: all 0.2s ease;
}

.category-list ul li a:hover {
  opacity: 1;
  background: #DD0000;
  color: #fff;
}

.category-list ul li.current-cat a {
  background: #DD0000;
  color: #fff;
}

@media (min-width: 1100px) {
  .category-list {
    width: 1140px;
  }
}

@media (max-width: 767px) {
  .category-list {
    padding: 0;
    position: relative;
    margin-bottom: 20px;
  }
  .category-list .gra-horizon {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+100&0+0,0.05+75,0.85+90,1+100 */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(248, 248, 248, 0.05) 75%, rgba(247, 247, 247, 0.85) 90%, #f6f6f6 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(248, 248, 248, 0.05) 75%, rgba(247, 247, 247, 0.85) 90%, #f6f6f6 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(248, 248, 248, 0.05) 75%, rgba(247, 247, 247, 0.85) 90%, #f6f6f6 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f6f6f6',GradientType=1 );
    /* IE6-9 */
  }
  .category-list ul {
    margin-right: 0;
    margin-left: 0;
    padding: 0 15px;
    overflow-x: scroll;
    /* overflow-y: hidden; */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .category-list ul li {
    display: inline;
    float: none;
    width: auto;
  }
  .category-list ul li:last-child {
    padding-right: 80px;
  }
  .category-list ul li.current-cat a {
    background: #DD0000;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
  }
  .category-list ul li a {
    padding: 10px;
    display: inline-block;
    border: none;
    background: none;
  }
  .category-list ul li a:hover {
    opacity: 1;
    background: #DD0000;
    color: #fff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .item-list-bg .row {
    display: block;
  }
}

.item-list-bg .row article {
  margin-bottom: 30px;
}

.item-list-bg .row article a {
  position: relative;
  padding-bottom: 100%;
  height: 100%;
  width: 100%;
  border: #ddd 1px solid;
  border-bottom: #ddd 4px solid;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: block;
  color: #000;
}

.item-list-bg .row article a .item-image-bg {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(img/1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.item-list-bg .row article a:hover .item-image-bg {
  -moz-transform: scale(1.03, 1.03);
  -ms-transform: scale(1.03, 1.03);
  -webkit-transform: scale(1.03, 1.03);
  transform: scale(1.03, 1.03);
}

.item-list-bg .row article a .item-meta {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 10px 10px 10px;
  background: rgba(255, 255, 255, 0.9);
}

.item-list-bg .row article a .item-meta h2 {
  font-size: 2rem;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0;
}

.item-list-bg .row article a .item-meta .price {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: right;
  font-family: 'Roboto', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, Osaka, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.item-list-bg .row article a .item-meta .price span {
  font-size: 1rem;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .item-list-bg .row article {
    width: auto;
    height: auto;
  }
}

/*----------------------------------------------------
商品詳細
----------------------------------------------------*/
.single-item aside .banner {
  background: #fff;
  padding: 30px;
}

.single-item aside .banner img {
  max-width: 100%;
  height: auto;
}

.single-item article .banner-rakuten {
  text-align: center;
  margin-top: 30px;
}

.single-item article .amazonjs_item {
  background: none;
}

.single-item article .item-body {
  background: #fff;
  padding: 30px;
}

.single-item article .item-body .item-id {
  margin-bottom: 10px;
}

.single-item article .item-body h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-size: 3.2rem;
}

.single-item article .item-body .flex {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.single-item article .item-body .price {
  font-size: 48px;
  font-size: 4.8rem;
  font-family: 'Roboto', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, Osaka, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-right: 10px;
}

.single-item article .item-body .price span {
  font-size: 1rem;
  font-size: 24px;
  font-size: 2.4rem;
}

.single-item article .item-body .btn-contact {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  background: #467adc;
  color: #fff;
  margin-left: 10px;
  padding: 10px 15px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: all 0.2s ease;
}

.single-item article .item-body .btn-contact i.fa {
  padding-right: 5px;
}

.single-item article .item-body .btn-contact:hover {
  opacity: .8;
}

.single-item article .item-body .btn-delete {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  background: #DD0000;
  color: #fff;
  padding: 10px 15px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: all 0.2s ease;
}

.single-item article .item-body .btn-delete i.fa {
  padding-right: 5px;
}

.single-item article .item-body .btn-delete:hover {
  opacity: .8;
}

.single-item article .item-body #item-images {
  /* DIRECTION CONTROLS (NEXT / PREV) */
}

.single-item article .item-body #item-images .bx-wrapper {
  background: #f6f6f6;
  padding: 30px 0;
  position: relative;
}

.single-item article .item-body #item-images .bx-wrapper .bx-prev {
  left: 10px;
  background: url(img/controls.png) no-repeat 0 -32px;
}

.single-item article .item-body #item-images .bx-wrapper .bx-next {
  right: 10px;
  background: url(img/controls.png) no-repeat -43px -32px;
}

.single-item article .item-body #item-images .bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}

.single-item article .item-body #item-images .bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}

.single-item article .item-body #item-images .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.single-item article .item-body #item-images .bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

.single-item article .item-body #item-images .slider {
  height: 100%;
}

.single-item article .item-body #item-images .slider li {
  text-align: center;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.single-item article .item-body #item-images .slider img {
  max-width: 100%;
  height: auto;
}

.single-item article .item-body #item-images #pager {
  text-align: center;
  margin-top: 20px;
}

.single-item article .item-body #item-images #pager.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.single-item article .item-body #item-images #pager a {
  display: inline-block;
  overflow: hidden;
  margin-right: 20px;
  transition: all 0.2s ease;
  border-bottom: 6px solid transparent;
}

.single-item article .item-body #item-images #pager a:last-child {
  margin-right: 0;
}

.single-item article .item-body #item-images #pager a.active {
  border-bottom: 6px solid #DD0000;
}

.single-item article .item-body #item-images #pager a img {
  width: 90px;
  height: auto;
}

.single-item article .item-body .item-content {
  margin: 30px 0;
}

.single-item article .item-body .item-content p {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .single-item aside {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .single-item article .banner {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  .single-item article .banner img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .single-item article .item-body {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .single-item article .item-body h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .single-item article .item-body #item-images #pager a img {
    width: 60px;
  }
}

/*----------------------------------------------------
パンくず
----------------------------------------------------*/
nav#breadcrumb {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  font-weight: normal;
}

nav#breadcrumb a {
  color: #DD0000;
  font-weight: bold;
}

/*----------------------------------------------------
商品カテゴリー一覧
----------------------------------------------------*/
section#main header.heading h1 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  color: #DD0000;
  margin: 0 0 20px 0;
}

section#main header.heading p {
  background: #fff;
  padding: 20px;
  margin-bottom: 40px;
}

/*ページナビ
----------------------------------------------------------- */
.wp-pagenavi {
  clear: both;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 40px auto;
  display: table;
}

.wp-pagenavi:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.wp-pagenavi a, .wp-pagenavi span {
  font-family: 'Roboto', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, Osaka, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  background: #fff;
  width: 40px;
  height: 40px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  float: left;
  margin-right: 5px;
  line-height: 40px;
  text-align: center;
  color: #DD0000;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

.wp-pagenavi span.current {
  opacity: 0.8;
  font-weight: bold;
  background: #DD0000;
  color: #fff;
}

.wp-pagenavi a:hover.previouspostslink, .wp-pagenavi a:hover.nextpostslink {
  opacity: 0.8;
}

/*----------------------------------------------------
固定ページ
----------------------------------------------------*/
#main .page-content {
  background: #fff;
  padding: 30px;
}

#main .page-content h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
}

#main .page-content h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

#main .page-content h4 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

.static-revision {
  text-align: right;
  list-style: none;
}

/* 出品ページ
----------------------------------------------------*/
.register .upfile input {
  margin-bottom: 10px;
}

.register .text-warning {
  margin: 5px 0;
  display: block;
  color: #999;
}

.input-wrap {
  position: relative;
  overflow: hidden;
}

.input-prepend {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 34px;
  height: 34px;
  padding: 0 10px;
  background: #F4F4F4;
  border: #DFDFDF solid 1px;
  float: left;
  border-right-width: 0;
  border-radius: 4px 0 0 4px;
}

input.is-prepended {
  border-radius: 0 4px 4px 0 !important;
}

/* 出品者に連絡する
----------------------------------------------------*/
.purchase .item-body > nav {
  margin-bottom: 10px;
}

.purchase #item-information {
  border: 1px solid #ddd;
  padding: 30px;
}

.purchase #item-information h1 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

.purchase #item-information .price {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.purchase #item-information .price span {
  font-size: 16px;
  font-size: 1.6rem;
}

.purchase #item-information #item-images li {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.purchase #item-information #item-images li img {
  width: 60px;
  height: auto;
}

.purchase #item-information .item-content {
  margin: 10px 0;
}

.purchase #item-information + h2 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* FAQ
----------------------------------------------------*/
.post-type-archive-faq #main h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  background: #f2f2f2;
  padding: 15px;
  margin: 0 0 40px 0;
}

.post-type-archive-faq #main dl {
  margin-bottom: 60px;
}

.post-type-archive-faq #main dt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  border-bottom: 1px solid #f2f2f2;
  padding: 0 0 20px 40px;
  margin-bottom: 20px;
  position: relative;
}

.post-type-archive-faq #main dt:before {
  color: #467adc;
  content: "Q";
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  line-height: .7;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.post-type-archive-faq #main dd {
  clear: both;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-left: 40px;
  position: relative;
}

.post-type-archive-faq #main dd:before {
  color: #DD0000;
  content: "A";
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  line-height: .7;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.post-type-archive-faq #main dd a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #DD0000;
  font-weight: bold;
}

.post-type-archive-faq #main dd a:after {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 5px;
}

/* ご利用ガイド
----------------------------------------------------*/
.guide #main #guide-index ul li {
  margin-bottom: 5px;
  font-weight: bold;
}

.guide #main #guide-index ul li a {
  color: #DD0000;
}

.guide #main #guide-index ul li:last-child {
  margin-bottom: 0;
}

.guide #main p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.guide #main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border: 3px solid #f6f6f6;
  padding: 30px;
}

.guide #main strong {
  display: block;
}

.guide #main ul li {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.guide #main ol {
  margin: 0 30px;
}

.guide #main ol > li {
  margin-bottom: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.guide #main ol > li h4 {
  color: #DD0000;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

.guide #main h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin: -120px 0 30px 0;
  padding-top: 120px;
  clear: both;
}

@media (max-width: 767px) {
  .guide #main ol {
    margin: 0;
  }
}

/* about
----------------------------------------------------*/
.featured {
  text-align: center;
  margin-bottom: 60px;
}

.featured p {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

body.about #main .catch {
  text-align: center;
}

body.about #main .catch h3 {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  color: #DD0000;
  margin-bottom: 20px;
}

body.about #main .catch p {
  font-size: 16px;
  font-size: 1.6rem;
}

body.about #main .catch a.btn-basic {
  width: 400px;
  margin: 10px auto 40px auto;
}

@media (max-width: 767px) {
  body.about #main .catch a.btn-basic {
    width: 100%;
  }
}

/* お問い合わせ
----------------------------------------------------*/
#form .required {
  color: #DD0000;
}

#form .btn-primary {
  background: #DD0000;
  border-color: inherit;
  border: none;
  margin: 10px auto;
  padding: 10px 30px 10px 30px;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  outline: none;
  font-weight: bold;
}

#form label {
  text-align: left;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .wpcf7-recaptcha > div > div {
    width: 100% !important;
  }
  .wpcf7-recaptcha > div > div iframe {
    width: 100% !important;
  }
  .wpcf7-recaptcha > div > div iframe .rc-anchor-normal {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .wpcf7-recaptcha > div > div iframe .rc-anchor-normal .rc-anchor-content {
    width: 100px;
  }
  .wpcf7-recaptcha > div > div iframe .rc-anchor-normal .rc-anchor-center-container label.rc-anchor-checkbox-label {
    width: 100%;
  }
}

/*----------------------------------------------------
WPエディタ用
----------------------------------------------------*/
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto, img.size-full, img.size-large, img.size-medium {
  max-width: 100%;
  /* When images are too wide for containing element, force them to fit. */
  height: auto;
  /* Override height to match resized width for correct aspect ratio. */
}

.attachment img {
  max-width: 100%;
  /* When images are too wide for containing element, force them to fit. */
  height: auto;
  /* Override height to match resized width for correct aspect ratio. */
}

.alignleft, img.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
  margin-top: 4px;
}

.alignright, img.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
  margin-top: 4px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft, img.alignright, img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  background: #f1f1f1;
  line-height: 18px;
  margin-bottom: 20px;
  max-width: 632px !important;
  /* prevent too-wide images from breaking layout */
  padding: 4px;
  text-align: center;
}

.wp-caption img {
  margin: 5px 5px 0;
}

.wp-caption p.wp-caption-text {
  color: #888;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 5px;
}

.wp-smiley {
  margin: 0;
}

.gallery {
  margin: 0 auto 18px;
}

.gallery .gallery-item {
  float: left;
  margin-top: 0;
  text-align: center;
  width: 33%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery img {
  border: 2px solid #cfcfcf;
}

.gallery-columns-2 .attachment-medium {
  max-width: 92%;
  height: auto;
}

.gallery-columns-4 .attachment-thumbnail {
  max-width: 84%;
  height: auto;
}

.gallery .gallery-caption {
  color: #888;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.gallery dl {
  margin: 0;
}

.gallery img {
  border: 10px solid #f1f1f1;
}

.gallery br + br {
  display: none;
}

#content .attachment img {
  /* single attachment images should be centered */
  display: block;
  margin: 0 auto;
}
