@charset "utf-8";
/* reset */
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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q,
blockquote {
  quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}
a img {
  border: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/* common */
html,
body {
  width: 100%;
}
html {
  color: #000;
  font-size: 10px;
  line-height: 1.2;
}
body {
  font-size: 1.5em;
  font-family: Arial, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #666;
}
strong {
  font-weight: bold;
}
.left {
  float: left;
}
.right {
  float: right;
}
.small {
  font-size: 1.2rem;
}
.ro a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#page {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  #page {
    overflow: hidden;
  }
}
#page:after {
  display: block;
  clear: both;
  content: '';
}
/* header */
@media (max-width: 768px) {
  #header {
    height: 50px;
    padding-left: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
  }
}
#header #logo {
  margin: 12px 0 13px;
  transition-duration: 0.2s;
}
#header #logo img {
  max-height: 50px;
}
@media (max-width: 768px) {
  #header #logo {
    margin: 0;
  }
  #header #logo img {
    max-height: 36px;
  }
}
#header .wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 1120px;
  margin: auto;
  padding: 0 10px;
}
@media (max-width: 768px) {
  #header .wrap {
    align-items: center;
    width: auto;
    height: 100%;
    padding: 0;
  }
}
#header .wrap .logowrap {
  display: flex;
  align-items: center;
}
#header .wrap .txt {
  padding-left: 20px;
  color: #666;
  font-size: 1.4rem;
}
@media (max-width: 940px) {
  #header .wrap .txt {
    display: none;
  }
}
#header .wrap .hnavi {
  padding-top: 12px;
}
#header .wrap .hnavi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 1.3rem;
}
#header .wrap .hnavi ul li {
  margin-left: 20px;
  margin-bottom: 10px;
}
#header .wrap .hnavi ul li a.cart:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 20px;
  margin: -3px 3px -4px 0;
  background-image: url(../images/custom/icon_cart.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #header .wrap .hnavi {
    display: none;
  }
}
#gnavi {
  margin-bottom: 40px;
  padding: 8px 0;
  background-color: #333333;
}
@media (max-width: 768px) {
  #gnavi {
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    padding: 0;
    z-index: 3;
    background-color: transparent;
  }
  #gnavi.open {
    position: fixed;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }
  #gnavi.open .wrap {
    right: 0;
  }
  #gnavi.open .wrap .btn span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: rotate(45deg);
  }
  #gnavi.open .wrap .btn span:nth-child(2) {
    opacity: 0;
  }
  #gnavi.open .wrap .btn span:nth-child(3) {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: rotate(-45deg);
  }
}
#gnavi .wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: auto;
  padding: 0 10px;
}
@media (max-width: 768px) {
  #gnavi .wrap {
    transition: 0.3s;
    position: absolute;
    top: 0;
    right: calc(-100vw + 80px);
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(100vw - 80px);
    max-height: 100vh;
    padding: 0;
    background-color: #fff;
  }
}
#gnavi .wrap .btn {
  display: none;
}
@media (max-width: 768px) {
  #gnavi .wrap .btn {
    position: absolute;
    top: 0;
    left: -50px;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #333333;
  }
  #gnavi .wrap .btn span {
    display: block;
    margin: 5px auto 0;
    width: 23px;
    height: 3px;
    background-color: #FFF;
  }
  #gnavi .wrap .btn span:first-child {
    margin-top: 15px;
  }
}
#gnavi .wrap .banner {
  width: 170px;
  transition-duration: 0.2s;
}
@media (max-width: 940px) {
  #gnavi .wrap .banner {
    width: 150px;
  }
}
#gnavi .wrap > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 1.7rem;
  flex-grow: 2;
}
@media (max-width: 768px) {
  #gnavi .wrap > ul {
    order: 2;
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
}
#gnavi .wrap > ul li a {
  display: block;
  padding: 5px 23px;
  border-left: 1px solid #737373;
  color: #fff;
  font-weight: bold;
  transition-duration: 0.2s;
}
@media (max-width: 1080px) {
  #gnavi .wrap > ul li a {
    padding: 5px 16px;
  }
}
@media (max-width: 940px) {
  #gnavi .wrap > ul li a {
    padding: 5px 10px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #gnavi .wrap > ul li a {
    position: relative;
    padding: 13px 15px;
    border-left: none;
    border-top: 1px solid #CECECE;
    color: #000;
    font-size: 1.6rem;
  }
  #gnavi .wrap > ul li a:after {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    display: block;
    content: '';
    width: 0;
    height: 0;
    margin: auto;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 5px solid #999;
  }
}
#gnavi .wrap > ul li:last-child a {
  border-right: 1px solid #737373;
}
@media (max-width: 768px) {
  #gnavi .wrap > ul li:last-child a {
    border-right: none;
    border-bottom: 1px solid #CECECE;
  }
}
#gnavi .wrap #search {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  #gnavi .wrap #search {
    order: 1;
    padding: 10px;
    width: calc(100% - 20px);
  }
}
#gnavi .wrap #search form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  #gnavi .wrap #search form {
    width: 100%;
  }
}
#gnavi .wrap #search input {
  height: 40px;
  box-sizing: border-box;
}
#gnavi .wrap #search input::placeholder {
  color: #aaa;
}
#gnavi .wrap #search input[type=text] {
  width: 258px;
  padding-left: 10px;
  border: 1px solid #bbbbbb;
  border-right: none;
  font-size: 16px;
  transition-duration: 0.2s;
}
@media (max-width: 1080px) {
  #gnavi .wrap #search input[type=text] {
    width: 208px;
  }
}
@media (max-width: 940px) {
  #gnavi .wrap #search input[type=text] {
    width: 148px;
  }
}
@media (max-width: 768px) {
  #gnavi .wrap #search input[type=text] {
    width: calc(100% - 42px);
    -webkit-appearance: none;
    border-radius: 0;
  }
}
#gnavi .wrap #search input[type=submit] {
  width: 42px;
  border: 1px solid #737373;
  border-left: none;
  background-color: #242424;
  background-image: url(../images/custom/icon_search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}
