@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
/*
@mixin mq-pc {
	@media only screen and (min-width: 768px) {
		@content;
	}
}
*/
figure {
  margin: 0;
  padding: 0;
}

.newarraival {
  width: 100%;
  color: #fff;
  background-color: #0a1945;
  padding: 10px 10px;
  text-align: center;
  font-size: 1.7em;
  font-weight: bold;
  margin: 10px 0 0;
}

h1 {
  color: #fff;
  background-color: #0a1945;
  padding: 5px 10px;
  text-align: center;
  font-size: 1.5em;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 1.2em;
  }
}

h2 {
  color: #fff;
  background-color: #c0c0c0;
  padding: 7px 10px;
  text-align: center;
  font-size: 1em;
}

h3 {
  color: #fff;
  background-color: #0a1945;
  padding: 7px 10px;
  text-align: center;
  font-size: 1.1em;
}
@media only screen and (max-width: 767px) {
  h3 {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1280px) {
  h3 {
    margin-bottom: 0;
  }
}

body {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .wrap {
    margin: 0 auto;
    padding: 0 10px;
  }
}
@media only screen and (min-width: 1280px) {
  .wrap {
    max-width: 1180px;
    margin: 0 auto;
  }
}

.content {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.local_nav {
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .local_nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 8px 0 2px;
  }
}
@media only screen and (min-width: 1280px) {
  .local_nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
}
.local_nav li {
  color: #000;
  background-color: #f1f1f1;
  border: #000 solid 1px;
  box-sizing: border-box;
  margin: 2px;
  padding: 4px 0;
  text-align: center;
  line-height: 1.2;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .local_nav li {
    height: 36px;
    margin: 0 1px 3px 1px;
    padding: 4px 0;
    position: relative;
  }
  .local_nav li:nth-of-type(1) {
    width: 100%;
  }
  .local_nav li:nth-of-type(2), .local_nav li:nth-of-type(3), .local_nav li:nth-of-type(4), .local_nav li:nth-of-type(5), .local_nav li:nth-of-type(6), .local_nav li:nth-of-type(7) {
    width: 49%;
  }
}
.local_nav li:hover {
  background-color: #999;
}
.local_nav a {
  color: #000;
  text-decoration: none;
}
.local_nav a:sr {
  color: #fff;
  text-decoration: underline;
}

.prod_detail {
  display: flex;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .prod_detail {
    flex-direction: column;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_detail {
    margin: 30px auto 40px;
  }
}
@media only screen and (max-width: 767px) {
  .prod_detail .sale_detail {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_detail .sale_detail {
    width: 40%;
    margin-right: 30px;
  }
}
.prod_detail .sale_detail .text {
  padding: 0 8px;
}
.prod_detail .sale_detail h5 {
  color: #fff;
  background-color: #a2a2a2;
  padding: 7px 10px;
  margin: 0 0 15px;
  text-align: center;
  font-size: 1em;
}
@media only screen and (max-width: 767px) {
  .prod_detail .sale_detail h5 {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .prod_detail .prod_description {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_detail .prod_description {
    width: 60%;
    margin-top: 0;
  }
}
.prod_detail .prod_description p {
  border: #000 solid 1px;
  background-color: #f1f1f1;
  padding: 10px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .prod_detail .prod_description p {
    margin: 20px 0 30px;
  }
}

.prod_order {
  display: block;
  background-color: #e5000c;
  color: #fff;
  text-decoration: none;
  margin: 20px auto 0;
  width: 90%;
  height: 50px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .prod_order {
    margin: 20px auto 10px;
    height: 50px;
    font-size: 0.9rem;
  }
}
.prod_order:hover {
  background-color: rgb(178, 0, 9.327510917);
}
.prod_order:hover::before {
  right: 20px;
}
.prod_order::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  font-size: 1.1rem;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .prod_order::before {
    font-size: 1rem;
    right: 20px;
  }
}

.prod_img {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .prod_img {
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_img {
    justify-content: center;
  }
}
.prod_img > img {
  max-width: 100%;
  height: auto;
}
.prod_img {
  /* 画像一つの時 */
}
@media only screen and (max-width: 767px) {
  .prod_img .item_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_img .item_img {
    width: 80%;
    text-align: center;
  }
}
.prod_img {
  /* 画像二つの時 */
}
@media only screen and (max-width: 767px) {
  .prod_img .item_img_two {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_img .item_img_two {
    width: 49%;
  }
}
.prod_img {
  /* 画像三つの時 */
}
@media only screen and (max-width: 767px) {
  .prod_img .item_img_three_01 {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_img .item_img_three_01 {
    width: 33%;
  }
}
@media only screen and (max-width: 767px) {
  .prod_img .item_img_three_02 {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_img .item_img_three_02 {
    width: 33%;
  }
}
@media only screen and (max-width: 767px) {
  .prod_img .item_img_three_03 {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .prod_img .item_img_three_03 {
    width: 33%;
  }
}

/* ひばり書房 */
@media only screen and (max-width: 767px) {
  .hibari_box1 {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1280px) {
  .hibari_box1 {
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .hibari_box2 {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1280px) {
  .hibari_box2 {
    display: flex;
    margin-top: 10px;
  }
}

.hibari_img img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .logo_lonT {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1280px) {
  .logo_lonT {
    width: 49%;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .logo_T {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1280px) {
  .logo_T {
    width: 49%;
  }
}

@media only screen and (max-width: 767px) {
  .hitlogo {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1280px) {
  .hitlogo {
    width: 49%;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .bigkanbadge {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1280px) {
  .bigkanbadge {
    width: 49%;
  }
}

.logo_lonT_container {
  display: flex;
  flex-direction: column;
}

.logo_T_container {
  display: flex;
  flex-direction: column;
}

.hitlogo_container {
  display: flex;
  flex-direction: column;
}

.bigkanbadge_container {
  display: flex;
  flex-direction: column;
}

/* --------------------------------
 * 関連情報
 * -------------------------------- */
.relate {
  marigin-top: 0;
}
@media only screen and (max-width: 767px) {
  .relate_container {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_container {
    display: flex;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .relate_newarrival {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival {
    width: 40%;
    margin-right: 10px;
  }
}
.relate_newarrival .post_container {
  margin: 10px 0 0;
}
.relate_newarrival .post_container .topic_container {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic {
    width: 47%;
    display: flex;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    -webkit-box-pack: justify;
    flex-direction: column;
    margin: 0 4px 15px 4px;
    padding: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic {
    width: 49%;
    display: flex;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    -webkit-box-pack: justify;
    flex-direction: column;
    margin: 0 1px 15px 1px;
    padding: 0;
  }
}
.relate_newarrival .post_container .topic_container > .topic:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic figure {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic figure {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic figure:hover img {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic figure a {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic figure a {
    display: block;
    text-align: justify;
  }
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic figure a img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic figure a img {
    width: 100%;
  }
}
.relate_newarrival .post_container .topic_container > .topic .category {
  margin-top: 10px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic .category span {
    display: inline;
    color: #fff;
    padding: 0 10px;
    border-radius: 50px;
    font-size: 0.7em;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic .category span {
    display: inline;
    color: #fff;
    padding: 0 10px;
    border-radius: 50px;
    font-size: 0.6em;
    font-weight: bold;
  }
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic .category .red {
    float: left;
    background-color: #e0060a;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic .category .red {
    float: left;
    position: relative;
    background-color: #e0060a;
  }
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic .category .blue {
    clear: both;
    float: left;
    background-color: #123574;
    margin-top: 3px;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic .category .blue {
    float: right;
    position: relative;
    background-color: #123574;
  }
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic .caption {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic .caption {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .relate_newarrival .post_container .topic_container > .topic .caption a {
    text-decoration: none;
    color: #000;
    text-overflow: ellipsis;
    white-space: wrap;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_newarrival .post_container .topic_container > .topic .caption a {
    text-decoration: none;
    color: #000;
    text-overflow: ellipsis;
    white-space: wrap;
  }
}
.relate_newarrival .post_container .topic_container > .topic .caption a:hover {
  color: #3E1300;
  text-decoration: underline;
}
.relate_newarrival .post_container .topic_container > .topic .caption h6 {
  background: none;
  font-size: 15px;
  margin: 8px 0 0;
  padding: 0;
  text-align: left;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .relate_map {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_map {
    width: 30%;
    margin-right: 10px;
  }
}
.relate_map .relate_map_container {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .relate_map .relate_map_container {
    flex-direction: column;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_map .relate_map_container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .relate_map .relate_map_container .relate_map_img {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_map .relate_map_container .relate_map_img {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .relate_map .relate_map_container .relate_map_g {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_map .relate_map_container .relate_map_g {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .relate_twitter {
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .relate_twitter {
    width: 30%;
  }
}

/* --------------------------------
 * トピックス
 * -------------------------------- *//*# sourceMappingURL=style.css.map */