@charset "UTF-8";
/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
  /* 追加 */
  backface-visibility: hidden;
  /* 追加 */
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  overflow-x: hidden;
  position: relative;
}

/* 表示切り替え */
.pc-display {
  display: block;
}

.sp-display {
  display: none;
}

.tb-display {
  display: none;
}

@media screen and (max-width: 1279px) {
  .tb-display {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc-display {
    display: none;
  }
  .sp-display {
    display: block;
  }
}
/* 配置 */
/*基本設定
----------------------------------------------------------------*/
/*  配置  */
.flex-nml {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.flex-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.items-center {
  -webkit-align-items: center;
  align-items: center;
}

.items-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*---------------------------------------------- @media & @variable ------------------------------------------*/
/*---------------------------------------------- common styles ------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #00173a;
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #00173a;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
  width: 100%;
}
@media only screen and (max-width: 520px) {
  .container {
    font-size: 13px;
  }
}
.container img {
  max-width: 100%;
  width: 100%;
}
.container html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

a:hover img {
  opacity: 0.75;
}

/*---------------------------------------------- ふわっ（下から） ------------------------------------------*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*---------------------------------------------- hover styles ------------------------------------------*/
.lib-btn__border-rect {
  width: 280px;
  height: 56px;
  padding: 15px 40px;
  background: #1c56ac;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 21px;
  color: #fff;
  overflow: hidden;
  transition: padding-right 0.3s ease-in;
}
.lib-btn__border-rect span {
  width: 5px;
  height: 100%;
  background: #d53737;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width 0.3s;
}
.lib-btn__border-rect:hover {
  padding-right: 25px;
  color: #fff;
}
.lib-btn__border-rect:hover span {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .lib-btn__border-rect {
    font-size: 13px;
  }
}

.lib-btn__buy-product {
  width: 140px;
  height: 100px;
  padding: 5px;
  background: #053172;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .lib-btn__buy-product {
    flex-direction: unset;
    gap: 10px;
  }
}
.lib-btn__buy-product span {
  width: 10px;
  height: 100%;
  background: #333;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width 0.3s, opacity 0.2s;
}
.lib-btn__buy-product .bg-text {
  width: 54px;
  height: 54px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lib-btn__buy-product .icon {
  max-width: 22px;
}
.lib-btn__buy-product p {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 15px;
  line-height: 21px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .lib-btn__buy-product p {
    font-size: 13px;
  }
}
.lib-btn__buy-product:hover span {
  width: 100%;
  opacity: 1;
}

.lib-btn__cart {
  width: 140px;
  height: 100px;
  padding: 5px;
  background: #921c1c;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .lib-btn__cart {
    flex-direction: unset;
    gap: 10px;
  }
}
.lib-btn__cart span {
  width: 10px;
  height: 100%;
  background: #333;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width 0.3s, opacity 0.2s;
}
.lib-btn__cart .bg-text {
  width: 54px;
  height: 54px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lib-btn__cart .icon {
  max-width: 22px;
}
.lib-btn__cart p {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 15px;
  line-height: 21px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .lib-btn__cart p {
    font-size: 13px;
  }
}
.lib-btn__cart:hover span {
  width: 100%;
  opacity: 1;
}

.lib-btn__border-bottom {
  width: 324px;
  height: 70px;
  border: 3px solid #00173a;
  padding: 0 30px;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  line-height: 33px;
  color: #00173a;
  background: #fff;
  overflow: hidden;
  transition: padding-right 0.2s ease-in, background 0.4s, color 0.2s;
}
@media only screen and (max-width: 767px) {
  .lib-btn__border-bottom {
    height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }
}
.lib-btn__border-bottom span {
  width: 100%;
  height: 8px;
  background: #00173a;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: height 0.3s;
}
@media only screen and (max-width: 767px) {
  .lib-btn__border-bottom span {
    height: 3px;
  }
}
.lib-btn__border-bottom:hover {
  padding-right: 20px;
  color: white;
}
@media only screen and (max-width: 767px) {
  .lib-btn__border-bottom:hover {
    padding-right: 5px;
  }
}
.lib-btn__border-bottom:hover span {
  height: 100%;
}

.lib-link__bike {
  width: 350px;
  display: inline-block;
}
.lib-link__bike .img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike .img {
    height: 180px;
  }
}
.lib-link__bike .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.lib-link__bike-content {
  padding: 10px;
  background: #f2f2f2;
}
.lib-link__bike-content .util {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lib-link__bike-content .util .date {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #777;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content .util .date {
    font-size: 12px;
  }
}
.lib-link__bike-content .util .category {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content .util .category {
    font-size: 12px;
  }
}
.lib-link__bike-content p {
  height: 44px;
  margin: 5px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #00173a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content p {
    height: unset;
    font-size: 13px;
  }
}
.lib-link__bike-content .info {
  min-height: 112px;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content .info {
    min-height: unset;
  }
}
.lib-link__bike-content .info dl {
  margin: 5px 0;
  border: 1px solid #dbdbdb;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content .info dl {
    width: 100%;
  }
}
.lib-link__bike-content .info dl dt {
  width: 120px;
  padding: 6px 0;
  background: #dbdbdb;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #00173a;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content .info dl dt {
    width: 100px;
  }
}
.lib-link__bike-content .info dl dd {
  width: calc(100% - 120px);
  padding: 6px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #00173a;
  background: white;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content .info dl dd {
    width: calc(100% - 100px);
  }
}
.lib-link__bike-content .lib-link__bike-prices {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 13px;
  line-height: 30px;
  text-align: right;
  color: #d53737;
}
.lib-link__bike-content .lib-link__bike-prices > div {
  width: 100%;
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: end;
}
.lib-link__bike-content .lib-link__bike-prices > div .label {
  width: 110px;
  height: 24px;
  margin-right: 10px;
  border-radius: 12px;
  background: #d53737;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.lib-link__bike-content .lib-link__bike-prices > div .price {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .lib-link__bike-content .lib-link__bike-prices > div .price {
    font-size: 16px;
  }
}
.lib-link__bike:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.lib-article__item {
  width: 285px;
  display: inline-block;
}
.lib-article__item .img {
  width: 100%;
  height: 285px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #edede8;
}
@media only screen and (max-width: 767px) {
  .lib-article__item .img {
    height: 185px;
  }
}
.lib-article__item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.lib-article__item .util {
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 2px;
}
.lib-article__item .util .date {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #777;
}
@media only screen and (max-width: 767px) {
  .lib-article__item .util .date {
    font-size: 12px;
  }
}
.lib-article__item .util .category {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .lib-article__item .util .category {
    font-size: 12px;
  }
}
.lib-article__item p {
  margin-top: 3px;
  padding-left: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  color: #00173a;
}
.lib-article__item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.lib-eccube__item {
  width: 380px;
  display: inline-block;
  position: relative;
}
.lib-eccube__item .text {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.lib-eccube__item .text span {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 17px;
  line-height: 25px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .lib-eccube__item .text span {
    font-size: 14px;
  }
}
.lib-eccube__item .text p {
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 33px;
  text-align: left;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .lib-eccube__item .text p {
    font-size: 19px;
  }
}
.lib-eccube__item .img {
  width: 100%;
  height: 280px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .lib-eccube__item .img {
    height: 220px;
  }
}
.lib-eccube__item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.lib-eccube__item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.lib-eccube__item-product {
  width: 285px;
  display: inline-block;
  border: 2px solid #edede8;
  background: #edede8;
}
.lib-eccube__item-product .img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .lib-eccube__item-product .img {
    height: 220px;
  }
}
.lib-eccube__item-product .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.lib-eccube__item-product .text {
  padding: 10px;
  background: white;
}
.lib-eccube__item-product .text .categories {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lib-eccube__item-product .text .categories span {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  color: #d53737;
}
.lib-eccube__item-product .text p.title {
  margin-top: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  color: #00173a;
}
.lib-eccube__item-product .util {
  padding: 10px;
  background: #eef3ed;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lib-eccube__item-product .util .price {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  color: #00173a;
}
.lib-eccube__item-product .util .price span {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  text-align: left;
  color: #00173a;
}
.lib-eccube__item-product .util .link {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  text-align: left;
  color: #00173a;
}
.lib-eccube__item-product:hover img {
  opacity: 1;
  transform: scale(1.1);
}

header {
  width: 100%;
  padding: 0;
  padding-left: 50px;
  background: #f3f3f3;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 520px) {
  header {
    padding: 12px 8px 12px 15px;
    background: #f3f3f3;
  }
}
header.scrolled {
  background: #f3f3f3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0.95;
}
header.scrolled .left .logo {
  display: block;
}
header .left {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .left .logo {
  max-width: 250px;
}
@media only screen and (max-width: 1200px) {
  header .left .logo {
    display: block;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  header .left .logo {
    max-width: 190px;
  }
}
header .left .link-facebook, header .left .link-youtube {
  margin-left: 10px;
  display: none;
}
@media only screen and (max-width: 767px) {
  header .left .link-facebook, header .left .link-youtube {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header .right {
  display: flex;
  align-items: center;
  justify-content: end;
}
header .right nav {
  display: flex;
  flex-direction: column;
  padding-right: 25px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  header .right nav {
    display: none;
  }
}
header .right nav .menu1 {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}
header .right nav .menu1 li:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .right nav .menu1 li a {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  line-height: 23.4px;
  text-align: center;
  color: #00173a;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .right nav .menu1 li a:hover {
  color: #921c1c;
  text-decoration: underline;
}
header .right nav .menu1 li a:hover svg {
  fill: #921c1c;
}
header .right nav .menu1 li a svg {
  margin-right: 8px;
}
header .right nav .menu2 {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
header .right nav .menu2 li {
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1300px) {
  header .right nav .menu2 li {
    padding: 0px 15px;
  }
}
header .right nav .menu2 li a {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 1300px) {
  header .right nav .menu2 li a {
    font-size: 13px;
  }
}
header .right nav .menu2 li a:hover {
  color: #921c1c;
  text-decoration: underline;
}
header .right nav .dropdown-content {
  position: absolute;
  top: calc(100% + 24px);
  right: 16px;
  width: 160px;
  min-height: 60px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: 300ms;
  /* menu links */
}
header .right nav .dropdown-content::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg) translateX(-50%);
  z-index: -1;
}
header .right nav .dropdown-content.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
header .right nav .dropdown-content ul {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
  background: #fff;
}
header .right nav .dropdown-content ul li {
  list-style: none;
  border-right: unset !important;
}
header .right nav .dropdown-content ul li a {
  text-decoration: none;
  color: #00173a;
  display: flex;
  align-items: center;
  padding: 7px;
  gap: 6px;
}
header .right .lib-btns {
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 1200px) {
  header .right .lib-btns {
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns {
    align-items: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 520px) {
  header .right .lib-btns {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns .lib-btn__buy-product {
    display: none;
  }
}
header .right .lib-btns .lib-btn__cart {
  margin-right: 25px;
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns .lib-btn__cart {
    display: none;
  }
}
header .right .lib-btns .hamburger {
  width: 40px;
  display: none;
  position: relative;
  right: 5px;
}
@media only screen and (max-width: 1200px) {
  header .right .lib-btns .hamburger {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns .hamburger {
    width: 28px;
  }
}
header .right .lib-btns .hamburger #menu__toggle {
  display: none;
  opacity: 0;
}
header .right .lib-btns .hamburger #menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(38deg);
}
header .right .lib-btns .hamburger #menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
header .right .lib-btns .hamburger #menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(105deg);
}
header .right .lib-btns .hamburger #menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}
header .right .lib-btns .hamburger .menu__btn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1200px) {
  header .right .lib-btns .hamburger .menu__btn {
    position: relative;
    z-index: 2;
  }
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns .hamburger .menu__btn {
    width: 28px;
    height: 28px;
    right: 3px;
  }
}
header .right .lib-btns .hamburger .menu__btn span, header .right .lib-btns .hamburger .menu__btn span::before, header .right .lib-btns .hamburger .menu__btn span::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #00173a;
  transition-duration: 0.25s;
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns .hamburger .menu__btn span, header .right .lib-btns .hamburger .menu__btn span::before, header .right .lib-btns .hamburger .menu__btn span::after {
    width: 28px;
    height: 1px;
  }
}
header .right .lib-btns .hamburger .menu__btn span::before {
  content: "";
  top: -12px;
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns .hamburger .menu__btn span::before {
    top: -9px;
  }
}
header .right .lib-btns .hamburger .menu__btn span::after {
  content: "";
  top: 12px;
}
@media only screen and (max-width: 767px) {
  header .right .lib-btns .hamburger .menu__btn span::after {
    top: 9px;
  }
}
header .right .lib-btns .hamburger .menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 60px 90px 40px 90px;
  overflow-y: scroll;
  background: #f3f3f3;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
  transition-duration: 0.25s;
}
header .right .lib-btns .hamburger .menu__box ul:first-child a {
  width: 100%;
  display: inline-block;
  margin: 12px 0;
  padding-left: 4px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: #00173a;
}
header .right .lib-btns .hamburger .menu__box ul:first-child a:hover {
  text-decoration: underline;
}
header .right .lib-btns .hamburger .menu__box ul:last-child {
  margin-top: 10px;
}
header .right .lib-btns .hamburger .menu__box ul:last-child a {
  width: 100%;
  display: inline-block;
  margin: 6px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
  color: #00173a;
  text-align: center;
}
header .right .lib-btns .hamburger .menu__box ul:last-child a:hover {
  text-decoration: underline;
}
header .right .lib-btns .hamburger .menu__box ul:last-child a svg {
  margin-right: 12px;
}
header .right .lib-btns .hamburger .menu__box ul:last-child a i {
  font-size: 24px;
}
header .lib-btns__sp {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  header .lib-btns__sp {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header .lib-btns__sp > a {
  width: 50%;
  height: 60px;
}

.toppage .mv {
  margin-top: 100px;
  position: relative;
  background: white;
  border-bottom: 8px solid #d53737;
}
@media only screen and (max-width: 767px) {
  .toppage .mv {
    margin-top: 85px;
    border-bottom: 5px solid #d53737;
  }
}
@media only screen and (max-width: 520px) {
  .toppage .mv {
    margin-top: 55px;
  }
}
.toppage .mv-text {
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text {
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
  }
}
.toppage .mv-text .img {
  max-width: 240px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text .img {
    max-width: 150px;
  }
}
.toppage .mv-text .text {
  z-index: 1;
}
.toppage .mv-text .text span {
  display: block;
  margin: 10px auto;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .toppage .mv-text .text span {
    font-size: 15px;
  }
}
.toppage .mv-text .text span::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #00173a;
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .toppage .mv-text .text span::before {
    width: 30px;
    left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text .text span::before {
    width: 20px;
    left: -15px;
  }
}
.toppage .mv-text .text span::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #00173a;
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .toppage .mv-text .text span::after {
    width: 30px;
    right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text .text span::after {
    width: 20px;
    right: -15px;
  }
}
.toppage .mv-text .text h2 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 55px;
  letter-spacing: 0.05em;
  line-height: 85px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 1024px) {
  .toppage .mv-text .text h2 {
    margin-bottom: 10px;
    font-size: 42px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text .text h2 {
    margin: 10px auto;
    font-size: 28px;
    line-height: 30px;
  }
}
.toppage .mv-text .text p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 42px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 1024px) {
  .toppage .mv-text .text p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text .text p {
    font-size: 18px;
    line-height: 22px;
  }
}
.toppage .mv-text .mv-bg {
  position: absolute;
  top: 0;
  right: 80px;
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text .mv-bg {
    width: 100%;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
  .toppage .mv-text .mv-bg img {
    display: block;
    height: 100%;
    margin: auto;
  }
}
.toppage .mv-text .moto-varese {
  max-width: 700px;
  width: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(50%);
}
@media only screen and (max-width: 767px) {
  .toppage .mv-text .moto-varese {
    width: 80%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
.toppage .mv .slider {
  width: 100%;
  height: calc(100vh - 250px);
  position: relative;
  overflow: hidden;
}
.toppage .mv .slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 5s ease-in-out, opacity 3s;
  transform: scale(1);
}
.toppage .mv .slider .slide.active {
  opacity: 1;
  transform: scale(1.08);
}
.toppage .aboutus {
  background: white;
}
.toppage .aboutus .container-1360 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 {
    flex-direction: column;
  }
}
.toppage .aboutus .container-1360 .left {
  width: 50%;
  padding-right: 50px;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left {
    width: 100%;
    padding-right: 0;
  }
}
.toppage .aboutus .container-1360 .left .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.toppage .aboutus .container-1360 .left h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.toppage .aboutus .container-1360 .left h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left h2 .decoration {
    left: 50%;
    transform: translateX(-50%);
  }
}
.toppage .aboutus .container-1360 .left h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.toppage .aboutus .container-1360 .left h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.toppage .aboutus .container-1360 .left h3 {
  margin-bottom: 30px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left h3 {
    font-size: 18px;
  }
}
.toppage .aboutus .container-1360 .left p {
  margin-bottom: 30px;
}
.toppage .aboutus .container-1360 .left .bike-dark {
  margin-top: 20px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left .bike-dark {
    margin: 20px auto 30px;
  }
}
.toppage .aboutus .container-1360 .left .bike-dark img:first-child {
  max-width: 220px;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left .bike-dark img:first-child {
    width: 65%;
  }
}
.toppage .aboutus .container-1360 .left .bike-dark img:last-child {
  max-width: 110px;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .left .bike-dark img:last-child {
    width: 32%;
  }
}
.toppage .aboutus .container-1360 .right {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .right {
    width: 100%;
    margin-bottom: 40px;
  }
}
.toppage .aboutus .container-1360 .right img {
  max-width: 600px;
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .toppage .aboutus .container-1360 .right img {
    display: block;
    margin: auto;
  }
}
.toppage .products {
  background: #F9F9F9;
}
.toppage .products .container-1360 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .toppage .products .container-1360 {
    flex-direction: column;
  }
}
.toppage .products .container-1360 .left {
  width: 50%;
  padding-right: 50px;
}
@media only screen and (max-width: 767px) {
  .toppage .products .container-1360 .left {
    width: 100%;
    padding-right: 0;
  }
}
.toppage .products .container-1360 .left .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .toppage .products .container-1360 .left .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.toppage .products .container-1360 .left h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .products .container-1360 .left h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.toppage .products .container-1360 .left h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .toppage .products .container-1360 .left h2 .decoration {
    left: 50%;
    transform: translateX(-50%);
  }
}
.toppage .products .container-1360 .left h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.toppage .products .container-1360 .left h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.toppage .products .container-1360 .left p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .toppage .products .container-1360 .left .lib-btn__border-rect {
    margin: 30px auto;
  }
}
.toppage .products .container-1360 .right {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .toppage .products .container-1360 .right {
    width: 100%;
  }
}
.toppage .products .container-1360 .right img {
  max-width: 600px;
  width: 100%;
}
.toppage .online-shop {
  background: transparent;
  color: white;
  text-align: center;
}
.toppage .online-shop .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: white;
}
@media only screen and (max-width: 767px) {
  .toppage .online-shop .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.toppage .online-shop h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  color: white;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .online-shop h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.toppage .online-shop h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.toppage .online-shop h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.toppage .online-shop h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.toppage .online-shop .lib-btn__border-rect {
  margin: 50px auto 0;
}
@media only screen and (max-width: 767px) {
  .toppage .online-shop .lib-btn__border-rect {
    margin: 30px auto 0;
  }
}
.toppage .user-guide {
  background: #edede8;
  position: relative;
  text-align: center;
}
.toppage .user-guide .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .toppage .user-guide .subtitle {
    font-size: 15px;
  }
}
.toppage .user-guide h2 {
  margin: 20px 0 30px;
  padding-bottom: 20px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .user-guide h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
  }
}
.toppage .user-guide h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.toppage .user-guide h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.toppage .user-guide h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.toppage .user-guide p {
  max-width: 800px;
  margin: auto;
  text-align: left;
}
.toppage .user-guide .user-guide__links {
  max-width: 1000px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.toppage .user-guide .user-guide__links .lib-btn__border-bottom {
  width: calc(33% - 8px);
}
@media only screen and (max-width: 767px) {
  .toppage .user-guide .user-guide__links .lib-btn__border-bottom {
    width: calc(50% - 6px);
  }
}
.toppage .used-bike {
  position: relative;
  background: #F2F2F2;
}
.toppage .used-bike .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .toppage .used-bike .subtitle {
    font-size: 15px;
  }
}
.toppage .used-bike h2 {
  margin: 20px 0 30px;
  padding-bottom: 20px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .used-bike h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
  }
}
.toppage .used-bike h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.toppage .used-bike h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.toppage .used-bike h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.toppage .used-bike__contents {
  max-width: 1130px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .toppage .used-bike__contents {
    gap: 20px;
  }
}
.toppage .used-bike__contents .lib-link__bike {
  width: calc(33% - 25px);
}
@media only screen and (max-width: 767px) {
  .toppage .used-bike__contents .lib-link__bike {
    width: 100%;
  }
}
.toppage .used-bike .lib-btn__border-rect {
  margin: 50px auto 0;
}
.toppage .store-info {
  background-image: url("../img/top/store-info.png");
  background-repeat: no-repeat;
  color: white;
}
.toppage .store-info .container-1200 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 {
    flex-direction: column;
  }
}
.toppage .store-info .container-1200 .left {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .left {
    width: 100%;
  }
}
.toppage .store-info .container-1200 .left .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: white;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .left .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.toppage .store-info .container-1200 .left h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  color: white;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .left h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.toppage .store-info .container-1200 .left h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .left h2 .decoration {
    left: 50%;
    transform: translateX(-50%);
  }
}
.toppage .store-info .container-1200 .left h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.toppage .store-info .container-1200 .left h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.toppage .store-info .container-1200 .left .text p {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .left .text p {
    font-size: 13px;
    text-align: center;
  }
}
.toppage .store-info .container-1200 .left .text p.name {
  margin-bottom: 10px;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .left .text p.name {
    font-size: 16px;
  }
}
.toppage .store-info .container-1200 .left .lib-btn__border-rect {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .left .lib-btn__border-rect {
    margin: 30px auto 0;
  }
}
.toppage .store-info .container-1200 .right {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .right {
    width: 100%;
  }
}
.toppage .store-info .container-1200 .right img {
  max-width: 320px;
  width: 100%;
  margin: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .toppage .store-info .container-1200 .right img {
    max-width: 150px;
    margin: 30px auto 0;
  }
}
.toppage .news {
  background: white;
}
.toppage .news .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .toppage .news .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.toppage .news h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .toppage .news h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.toppage .news h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.toppage .news h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.toppage .news h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.toppage .news .news-items {
  max-width: 1200px;
  width: 100%;
  margin-top: 40px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.toppage .news .news-items .lib-article__item {
  width: calc(25% - 12px);
}
@media only screen and (max-width: 767px) {
  .toppage .news .news-items .lib-article__item {
    width: calc(50% - 8px);
  }
}
.toppage .news .lib-btn__border-rect {
  margin: 40px auto;
}
.toppage .background {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.toppage .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage .mv {
  margin-top: 100px;
  background: white;
}
@media only screen and (max-width: 767px) {
  .subpage .mv {
    margin-top: 85px;
  }
}
@media only screen and (max-width: 520px) {
  .subpage .mv {
    margin-top: 55px;
  }
}
.subpage .mv .container-1360 {
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .subpage .mv .container-1360 {
    height: 300px;
    padding: 30px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .subpage .mv .container-1360 .text {
    width: 100%;
  }
}
.subpage .mv .container-1360 .text h5 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #1c56ac;
}
@media only screen and (max-width: 767px) {
  .subpage .mv .container-1360 .text h5 {
    font-size: 16px;
    text-align: center;
  }
}
.subpage .mv .container-1360 .text h1, .subpage .mv .container-1360 .text p.h1 {
  margin-top: 20px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 40px;
  line-height: 30px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage .mv .container-1360 .text h1, .subpage .mv .container-1360 .text p.h1 {
    margin-top: 10px;
    font-size: 32px;
    text-align: center;
  }
}
.subpage .mv-logo {
  max-width: 240px;
}
@media only screen and (max-width: 767px) {
  .subpage .mv-logo {
    max-width: 180px;
  }
}
.subpage .mv hr {
  width: 100%;
  height: 6px;
  margin: 0;
  border: unset;
}
@media only screen and (max-width: 767px) {
  .subpage .mv hr {
    height: 3px;
  }
}
.subpage .mv hr.bg-blue {
  background: #1c56ac;
}
.subpage .mv hr.bg-red {
  background: #d53737;
}
.subpage .breadcrumb {
  position: relative;
  padding-top: 10px;
  background: white;
}
.subpage .breadcrumb > div {
  max-width: 1360px;
  width: 100%;
  margin: auto;
  padding: 10px 20px 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .subpage .breadcrumb > div {
    padding: 10px 20px 0 20px;
  }
}
.subpage .breadcrumb a {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  color: #00173a;
}
.subpage .breadcrumb a .fa-home {
  margin-right: 6px;
  font-size: 20px;
  color: #00173a;
}
.subpage .online-shop {
  background: transparent;
  color: white;
  text-align: center;
}
.subpage .online-shop .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: white;
}
@media only screen and (max-width: 767px) {
  .subpage .online-shop .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.subpage .online-shop h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  color: white;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage .online-shop h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.subpage .online-shop h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage .online-shop h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage .online-shop h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage .online-shop .lib-btn__border-rect {
  margin: 50px auto 0;
}
@media only screen and (max-width: 767px) {
  .subpage .online-shop .lib-btn__border-rect {
    margin: 30px auto 0;
  }
}
.subpage.products .products-list {
  background: white;
}
.subpage.products .products-list .container-1200 .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.products .products-list .container-1200 .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.subpage.products .products-list .container-1200 h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.products .products-list .container-1200 h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.subpage.products .products-list .container-1200 h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage.products .products-list .container-1200 h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.products .products-list .container-1200 h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.products .products-list .container-1200 > div {
  margin-top: 30px;
  padding: 50px 15px;
  border-top: 2px dashed #ccc;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.subpage.products .products-list .container-1200 > div .products-list__item {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 767px) {
  .subpage.products .products-list .container-1200 > div .products-list__item {
    width: 100%;
  }
}
.subpage.products .products-list .container-1200 > div .products-list__item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .subpage.products .products-list .container-1200 > div .products-list__item img {
    height: 240px;
  }
}
.subpage.products .products-list .container-1200 > div .products-list__item .text {
  margin-top: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.subpage.products .products-list .container-1200 > div .products-list__item .text h3 {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.products .products-list .container-1200 > div .products-list__item .text h3 {
    font-size: 18px;
  }
}
.subpage.products .products-list .container-1200 > div .products-list__item .text h5 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 15px;
  line-height: 21px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.products .products-list .container-1200 > div .products-list__item .text h5 {
    font-size: 13px;
  }
}
.subpage.products .products-list .container-1200 > div .products-list__item p {
  padding: 10px;
}
.subpage.products .products-list .container-1200 > div .products-list__item .lib-btn__border-rect {
  margin: 30px auto 0;
}
.subpage.products .manufacturers {
  background: #F5F5F5;
}
.subpage.products .manufacturers .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.products .manufacturers .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.subpage.products .manufacturers h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.products .manufacturers h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.subpage.products .manufacturers h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage.products .manufacturers h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.products .manufacturers h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.products .manufacturers-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.subpage.products .manufacturers-list__item {
  width: calc(33% - 15px);
}
@media only screen and (max-width: 767px) {
  .subpage.products .manufacturers-list__item {
    width: calc(50% - 10px);
  }
}
.subpage.user-guide .content {
  background: white;
}
.subpage.user-guide .content .container-1200 {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 50px 20px;
}
.subpage.user-guide .content .container-1200 > p {
  text-align: center;
}
.subpage.user-guide .content .container-1200 .user-guide__links {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.subpage.user-guide .content .container-1200 .user-guide__links .lib-btn__border-bottom {
  width: calc(33% - 8px);
}
@media only screen and (max-width: 767px) {
  .subpage.user-guide .content .container-1200 .user-guide__links .lib-btn__border-bottom {
    width: calc(50% - 6px);
  }
}
.subpage.user-guide .content .container-1200 .detail {
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .subpage.user-guide .content .container-1200 .detail {
    padding: 30px 0;
  }
}
.subpage.user-guide .content .container-1200 .detail h3 {
  margin-bottom: 20px;
  padding-left: 8px;
  border-left: 3px solid #d53737;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.user-guide .content .container-1200 .detail h3 {
    font-size: 18px;
  }
}
.subpage.user-guide .content .container-1200 .detail h4 {
  margin: 20px 0;
  border-bottom: 2px solid #00173a;
  padding-bottom: 5px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.user-guide .content .container-1200 .detail h4 {
    margin: 10px 0;
    font-size: 16px;
  }
}
.subpage.user-guide .content .container-1200 .detail .credit-card {
  max-width: 480px;
  width: 50%;
  margin: 30px 0;
}
@media only screen and (max-width: 767px) {
  .subpage.user-guide .content .container-1200 .detail .credit-card {
    width: 100%;
  }
}
.subpage.user-guide .content .container-1200 .detail .about-delivery {
  width: 100%;
  margin: 15px 0;
  overflow-x: auto;
}
.subpage.user-guide .content .container-1200 .detail .about-delivery img {
  min-width: 960px;
  height: auto;
}
.subpage.used-bike .content {
  background: white;
}
.subpage.used-bike .content .container-1200 {
  padding: 20px;
}
.subpage.used-bike .content .container-1200 .categories {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.subpage.used-bike .content .container-1200 .categories p {
  width: 160px;
}
@media only screen and (max-width: 520px) {
  .subpage.used-bike .content .container-1200 .categories p {
    border-bottom: 1px solid #00173a;
    padding-bottom: 5px;
  }
}
.subpage.used-bike .content .container-1200 .categories .category-items {
  border-left: 1px solid #00173a;
  padding-left: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 520px) {
  .subpage.used-bike .content .container-1200 .categories .category-items {
    margin-top: 15px;
    padding-left: 0;
    border-left: unset;
    gap: 10px;
  }
}
.subpage.used-bike .content .container-1200 .categories .category-items a {
  display: inline-block;
  border: 1px solid #00173a;
  padding: 4px 15px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  text-align: left;
  color: #00173a;
  transition: all 0.3s;
}
.subpage.used-bike .content .container-1200 .categories .category-items a:hover {
  border-color: #d53737;
  color: #d53737;
}
.subpage.used-bike .content .container-1200 .used-bike__list {
  max-width: 1130px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike .content .container-1200 .used-bike__list {
    gap: 20px;
  }
}
.subpage.used-bike .content .container-1200 .used-bike__list .lib-link__bike {
  width: calc(33% - 25px);
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike .content .container-1200 .used-bike__list .lib-link__bike {
    width: 100%;
  }
}
.subpage.used-bike-detail .content {
  background: white;
}
.subpage.used-bike-detail .content .container-1200 {
  max-width: 900px;
}
.subpage.used-bike-detail .content .container-1200 .content-top {
  border-bottom: 2px dashed #ccc;
  padding-bottom: 10px;
}
.subpage.used-bike-detail .content .container-1200 .content-top .category {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-top .category {
    font-size: 12px;
  }
}
.subpage.used-bike-detail .content .container-1200 .content-top h1 {
  margin: 10px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-top h1 {
    font-size: 15px;
  }
}
.subpage.used-bike-detail .content .container-1200 .content-top .date {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #777;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-top .date {
    font-size: 12px;
  }
}
.subpage.used-bike-detail .content .container-1200 .slider {
  margin: 20px 50px;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .slider {
    margin: 20px 10px;
  }
}
.subpage.used-bike-detail .content .container-1200 .slider-for {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .slider-for {
    margin-bottom: 15px;
  }
}
.subpage.used-bike-detail .content .container-1200 .slider-for img {
  max-width: 800px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.subpage.used-bike-detail .content .container-1200 .slider-nav img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .slider-nav img {
    max-width: 160px;
  }
}
.subpage.used-bike-detail .content .container-1200 .slider-nav .slick-dots li {
  width: 14px;
  height: 14px;
}
.subpage.used-bike-detail .content .container-1200 .content-body {
  margin: 50px;
  padding: 40px 80px;
  border-radius: 10px;
  border: 2px solid #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-body {
    margin: 50px 10px;
    padding: 20px;
    border: 1px solid #d53737;
  }
}
.subpage.used-bike-detail .content .container-1200 .content-body__dls {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.subpage.used-bike-detail .content .container-1200 .content-body__dls dl {
  width: 50%;
  margin: 5px 0;
  border: 1px solid #dbdbdb;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-body__dls dl {
    width: 100%;
  }
}
.subpage.used-bike-detail .content .container-1200 .content-body__dls dl dt {
  width: 120px;
  padding: 6px 0;
  background: #dbdbdb;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #00173a;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-body__dls dl dt {
    width: 100px;
  }
}
.subpage.used-bike-detail .content .container-1200 .content-body__dls dl dd {
  width: calc(100% - 120px);
  padding: 6px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #00173a;
  background: white;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-body__dls dl dd {
    width: calc(100% - 100px);
  }
}
.subpage.used-bike-detail .content .container-1200 .content-body .option .label {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-body .option .label {
    font-size: 14px;
  }
}
.subpage.used-bike-detail .content .container-1200 .content-body .prices {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 13px;
  line-height: 30px;
  text-align: right;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-body .prices {
    margin-top: 10px;
    flex-direction: column;
    gap: 0px;
  }
}
.subpage.used-bike-detail .content .container-1200 .content-body .prices > div {
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: end;
}
.subpage.used-bike-detail .content .container-1200 .content-body .prices > div .label {
  width: 110px;
  height: 24px;
  margin-right: 10px;
  border-radius: 12px;
  background: #d53737;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.subpage.used-bike-detail .content .container-1200 .content-body .prices > div .price {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 .content-body .prices > div .price {
    font-size: 16px;
  }
}
.subpage.used-bike-detail .content .container-1200 > p {
  margin: 20px 50px;
}
@media only screen and (max-width: 767px) {
  .subpage.used-bike-detail .content .container-1200 > p {
    margin: 20px 10px;
  }
}
.subpage.used-bike-detail .content .container-1200 .pagination .all {
  width: 70px;
}
.subpage.store-info .greeting {
  background: white;
}
.subpage.store-info .greeting .container-1360 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 {
    flex-direction: column;
  }
}
.subpage.store-info .greeting .container-1360 .left {
  width: 50%;
  padding-right: 50px;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .left {
    width: 100%;
    padding-right: 0;
  }
}
.subpage.store-info .greeting .container-1360 .left .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .left .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.subpage.store-info .greeting .container-1360 .left h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .left h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.subpage.store-info .greeting .container-1360 .left h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .left h2 .decoration {
    left: 50%;
    transform: translateX(-50%);
  }
}
.subpage.store-info .greeting .container-1360 .left h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.store-info .greeting .container-1360 .left h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.store-info .greeting .container-1360 .left h3 {
  margin-bottom: 30px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .left h3 {
    font-size: 18px;
  }
}
.subpage.store-info .greeting .container-1360 .left .representation {
  margin-top: 20px;
}
.subpage.store-info .greeting .container-1360 .left .representation p {
  text-align: right;
}
.subpage.store-info .greeting .container-1360 .left .representation p.name {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .left .representation p.name {
    font-size: 15px;
  }
}
.subpage.store-info .greeting .container-1360 .right {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .right {
    width: 100%;
    margin-top: 20px;
  }
}
.subpage.store-info .greeting .container-1360 .right img {
  max-width: 680px;
  width: 90%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .greeting .container-1360 .right img {
    display: block;
    margin: auto;
  }
}
.subpage.store-info .outline {
  background: #F5F5F5;
}
.subpage.store-info .outline .container-1200 {
  max-width: 1000px;
}
.subpage.store-info .outline .container-1200 .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .outline .container-1200 .subtitle {
    font-size: 15px;
  }
}
.subpage.store-info .outline .container-1200 h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .outline .container-1200 h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
  }
}
.subpage.store-info .outline .container-1200 h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage.store-info .outline .container-1200 h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.store-info .outline .container-1200 h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.store-info .outline-dls {
  margin: 40px 0;
}
.subpage.store-info .outline-dls dl {
  margin-bottom: 6px;
  display: flex;
  border: 1px solid #ccc;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .outline-dls dl {
    font-size: 13px;
  }
}
.subpage.store-info .outline-dls dl dt {
  width: 30%;
  min-width: 120px;
  border-right: 1px solid #ccc;
  padding: 20px 5px 20px 20px;
  background: #edede8;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .outline-dls dl dt {
    padding: 10px 5px 10px 10px;
  }
}
.subpage.store-info .outline-dls dl dd {
  width: 70%;
  padding: 20px 5px 20px 20px;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .outline-dls dl dd {
    padding: 10px 5px 10px 10px;
  }
}
.subpage.store-info .outline-imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .outline-imgs {
    gap: 15px;
  }
}
.subpage.store-info .outline-imgs img {
  width: calc(50% - 15px);
  height: auto;
  object-fit: 3/2;
}
@media only screen and (max-width: 520px) {
  .subpage.store-info .outline-imgs img {
    width: 100%;
  }
}
.subpage.store-info .access-map {
  background: #F5F5F5;
}
.subpage.store-info .access-map .container-1200 {
  max-width: 1000px;
}
.subpage.store-info .access-map .container-1200 .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .access-map .container-1200 .subtitle {
    font-size: 15px;
  }
}
.subpage.store-info .access-map .container-1200 h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.store-info .access-map .container-1200 h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
  }
}
.subpage.store-info .access-map .container-1200 h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage.store-info .access-map .container-1200 h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.store-info .access-map .container-1200 h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.store-info .access-map .container-1200 .map {
  width: 100%;
  margin: 30px auto;
}
.subpage.store-info .access-map .container-1200 .map iframe {
  width: 100%;
}
.subpage.terms .content, .subpage.privacy .content {
  background: white;
}
.subpage.terms .content .container-1200, .subpage.privacy .content .container-1200 {
  max-width: 1000px;
}
.subpage.terms .content .container-1200 h3, .subpage.privacy .content .container-1200 h3 {
  margin-bottom: 20px;
  padding-left: 8px;
  border-left: 3px solid #d53737;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.terms .content .container-1200 h3, .subpage.privacy .content .container-1200 h3 {
    font-size: 18px;
  }
}
.subpage.terms .content .container-1200 .term, .subpage.privacy .content .container-1200 .term {
  margin: 30px 0;
}
.subpage.terms .content .container-1200 .term > p, .subpage.terms .content .container-1200 .term > ul, .subpage.privacy .content .container-1200 .term > p, .subpage.privacy .content .container-1200 .term > ul {
  padding-left: 20px;
}
.subpage.terms .content .container-1200 .term h4, .subpage.privacy .content .container-1200 .term h4 {
  margin-bottom: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.terms .content .container-1200 .term h4, .subpage.privacy .content .container-1200 .term h4 {
    font-size: 16px;
  }
}
.subpage.terms .content .container-1200 .term ul, .subpage.privacy .content .container-1200 .term ul {
  list-style-type: decimal;
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .subpage.terms .content .container-1200 .term ul, .subpage.privacy .content .container-1200 .term ul {
    padding-left: 20px;
  }
}
.subpage.terms .content .container-1200 .term ul li, .subpage.privacy .content .container-1200 .term ul li {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  line-height: 26px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.terms .content .container-1200 .term ul li, .subpage.privacy .content .container-1200 .term ul li {
    font-size: 13px;
  }
}
.subpage.tradelaw .content {
  background: white;
}
.subpage.tradelaw .content .container-1200 {
  max-width: 1000px;
}
.subpage.tradelaw .content .container-1200 h3 {
  margin-bottom: 20px;
  padding-left: 8px;
  border-left: 3px solid #d53737;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.tradelaw .content .container-1200 h3 {
    font-size: 18px;
  }
}
.subpage.tradelaw .content .container-1200 div {
  padding: 20px 0;
}
.subpage.tradelaw .content .container-1200 div dl {
  margin-bottom: 6px;
  display: flex;
  border: 1px solid #ccc;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.tradelaw .content .container-1200 div dl {
    font-size: 13px;
  }
}
.subpage.tradelaw .content .container-1200 div dl dt {
  width: 30%;
  min-width: 120px;
  border-right: 1px solid #ccc;
  padding: 20px 5px 20px 20px;
  background: #edede8;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .subpage.tradelaw .content .container-1200 div dl dt {
    padding: 10px 5px 10px 10px;
  }
}
.subpage.tradelaw .content .container-1200 div dl dd {
  width: 70%;
  padding: 20px 5px 20px 20px;
}
@media only screen and (max-width: 767px) {
  .subpage.tradelaw .content .container-1200 div dl dd {
    padding: 10px 5px 10px 10px;
  }
}
.subpage.news .content {
  background: white;
}
.subpage.news .content .categories {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.subpage.news .content .categories p {
  width: 160px;
}
@media only screen and (max-width: 520px) {
  .subpage.news .content .categories p {
    border-bottom: 1px solid #00173a;
    padding-bottom: 5px;
  }
}
.subpage.news .content .categories .category-items {
  border-left: 1px solid #00173a;
  padding-left: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 520px) {
  .subpage.news .content .categories .category-items {
    margin-top: 15px;
    padding-left: 0;
    border-left: unset;
    gap: 10px;
  }
}
.subpage.news .content .categories .category-items a {
  display: inline-block;
  border: 1px solid #00173a;
  padding: 4px 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  text-align: left;
  color: #00173a;
  transition: all 0.3s;
}
.subpage.news .content .categories .category-items a:hover {
  border-color: #921c1c;
  color: #921c1c;
}
.subpage.news .content .articles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .subpage.news .content .articles {
    gap: 20px;
  }
}
.subpage.news .content .articles .lib-article__item {
  width: calc(33% - 25px);
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .subpage.news .content .articles .lib-article__item {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 520px) {
  .subpage.news .content .articles .lib-article__item {
    width: 100%;
  }
}
.subpage.news-item .content {
  background: white;
}
.subpage.news-item .content .container-1200 {
  max-width: 900px;
}
.subpage.news-item .content .content-top {
  border-bottom: 2px dashed #ccc;
  padding-bottom: 10px;
}
.subpage.news-item .content .content-top .category {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #d53737;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-top .category {
    font-size: 12px;
  }
}
.subpage.news-item .content .content-top h1 {
  margin: 10px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-top h1 {
    font-size: 15px;
  }
}
.subpage.news-item .content .content-top .date {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  line-height: 26px;
  color: #777;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-top .date {
    font-size: 12px;
  }
}
.subpage.news-item .content .slider {
  margin: 20px 50px;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .slider {
    margin: 10px;
  }
}
.subpage.news-item .content .slider-for {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .slider-for {
    margin-bottom: 15px;
  }
}
.subpage.news-item .content .slider-for img {
  max-width: 800px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.subpage.news-item .content .slider-nav img {
  max-width: 160px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.subpage.news-item .content .content-body {
  margin: 40px 50px;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-body {
    margin: 10px;
  }
}
.subpage.news-item .content .content-body h2 {
  margin: 20px 0;
  border-left: 8px solid #1c56ac;
  padding: 3px 25px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-body h2 {
    border-left: 5px solid #1c56ac;
    padding: 3px 15px;
    font-size: 18px;
  }
}
.subpage.news-item .content .content-body h3 {
  margin: 20px;
  border-left: 5px solid #1c56ac;
  border-bottom: 1px solid #1c56ac;
  padding: 2px 15px 5px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 20px;
  line-height: 33px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-body h3 {
    margin: 15px;
    margin-left: 10px;
    border-left: 2px solid #1c56ac;
    padding: 2px 10px 3px;
    font-size: 15px;
  }
}
.subpage.news-item .content .content-body p {
  margin: 10px 0 10px 40px;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-body p {
    margin: 5px 0 5px 20px;
    font-size: 13px;
  }
}
.subpage.news-item .content .content-body img {
  margin: 30px 0;
  max-width: 500px;
  width: calc(100% - 40px);
  height: auto;
  aspect-ratio: 500/360;
  object-fit: cover;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .subpage.news-item .content .content-body img {
    width: calc(100% - 20px);
    margin: 20px 0;
    border-radius: 10px;
  }
}
.subpage.news-item .content .pagination .all {
  width: 70px;
}
.subpage.contact .content {
  background: white;
}
.subpage.contact .content .container-1200 {
  max-width: 1000px;
}
.subpage.contact .content .container-1200 h3 {
  margin-bottom: 20px;
  border-left: 3px solid #D53737;
  padding-left: 6px;
  padding-bottom: 8px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: #00173a;
  position: relative;
}
.subpage.contact .content .container-1200 .form-control {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 8px 12px;
  font-family: "Noto Sans JP";
  font-size: 15px;
  line-height: 24px;
  color: #00173a;
  background: white;
}
@media only screen and (max-width: 767px) {
  .subpage.contact .content .container-1200 .form-control {
    font-size: 13px;
  }
}
.subpage.contact .content .container-1200 .contact-phone {
  margin-bottom: 60px;
}
.subpage.contact .content .container-1200 .contact-phone .phone {
  max-width: 350px;
  width: 100%;
  height: 120px;
  margin-top: 20px;
  border-radius: 6px;
  background: #fff;
  border: 2px solid #00173a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .subpage.contact .content .container-1200 .contact-phone .phone {
    max-width: 320px;
    height: 80px;
  }
}
.subpage.contact .content .container-1200 .contact-phone .phone p {
  margin-bottom: 5px;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .subpage.contact .content .container-1200 .contact-phone .phone p {
    font-size: 24px;
  }
}
.subpage.contact .content .container-1200 .contact-phone .phone span {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #000;
}
.subpage.contact .content .container-1200 form {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .subpage.contact .content .container-1200 form {
    margin-top: 20px;
    padding: 0;
  }
}
.subpage.contact .content .container-1200 form dl {
  margin-bottom: 20px;
  padding: 10px 15px;
  background: #f3f7f8;
}
.subpage.contact .content .container-1200 form dl dt p {
  margin-bottom: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #00173a;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .subpage.contact .content .container-1200 form dl dt p {
    font-size: 14px;
  }
}
.subpage.contact .content .container-1200 form dl dt p .required {
  width: 46px;
  height: 24px;
  margin-right: 5px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  background: #d53737;
}
.subpage.contact .content .container-1200 form dl dt p .optional {
  width: 46px;
  height: 24px;
  margin-right: 5px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  background: #777;
}
.subpage.contact .content .container-1200 form dl dd {
  width: 100%;
  font-family: "Noto Sans JP";
  font-size: 15px;
  line-height: 24px;
  text-align: left;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.contact .content .container-1200 form dl dd {
    font-size: 13px;
  }
}
.subpage.contact .content .container-1200 form .privacy {
  width: 260px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.subpage.contact .content .container-1200 form .privacy label {
  margin-left: 15px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #00173a;
}
.subpage.contact .content .container-1200 form .privacy label a {
  color: #2782e3;
  text-decoration: underline;
}
.subpage.contact .content .container-1200 form button, .subpage.contact .content .container-1200 form div.btn-confirm, .subpage.contact .content .container-1200 form .contact-btns span {
  width: 300px;
  height: 60px;
  margin: 50px auto;
  border-radius: 40px;
  border: 1px solid #ccc;
  outline: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #00173a;
  transition: all 0.3s;
}
.subpage.contact .content .container-1200 form button:hover, .subpage.contact .content .container-1200 form div.btn-confirm:hover, .subpage.contact .content .container-1200 form .contact-btns span:hover {
  background: #ccc;
}
.subpage.contact .content .container-1200 form button.disabled, .subpage.contact .content .container-1200 form div.btn-confirm.disabled, .subpage.contact .content .container-1200 form .contact-btns span.disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.subpage.contact .content .container-1200 form button.disabled:hover, .subpage.contact .content .container-1200 form div.btn-confirm.disabled:hover, .subpage.contact .content .container-1200 form .contact-btns span.disabled:hover {
  background: inherit;
}
.subpage.contact .content .container-1200 form button .fa-chevron-right, .subpage.contact .content .container-1200 form div.btn-confirm .fa-chevron-right, .subpage.contact .content .container-1200 form .contact-btns span .fa-chevron-right {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.subpage.contact .content .container-1200 form .contact-btns p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .subpage.contact .content .container-1200 form .contact-btns p {
    flex-direction: column;
  }
  .subpage.contact .content .container-1200 form .contact-btns p span {
    order: 2;
  }
  .subpage.contact .content .container-1200 form .contact-btns p button {
    order: 1;
  }
}
.subpage.contact .content .container-1200 form .contact-btns p span {
  width: 200px;
}
.subpage.contact .content .container-1200 form .contact-confirm {
  display: none;
}
.subpage.contact .content .container-1200 form.confirm .contact-original {
  display: none;
}
.subpage.contact .content .container-1200 form.confirm .contact-confirm {
  display: block;
}
.subpage.contact-complete .content, .subpage.error-404 .content {
  background: white;
}
.subpage.contact-complete .content h3, .subpage.error-404 .content h3 {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.contact-complete .content h3, .subpage.error-404 .content h3 {
    font-size: 18px;
  }
}
.subpage.contact-complete .content p, .subpage.error-404 .content p {
  margin: 40px auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .subpage.contact-complete .content p, .subpage.error-404 .content p {
    text-align: left;
  }
}
.subpage.contact-complete .content .lib-btn__border-rect, .subpage.error-404 .content .lib-btn__border-rect {
  margin: auto;
}
.subpage.eccube .content {
  background: white;
}
.subpage.eccube .content .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .content .subtitle {
    font-size: 15px;
  }
}
.subpage.eccube .content h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .content h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
  }
}
.subpage.eccube .content h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage.eccube .content h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.eccube .content h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.eccube .content .top-categories {
  margin-top: 60px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .content .top-categories {
    gap: 20px;
  }
}
.subpage.eccube .content .top-categories .lib-eccube__item {
  width: calc(33% - 18px);
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .content .top-categories .lib-eccube__item {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 520px) {
  .subpage.eccube .content .top-categories .lib-eccube__item {
    width: 100%;
  }
}
.subpage.eccube .manufacturers {
  background: #F5F5F5;
}
.subpage.eccube .manufacturers .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .manufacturers .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
.subpage.eccube .manufacturers h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .manufacturers h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
.subpage.eccube .manufacturers h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage.eccube .manufacturers h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.eccube .manufacturers h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.eccube .manufacturers-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.subpage.eccube .manufacturers-list__item {
  width: calc(33% - 15px);
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .manufacturers-list__item {
    width: calc(50% - 10px);
  }
}
.subpage.eccube .user-guide {
  background: #edede8;
  position: relative;
}
.subpage.eccube .user-guide .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .user-guide .subtitle {
    font-size: 15px;
  }
}
.subpage.eccube .user-guide h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00173a;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .user-guide h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
  }
}
.subpage.eccube .user-guide h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.subpage.eccube .user-guide h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
.subpage.eccube .user-guide h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
.subpage.eccube .user-guide p {
  max-width: 800px;
  margin: auto;
}
.subpage.eccube .user-guide .user-guide__links {
  max-width: 1000px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.subpage.eccube .user-guide .user-guide__links .lib-btn__border-bottom {
  width: calc(33% - 8px);
}
@media only screen and (max-width: 767px) {
  .subpage.eccube .user-guide .user-guide__links .lib-btn__border-bottom {
    width: calc(50% - 6px);
  }
}
.subpage .background {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.subpage .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  color: white;
}
footer .contact {
  background: #00173a;
  text-align: center;
}
footer .contact .container-1200 .subtitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: white;
}
@media only screen and (max-width: 767px) {
  footer .contact .container-1200 .subtitle {
    font-size: 15px;
    text-align: center;
  }
}
footer .contact .container-1200 h2 {
  margin: 20px 0 30px;
  padding-bottom: 15px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: 0.05em;
  color: white;
  position: relative;
}
@media only screen and (max-width: 767px) {
  footer .contact .container-1200 h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    line-height: 40px;
    text-align: center;
  }
}
footer .contact .container-1200 h2 .decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
footer .contact .container-1200 h2 .decoration .bg-blue {
  width: 60px;
  height: 4px;
  background: #1c56ac;
}
footer .contact .container-1200 h2 .decoration .bg-red {
  width: 30px;
  height: 4px;
  background: #d53737;
}
footer .contact .container-1200 > p {
  max-width: 600px;
  margin: auto;
  color: white;
  text-align: center;
}
footer .contact .container-1200 .contact-utils {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
  footer .contact .container-1200 .contact-utils {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  footer .contact .container-1200 .contact-utils .text {
    margin-bottom: 20px;
  }
}
footer .contact .container-1200 .contact-utils .text .phone-number {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  footer .contact .container-1200 .contact-utils .text .phone-number {
    font-size: 24px;
  }
}
footer .contact .container-1200 .contact-utils .text .contact-time {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
footer nav {
  background: #010f23;
}
footer nav .container-1200 {
  width: 90%;
  color: white;
  position: relative;
}
@media only screen and (max-width: 767px) {
  footer nav .container-1200 {
    padding-bottom: 100px;
  }
}
footer nav .container-1200 .menu {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding-bottom: 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  footer nav .container-1200 .menu {
    padding-bottom: 0;
  }
}
footer nav .container-1200 .menu .left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  footer nav .container-1200 .menu .left {
    margin: auto;
    flex-direction: column;
    gap: 10px;
  }
}
footer nav .container-1200 .menu .left .footer-logo {
  max-width: 220px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  footer nav .container-1200 .menu .left .footer-logo {
    max-width: 180px;
    margin: auto;
    margin-right: 15px;
  }
}
footer nav .container-1200 .menu .right {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  footer nav .container-1200 .menu .right {
    display: none;
  }
}
footer nav .container-1200 .menu .right .menu1 li a {
  display: inline-block;
  margin: 8px 0;
  padding: 0 5px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: #fff;
}
footer nav .container-1200 .menu .right .menu1 li a:hover {
  text-decoration: underline;
}
footer nav .container-1200 .menu .right .menu2 li a {
  margin: 8px 0;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: center;
}
footer nav .container-1200 .menu .right .menu2 li a:hover {
  text-decoration: underline;
}
footer nav .container-1200 .menu .right .menu2 li a svg {
  margin-right: 12px;
}
footer nav .container-1200 .copyright {
  width: 100%;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  footer nav .container-1200 .copyright {
    margin-top: 10px;
    bottom: unset;
  }
}

.container-1360 {
  max-width: 1360px;
  width: 100%;
  margin: auto;
  padding: 100px 20px;
}
@media only screen and (max-width: 767px) {
  .container-1360 {
    padding: 70px 35px;
  }
}
@media only screen and (max-width: 520px) {
  .container-1360 {
    padding: 50px 20px;
  }
}

.container-1200 {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 100px 20px;
}
@media only screen and (max-width: 767px) {
  .container-1200 {
    padding: 70px 35px;
  }
}
@media only screen and (max-width: 520px) {
  .container-1200 {
    padding: 50px 20px;
  }
}

p {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  color: #00173a;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
    line-height: 24px;
  }
}