#gnavi .wrap #search .detail {
  margin-left: 7px;
  padding-right: 10px;
}
@media (max-width: 1080px) {
  #gnavi .wrap #search .detail {
    width: 30px;
    padding-right: 8px;
    font-size: 1.3rem;
  }
}
#gnavi .wrap #search .detail a {
  color: #fff;
}
@media (max-width: 768px) {
  #gnavi .wrap #search .detail {
    width: 100%;
    padding-top: 10px;
    text-align: right;
    font-size: 1.5rem;
  }
  #gnavi .wrap #search .detail a {
    color: #242424;
  }
}
#gnavi .wrap .hnavi {
  display: none;
}
@media (max-width: 768px) {
  #gnavi .wrap .hnavi {
    order: 3;
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1.3rem;
  }
  #gnavi .wrap .hnavi ul li a {
    display: block;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 1.3rem;
  }
  #gnavi .wrap .hnavi ul li a.cart:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 20px;
    margin: -3px 3px -4px 0;
    background-image: url(../images/custom/icon_cart.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media (max-width: 768px) {
  #gnavi .wrap .banner {
    width: 170px;
    order: 4;
    padding: 0 0 27px 10px;
  }
}
#gnavi .wrap .sns {
  width: 150px;
  margin-top: -100px;
  margin-left: -150px;
}
#gnavi .wrap .sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #gnavi .wrap .sns ul {
    justify-content: flex-start;
  }
}
#gnavi .wrap .sns ul li {
  margin-left: 10px;
}
@media (max-width: 768px) {
  #gnavi .wrap .sns {
    order: 4;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
  }
  #gnavi .wrap .sns ul {
    justify-content: center;
  }
}
/* searchBox */
#overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#E6000000', endColorstr='#E6000000');
  background: transparent;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 4;
  -webkit-backdrop-filter: blur(2px);
}
:root #overlay {
  filter: none\0/IE9;
}
#searchBox {
  display: none;
  width: 530px;
  box-sizing: border-box;
  border: 3px solid #333333;
  background: #f3f3f3;
  padding: 20px;
  z-index: 4;
  top: 60px;
  position: absolute;
}
@media (max-width: 768px) {
  #searchBox {
    width: auto;
    padding: 10px 20px;
    margin: 0 10px;
  }
}
@media (max-width: 480px) {
  #searchBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    overflow-y: auto;
    height: auto;
  }
  #searchBox::-webkit-scrollbar {
    display: none;
  }
}
:root #searchBox {
  filter: none\0/IE9;
}
#searchBox table {
  width: 100%;
}
#searchBox table th,
#searchBox table td {
  padding: 2px 0;
}
#searchBox table th {
  width: 22%;
  text-align: left;
  font-weight: normal;
}
#searchBox table td {
  width: 78%;
}
@media (max-width: 768px) {
  #searchBox table th,
  #searchBox table td {
    display: block;
    width: 100%;
  }
}
#searchBox input[type=text] {
  width: 97%;
  border: solid 1px #dddddd;
  font-size: 16px;
  padding: 5px;
}
#searchBox select {
  width: 100%;
  border: solid 1px #dddddd;
  font-size: 14px;
  padding: 5px;
}
#searchBox select[name=amount],
#searchBox select[name=order] {
  width: auto;
}
#searchBox .btn {
  margin: 10px 0;
  text-align: center;
}
#searchBox .btn button,
#searchBox .btn a {
  box-sizing: border-box;
  min-width: 130px;
  height: 40px;
  line-height: 40px;
  background: #888888;
  color: #ffffff;
  padding: 0 10px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
