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

:root {
  --color-white: #fff;
  --color-blue: #29deda;
  --color-red: #ff6262;
  --gradient-blue-start: #25e6eb;
  --gradient-blue-end: #410c8c;
  --gradient-blue: linear-gradient(to right, #25e6eb, #410c8c);
  --gradient-blue-to-left: linear-gradient(to left, #25e6eb, #410c8c);
  --gradient-red: linear-gradient(to right, #d70a0a, #51127f);
  --font-jp: YakuHanJP, "Zen Kaku Gothic Antique", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-eng: "Instrument Serif", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

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

html {
  font-size: min(0.7142857143vw, 15px);
}
@media screen and (max-width: 750px) {
  html {
    font-size: min(2.6666666667vw, 20px);
  }
}

body {
  background: #000;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .is-pc {
    display: none;
  }
}

.l-wrapper {
  position: relative;
  min-height: 100vh;
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0;
}
.on-load .l-wrapper {
  opacity: 1;
  transition: opacity 0.7s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .l-wrapper {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
.l-wrapper__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-wrapper__bg-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  min-height: 200vh;
  background: url(../img/bg/bg_pc.jpg) repeat-y top center/100% auto;
}

.l-inner {
  position: relative;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .l-header {
    top: 1.6rem;
    left: 1.5rem;
    width: 11rem;
    background: none;
  }
}
.l-header__wrapper {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  transform: translateY(-1.2rem);
  opacity: 0;
}
.on-load .l-header__wrapper {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s var(--ease-out-cubic) 2.3s, opacity 0.5s var(--ease-out-cubic) 2.3s;
}
@media screen and (max-width: 750px) {
  .l-header__wrapper {
    background: none;
    transform: translateY(0);
  }
}
.on-load .--in .l-header__wrapper {
  transition-delay: 1s, 1s;
}
.l-header__inner {
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .l-header__inner {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.l-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .l-header__content {
    display: block;
  }
}
.l-header__logo {
  width: 15rem;
}
@media screen and (max-width: 750px) {
  .l-header__logo {
    width: 100%;
  }
}
.l-header__logo-link {
  display: block;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  .l-header__logo-link:hover {
    transform: scale(1.06);
  }
}
.l-header__nav {
  margin-right: 1.5%;
  margin-bottom: 0.2rem;
}
.l-header__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-header__nav-list-item {
  margin-left: 1.76rem;
}
.l-header__nav-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.8s var(--ease-out-quart);
}
.nav-active .l-header__nav-link {
  color: var(--color-blue);
}
@media (hover: hover) {
  .l-header__nav-link:hover {
    color: var(--color-blue);
    transition-duration: 0.6s;
  }
}
.l-header__nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 1px;
  background: var(--color-blue);
  transition: transform 0.8s var(--ease-in-out-expo);
}
.nav-active .l-header__nav-link::before {
  transform: translateY(-50%) scaleX(1);
  transform-origin: left center;
}

.l-content {
  position: relative;
  min-height: 100vh;
}

.l-section {
  position: relative;
  margin-top: 6rem;
  padding-top: 10rem;
  padding-bottom: 24.8rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .l-section {
    margin-top: 3rem;
    padding-top: 5rem;
    padding-bottom: 12.4rem;
  }
}
.l-section--news {
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .l-section--news {
    margin-top: 1.1rem;
  }
}
.l-section--about {
  margin-top: 6rem;
  padding-bottom: 25rem;
}
@media screen and (max-width: 750px) {
  .l-section--about {
    margin-top: 3rem;
    padding-bottom: 12.4rem;
  }
}
.l-section--cast {
  margin-top: 5.9rem;
  padding-bottom: 47.6rem;
}
@media screen and (max-width: 750px) {
  .l-section--cast {
    margin-top: 2.6rem;
    padding-bottom: 32.6rem;
  }
}
.l-section--goods {
  padding-bottom: 24.7rem;
}
@media screen and (max-width: 750px) {
  .l-section--goods {
    padding-bottom: 12.4rem;
  }
}
.l-section--contact {
  padding-bottom: 24.7rem;
}
@media screen and (max-width: 750px) {
  .l-section--contact {
    padding-bottom: 12.2rem;
  }
}
.l-section--product {
  padding-bottom: 25rem;
}
@media screen and (max-width: 750px) {
  .l-section--product {
    padding-bottom: 12.5rem;
  }
}
.l-section--attention {
  padding-bottom: 24.2rem;
}
@media screen and (max-width: 750px) {
  .l-section--attention {
    padding-bottom: 12.1rem;
  }
}
.l-section__inner {
  width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-section__inner {
    width: 100%;
  }
}
.l-section__deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8.9rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .l-section__deco {
    height: 4.45rem;
  }
}
.l-section__deco::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  min-width: 170rem;
  height: 100%;
  background: url(../img/txt_loop.png) repeat-x center left/auto 100%;
}
@media screen and (min-width: 751px) {
  .l-section__deco::before {
    animation: SectionLoopTextPC 40s linear infinite;
  }
}
@media screen and (max-width: 750px) {
  .l-section__deco::before {
    animation: SectionLoopTextSP 20s linear infinite;
  }
}
.l-section__visual {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 32rem;
}
@media screen and (max-width: 750px) {
  .l-section__visual {
    padding-top: 25rem;
  }
}
.l-section__visual-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/img_parallax_pc.jpg) no-repeat top center/cover;
}
@media screen and (max-width: 750px) {
  .l-section__visual-img {
    background-image: url(../img/img_parallax_sp.jpg);
  }
}
.l-section__title {
  width: 40rem;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, #000 33.3333333333%, transparent 66.6666666667%);
  mask-image: linear-gradient(to right, #000 33.3333333333%, transparent 66.6666666667%);
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.l-section.is-active .l-section__title {
  transition: -webkit-mask-position 1.8s var(--ease-out-cubic);
  transition: mask-position 1.8s var(--ease-out-cubic);
  transition: mask-position 1.8s var(--ease-out-cubic), -webkit-mask-position 1.8s var(--ease-out-cubic);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}
@media screen and (max-width: 750px) {
  .l-section__title {
    width: 64%;
  }
}
.l-section__body {
  transform: translateY(1.5rem);
  opacity: 0;
}
.l-section.is-active .l-section__body {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s var(--ease-out-cubic) 0.4s, opacity 0.5s var(--ease-out-cubic) 0.4s;
}

.l-footer {
  position: relative;
  overflow: hidden;
}
.l-footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg/bg_footer_pc.jpg) no-repeat top center/cover;
}
@media screen and (max-width: 750px) {
  .l-footer::before {
    background-image: url(../img/bg/bg_footer_sp.jpg);
  }
}
.l-footer__inner {
  position: relative;
  padding-top: 8.7rem;
  padding-bottom: 4.2rem;
}
@media screen and (max-width: 750px) {
  .l-footer__inner {
    padding-top: 4.9rem;
    padding-bottom: 4.8rem;
  }
}
.l-footer__pagetop {
  width: 7rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-footer__pagetop {
    width: 6.5rem;
  }
}
.l-footer__pagetop-link {
  display: block;
}
@media (hover: hover) {
  .l-footer__pagetop-link:hover {
    transform: rotateY(180deg);
    transition: transform 1s var(--ease-in-out-expo);
  }
}
.l-footer__top {
  width: 24rem;
  margin: 0 auto;
  margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .l-footer__top {
    width: 23rem;
    margin-top: 3.9rem;
  }
}
.l-footer__top-link {
  display: block;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  .l-footer__top-link:hover {
    transform: scale(1.05);
  }
}
.l-footer__share {
  margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .l-footer__share {
    margin-top: 4rem;
  }
}
.l-footer__share-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__share-label {
  font-family: var(--font-eng);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-right: 1.8rem;
}
@media screen and (max-width: 750px) {
  .l-footer__share-label {
    font-size: 1.6rem;
    margin-right: 1.6rem;
  }
}
.l-footer__share-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-footer__share-list-item {
  width: 5rem;
  margin-left: 1rem;
}
@media screen and (max-width: 750px) {
  .l-footer__share-list-item {
    width: 4.5rem;
  }
}
.l-footer__share-list-item:first-child {
  margin-left: 0;
}
.l-footer__share-link {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  .l-footer__share-link:hover {
    transform: scale(1.07);
  }
}
.l-footer__share-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-blue-to-left);
  border-radius: 50%;
  -webkit-mask: url(../img/share_mask.png) no-repeat center center/100% auto;
  mask: url(../img/share_mask.png) no-repeat center center/100% auto;
}
.l-footer__share-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
}
.l-footer__help {
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .l-footer__help {
    margin-top: 2.6rem;
  }
}
.l-footer__help-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__help-list-item {
  position: relative;
}
.l-footer__help-list-item:nth-child(n+2)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 90%;
  background: var(--color-white);
}
.l-footer__help-link {
  display: block;
  position: relative;
  padding: 0 3.7rem;
  text-decoration: none;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.06em;
  transition: color 0.6s var(--ease-out-quart);
}
@media screen and (max-width: 750px) {
  .l-footer__help-link {
    padding: 0 2.9rem;
    font-size: 1.2rem;
    letter-spacing: 0.14em;
  }
}
@media (hover: hover) {
  .l-footer__help-link:hover {
    color: var(--color-blue);
  }
}
.l-footer__rule {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.1rem;
}
@media screen and (max-width: 750px) {
  .l-footer__rule {
    margin-top: 2.2rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.l-footer__copyright {
  margin-top: 0.3rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .l-footer__copyright {
    margin-top: 0.2rem;
    font-size: 1rem;
  }
}

.l-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: url(../img/bg/bg_menu_sp.jpg) no-repeat center center/cover;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.6s var(--ease-out-quart);
}
@media screen and (min-width: 751px) {
  .l-menu {
    display: none !important;
  }
}
.menu-open .l-menu {
  opacity: 1;
  pointer-events: auto;
}
.l-menu__wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 12.2rem;
  padding-bottom: 9rem;
}
.l-menu__inner {
  width: 80%;
  margin: 0 auto;
}
.l-menu__nav-list-item:nth-child(n+2) {
  margin-top: 2.4rem;
}
.l-menu__nav-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 0.6s var(--ease-out-cubic);
}
.nav-active .l-menu__nav-link {
  color: var(--color-blue);
}