.pagination {
  margin: 20px auto;
  display: flex;
  justify-content: center;
}
.pagination ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination ul a {
  width: 30px;
  height: 30px;
  border: 1px solid #00173a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #00173a;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .pagination ul a {
    font-size: 13px;
  }
}
.pagination ul a.active, .pagination ul a:hover {
  background: #00173a;
  color: white;
}

.pagination {
  margin: 20px auto;
  display: flex;
  justify-content: center;
}
.pagination .wp-pagenavi {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination .wp-pagenavi a {
  width: 30px;
  height: 30px;
  border: 1px solid #00173a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #00173a;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .pagination .wp-pagenavi a {
    font-size: 13px;
  }
}
.pagination .wp-pagenavi a.active, .pagination .wp-pagenavi a:hover {
  background: #00173a;
  color: white;
}
.pagination .wp-pagenavi span {
  width: 30px;
  height: 30px;
  border: 1px solid #00173a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: white;
  background: #00173a;
}
@media only screen and (max-width: 767px) {
  .pagination .wp-pagenavi span {
    font-size: 13px;
  }
}
.pagination .wp-pagenavi span.pages {
  display: none;
}

.subpage header .left .logo {
  display: block;
}

.eccube .breadcrumb {
  margin-bottom: 60px;
}

/*# sourceMappingURL=style.css.map */