#searchBox .btn button:hover,
#searchBox .btn a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  #searchBox .btn button,
  #searchBox .btn a {
    display: block;
    width: 100%;
  }
}
#searchBox .btn .search_submit {
  background: url(../images/custom/icon_search.svg) 10px center no-repeat #333333;
  background-size: 18px;
}
@media (max-width: 768px) {
  #searchBox .btn .search_submit {
    margin-bottom: 10px;
  }
}
#searchBox .close {
  position: absolute;
  top: -30px;
  right: -3px;
}
@media (max-width: 768px) {
  #searchBox .close {
    position: static;
    margin-top: -10px;
    margin-right: -20px;
  }
}
#searchBox .close a {
  background: #242424;
  color: #ffffff;
  text-align: center;
  width: 60px;
  line-height: 28px;
  display: block;
  font-weight: bold;
}
@media (max-width: 768px) {
  #searchBox .close a {
    margin-left: auto;
  }
}
#searchBox legend {
  margin-left: 15px;
}
/**/
/* layout */
#contents {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  max-width: 1120px;
  margin: 0 auto 0px;
  padding: 0 10px;
}
@media (max-width: 768px) {
  #contents {
    display: block;
    width: auto;
    padding: 0;
  }
}
#contents.noleft {
  flex-direction: row;
}
@media (max-width: 768px) {
  #contents.noleft {
    padding: 20px 15px 0;
  }
}
#contents.noleft #main {
  max-width: none;
  padding-right: 30px;
}
@media (max-width: 768px) {
  #contents.noleft #main {
    padding-right: 0;
    padding-bottom: 30px;
  }
}
#contents.noleft #sub {
  width: 240px;
  min-width: 240px;
}
@media (max-width: 768px) {
  #contents.noleft #sub {
    width: auto;
    min-width: auto;
  }
}
#main_column {
  flex-grow: 1;
  max-width: 850px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #main_column {
    width: auto;
    padding: 20px 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e7ded6;
  }
}
#side_column {
  width: 240px;
  min-width: 240px;
  margin: 0 0 60px 0;
  padding-right: 30px;
  background: #ffff;
  z-index: 2;
}
@media (max-width: 768px) {
  #side_column {
    width: auto;
    min-width: none;
    margin-bottom: 20px;
    padding-right: 0;
  }
}
#contents .error,
#contents .note {
  color: #FF0000;
}
/**/
/* 左カラム */
.sidebox {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sidebox {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.sidebox .ttl {
  position: relative;
  padding: 8px 10px;
  background-color: #333333;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
}
.category_tree {
  font-size: 12px;
}
.category_tree li a {
  display: block;
  padding: 10px 0;
}
/* ジャンル */
#genre_tree {
  position: relative;
  z-index: 2;
}
/* シリーズ */
#series_tree > li > a {
  display: block;
  padding: 10px 0;
}
.sidebox.banner > div {
  text-align: center;
}
.sidebox.banner > div a {
  margin-bottom: 10px;
  display: inline-block;
}
.sidebox.banner > div a img {
  max-width: 240px;
}
/* メガメニューJS */
.amazonmenu ul li {
  position: static;
}
.amazonmenu > .category_tree {
  position: relative;
}
.amazonmenu > .category_tree .entry a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 15px 5px;
}
.amazonmenu > .category_tree .hassub > a::after {
  border: 5px solid transparent;
  border-left-color: #aaaaaa;
  content: '';
  height: 0;
  position: absolute;
  right: 5px;
  top: 40%;
  width: 0;
}
.amazonmenu > .category_tree .hassub.selected a::after {
  border-left-color: #666666;
}
.amazonmenu ul li a:hover,
.amazonmenu .hassub.selected {
  font-weight: bold;
}
.amazonmenu ul li a:hover,
.amazonmenu ul li.hassub.selected > a {
  text-decoration: none;
  color: #666666;
}
.amazonmenu .entry > ul {
  display: block !important;
  height: auto;
}
.amazonmenu .entry > ul ul {
  display: none;
  background: #fdfdfd;
  border: 1px solid #dddddd;
  border-left: 1px dotted #dddddd;
  left: 240px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 240px;
  min-width: 240px;
}
.amazonmenu .entry > ul > li {
  border-top: 1px dotted #dddddd;
}
.amazonmenu .entry > ul > li:first-child {
  border-top: none;
  border-bottom: none;
}
.amazonmenu .entry > ul > li li {
  border-bottom: 1px solid #dddddd;
}
.amazonmenu .entry > ul > li li:last-child {
  border-top: none;
}
.amazonmenu .entry ul li a {
  display: block;
  font-weight: bold;
}
.custommenu > ul {
  position: relative;
}
.custommenu > ul > li a {
  display: inline-block;
  margin: 12px 15px 12px 10px;
  padding: 0;
  font-size: 1.4rem;
}
.custommenu li.entry span {
  display: block;
}
.custommenu li.entry > div > span {
  position: relative;
  border-bottom: solid 1px #dddddd;
}
.custommenu li.entry > div > span:hover > .ck:after {
  border-top-color: #aaaaaa;
  border-left-color: transparent;
  right: 8px;
  top: calc(50% + 1px);
}
.custommenu li.entry > div > span .ck {
  display: block;
  position: absolute;
  top: 16px;
  right: 0;
}
.custommenu li.entry > div > span .ck.open:after {
  border-top-color: #aaaaaa;
  border-left-color: transparent;
  right: 8px;
  top: calc(50% + 1px);
}
.custommenu li.entry > div > span .ck:after {
  position: absolute;
  right: 5px;
  top: calc(50% - 2px);
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #aaaaaa;
}
.custommenu li.entry > div > span > div {
  display: none;
  min-width: 240px;
}
.custommenu li.entry > div > span > div > span:hover > .ck:after {
  border-top-color: #aaaaaa;
  border-left-color: transparent;
  right: 8px;
  top: calc(50% + 1px);
}
.custommenu li.entry > div > span > div .ck {
  top: 14px;
}
.custommenu li.entry > div > span > div a {
  margin: 8px 15px 8px 10px;
}
.custommenu li.entry > div > span > div > span {
  position: relative;
  box-sizing: border-box;
  padding-left: 20px;
}
.custommenu li.entry > div > span > div > span > div {
  display: none;
  padding-top: 0;
}
.custommenu li.entry .submenublock > span:last-child {
  border-bottom: none;
}
.custommenu li.entry > div > span > div > span,
.custommenu li.entry .submenublock > span {
  width: 240px;
}
@media (max-width: 768px) {
  .custommenu li.entry > div > span > div > span,
  .custommenu li.entry .submenublock > span {
    width: auto;
  }
}
.custommenu li.entry > div > span > div > span div,
.custommenu li.entry .submenublock > span div {
  padding: 0 5px 0 1em;
  margin-bottom: 10px;
  margin-left: 1em;
}
.custommenu li.entry > div > span > div > span div span,
.custommenu li.entry .submenublock > span div span {
  display: inline-block;
  margin-right: 1em;
}
.custommenu li.entry > div > span > div > span div span a,
.custommenu li.entry .submenublock > span div span a {
  padding: 0;
  margin-bottom: 3px;
  font-size: 14px;
}
.custommenu li.entry > div > span > div > span div span a:before,
.custommenu li.entry .submenublock > span div span a:before {
  content: '＞ ';
  color: #999;
  font-size: 12px;
}
.custommenu li.entry > div > span > div > span.issub > a,
.custommenu li.entry .submenublock > span.issub > a {
  padding: 15px 10px 5px;
}
.custommenu .hassub > div > span > a::after {
  border: 5px solid transparent;
  border-left-color: #aaaaaa;
  content: '';
  height: 0;
  position: absolute;
  right: 5px;
  width: 0;
}
.custommenu .hassub.selected > div > span > a::after {
  border-left-color: #666666;
}
.custommenu li.entry .submenublock {
  width: 240px;
  float: left;
  border-left: dotted 1px #dddddd;
}
/**/
.titleType1 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .titleType1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.slideType1 {
  *zoom: 1;
  margin: 0 auto 40px;
  max-width: 1080px;
  padding: 20px 20px 0;
  border-top: solid 1px #dddddd;
  position: relative;
}
.slideType1 .ttlWrap {
  margin-bottom: 15px;
}
.slideType1 h2 {
  font-size: 24px;
  color: #333333;
}
.slideType1 h2 span {
  padding: 0 15px;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 5px;
}
.slideType1 > ul {
  *zoom: 1;
  max-width: 1004px;
  margin: 0 auto;
  padding: 0 53px 0 63px;
}
.slideType1 > ul:after {
  content: "";
  display: block;
  clear: both;
}
.slideType1 > ul li {
  float: left;
  width: 156px;
  margin-right: 10px;
  border: solid 1px #dddddd;
}
.slideType1 .bx-wrapper {
  padding: 0 40px 0 40px;
}
.slideType1 ul li {
  width: 156px !important;
  margin-right: 10px;
  border: solid 1px #dddddd;
}
.slideType1 .image {
  padding: 5px;
  text-align: center;
  margin-bottom: 5px;
}
.slideType1 .image img {
  max-width: 133px;
}
.slideType1 .ttl {
  font-weight: bold;
  padding: 0 7px;
  margin-bottom: 7px;
}
.slideType1 .ttl a {
  color: #242424;
}
.slideType1 .txt {
  margin-bottom: 7px;
}
.slideType1 .price {
  padding: 0 7px;
  margin-bottom: 5px;
  font-size: 13px;
}
.slideType1 .price span {
  font-size: 11px;
}
.slideType1 .author {
  margin-bottom: 7px;
  text-align: left;
}
.slideType1 .author a {
  color: #656565;
}
.slideType1 .btns .btn {
  margin: 0 7px 7px;
}
.slideType1 .btns .btn a {
  margin: 7px;
  background: url(../images/common/icon_book.png) 35px 4px no-repeat #333333;
  display: block;
  line-height: 32px;
  color: #ffffff;
  padding-left: 60px;
}
.slideType1 .bx-prev,
.slideType1 .bx-next {
  position: absolute;
  width: 44px;
  height: 44px;
  display: block;
  top: 0;
}
.slideType1 .bx-prev {
  left: 0;
  background: url(../images/common/bxslider_prev.gif) 0 0 no-repeat;
}
.slideType1 .bx-next {
  right: 0;
  background: url(../images/common/bxslider_next.gif) 0 0 no-repeat;
}
.slideType2 {
  position: relative;
}
.slideType2 > ul {
  *zoom: 1;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px 17px;
}
@media (max-width: 768px) {
  .slideType2 > ul {
    gap: 25px 9px;
  }
}
.slideType2 > ul:after {
  content: "";
  display: block;
  clear: both;
}
.slideType2 > ul li {
  width: 156px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .slideType2 > ul li {
    width: 108px;
    margin-bottom: 20px;
  }
}
.slideType2 .bx-wrapper {
  padding: 0 94px;
}
.slideType2 .image {
  padding: 5px;
  text-align: center;
  margin-bottom: 5px;
  padding: 0 5px 10px;
}
@media (max-width: 768px) {
  .slideType2 .image {
    min-height: 145px;
    margin-bottom: 0;
    padding-bottom: 5px;
  }
}
.slideType2 .image img {
  width: 120px;
  height: auto;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
}
.slideType2 .ttl {
  font-weight: bold;
  padding: 0 7px;
  margin-bottom: 7px;
}
.slideType2 .txt {
  margin-bottom: 7px;
}
.slideType2 .price {
  padding: 0 7px;
  margin-bottom: 5px;
  font-size: 13px;
}
.slideType2 .price span {
  font-size: 11px;
}
.slideType2 .author {
  margin-bottom: 7px;
  padding: 0 7px;
  text-align: left;
  font-size: 1.3rem;
}
.slideType2 .author a {
  color: #656565;
}
.slideType2 .btns {
  width: 100%;
}
.slideType2 .btns .btn {
  margin: 0 7px 7px;
}
.slideType2 .btns .btn a {
  background-color: #333;
  background-image: url(../images/common/icon_book.png);
  background-position: calc(50% - 28px) 5px;
  background-repeat: no-repeat;
  text-align: center;
  display: block;
  line-height: 32px;
  color: #ffffff;
  padding-left: 22px;
  border-radius: 4px;
  font-size: 1.4rem;
}
.slideType2 .bx-prev,
.slideType2 .bx-next {
  position: absolute;
  width: 44px;
  height: 44px;
  display: block;
  top: 0;
}
.slideType2 .bx-prev {
  left: 0;
  background: url(../images/common/bxslider_prev.gif) 0 0 no-repeat;
}
.slideType2 .bx-next {
  right: 0;
  background: url(../images/common/bxslider_next.gif) 0 0 no-repeat;
}
.slideType1 .bx-viewport,
.slideType2 .bx-viewport {
  height: auto !important;
}
.moreLink {
  background-color: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #000;
  border-radius: 50px;
  width: 190px;
  margin: 0 auto;
}
.moreLink:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.moreOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.moreOverlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.moreOverlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #000000 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.listType1 {
  overflow: hidden;
}
.listType1 h2 {
  margin-bottom: 15px;
  font-size: 22px;
  background: #333333;
  color: #ffffff;
  padding: 8px 15px;
  font-weight: bold;
}
.listType1 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 30px;
  margin-right: -15px;
}
@media (max-width: 768px) {
  .listType1 ul {
    margin-top: 25px;
    margin-right: 0;
    padding-left: 15px;
  }
}
.listType1 ul li {
  width: 156px;
  margin: 0 15px 25px 0;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .listType1 ul li {
    width: 108px;
    margin-right: 7px;
    margin-bottom: 20px;
  }
}
.listType1 ul li .image {
  min-height: 160px;
  margin-bottom: 0;
  padding: 0 5px 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .listType1 ul li .image {
    min-height: 145px;
    margin-bottom: 0;
    padding-bottom: 5px;
  }
}
.listType1 ul li .image a {
  display: block;
}
.listType1 ul li .image img {
  width: 120px;
  height: auto;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
}
.listType1 ul li .ttl {
  font-weight: bold;
  padding: 0 7px;
  margin-bottom: 7px;
}
.listType1 ul li .ttl a {
  color: #242424;
}
.listType1 ul li .txt {
  margin-bottom: 7px;
  flex-grow: 1;
}
.listType1 ul li .price {
  text-align: center;
  margin-bottom: 7px;
}
.listType1 ul li .author {
  margin-bottom: 7px;
  text-align: left;
  padding: 0 7px;
  font-size: 1.3rem;
}
.listType1 ul li .author a {
  color: #656565;
}
.listType1 ul li .btns {
  margin-bottom: 7px;
}
.listType1 ul li .btns .btn {
  margin: 7px;
  min-height: 32px;
}
.listType1 ul li .btns .btn a {
  background-color: #333;
  background-image: url(../images/common/icon_book.png);
  background-position: calc(50% - 28px) 5px;
  background-repeat: no-repeat;
  display: block;
  text-align: center;
  line-height: 32px;
  color: #ffffff;
  padding-left: 22px;
  border-radius: 4px;
  font-size: 1.4rem;
}
.listType2 {
  margin-bottom: 80px;
}
.listType2 .ttlWrap {
  margin-bottom: 35px;
  background-image: url(/images/common/bg_h2.png);
  background-repeat: repeat-x;
  background-position: 0 5px;
}
.listType2 h2 {
  width: calc(1081px - 30px);
  margin: 0 auto;
  padding: 0 15px;
  font-size: 134%;
}
.listType2 h2 span {
  padding: 0 15px;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 5px;
}
.listType2 ul {
  width: 1081px;
  margin: 0 auto;
}
.listType2 ul li {
  *zoom: 1;
  margin-top: 20px;
}
.listType2 ul li:after {
  content: "";
  display: block;
  clear: both;
}
.listType2 ul li:first-child {
  margin-top: 0;
}
.listType2 ul li .date {
  float: left;
  width: 120px;
  padding-top: 1px;
  color: #656565;
}
.listType2 ul li .date:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border: 2px solid #2899C3;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.listType2 ul li .text {
  float: left;
  font-size: 117%;
}
.newsListType1 .ttlWrap {
  *zoom: 1;
  margin-bottom: 20px;
  padding: 0 16px 8px 10px;
  border-bottom: 2px solid #BDBDBD;
  font-size: 117%;
}
.newsListType1 .ttlWrap:after {
  content: "";
  display: block;
  clear: both;
}
.newsListType1 .ttlWrap h3 {
  float: left;
}
.newsListType1 .ttlWrap h3 img {
  padding-right: 7px;
  vertical-align: 0;
}
.newsListType1 .ttlWrap p {
  float: right;
}
.newsListType1 .ttlWrap p img {
  padding-left: 9px;
  vertical-align: 0;
}
.newsListType1 .entry {
  *zoom: 1;
  margin-top: 15px;
  font-size: 117%;
}
.newsListType1 .entry:after {
  content: "";
  display: block;
  clear: both;
}
.newsListType1 .entry:first-child {
  margin-top: 0;
}
.newsListType1 .category {
  float: left;
  display: block;
  padding-right: 16px;
  color: #fff;
  text-align: center;
}
.newsListType1 .txt {
  padding-top: 3px;
}
.newsListType1 .txt span {
  padding-right: 16px;
  display: inline-block;
  color: #999;
}
.category {
  color: #fff;
}
.category span {
  display: block;
  padding: 3px;
  background: #333333;
  font-size: 12px;
  font-weight: bold;
}
/*
.category span.reprint {
	background-color: #3AA97F;
}
.category span.pr {
	background-color: #ED9E76;
}
.category span.event {
	background-color: #ED6E6D;
}
.category span.bookstore {
	background-color: #2D86CE;
}
.category span.errata {
	background-color: #5569B0;
}
.category span.recruit {
	background-color: #81C927;
}
.category span.news {
	background-color: #B950C5;
}
*/
.newsListType2 ul li {
  *zoom: 1;
  margin-top: 20px;
}
.newsListType2 ul li:after {
  content: "";
  display: block;
  clear: both;
}
.newsListType2 ul li:first-child {
  margin-top: 0;
}
.newsListType2 ul li .date {
  float: left;
  width: 5em;
  font-size: 1.4rem;
  color: #656565;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .newsListType2 ul li .date {
    float: none;
    padding-left: 1em;
    margin-top: 3px;
  }
}
.newsListType2 ul li .text {
  float: left;
  font-size: 1.5rem;
  margin-right: 1em;
  padding-left: 1em;
  text-indent: -1.3em;
}
@media (max-width: 768px) {
  .newsListType2 ul li .text {
    float: none;
    margin-right: 0;
  }
}
.newsListType2 ul li .text:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border: 2px solid #333333;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.tableType1 {
  width: 100%;
  border-top: solid 1px #dddddd;
}
.tableType1 tr {
  border-bottom: solid 1px #dddddd;
}
.tableType1 th,
.tableType1 td {
  padding: 15px 0;
}
.tableType1 th {
  width: 160px;
  color: #333;
  vertical-align: middle;
  font-weight: bold;
}
.tableType1 td p {
  margin-top: 8px;
}
.tableType1 td p:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .tableType1 tr {
    border-bottom: none;
  }
  .tableType1 tr:first-child {
    margin-top: 10px;
  }
  .tableType1 th,
  .tableType1 td {
    padding: 10px 0;
  }
}
#main > .titleType1 + .sectionType1 .ttlWrap h2 {
  display: none;
}
.sectionType1 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sectionType1 {
    margin-bottom: 20px;
  }
}
.sectionType1 .ttlWrap {
  *zoom: 1;
  margin-bottom: 15px;
}
.sectionType1 .ttlWrap:after {
  content: "";
  display: block;
  clear: both;
}
.sectionType1 .ttlWrap h2 {
  font-size: 1.8rem;
  background: #333333;
  color: #ffffff;
  padding: 9px 15px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sectionType1 .ttlWrap h2 {
    font-size: 1.6rem;
    padding: 7px 10px;
  }
}
.sectionType1 .ttlWrap h2 a {
  color: #FFF;
}
.sectionType1 .ttlWrap h2 img {
  padding-right: 7px;
  vertical-align: 0;
}
.sectionType1 .ttlWrap p {
  float: right;
}
.sectionType1 .ttlWrap p img {
  padding-left: 9px;
  vertical-align: 0;
}
@media (max-width: 768px) {
  .sectionType1.listType1 ul {
    padding-left: 0;
  }
}
.sectionType1 .content {
  padding: 0 20px;
}
.formType1 input[name=mail],
.formType1 input[name=mail_sub] {
  width: 230px;
}
.formType1 textarea {
  width: 360px;
  height: 100px;
}
#main input[type="submit"],
#main input[type="button"] {
  padding: 8px 30px 10px;
  border-style: none;
  margin: auto;
  box-shadow: 0px 2px 3px #0000001A;
  border-radius: 2px;
  background-color: #333333;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
}
#main input[type="submit"]:hover,
#main input[type="button"]:hover {
  opacity: 0.8;
}
#main input[type="submit"]::-webkit-search-decoration,
#main input[type="button"]::-webkit-search-decoration {
  display: none;
}
@media (max-width: 768px) {
  #main input[type="submit"],
  #main input[type="button"] {
    padding: 0.5em 3em;
    font-size: 1.3rem;
  }
}
#main input[type="button"] {
  border: 1px solid #CCC;
  background-color: #EEE;
  color: #333;
  margin-right: 0.5em;
  box-sizing: border-box;
}
#main input[type="text"],
#main textarea {
  border: 0;
  padding: 10px;
  font-size: 1.3em;
  border: solid 1px #ccc;
  min-width: 300px;
  border-radius: 3px;
  outline: 0;
}
#main input[type="text"]:focus,
#main textarea:focus {
  border: solid 1px #EEA34A;
}
@media (max-width: 768px) {
  #main input[type="text"],
  #main textarea {
    max-width: 100%;
    min-width: auto;
    width: calc(100% - 40px);
  }
}
#main select {
  outline: 0;
  border: solid 1px #ccc;
  border-radius: 3px;
  font-size: 1.3em;
  padding: 0 10px;
  height: 40px;
  min-width: 300px;
  position: relative;
}
#main select:focus {
  border: solid 1px #EEA34A;
}
@media (max-width: 768px) {
  #main select {
    min-width: auto;
  }
}
/* footer */
#footer {
  padding-top: 25px;
}
#footer .pagetop {
  *zoom: 1;
  width: 1081px;
  margin: 0 auto;
}
#footer .pagetop:after {
  content: "";
  display: block;
  clear: both;
}
#footer .pagetop a {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  float: right;
  padding: 7px 50px;
  background-image: url(/images/common/bg_footer.png);
  background-color: #74615c;
  font-size: 117%;
  font-weight: bold;
  color: #FFF;
}
#footer .pagetop a:before {
  content: "";
  position: absolute;
  left: 34px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #ffffff transparent;
  line-height: 0px;
  _border-color: #000000 #000000 #ffffff #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}
