@charset "UTF-8";
/* CSS Document */
/*.pc {
	display: none;
}
.sp {
	display: block;
}
*/ .none {
  display: none;
}
/*==================================
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, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, 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, picture {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  line-height: 1.5;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
/* 変数 */ :root {
  --black: #222;
  --buy: #C7000B;
  --yellow: #F3C400;
  --green: #00561F;
  --specail: #E95441;
}
/* 26_03追記 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
html, body {
  height: 100%;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  background-image: url("../img/bg.jpg");
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: var(--black);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a.space:hover {
  letter-spacing: 0.15em;
}
a.toka:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: text-bottom;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
ul {
  list-style: none;
}
img.cancel {
  pointer-events: none;
}
.header {
  position: fixed;
  width: 100%;
  height: 45px;
  z-index: 99;
  background-color: var(--green);
  line-height: 1;
  font-weight: bold;
  display: flex;
}
.head_inner_sp {
  display: flex;
  cursor: pointer;
  height: 45px;
  align-items: center;
}
.head_inner_pc {
  display: none;
}
.head01 {
  margin-right: auto;
  padding: 0 8px;
  display: flex;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2;
  color: var(--yellow);
}
.head01 img {
  vertical-align: baseline;
  max-width: 168px;
}
.head01 div {
  display: flex;
  flex-shrink: 0;
  line-height: 1.2;
}
.head_inner_sp .menu_cont {
  display: block;
  margin-right: 50px /*13.5vw*/ ;
}
.head_inner_sp .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.head_inner_sp nav {
  width: 100vw;
  text-align: center;
  font-size: 1.25rem;
}
.head_inner_sp nav ul {
  display: flex !important;
  flex-direction: column;
  height: 50vw;
  justify-content: space-between;
}
.head_inner_sp nav ul li {
  margin: 0 2rem;
  font-weight: bold;
}
nav a, .buy a, .buy-btn a {
  color: #ffffff;
}
nav ul li a:hover {
  color: var(--yellow);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu-btn {
  border: none;
  background: none;
  position: fixed;
  z-index: 20;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 45px;
}
.menu-btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  top: 12px;
  left: 20% /*14px*/ ;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  width: 30px;
}
.menu-btn span:nth-of-type(2) {
  top: 22px;
}
.menu-btn span:nth-of-type(3) {
  top: 32px;
}
.menu-btn.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.head_inner_sp .menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: rgba(3, 45, 17, 0.9);
  transform: translateX(100vw);
  transition-duration: 0.5s;
  transition: .5s;
}
.head_inner_sp .menu.is-active {
  transform: translateX(0);
}
.head_inner_sp .menu li {
  display: block;
  justify-content: center;
  align-items: center;
}
.head_inner_sp .menu li a {
  transition: .5s;
}
/**********************
購入パーツ
***********************/
.buy {
  padding: 0 10px;
  display: flex;
  border: none;
  z-index: 1;
  transition: all 0.3s ease;
  position: relative;
  background: var(--buy);
  height: 45px;
  justify-content: center;
  align-items: center;
}
.buy a {
  flex-shrink: 0;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 0;
}
.buy a {}
.buy span::after, .buy-btn span::after {
  content: url("../img/ico_cart.svg");
  display: inline-block;
  width: 22px;
  min-width: 16px;
  height: auto;
  margin-left: 2px;
}
.head_inner_sp .buy span::after {
  display: none;
}
.buy:hover, .buy-btn:hover {
  color: #fff;
}
.mv-btn_wrap {
  width: 260px;
}
.mv-btn_wrap .buy-btn, .mv-btn_wrap .read-btn {
  flex: 1;
}
.btn_wrap {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  text-align: center;
}
/*購入はこちらボタン*/
.buy-btn {
  background: var(--buy);
  border: none;
  text-align: center;
  z-index: 1;
  transition: all 0.3s ease;
  position: relative;
}
.buy:after, .buy-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #AA0F1F;
  transition: all 0.3s ease;
}
/*試し読みボタン*/
.read-btn {
  background: var(--yellow);
  border: none;
  z-index: 1;
  transition: all 0.3s ease;
  position: relative;
}
.read-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #F2B200;
  transition: all 0.3s ease;
}
.read-btn span::after {
  content: url("../img/ico_book.svg");
  position: relative;
  display: inline-block;
  width: 1.15vw;
  min-width: 15px;
  max-width: 20px;
  height: auto;
  margin-left: 4px;
}
.buy-btn span, .read-btn span {
  display: inline-block;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 1rem;
}
.buy:hover:after, .buy-btn:hover:after, .read-btn:hover:after {
  left: 0;
  width: 100%;
}
.footer {
  text-align: center;
  padding: 3rem 0 80px;
  background-image: url(../img/hayabusa_ill_03.png), url(../img/hayabusa_ill_02.png);
  background-position: bottom 0 left 2%, bottom 0 right 2%;
  background-repeat: no-repeat;
  background-size: 130px;
  background-color: #fff;
}
.footer-inner {
  padding: 0 20px;
}
.footer a.under-line {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer a.under-line:hover {
  text-decoration: none;
}
/* バナーエリア */
.bnr-area {
  max-width: 652px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}
.bnr_series-catch {
  text-align: left;
  font-weight: 700;
  font-size: 1.25rem;
  transform: rotate(-5deg);
  padding: 1.5rem 0;
}
/* バナーアキラ */
.bnr_akira {
  width: 100%;
  color: #333E78;
  font-size: 14px;
  padding: 1.5rem 0.8rem;
  border: 2px solid #333E78;
  text-align: center;
  background: #fff;
  background-image: linear-gradient(-8deg, #dddf4f 26px, transparent 0), linear-gradient(172deg, #333e78 26px, transparent 0);
}
.bnr_akira strong {
  font-size: clamp(18px, 2vw, 28px);
}
.foot_sns-ttl {
  font-size: 24px;
  margin: 2rem 0 0;
  color: var(--green);
  font-weight: bold;
}
.footer-inner .small {
  font-size: 14px;
}
.sns {
  margin: 0.5rem auto 2rem;
}
.sns li {
  width: 34px;
  margin: 0 0.8rem;
  display: inline-block;
}
.sns li img {
  fill: #42AFE3;
}
/*TAB ラップトップ*/
@media screen and (min-width: 993px), print {
  .head_inner_sp {
    display: none;
  }
  .head_inner_pc {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .menu_cont {
    display: flex;
    gap: 16px;
  }
  .head_inner_pc .menu_pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .head_inner_pc nav ul {
    display: flex;
    gap: 16px;
  }
  .buy {
    padding: 0 20px;
  }
  .buy a {
    letter-spacing: 0.1em;
  }
  /**********************
購入パーツ
***********************/
  .head_inner_pc nav ul li a:hover {
    color: var(--yellow);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .footer {
    text-align: center;
    background-image: url("../img/hayabusa_ill_03.png"), url("../img/hayabusa_ill_02.png");
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: bottom 5px left 3%, bottom 5px right 3%;
  }
  .bnr_akira {
    font-size: 18px;
    padding: 2.5rem 0.8rem;
    background-image: linear-gradient(-8deg, #dddf4f 40px, transparent 0), linear-gradient(172deg, #333e78 40px, transparent 0);
  }
  .sns_cont {
    width: 10vw;
    margin: 1rem auto;
  }
}
/* ここまでTAB */
.mgT10 {
  margin-top: 10px;
}