.l-ham {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1;
  width: 2.5rem;
  height: 1.5rem;
  cursor: pointer;
  mix-blend-mode: difference;
  opacity: 0;
}
.on-load .l-ham {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s var(--ease-out-cubic) 2.3s;
}
.on-load .--in .l-ham {
  transition-delay: 1s, 1s;
}
.l-ham::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% - 0.7rem));
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transition: transform 0.6s var(--ease-out-quart);
}
.menu-open .l-ham::before {
  transform: translateY(-50%) rotate(-45deg);
}
.l-ham::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% + 0.7rem));
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transition: transform 0.6s var(--ease-out-quart);
}
.menu-open .l-ham::after {
  transform: translateY(-50%) rotate(45deg);
}
.l-ham span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transition: opacity 0.6s var(--ease-out-quart);
}
.menu-open .l-ham span {
  opacity: 0;
}

.c-btn {
  position: relative;
}
.c-btn__link {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50rem;
  text-decoration: none;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  transition: background-color 1s var(--ease-out-quart);
}
@media (hover: hover) {
  .c-btn__link:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 750px) {
  .c-btn__link {
    height: 4.5rem;
    font-size: 1.3rem;
  }
}
.--jp .c-btn__link {
  font-family: var(--font-jp);
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .--jp .c-btn__link {
    font-size: 1.2rem;
  }
}
.c-btn__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: var(--gradient-blue-to-left);
  border-radius: 50%;
  opacity: 0.3;
}
@media screen and (max-width: 750px) {
  .c-btn__link::before {
    right: 0.3rem;
    width: 3.8rem;
    height: 3.8rem;
  }
}
.--back .c-btn__link::before {
  right: auto;
  left: 0.4rem;
}
@media screen and (max-width: 750px) {
  .--back .c-btn__link::before {
    left: 0.3rem;
  }
}
.c-btn__text {
  display: block;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.--back .c-btn__text {
  left: 54.5%;
}
@media screen and (max-width: 750px) {
  .--back .c-btn__text {
    left: 53%;
  }
}
.--jp .c-btn__text {
  left: 50%;
}
.c-btn__arrow {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translate(50%, -50%);
  opacity: 0.5;
}
@media screen and (max-width: 750px) {
  .c-btn__arrow {
    right: 2.2rem;
  }
}
.--back .c-btn__arrow {
  right: auto;
  left: 2.4rem;
  transform: translate(-50%, -50%);
}
.c-btn__arrow::before {
  content: "";
  display: block;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-white);
  border-radius: 50%;
}
.c-btn__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  width: 3.4rem;
  height: 1px;
  background: var(--color-white);
  transition: transform 0.8s var(--ease-in-out-expo);
}
@media (hover: hover) {
  .c-btn__link:hover .c-btn__arrow::after {
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 750px) {
  .c-btn__arrow::after {
    width: 3rem;
  }
}
.--back .c-btn__arrow::after {
  transform: translate(0, -50%);
}
@media (hover: hover) {
  .--back .c-btn__link:hover .c-btn__arrow::after {
    transform: translate(-100%, -50%);
  }
}

.c-notes {
  position: relative;
}
.c-notes__list-item {
  font-size: 1.15rem;
  line-height: 2.08;
}
@media screen and (max-width: 750px) {
  .c-notes__list-item {
    font-size: 1.05rem;
    line-height: 1.72;
  }
}
@media screen and (max-width: 750px) {
  .c-notes__list-item:nth-child(n+2) {
    margin-top: 0.34rem;
  }
}
.p-attention .c-notes__list-item {
  line-height: 1.87;
}
@media screen and (max-width: 750px) {
  .p-attention .c-notes__list-item {
    line-height: 1.64;
  }
}
.p-attention .c-notes__list-item:nth-child(n+2) {
  margin-top: 0.45rem;
}
.c-notes__list-item a {
  vertical-align: baseline;
  color: var(--color-blue);
}
@media (hover: hover) {
  .c-notes__list-item a:hover {
    text-decoration: none;
  }
}

.c-comingsoon {
  position: relative;
  width: 16.8rem;
  margin: 0 auto;
  margin-top: 4.9rem;
}
@media screen and (max-width: 750px) {
  .c-comingsoon {
    width: 10.2rem;
    margin-top: 3.4rem;
  }
}

.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagination__list-item {
  margin: 0 1.8rem;
}
@media screen and (max-width: 750px) {
  .c-pagination__list-item {
    margin: 0 1.5rem;
  }
}
.c-pagination__link {
  display: block;
  position: relative;
  text-decoration: none;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 2.2rem;
  transition: color 0.6s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .c-pagination__link {
    font-size: 1.8rem;
  }
}
.current .c-pagination__link {
  color: var(--color-blue);
  pointer-events: none;
}
@media (hover: hover) {
  .c-pagination__link:hover {
    color: var(--color-blue);
  }
}