#fotNavi {
  padding: 30px 0 40px;
  background-color: #EEE;
}
@media (max-width: 768px) {
  #fotNavi {
    padding: 25px 0 30px;
  }
}
#fotNavi .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #fotNavi .inner {
    width: auto;
    padding-right: 15px;
    padding-left: 0;
  }
}
#fotNavi .inner dl {
  box-sizing: border-box;
  width: 25%;
  padding: 0 15px;
}
@media (max-width: 768px) {
  #fotNavi .inner dl {
    width: 50%;
    padding-left: 15px;
  }
  #fotNavi .inner dl.book,
  #fotNavi .inner dl.news {
    display: none;
  }
}
#fotNavi .inner dt {
  font-size: 1.7rem;
  color: #423B34;
  border-top: 1px dotted #CCC;
  border-bottom: 1px dotted #CCC;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #fotNavi .inner dt {
    font-size: 1.6rem;
    padding: 0 0 5px;
    border-top: none;
    margin-bottom: 15px;
    text-align: left;
  }
}
#fotNavi .inner dd {
  padding: 0 20px;
}
@media (max-width: 768px) {
  #fotNavi .inner dd {
    padding: 0;
  }
}
#fotNavi .inner a {
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
}
#fotNavi .inner li {
  position: relative;
  padding-bottom: 5px;
  padding-left: 1.2em;
}
@media (max-width: 768px) {
  #fotNavi .inner li {
    padding: 0 0 3px 0;
  }
}
#fotNavi .inner li:before {
  position: absolute;
  left: 0;
  content: "・";
  display: inline-block;
  color: #333333;
}
@media (max-width: 768px) {
  #fotNavi .inner li:before {
    content: none;
  }
}
/**/
#publisher {
  padding: 15px 0 40px;
  background-image: url(/images/common/bg_footer.png);
  background-color: #817876;
}
#publisher .inner {
  width: 1081px;
  margin: 0 auto;
  font-weight: bold;
  color: #FFF;
}
#publisher .inner .ttl {
  padding-bottom: 4px;
  font-size: 117%;
}
#copyright {
  padding: 14px 10px;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #5C5249;
}
@media (max-width: 768px) {
  #copyright {
    padding: 10px 0;
    width: auto;
    text-align: center;
  }
}
/* cms start */
.cms {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .cms {
    font-size: 1.4rem;
  }
}
.cms * {
  word-break: break-all;
}
.cms img {
  height: auto !important;
  max-width: 100%;
}
.cms a {
  color: #003366;
  text-decoration: underline;
}
.cms p {
  margin: 1em 0;
}
.cms b {
  font-weight: bold;
}
.cms em {
  font-style: italic;
  font-family: system-ui;
}
.cms ul {
  list-style-type: disc;
  margin: 1em 0 1em 1em;
  padding: 0 0 0 1em;
}
.cms ul ul {
  list-style-type: circle;
  margin: 0 0 0 1em;
}
.cms ul ul ul {
  list-style-type: square;
}
.cms ol {
  list-style-type: decimal;
  margin: 1em 0 1em 1em;
  padding: 0 0 0 1em;
}
.cms ol ol {
  margin: 0 0 0 1em;
}
.cms dl {
  margin: 1em 0;
}
.cms dd {
  margin: 0 0 0 1em;
}
.cms blockquote {
  margin: 1em;
  padding: 0 0 0 1em;
  border-left: 3px solid #CCCCCC;
}
.cms pre {
  margin: 1em;
  padding: 1em;
  border: 1px solid #CCCCCC;
  white-space: normal;
}
.cms blockquote blockquote {
  margin: 0;
}
.cms iframe {
  max-width: 100%;
}
.cms table {
  border-top: 1px solid #D7D7D7;
  border-right: 1px solid #D7D7D7;
}
.cms table th {
  padding: 5px 5px 5px 7px;
  border-bottom: 1px solid #D7D7D7;
  border-left: 1px solid #D7D7D7;
  background-color: #E8E8E8;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
}
.cms table td {
  padding: 5px 5px 5px 7px;
  border-bottom: 1px solid #D7D7D7;
  border-left: 1px solid #D7D7D7;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 768px) {
  .cms table {
    width: auto !important;
  }
  .cms table th,
  .cms table td {
    width: auto !important;
  }
}
.cms h1,
.cms h2,
.cms h3,
.cms h4,
.cms h5,
.cms h6 {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
.cms h1 {
  font-size: 2.5rem;
}
.cms h2 {
  font-size: 2rem;
}
.cms h3 {
  font-size: 1.75rem;
}
.cms h4 {
  font-size: 1.5rem;
}
.cms h5 {
  font-size: 1.25rem;
}
.cms h6 {
  font-size: 1rem;
}
/* cms end */
