@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
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, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

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

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

body {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
  font-weight: 400;
  color: #7a8692;
}

.l-wrap {
  overflow: hidden;
  position: relative;
}
.l-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
}
.is-load .l-wrap::after {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.l-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-menu {
    height: 100%;
    pointer-events: none;
  }
  .is-menu-open .l-menu {
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__content {
    height: 100%;
    width: 100%;
  }
}
.l-menu__content-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-menu__content-inner {
    padding: 23px 49px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__content-inner {
    min-height: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .l-menu__content-inner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.1s;
  }
  .is-menu-open .l-menu__content-inner::before {
    opacity: 1;
    transition-delay: 0s;
  }
}
.l-menu__line {
  flex-grow: 1;
  height: 1px;
  background-color: #0b4ba3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-menu__line {
    display: none;
  }
}
.l-menu__line::before, .l-menu__line::after {
  content: "";
  width: 7px;
  height: 8px;
  position: absolute;
  top: -3px;
  background-color: #0b4ba3;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.l-menu__line::before {
  left: 0;
}
.l-menu__line::after {
  right: 0;
  transform: scaleX(-1);
}
.l-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding: 0 18px;
}
@media screen and (max-width: 767px) {
  .l-menu__list {
    display: block;
    text-align: center;
  }
}
.l-menu__list-item {
  margin: 0px 30px;
  font-size: 27px;
}
@media screen and (max-width: 767px) {
  .l-menu__list-item {
    font-size: 26px;
    transform: translateY(25px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-menu-open .l-menu__list-item {
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    transform: translateY(0);
  }
  .is-menu-open .l-menu__list-item:nth-child(1) {
    transition-delay: 0.2s;
  }
  .is-menu-open .l-menu__list-item:nth-child(2) {
    transition-delay: 0.33s;
  }
  .is-menu-open .l-menu__list-item:nth-child(3) {
    transition-delay: 0.46s;
  }
  .is-menu-open .l-menu__list-item:nth-child(4) {
    transition-delay: 0.59s;
  }
  .is-menu-open .l-menu__list-item:nth-child(5) {
    transition-delay: 0.72s;
  }
  .is-menu-open .l-menu__list-item:nth-child(6) {
    transition-delay: 0.85s;
  }
  .is-menu-open .l-menu__list-item:nth-child(7) {
    transition-delay: 0.98s;
  }
  .is-menu-open .l-menu__list-item:nth-child(8) {
    transition-delay: 1.11s;
  }
  .is-menu-open .l-menu__list-item:nth-child(9) {
    transition-delay: 1.24s;
  }
  .is-menu-open .l-menu__list-item:nth-child(10) {
    transition-delay: 1.37s;
  }
  .l-menu__list-item + .l-menu__list-item {
    margin-top: 11px;
  }
}
.l-menu__list-item a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-decoration: none;
  color: #0b4ba3;
  position: relative;
}
@media (hover: hover) {
  .l-menu__list-item a:hover::before {
    transform: translateY(0);
    opacity: 1;
  }
}
.l-menu__list-item a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0b4ba3;
  transform: translateY(5px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-menu__btn {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  z-index: 1;
  pointer-events: all;
}
.l-menu__btn-line {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #C8161E;
  background: linear-gradient(90deg, rgb(200, 22, 30) 0%, rgb(0, 78, 162) 100%);
}
.l-menu__btn-line:nth-child(1) {
  top: 34%;
}
.is-menu-open .l-menu__btn-line:nth-child(1) {
  top: 50%;
  transform: rotate(30deg);
}
.is-menu-open .l-menu__btn-line:nth-child(2) {
  transform: scaleX(0);
}
.l-menu__btn-line:nth-child(3) {
  top: 66%;
}
.is-menu-open .l-menu__btn-line:nth-child(3) {
  top: 50%;
  transform: rotate(-30deg);
}

.l-section {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 90px;
  }
}
.l-section + .l-section {
  margin-top: 107px;
}
@media screen and (max-width: 767px) {
  .l-section + .l-section {
    margin-top: 42px;
  }
}
.l-section__ttl {
  text-align: center;
  margin-bottom: 64px;
  transform: translateY(25px);
  filter: blur(3px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .l-section__ttl {
    margin-bottom: 45px;
  }
}
.l-section__ttl h2 {
  margin: 0 auto;
  width: 375px;
}
@media screen and (max-width: 767px) {
  .l-section__ttl h2 {
    width: 70%;
  }
}
.l-section__ttl-ja {
  letter-spacing: 6px;
  background: #4C90D9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(90deg, rgb(76, 144, 217) 0%, rgb(183, 15, 40) 100%, rgba(75, 72, 149, 0) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-section__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .l-section__inner {
    width: 87%;
  }
}

body .m-modal .m-modal__bg {
  background: transparent;
}
body .m-modal .m-modal__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #C8161E;
  background: linear-gradient(90deg, rgb(200, 22, 30) 0%, rgb(0, 78, 162) 100%);
  opacity: 0.9;
}
body .m-modal .m-modal__content {
  max-width: 1100px;
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  body .m-modal .m-modal__content {
    width: 86.5%;
  }
}
body .m-modal .m-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 1;
  border-radius: 50%;
  background: url(../img/btn_close.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  body .m-modal .m-modal__close:hover {
    opacity: 0.8;
    transform: scale(0.97);
  }
}
@media screen and (max-width: 767px) {
  body .m-modal .m-modal__close {
    width: 62px;
    height: 62px;
  }
}

.p-goods_modal {
  padding: 92px 0;
}
@media screen and (max-width: 767px) {
  .p-goods_modal {
    padding: 82px 0;
  }
}
.p-goods_modal__inner {
  background-color: #fff;
}
.p-goods_modal__content {
  display: flex;
  padding: 4.5%;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__content {
    display: block;
    padding: 6.5% 6.5% 12%;
  }
}
.p-goods_modal__slider {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__slider {
    width: 100%;
  }
}
.p-goods_modal__data {
  width: 50%;
  padding-left: 5%;
  text-align: left;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__data {
    width: 100%;
    padding: 0;
    margin-top: 17px;
  }
}
.p-goods_modal__data-head {
  position: relative;
  padding-bottom: 27px;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__data-head {
    padding-bottom: 21px;
    margin-bottom: 20px;
  }
}
.p-goods_modal__data-head::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/deco/line_dot_repeat.png) repeat-x 0 center;
  background-size: 3px;
}
@media screen and (min-width: 768px) {
  .p-goods_modal__data-head::before {
    height: 6px;
    background-size: 6px;
  }
}
.p-goods_modal__data-ttl {
  color: #0b4ba3;
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__data-ttl {
    font-size: 20px;
  }
}
.p-goods_modal__data-price {
  font-size: 28px;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__data-price {
    font-size: 21px;
    margin-top: 12px;
  }
}
.p-goods_modal__data-price .is-small {
  font-size: 16px;
  vertical-align: baseline;
  padding-left: 7px;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__data-price .is-small {
    font-size: 13px;
  }
}
.p-goods_modal__data-text {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-goods_modal__data-text {
    font-size: 11px;
  }
}

.l-content {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .l-content {
    margin-bottom: 128px;
  }
}

.l-footer {
  position: relative;
  padding: 52px 49px 60px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 50px 7% 50px;
  }
}
.l-footer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #C8161E;
  background: linear-gradient(90deg, rgb(200, 22, 30) 0%, rgb(0, 78, 162) 100%);
  opacity: 0.1;
  pointer-events: none;
}
.l-footer__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    display: block;
  }
}
.l-footer__links {
  width: 330px;
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    width: 100%;
  }
}
.l-footer__text {
  text-align: right;
  padding-top: 11px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer__text {
    width: 100%;
    padding-top: 36px;
    text-align: center;
  }
}
.l-footer__lead {
  font-size: 13px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-footer__lead {
    font-size: 10px;
  }
}
.l-footer__copy {
  font-size: 14px;
  margin-top: 49px;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 10px;
    margin-top: 26px;
  }
}
.l-footer__share {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer__share {
    max-width: 282px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__share {
    max-width: 200px;
    margin: 0 auto;
  }
}
.l-footer__share-ttl {
  font-size: 18px;
  letter-spacing: 3px;
  color: #0b4ba3;
}
@media screen and (max-width: 767px) {
  .l-footer__share-ttl {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.l-footer__share-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.l-footer__share-list-item {
  width: 34px;
}
@media screen and (max-width: 767px) {
  .l-footer__share-list-item {
    width: 26px;
  }
}
.l-footer__share-list-item + .l-footer__share-list-item {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__share-list-item + .l-footer__share-list-item {
    margin-left: 25px;
  }
}
.l-footer__share-list-item a {
  display: block;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .l-footer__share-list-item a:hover {
    opacity: 0.6;
  }
}
.l-footer__anilink {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .l-footer__anilink {
    margin-top: 32px;
  }
}
.l-footer__anilink-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer__anilink-list {
    justify-content: center;
  }
}
.l-footer__anilink-list-item {
  font-size: 14px;
  letter-spacing: 1px;
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__anilink-list-item {
    font-size: 13px;
    letter-spacing: 0.5px;
    padding-right: 17px;
  }
}
.l-footer__anilink-list-item + .l-footer__anilink-list-item {
  margin-left: 22px;
}
@media screen and (max-width: 767px) {
  .l-footer__anilink-list-item + .l-footer__anilink-list-item {
    margin-left: 17px;
  }
}
.l-footer__anilink-list-item:last-child {
  padding-right: 0;
}
.l-footer__anilink-list-item:last-child::before {
  content: none;
}
.l-footer__anilink-list-item::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0b4ba3;
}
.l-footer__anilink-list-item a {
  text-decoration: none;
  color: #0b4ba3;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .l-footer__anilink-list-item a:hover {
    opacity: 0.6;
  }
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg/bg_pc.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1.1);
}
.is-load .l-bg::before {
  transform: scale(1);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .l-bg::before {
    background: url(../img/bg/bg_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
.p-hero {
  width: 100%;
  padding-top: 75px;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding-top: 50px;
    margin-bottom: 68px;
  }
}
.p-hero__kv {
  overflow: hidden;
}
.p-hero__kv img {
  transform: scale(1.05);
}
.is-load .p-hero__kv img {
  transform: scale(1);
  transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-about__info-item {
  padding-bottom: 38px;
  position: relative;
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .p-about__info-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-section.is-active .p-about__info-item:nth-child(1) {
  transition-delay: 0.2s;
}
.l-section.is-active .p-about__info-item:nth-child(2) {
  transition-delay: 0.35s;
}
.l-section.is-active .p-about__info-item:nth-child(3) {
  transition-delay: 0.5s;
}
.l-section.is-active .p-about__info-item:nth-child(4) {
  transition-delay: 0.65s;
}
.l-section.is-active .p-about__info-item:nth-child(5) {
  transition-delay: 0.8s;
}
@media screen and (max-width: 767px) {
  .p-about__info-item {
    padding-bottom: 29px;
  }
  .p-about__info-item:last-child::before {
    content: none;
  }
}
.p-about__info-item::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/deco/line_dot_repeat.png) repeat-x 0 center;
  background-size: 3px;
}
@media screen and (min-width: 768px) {
  .p-about__info-item::before {
    height: 6px;
    background-size: 6px;
  }
}
.p-about__info-item:last-child {
  border-bottom: none;
}
.p-about__info-item + .p-about__info-item {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .p-about__info-item + .p-about__info-item {
    margin-top: 27px;
  }
}
.p-about__info-inner {
  margin: 0 auto;
  width: 90%;
  display: flex;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-about__info-inner {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__info-inner {
    display: block;
    text-align: center;
  }
}
.p-about__info-ttl {
  flex-grow: 0;
  width: 76px;
  display: flex;
  justify-content: space-between;
  font-size: 19px;
  color: #0b4ba3;
  font-weight: 700;
  margin-right: 90px;
}
@media screen and (max-width: 767px) {
  .p-about__info-ttl {
    margin: 0 auto 9px;
    font-size: 15px;
    width: 60px;
  }
}
.p-about__info-text {
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .p-about__info-text {
    font-size: 15px;
  }
}

.p-goods {
  padding-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .p-goods {
    padding-bottom: 28px;
  }
}
.p-goods__box {
  transform: translateY(25px);
  opacity: 0;
}
.p-goods__box.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-goods__box + .p-goods__box {
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  .p-goods__box + .p-goods__box {
    margin-top: 52px;
  }
}
.p-goods__box-ttl {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: #0b4ba3;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .p-goods__box-ttl {
    margin-bottom: 29px;
    font-size: 20px;
  }
}
.p-goods__box-ttl::before, .p-goods__box-ttl::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #0b4ba3;
}
.p-goods__box-ttl-text {
  padding: 0 28px;
}
@media screen and (max-width: 767px) {
  .p-goods__box-ttl-text {
    padding: 0 20px;
  }
}
.p-goods__box-lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-goods__box-lead {
    letter-spacing: -0.5px;
    font-size: 13px;
  }
}
.p-goods__box-thumb {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 700px;
}
.p-goods__box-note {
  text-align: center;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-goods__box-note {
    margin-top: 12px;
  }
}
.p-goods__box-note-item {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-goods__box-note-item {
    font-size: 10px;
    line-height: 1.7;
  }
}
.p-goods__box-note-item + .p-goods__box-note-item {
  margin-top: 2px;
}
.p-goods__list {
  display: flex;
  flex-wrap: wrap;
}
.p-goods__list-item {
  width: 22.75%;
  margin-right: 3%;
  margin-bottom: 6.7%;
  cursor: pointer;
}
@media (hover: hover) {
  .p-goods__list-item:hover .p-goods__list-thumb img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .p-goods__list-item {
    margin-right: 8%;
    margin-bottom: 7.4%;
    width: 46%;
  }
  .p-goods__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-goods__list-item:nth-child(4n) {
    margin-right: 0;
  }
}
.p-goods__list-piece {
  font-size: 13px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-goods__list-piece {
    margin-top: 7px;
    font-size: 9px;
  }
}
.p-goods__list-ttl {
  margin-top: 10px;
  color: #0b4ba3;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .p-goods__list-ttl {
    margin-top: 6px;
    font-size: 11px;
  }
}
.p-goods__list-price {
  font-size: 19px;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-goods__list-price {
    font-size: 11px;
    margin-top: 5px;
  }
}
.p-goods__list-price .is-small {
  font-size: 13px;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .p-goods__list-price .is-small {
    font-size: 8px;
  }
}
.p-goods__list-thumb {
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.p-goods__list-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-goods__bnr {
  margin: 0 auto;
  margin-top: 49px;
  width: 80%;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .p-goods__bnr {
    margin-top: 25px;
    width: 100%;
  }
}
.p-goods__bnr a {
  display: block;
}
@media (hover: hover) {
  .p-goods__bnr a:hover img {
    opacity: 0.8;
    transform: scale(0.97);
  }
}
.p-goods__bnr img {
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.goodslist_swiper {
  overflow: hidden;
  position: relative;
}
.goodslist_swiper .swiper-pagination {
  bottom: 5px;
}
.goodslist_swiper .swiper-pagination-bullet-active {
  background-color: #0b4ba3;
}
.goodslist_swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 3px !important;
}

.p-attention__content {
  border: 1px solid #0b4ba3;
  padding: 54px 67px;
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .p-attention__content {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-attention__content {
    padding: 29px 19px;
  }
}
.p-attention__list-item {
  line-height: 1.7;
  font-size: 14px;
  text-indent: -0.5rem;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-attention__list-item {
    font-size: 11px;
  }
}
.p-attention__list-item.is-red {
  color: #ff3541;
}
.p-attention__list-item + .p-attention__list-item {
  margin-top: 1px;
}

.goods_swiper {
  overflow: hidden;
  position: relative;
}
.goods_swiper .swiper-pagination {
  bottom: 5px;
}
.goods_swiper .swiper-pagination-bullet-active {
  background-color: #0b4ba3;
}
.goods_swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 3px !important;
}