@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');

:root {
  --theme-black: #030719;
  --theme-brown: #3c2d20;
  --theme-beige: #fdfdfd;
  --theme-white: #fff;
  --theme-gray: #cfd3de;
  --theme-yellow: #ffe943;
  --theme-red: #D32D26;
  --theme-blue: #3D51E8;
  --theme-base: var(--theme-white);
  --theme-base-dark: var(--theme-black);
  --theme-main-text: var(--theme-black);
  --theme-sub-text: var(--theme-red);
  --theme-white-text: var(--theme-white);
  --theme-main: var(--theme-red);
}

:root {
  --baseFont: "Noto Sans JP", sans-serif;
}

:where(:root) {
  --inner: 1106px;
  --padding-sp: 16px;
}

/* ===============================================
# MARK: 波線
=============================================== */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  /* リキッドレイアウト対応のための設定 */
  font-size: 16px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-inline-size: 0;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  font-size: 16px;
  line-height: 1.625;
  font-family: var(--baseFont);
  font-weight: 600;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0em;
  color: var(--theme-main-text);
  position: relative;
}

body.is-fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  outline: none;
  border: none;
  border-radius: 0;
  resize: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: none;
}

button,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity var(--hover-transition);
  transition: opacity var(--hover-transition);
}

details summary {
  list-style: none;
  cursor: pointer;
}

details summary::-webkit-details-marker {
  display: none;
}

figure {
  margin: 0;
}

picture {
  display: block;
  height: 100%;
}

abbr {
  text-decoration: none;
}

pre {
  white-space: pre-wrap;
}

/* Safari */

_::-webkit-full-page-media,
_:future,
:root rt {
  scale: 0.9;
  width: 0;
  height: 1em;
  -webkit-transform: translateY(-0.05em);
          transform: translateY(-0.05em);
  -webkit-margin-start: -0.25em;
          margin-inline-start: -0.25em;
}

:root {
  --duration: 0.2;
  --easing: ease;
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --power4-out: linear(0 0%, 0.1641 3.52%, 0.311 7.18%, 0.4413 10.99%, 0.5553 14.96%, 0.6539 19.12%, 0.738 23.5%, 0.8086 28.15%, 0.8662 33.12%, 0.9078 37.92%, 0.9405 43.12%, 0.965 48.84%, 0.9821 55.28%, 0.992 61.97%, 0.9976 70.09%, 1 100%);
  --hover-transition: calc(var(--duration) * 1s) var(--easing);
  --hover-opacity: 0.8;
  --z-index-header: 10000;
  --z-index-drawer: 10001;
  --z-index-floating: 1000;
  --z-index-anchor: 100;
}

/* ===============================================
# MARK: l-body
=============================================== */

.l-body__grid {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr;
}

/* ===============================================
# MARK: l-body__left
=============================================== */

.l-body__left {
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  display: none;
  background-color:#030719;
}

.l-body__leftInner {
  height: inherit;
}

.l-body__leftBg {
  height: inherit;
  position: relative;
  z-index: 0;
}

.l-body__leftBg img {
  aspect-ratio: 700/1080;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.l-body__leftBg::before,
.l-body__leftBg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--hover-transition), visibility var(--hover-transition);
  transition: opacity var(--hover-transition), visibility var(--hover-transition);
}


/* ===============================================
# MARK: l-body__center
=============================================== */

.l-body__center {
  width: 100%;
}

/* ===============================================
# MARK: l-body__right
=============================================== */

.l-body__right {
  height: 100vh;
  position: sticky;
  top: 0;
  right: 0;
  display: none;
}

.l-body__rightInner {
  height: inherit;
  background-color:#030719;
}

.l-body__rightBg {
  height: inherit;
}

.l-body__rightBg img {
  aspect-ratio: 845/1080;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* ===============================================
# MARK: l-header
=============================================== */

.l-header {
  position: absolute;
  left: min(4.0995607613vw, 56px);
  bottom: min(5.1244509517vw, 70px);
  z-index: 10;
}

.l-header__title {
  width: min(375px, 100%);
}

.l-header__title img {
  aspect-ratio: 375/135;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

/* ===============================================
# MARK: anchor
=============================================== */

.l-header__anchorList {
  -webkit-margin-before: 21px;
          margin-block-start: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-header__anchorLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 6px 13px;
  padding-inline: 12px;
  border-radius: 10px;
  color: var(--theme-main-text);
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: color var(--hover-transition), scale var(--hover-transition);
  transition: color var(--hover-transition), scale var(--hover-transition);
}

.l-header__anchorLink::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--theme-white);
  opacity: 0.9;
  z-index: -1;
  -webkit-transition: opacity var(--hover-transition), background-color var(--hover-transition);
  transition: opacity var(--hover-transition), background-color var(--hover-transition);
}

.l-header__anchorLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-header__anchorHead {
  font-size: 12px;
  font-weight: 600;
  line-height: 2.1666666667;
}

.l-header__anchorTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.l-header__anchorArrow {
  display: block;
  width: 16px;
  height: 16px;
  translate: 0px 1px;
  color: var(--theme-main-text);
  -webkit-transition: translate var(--hover-transition), color var(--hover-transition);
  transition: translate var(--hover-transition), color var(--hover-transition);
}

.l-header__anchorArrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* MARK: modifier */

.l-header__anchorItem {
  position: relative;
  z-index: 0;
}

.l-header__anchorItem[data-anchor-name=horizon]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-16px, -50%);
          transform: translate(-16px, -50%);
  display: block;
  width: 10px;
  height: 59px;
  background-image: url(../img/text-episode1-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.l-header__anchorItem[data-anchor-name=yayomu]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-16px, -50%);
          transform: translate(-16px, -50%);
  display: block;
  width: 10px;
  height: 59px;
  background-image: url(../img/text-episode2-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


/* hover */

/* ===============================================
# MARK: footer
=============================================== */

.l-footer {
  -webkit-margin-before: -2px;
          margin-block-start: -2px;
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  padding-block: 24px 26px;
  background-color: var(--theme-main);
}

.l-footer__logo {
  display: block;
  -webkit-transition: opacity var(--hover-transition);
  transition: opacity var(--hover-transition);
  /* hover */
}

.l-footer__logo[data-logo=sol] {
  width: 96px;
}

.l-footer__logo[data-logo=sol] img {
  aspect-ratio: 96/38;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}



/* ===============================================
# MARK: l-inner
=============================================== */

.l-inner {
  margin-inline: auto;
  width: 81%;
  /*padding-inline: var(--padding-sp);*/
}

/* modifier */

.l-inner[data-inner-size=small] {
  padding-inline: 29px;
}

/* ===============================================
# MARK: l-main
=============================================== */

.l-main {
  position: relative;
  z-index: 0;
  container-type: inline-size;
  container-name: main;
}



.l-main__inner {
  background-color: var(--theme-white);
  position: relative;
  z-index: 0;
}
.l-main__inner.kaki-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;      
  height: 100%;     
  background-image: url(../img/kaki-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.l-main__inner.nagi-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;      
  height: 100%;     
  background-image: url(../img/nagi-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.l-main__inner.niziu-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;      
  height: 100%;     
  background-image: url(../img/nagi-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

.l-main__inner.saucydog-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;      
  height: 100%;     
  background-image: url(../img/kaki-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.l-main__inner.komori-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;      
  height: 100%;     
  background-image: url(../img/kaki-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.l-main__inner.anjie-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;      
  height: 100%;     
  background-image: url(../img/kaki-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
/* ===============================================
# MARK: l-main__columns
=============================================== */

.c-komori__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 26px;
  max-width: 280px;
  margin: 0 auto;
}

.c-saucydog__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  max-width: 280px;
  margin: 0 auto;
}
/* ===============================================
# MARK: l-main__slider
=============================================== */

.l-main__slider {
  margin-inline: calc(var(--padding-sp) * -1);
}

/* ===============================================
# MARK: l-main__overflowClip
=============================================== */

.l-main__overflowClip {
  overflow: hidden;
  overflow: clip;
}

/* ===============================================
# MARK: c-sectionTitle
=============================================== */

.c-sectionTitle {
  -webkit-margin-start: calc(var(--padding-sp) * -1);
          margin-inline-start: calc(var(--padding-sp) * -1);
  min-width: 188px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 0;
}

.c-sectionTitle::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: calc(100% + 4px);
  height: 100%;
  z-index: -1;
  background-color: var(--theme-main);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
}

.c-sectionTitle__text {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--theme-white);
  background-color: var(--theme-black);
  padding-inline: 16px 17px;
  padding-block: 0 3px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
}

/* MARK: modifier */

.c-sectionTitle[data-size=small] .c-sectionTitle__text {
  font-size: 22px;
}

/* ===============================================
# MARK: c-heading
=============================================== */

.c-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--theme-main-text);
}

/* ===============================================
# MARK: c-text
=============================================== */

.c-text {
  font-size: 14px;
  font-weight: 400;
  color: #030719;
  z-index: 3;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 3;
  position: relative;
  /* MARK: size */
  /* MARK: weight */
  /* MARK: color */
}
.c-accordion {
    padding-bottom: 30px;
}
.c-text[data-size="20"] {
  font-size: 20px;
}

.c-text[data-size="18"] {
  font-size: 18px;
  line-height: 1.3333333333;
}

.c-text[data-size="17"] {
  font-size: 17px;
}

.c-text[data-size="16"] {
  font-size: 16px;
}

.c-text[data-size="15"] {
  font-size: 15px;
}

.c-text[data-size="14"] {
  font-size: 14px;
}

.c-text[data-size="12"] {
  font-size: 12px;
}

.c-text[data-weight=bold] {
  font-weight: 700;
}

.c-text[data-color=white] {
  color: var(--theme-white);
}

.c-text[data-color=main] {
  color: var(--theme-main);
}

/* ===============================================
# MARK: c-image
=============================================== */

.c-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  --_overflow: var(--padding-sp);
}

.c-image img {
  aspect-ratio: 334/230;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.c-image[data-overflow-right] {
  -webkit-margin-start: var(--_overflow);
          margin-inline-start: var(--_overflow);
  -webkit-margin-end: calc(var(--_overflow) * -1);
          margin-inline-end: calc(var(--_overflow) * -1);
}

.c-image[data-overflow-right] .c-image__caption {
  font-size: 12px;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  -webkit-padding-end: var(--_overflow);
          padding-inline-end: var(--_overflow);
}

.c-image[data-overflow-left] {
  -webkit-margin-start: calc(var(--_overflow) * -1);
          margin-inline-start: calc(var(--_overflow) * -1);
  -webkit-margin-end: var(--_overflow);
          margin-inline-end: var(--_overflow);
}

.c-image[data-overflow-left] .c-image__caption {
  font-size: 12px;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  -webkit-padding-start: var(--_overflow);
          padding-inline-start: var(--_overflow);
}

/* ===============================================
# MARK: c-backtotop
=============================================== */

.c-backtotop {
  padding: 10px;
  display: block;
  width: 44px;
  height: 44px;
  background: radial-gradient(#fff 12px, transparent 12px);
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* ===============================================
# MARK: p-topFv
=============================================== */


.p-topFv__category {
  font-size: 12px;
  color: var(--theme-blue);
  margin-top: 20px;
  margin-bottom: 4px;
  padding-inline: 32px;

}
.p-topFv__category.top {
  margin-top: 60px;
}
@media (min-width: 420px) {
.p-topFv__category.top {
  margin-top: 90px;
}

}
.p-topFv__fv {
  width: calc(100% + var(--padding-sp) * 2);
  margin-inline: calc(var(--padding-sp) * -1);
}

.p-topFv__fv img {
  aspect-ratio: 375/809;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

/* ===============================================
# MARK: anchor
=============================================== */
.p-topFv__bg {
    position: relative;

}
.p-topFv__bg::after {
    content: "";
    position: absolute;
    bottom: -254px;
    left: 36%;
    -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
    display: block;
    width: 517px;
    height: 357px;
    background-image: url(../img/anjie-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

@media (min-width: 420px) {
  .p-topFv__bg::after {
    bottom: -320px;
    left: 54%;
    width: 680px;
    height: 460px;
  }
}
@media (min-width: 560px) {
  .p-topFv__bg::after {
    bottom: -332px;
    left: 49%;
    width: 765px;
    height: 464px;
  }
}
@media (min-width: 768px) {
  .p-topFv__bg::after {
    bottom: -333px;
  }
}
.p-topFv__anchorList {
  padding-block: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--theme-black);
  overflow: hidden;
}

.p-topFv__anchorTitle {
  padding-inline: 32px;
}

.p-topFv__anchorItem {
  padding-inline: 32px;
}
.p-topFv__anchorItem.komori {
  margin-bottom: 10px;
}
.p-topFv__anchorItem.saucydog {
  margin-bottom: 30px;
}
.p-topFv__anchorItem.nogizaka46 {
  margin-bottom: 30px;
}
.p-topFv__anchorItem.niziu {
  margin-bottom: 10px;
}
.p-topFv__anchorItem.leaders {
  margin-bottom: 10px;
}

.p-topFv__anchorLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: color var(--hover-transition), scale var(--hover-transition);
  transition: color var(--hover-transition), scale var(--hover-transition);
}

.p-topFv__anchorLink::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
  border: 1px solid #3D51E8;
}

.p-topFv__anchorLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  width: 100%;                /* 親に対して横幅いっぱい */
  max-height: 60px;
  
}

.p-topFv__anchorHead {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  align-self: stretch; 
  background-color: var(--theme-blue);
  width: 86px;
  display: flex;            
  align-items: center;
  justify-content: center;
}

.p-topFv__anchorTitle {
  color: var(--theme-blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  padding: 12px 10px;
}



/* hover */

/* ===============================================
# MARK: c-komori
=============================================== */

.c-komori__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-komori {
    padding: 24px 16px 0;
    background-color: var(--theme-black);
}
.c-komori__song {
    aspect-ratio: 193/156;
    max-width: 193px;
    margin: 0 auto;
}
.c-komori__fv {
    position: relative;
    z-index: 1;
}
.c-komori__fv::before {
    content: "";
    position: absolute;
    bottom: 1vh;
    left: 10%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
.c-komori__fvImage {
  width: 100%;
}
.c-komori__name {
  width: 100%;           
  display: block; 
}
.c-komori__name img {
  display: block;     
  margin-left: auto;     
  margin-right: 0;
  aspect-ratio: 82/16;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 82px;      
  margin: 0 auto;         
  
}
.c-komori__fvImage img {
  aspect-ratio: 763/1030;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.c-komori__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--theme-blue);
    text-align: center;
    
}
.c-komori__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 65px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    
    }

.c-komori__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-anjie
=============================================== */
.c-anjie__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 26px;
  max-width: 280px;
  margin: 0 auto;
}
.c-anjie__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-anjie {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    overflow: hidden;
    
}
.c-anjie__song {
    aspect-ratio: 75/351;
    max-width: 75px;
    margin: 0 auto;
}
.c-anjie__fv {
    position: relative;
    z-index: 1;
}
.c-anjie__sol-link {
    position: relative;
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
}
.c-anjie__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}

.c-anjie__fvImage {
  width: 100%;
}
.c-anjie__fvImage::before {
    content: "";
    position: absolute;
    bottom: -13vh;
    right: 9%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
.c-anjie__name {
  width: 100%;           
  display: block; 
}
.c-anjie__name img {
  display: block;     
  aspect-ratio: 88/15;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 80px;         

}

.c-anjie__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 0;
    padding-bottom: 65px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    
    }

.c-anjie__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-anjie__jacket {
    position: relative;
}
.c-anjie__jacket::after {
  content: "";
  position: absolute;
  bottom: -70px;          /* ← Yは bottom だけで決める */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);   /* ← X だけ中央寄せ */
  display: block;
  width: 517px;
  height: 357px;
  background: url(../img/anjie-bg.png) center/contain no-repeat;
  z-index: -3;
}

@media (min-width: 420px) {
  .c-anjie__jacket::after {
    bottom: -110px;
    left: 46%;
    width: 668px;
    height: 435px;
  }
}
@media (min-width: 560px) {
    .c-anjie__jacket::after {
        bottom: -120px;
        left: 51%;
        width: 765px;
        height: 464px;
    }
}
@media (min-width: 768px) {
    .c-anjie__jacket::after {
        bottom: -110px;
        left: 51%;
        width: 765px;
        height: 464px;
    }
}
/* ===============================================
# MARK: c-saucydog
=============================================== */

.c-saucydog__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-saucydog {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-saucydog__fv {
    position: relative;
    z-index: 1;
}
.c-saucydog__fv::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 7%;
    display: block;
    width: 60px;
    height: auto;  
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 460px) and (max-width: 768px) {
.c-saucydog__fv::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 12%;
    display: block;
    width: 80px;
    height: auto;  
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-saucydog {
    padding: 18px 0 0;
}
}
.c-saucydog__text {
    position: relative;
}
.c-saucydog__text::after {
    content: "";
    position: absolute;
    bottom: -22vh;
    left: -67%;
    display: block;
    width: 366px;
    height: 276px;
    background-image: url(../img/saucy-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -3;

}
@media (min-width: 420px) {
  .c-saucydog__text::after {
    content: "";
    position: absolute;
    bottom: -28vh;
    left: -120%;
    display: block;
    width: 550px;
    height: 410px;
    z-index: -3;
  }
}
@media (min-width: 768px) {
  .c-saucydog::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -29%;
    display: block;
    width: 325px;
    height: 226px;
    z-index: -3;
  }
}
.c-saucydog__song {
    aspect-ratio: 380/156;
    max-width: 193px;
    margin: 0 auto;
}

.c-saucydog__fvImage {
  width: 100%;
}

.c-saucydog__fvImage img {
  aspect-ratio: 380/686;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.c-saucydog__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--theme-blue);
    text-align: center;
    margin-top: 30px;
}
.c-saucydog__name span {
    font-size: 13px;
}
.c-saucydog__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 65px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-saucydog__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-saucydog__sol-link {
    position: relative;
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
}
.c-saucydog__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-kaki
=============================================== */
.c-kaki__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding-top: 170px;
}
.c-kaki__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;  /* 旧WebKit用 */
      -ms-flex-pack: center; /* IE10用 */
          justify-content: center; /* 標準 */
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;
}
.c-kaki__name {
  width:20%;
  -webkit-box-pack: center;  /* 旧WebKit用 */
      -ms-flex-pack: center; /* IE10用 */
        justify-content: center; /* 標準 */
  -webkit-box-align: center; 
      -ms-flex-align: center; 
        align-items: center;
}
.c-kaki__name img {
  aspect-ratio: 39/125;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 39px;
  
}
.c-kaki__text {
    width:76%;
}
.c-kaki__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-kaki {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-kaki__fv {
    position: relative;
    z-index: 1;
}
.c-kaki__fv::before {
    content: "";
    position: absolute;
    bottom: -15vh;
    right: 7%;
    display: block;
    width: 60px;
    height: auto;
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 460px) and (max-width: 768px) {
.c-kaki__fv::before {
    content: "";
    position: absolute;
    bottom: -15vh;
    right: 7%;
    display: block;
    width: 70px;
    height: auto;  
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-kaki {
    padding: 18px 0 0;
    
}
}
.c-kaki__text {
    position: relative;
}
.c-kaki__song {
    aspect-ratio: 206/207;
    max-width: 193px;
    margin: 0 auto;
}

.c-kaki__fvImage {
  width: 100%;
  position: relative;
}
.c-kaki__fvImage::after {
    content: "";
    position: absolute;
    bottom: -14vh;
    left: 4%;
    display: block;
    width: 206px;
    height: 207px;
    background-image: url(../img/kaki-song.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.c-kaki__fvImage img {
  aspect-ratio: 760/637;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.c-kaki__name span {
    font-size: 13px;
}
.c-kaki__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 65px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-kaki__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-kaki__sol-link {
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}
.c-kaki__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-miyase
=============================================== */
.c-miyase__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
}
.c-miyase__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-miyase__name {
  width:20%;
  -webkit-box-pack: center;  /* 旧WebKit用 */
      -ms-flex-pack: center; /* IE10用 */
        justify-content: center; /* 標準 */
  -webkit-box-align: center; 
      -ms-flex-align: center; 
        align-items: center;
}
.c-miyase__name img {
  aspect-ratio: 39/125;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 39px;
  
}
.c-miyase__text {
    width:74%;
}
.c-miyase__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-miyase {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-miyase__fv {
    position: relative;
    z-index: 1;
}
.c-miyase__fv::before {
    content: "";
    position: absolute;
    bottom: -20vh;
    right: 6%;
    display: block;
    width: 54px;
    height: auto;
    aspect-ratio: 161 / 987;
    background: url(../img/blue-text02.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 460px) and (max-width: 768px) {
.c-miyase__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    right: 7%;
    display: block;
    width: 70px;
    height: auto;  
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-miyase {
    padding: 18px 0 0;
    
}
}
.c-miyase__text {
    position: relative;
}

@media (min-width: 600px) {
  .c-miyase::after {
    content: "";
    position: absolute;
    top: 90vh;
    right: -20%;
    display: block;
    width: 350px;
    height: 256px;
  }
}
@media (min-width: 768px) {
  .c-miyase::after {
    top: 67vh;
    right: -37%;
    display: block;
    width: 295px;
    height: 256px;
  }
}
.c-miyase__song {
    aspect-ratio: 206/207;
    max-width: 193px;
    margin: 0 auto;
}

.c-miyase__fvImage {
  width: 100%;
  position: relative;
}
.c-miyase__fvImage img {
  aspect-ratio: 380/526;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.c-miyase__name span {
    font-size: 13px;
}
.c-miyase__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 65px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-miyase__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-miyase__sol-link {
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}
.c-miyase__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-nagi
=============================================== */
.c-nagi__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-nagi__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;  /* 旧WebKit用 */
      -ms-flex-pack: center; /* IE10用 */
          justify-content: center; /* 標準 */
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;
}
.c-nagi__name {
  width: 100%;           
  display: block; 
}
.c-nagi__name img {
  display: block;     
  margin-left: auto;     
  margin-right: 0;
  aspect-ratio: 108/25;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 108px;      
  width: 100%;           
  
}
.c-nagi__text {
    width: 100%;
    margin-top: 40px;
}
.c-nagi__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-nagi {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-nagi__fv {
    position: relative;
    z-index: 1;
}
.c-nagi__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    right: 7%;
    display: block;
    width: 60px;
    height: auto;
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 460px) and (max-width: 768px) {
.c-nagi__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    right: 7%;
    display: block;
    width: 70px;
    height: auto;  
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-nagi {
    padding: 18px 0 0;
}
}

.c-nagi__song {
    aspect-ratio: 206/138;
    max-width: 206px;
    text-align: left;
}
.c-nagi__song img {
    width: 100%;
    text-align: left;
}
.c-nagi__fvImage {
  width: 100%;
  position: relative;
}


.c-nagi__name span {
    font-size: 13px;
}
.c-nagi__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-nagi__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-nagi__sol-link {
    position: relative;
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
}
.c-nagi__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-superbeaver
=============================================== */
.c-superbeaver__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-superbeaver__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;  /* 旧WebKit用 */
      -ms-flex-pack: center; /* IE10用 */
          justify-content: center; /* 標準 */
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;
}
.c-superbeaver__name {
  width: 100%;           
  display: block; 
}
.c-superbeaver__name img {
  display: block;     
  text-align: left;   
  margin-top: 16px;
  aspect-ratio: 134/15;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 150px;      
  width: 100%;           
  
}
.c-superbeaver__text {
    width: 100%;
    margin-top: 20px;
}
.c-superbeaver__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-superbeaver {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-superbeaver__fv {
    position: relative;
    z-index: 1;
}
.c-superbeaver__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    right: 7%;
    display: block;
    width: 60px;
    height: auto;
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 460px) and (max-width: 768px) {
.c-superbeaver__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    right: 7%;
    display: block;
    width: 70px;
    height: auto;  
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-superbeaver {
    padding: 18px 0 0;
}
}

.c-superbeaver__song {
    aspect-ratio: 215/133;
    max-width: 215px;
    text-align: left;
}
.c-superbeaver__song img {
    width: 100%;
    text-align: left;
}
.c-superbeaver__fvImage {
  width: 100%;
  position: relative;
}


.c-superbeaver__name span {
    font-size: 13px;
}
.c-superbeaver__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-superbeaver__jacket img{
    width: 80px;
    height: auto;
    margin-right: 20px;
}
.c-superbeaver__sol-link {
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}
.c-superbeaver__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-ini
=============================================== */
.c-ini__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-ini__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;  /* 旧WebKit用 */
      -ms-flex-pack: center; /* IE10用 */
          justify-content: center; /* 標準 */
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;
}
.c-ini__name {
  width: 100%;  
}
.c-ini__name img {
  display: block;    
  margin-left: auto;     
  margin-right: 0;  
  margin-top: 16px;
  aspect-ratio: 87/15;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 87px;      
  width: 100%;           
  
}
.c-ini__text {
    width: 100%;
    margin-top: 20px;
    position:relative;
    z-index: 4;
}
.c-ini__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-ini {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}

.c-ini__fv {
    position: relative;
    z-index: 1;
}
.c-ini__fv::before {
    content: "";
    position: absolute;
    bottom: -5vh;
    left: 10%;
    display: block;
    width: 54px;
    height: auto;
    aspect-ratio: 54 / 264;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 460px) and (max-width: 768px) {
.c-ini__fv::before {
    content: "";
    position: absolute;
    bottom: -5vh;
    right: 7%;
    display: block;
    width: 70px;
    height: auto;  
    aspect-ratio: 81 / 391;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (max-width: 360px) {
.c-ini__fv::before {
    bottom: -6vh;
    right: 7%;
    width: 46px;
}
}
@media (min-width: 768px) {
    .c-ini {
    padding: 18px 0 0;
}
}

.c-ini__song {
    aspect-ratio: 280/80;
    max-width: 280px;
    text-align: left;
    margin-top: 30px;
}
.c-ini__song img {
    width: 100%;
    text-align: left;
}
.c-ini__fvImage {
  width: 100%;
  position: relative;
}


.c-ini__name span {
    font-size: 13px;
}
.c-ini__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-ini__jacket img{
    width: 80px;
    height: auto;
    margin-right: 20px;
}
.c-ini__jacket::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -45%;
    display: block;
    width: 600px;
    max-width: 600px;
    height: auto;
    aspect-ratio: 900 / 651;
    background: url(../img/ini-bg.png) center / contain no-repeat;
    z-index: -2;
    animation: tilt 10s ease-in-out infinite;
}
@keyframes tilt {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
@media (min-width: 420px) {
.c-ini__jacket::after {
    content: "";
    position: absolute;
    bottom: -70px;
    right: -45%;
    display: block;
    width: 700px;
    max-width: 700px;
    height: auto;
    aspect-ratio: 900 / 651;
    background: url(../img/ini-bg.png) center / contain no-repeat;
}
}
@media (min-width: 470px) {
.c-ini__jacket::after {
    content: "";
    position: absolute;
    bottom: -160px;
    right: -55%;
    display: block;
    width: 800px;
    max-width: 800px;
    height: auto;
    aspect-ratio: 900 / 651;
    background: url(../img/ini-bg.png) center / contain no-repeat;
}
}
@media (min-width: 768px) {
.c-ini__jacket::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -45%;
    display: block;
    width: 600px;
    max-width: 600px;
    height: auto;
    aspect-ratio: 900 / 651;
    background: url(../img/ini-bg.png) center / contain no-repeat;
}
}
.c-ini__sol-link {
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
}
.c-ini__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-rio
=============================================== */
.c-rio__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-rio__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;  /* 旧WebKit用 */
      -ms-flex-pack: flex-end; /* IE10用 */
          justify-content: flex-end; /* 標準 */

}
.c-rio__name {
  width: 100%;           
  display: block; 
}
.c-rio__name img {
  display: block;     
  text-align: left;   
  margin-top: 16px;
  aspect-ratio: 134/15;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 150px;      
  width: 100%;           
  
}
.c-rio__text {
    width: 86%;
    padding-left: 20%;
    margin-top: 20px;
}
.c-rio__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-rio {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-rio__fv {
    position: relative;
    z-index: 1;
}
.c-rio__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    left: 6%;
    display: block;
    width: 84px;
    height: auto;
    aspect-ratio: 84 / 300;
    background: url(../img/blue-text03.png) center / contain no-repeat;
    z-index: 2;
}
@media (max-width: 330px) {
.c-rio__fv::before {
    left: 2%;
    width: 72px;
    height: auto;
    aspect-ratio: 72 / 270;
}
}
@media (min-width: 460px) and (max-width: 768px) {
.c-rio__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    left: 7%;
    display: block;
    width: 86px;
    height: auto;  
    aspect-ratio: 86 / 306;
    background: url(../img/blue-text03.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-rio {
    padding: 18px 0 0;
}
}

.c-rio__song {
    aspect-ratio: 191/77;
    max-width: 191px;
    margin-left: auto;     
    margin-right: 0;
}
.c-rio__song img {
    width: 100%;

}
.c-rio__fvImage {
  width: 100%;
  position: relative;
}


.c-rio__name span {
    font-size: 13px;
}
.c-rio__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-rio__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-rio__sol-link {
    position: relative;
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
}
.c-rio__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: アニメーション
=============================================== */
/* 到着スクロール中は装飾アニメを止める（必要な対象を並べる） */
.anim-paused .c-mayuka__fv::after,
.anim-paused .c-miihi__text::before {
  animation-play-state: paused !important;
}

/* 固定ヘッダーで隠れるのを防ぐ（必要なら数値調整） */
:target { scroll-margin-top: 64px; }

/* 競合回避：JSで速度制御するのでCSSのスムスクはオフ */
html { scroll-behavior: auto; }
/* ===============================================
# MARK: c-maya
=============================================== */
.c-maya__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-maya__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;  /* 旧WebKit用 */
      -ms-flex-pack: flex-end; /* IE10用 */
          justify-content: flex-end; /* 標準 */

}
.c-maya__name {
  width: 100%;           
  display: block; 
}
.c-maya__name img {
  display: block;     
  margin: 0 auto;   
  margin-top: 16px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-maya__text {
    width: 100%;
    padding-right: 22%;
    margin-top: 40px;
}
.c-maya__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-maya {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-maya__fv {
    position: relative;
    z-index: 1;
}
.c-maya__fv::before {
    content: "";
    position: absolute;
    bottom: -3vh;
    left: 7%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (max-width: 340px) {
    .c-maya__fv::before {
    bottom: -4vh;
    left: 7%;
    display: block;
    width: 50px;
    max-width: 50px;
    height: auto;
    aspect-ratio: 50 / 260;
    }
}
@media (min-width: 460px) and (max-width: 768px) {
.c-maya__fv::before {
    content: "";
    position: absolute;
    bottom: -3vh;
    left: 7%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-maya {
    padding: 18px 0 0;
}
}

.c-maya__song {
    aspect-ratio: 62/442;
    max-width: 62px;
    margin-left: auto;     
    margin-right: 0;
}
.c-maya__song img {
    width: 100%;

}
.c-maya__fvImage {
  width: 100%;
  position: relative;
}
.c-maya__fvImage::after {
    content: "";
    position: absolute;
    bottom: -42vh;
    right: 7%;
    display: block;
    width: 62px;
    height: 442px;
    background-image: url(../img/maya-song.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.c-maya__name span {
    font-size: 13px;
}
.c-maya__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-maya__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-riku
=============================================== */
.c-riku__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-riku__columns-box {
    width: 70%;
    margin-left: 30%;
    text-align:left;

}
.c-riku__name {
  width: 100%;           
  display: block; 
}
.c-riku__name img {
  display: block;     
  margin-top: 16px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-riku__text {
    width: 100%;

}
.c-riku__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-riku {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-riku__fv {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .c-riku {
    padding: 18px 0 0;
}
}

.c-riku__song {
    aspect-ratio: 62/442;
    max-width: 62px;
    margin-left: auto;     
    margin-right: 0;
}
.c-riku__song img {
    width: 100%;

}
.c-riku__fvImage {
  width: 100%;
  position: relative;
}
.c-riku__fvImage::after {
    content: "";
    position: absolute;
    bottom: -37vh;
    left: 10%;
    display: block;
    width: 52px;
    height: 512px;
    background-image: url(../img/blue-text04.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

@media (min-width: 440px) {
.c-riku__fvImage::after {
    content: "";
    position: absolute;
    bottom: -28vh;
    left: 10%;
} 
}
.c-riku__name span {
    font-size: 13px;
}
.c-riku__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-top: 30px;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-riku__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-ayaka
=============================================== */
.c-ayaka__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.c-ayaka__name {
  width: 100%;           
  display: block; 
  height: 24px;
}
.c-ayaka__name img {
  display: block;     
  margin-left: auto;
  margin-right: 10px;
  margin-top: 20px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-ayaka__text {
    width: 100%;
    margin-top: 20px;
}
.c-ayaka__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-ayaka {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-ayaka__fv {
    position: relative;
    z-index: 1;
}
.c-ayaka__fv::before {
    content: "";
    position: absolute;
    top: -6px;
    right: -1px;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}

@media (min-width: 768px) {
    .c-ayaka {
    padding: 18px 0 0;
}
}

.c-ayaka__song {
    aspect-ratio: 200/56;
    max-width: 200px;
    margin: 0 auto;
}
.c-ayaka__song img {
    width: 100%;

}
.c-ayaka__fvImage {
  width: 100%;
  position: relative;
}

.c-ayaka__name span {
    font-size: 13px;
}
.c-ayaka__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-ayaka__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-mako
=============================================== */
.c-mako__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.c-mako__name {
  width: 100%;           
  display: block; 
  height: 24px;
}
.c-mako__name img {
  display: block;     
  margin-left: auto;
  margin-right: 10px;
  margin-top: 20px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-mako__text {
    width: 100%;
}
.c-mako__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-mako {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-mako__fv {
    position: relative;
    z-index: 1;
}
.c-mako__fv::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 7%;
    display: block;
    width: 56px;
    max-width: 56px;
    height: auto;
    aspect-ratio: 56 / 282;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
.c-mako__fv::after {
    content: "";
    position: absolute;
    top: 94%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
    width: 100px;
    height: auto;
    aspect-ratio: 100 / 18;
    background: url(../img/mako-name.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 768px) {
    .c-mako {
    padding: 18px 0 0;
}
}

.c-mako__song {
    aspect-ratio: 200/56;
    max-width: 200px;
    margin: 0 auto;
}
.c-mako__song img {
    width: 100%;

}
.c-mako__fvImage {
  width: 100%;
  position: relative;
}

.c-mako__name span {
    font-size: 13px;
}
.c-mako__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
    }
.c-mako__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-nina
=============================================== */
.c-nina__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.c-nina__name {
  width: 100%;           
  display: block; 
  height: 24px;
  padding-bottom: 50px;
}
.c-nina__name img {
  display: block;     
  margin-left: auto;
  margin-right: 10px;
  margin-top: 20px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-nina__text {
    width: 100%;
}
.c-nina__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-nina {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-nina__fv {
    position: relative;
    z-index: 1;
}


@media (min-width: 768px) {
    .c-nina {
    padding: 18px 0 0;
}
}

.c-nina__song {
    aspect-ratio: 200/56;
    max-width: 200px;
    margin: 0 auto;
}
.c-nina__song img {
    width: 100%;

}
.c-nina__fvImage {
  width: 100%;
  position: relative;
}

.c-nina__name span {
    font-size: 13px;
}
.c-nina__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
    }
.c-nina__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-nina__name {
  width: 100%;           
  display: block; 
}
.c-nina__name img {
  display: block;     
  margin: 0 auto;   
  margin-top: 16px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
/* ===============================================
# MARK: c-rima
=============================================== */
.c-rima__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.c-rima__name {
  width: 100%;           
  display: block; 
  height: 24px;
  padding-bottom: 50px;
}
.c-rima__name img {
  display: block;     
  margin-left: auto;
  margin-right: 10px;
  margin-top: 20px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-rima__text {
    width: 100%;
}
.c-rima__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-rima {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-rima__fv {
    position: relative;
    z-index: 1;
}
.c-rima__fv::before {
    content: "";
    position: absolute;
    bottom: 10vh;
    right: -10%;
    display: block;
    width: 280px;
    max-width: 280px;
    height: auto;
    aspect-ratio: 280 / 90;
    background: url(../img/rima-song.png) center / contain no-repeat;
    z-index: 2;
}
@media (min-width: 380px) {
.c-rima__fv::before {
    content: "";
    position: absolute;
    bottom: 15vh;
    right: -6%;
    display: block;
    width: 320px;
    max-width: 320px;
    height: auto;
    aspect-ratio: 320 / 110;
    background: url(../img/rima-song.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 460px) {
.c-rima__fv::before {
    content: "";
    position: absolute;
    bottom: 16vh;
    right: -4%;
    display: block;
    width: 380px;
    max-width: 380px;
    height: auto;
    aspect-ratio: 380 / 130;
    background: url(../img/rima-song.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
.c-rima__fv::before {
    content: "";
    position: absolute;
    bottom: 14vh;
    right: -3%;
    display: block;
    width: 280px;
    max-width: 280px;
    height: auto;
    aspect-ratio: 280 / 90;
    background: url(../img/rima-song.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-rima {
    padding: 18px 0 0;
}
}

.c-rima__song {
    aspect-ratio: 200/56;
    max-width: 200px;
    margin: 0 auto;
}
.c-rima__song img {
    width: 100%;

}
.c-rima__fvImage {
  width: 100%;
  position: relative;
}

.c-rima__name span {
    font-size: 13px;
}
.c-rima__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
    }
.c-rima__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-rima__name {
  width: 100%;           
  display: block; 
}
.c-rima__name img {
  display: block;     
  margin: 0 auto;   
  margin-top: 16px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
/* ===============================================
# MARK: c-mayuka
=============================================== */
.c-mayuka__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-mayuka__jacket::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 4%;
    display: block;
    width: 63px;
    height: 317px;
    background-image: url(../img/mayuka-song.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
  z-index: -2;
}
.c-mayuka__name {
  width: 100%;           
  display: block; 
  height: 24px;
}
.c-mayuka__name img {
  display: block;     
  margin-left: auto;
  margin-right: 10px;
  margin-top: 20px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-mayuka__text {
    width: 60%;
    margin-top: 20px;
    margin: 0 auto;
}
.c-mayuka__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-mayuka {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-mayuka__fv {
    position: relative;
    z-index: 1;
}
.c-mayuka__fv::before {
    content: "";
    position: absolute;
    bottom: -7vh;
    left: 10%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
.c-mayuka__fv::after {
    content: "";
    position: absolute;
    bottom: -9vh;
    right: -14%;
    display: block;
    width: 202px;
    max-width: 202px;
    height: auto;
    aspect-ratio: 202 / 364;
    background: url(../img/mayuka-bg.png) center / contain no-repeat;
    z-index: 0;
    animation: floatY 5s ease-in-out infinite;
    will-change: transform; /* SafariやGPU支援に効きやすい */
}
/* 上下にふわふわ */
@keyframes floatY {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); } 
    100% { transform: translateY(0); }
}

@media (min-width: 420px) {
.c-mayuka__fv::after {
    content: "";
    position: absolute;
    bottom: -4vh;
    right: -10%;
    display: block;
    width: 180px;
    max-width: 180px;
    height: auto;
    aspect-ratio: 180 / 358;
    background: url(../img/mayuka-bg.png) center / contain no-repeat;
    z-index: 0;
}
}
@media (min-width: 600px) {
.c-mayuka__fv::after {
    content: "";
    position: absolute;
    bottom: 10vh;
    right: -7%;
    display: block;
    width: 202px;
    max-width: 202px;
    height: auto;
    aspect-ratio: 202 / 364;
    background: url(../img/mayuka-bg.png) center / contain no-repeat;
    z-index: 0;
}
}
@media (min-width: 768px) {
.c-mayuka__fv::after {
    content: "";
    position: absolute;
    bottom: -10vh;
    right: -10%;
    display: block;
    width: 180px;
    max-width: 180px;
    height: auto;
    aspect-ratio: 180 / 358;
    background: url(../img/mayuka-bg.png) center / contain no-repeat;
    z-index: 0;
}
}
@media (min-width: 768px) {
    .c-mayuka {
    padding: 18px 0 0;
}
}

.c-mayuka__song {
    aspect-ratio: 200/56;
    max-width: 200px;
    margin: 0 auto;
}
.c-mayuka__song img {
    width: 100%;

}
.c-mayuka__fvImage {
  width: 100%;
  position: relative;
}

.c-mayuka__name span {
    font-size: 13px;
}
.c-mayuka__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
    }
.c-mayuka__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-miihi
=============================================== */
.c-miihi__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.c-miihi__name {
  width: 100%;           
  display: block; 
  height: 24px;
}
.c-miihi__name img {
  display: block;     
  margin-left: auto;
  margin-right: 10px;
  margin-top: 20px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-miihi__columns-box {
    width: 70%;
    margin-left: auto;
    margin-right: 0;
    margin-top: 60px;
    position:relative;
    z-index:3;
}
.c-miihi__text::before {
    content: "";
    position: absolute;
    top: 5%;
    left: -46%;
    display: block;
    width: 100px;
    max-width: 100px;
    height: auto;
    aspect-ratio: 100 / 150;
    background: url(../img/miihi-bg.png) center / contain no-repeat;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
    will-change: transform;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
@media (min-width: 460px) {
.c-miihi__text::before {
    content: "";
    position: absolute;
    top: 6%;
    left: -43%;
    display: block;
    width: 130px;
    max-width: 130px;
    height: auto;
    aspect-ratio: 130 / 180;
    background: url(../img/miihi-bg.png) center / contain no-repeat;
    z-index: -1;

}
}
@media (min-width: 768px) {
.c-miihi__text::before {
    content: "";
    position: absolute;
    top: 1%;
    left: -46%;
    display: block;
    width: 100px;
    max-width: 100px;
    height: auto;
    aspect-ratio: 100 / 150;
    background: url(../img/miihi-bg.png) center / contain no-repeat;
}
}
.c-miihi__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-miihi {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-miihi__fv {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .c-miihi {
    padding: 18px 0 0;
}
}

.c-miihi__song {
    aspect-ratio: 328/100;
    max-width: 328px;
    position: relative;
    top: 50%;
    left: 50%;
   -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);

}
.c-miihi__song img {
    width: 100%;

}
.c-miihi__fvImage {
  width: 100%;
  position: relative;
}
.c-miihi__fvImage::after {
    content: "";
    position: absolute;
    bottom: -130px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    display: block;
    width: 318px;
    max-width: 318px;
    height: auto;
    aspect-ratio: 318 / 140;
    background: url(../img/miihi-song.png) center / contain no-repeat;
    z-index: 0;
    
}
@media (min-width: 460px) {
.c-miihi__fvImage::after {
    content: "";
    position: absolute;
    bottom: -190px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    display: block;
    width: 400px;
    max-width: 400px;
    height: auto;
    aspect-ratio: 400 / 230;
    background: url(../img/miihi-song.png) center / contain no-repeat;
    z-index: 0;
}
}
@media (min-width: 768px) {
.c-miihi__fvImage::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    display: block;
    width: 336px;
    max-width: 336px;
    height: auto;
    aspect-ratio: 336 / 120;
    background: url(../img/miihi-song.png) center / contain no-repeat;
    z-index: 0;
}
}
.c-miihi__name span {
    font-size: 13px;
}
.c-miihi__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
    margin-top: 20px;
    position:relative;
    z-index: 3;
    
    }
.c-miihi__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-suzuka
=============================================== */
.c-suzuka__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-suzuka__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}
.c-suzuka__name {
  width: 100%;           
  display: block; 
}
.c-suzuka__name img {
  display: block;     
  text-align: left;   
  margin-top: 16px;
  aspect-ratio: 134/15;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 150px;      
  width: 100%;           
  
}
.c-suzuka__text {
    width: 76%;
    margin-top: 36px;
}
.c-suzuka__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-suzuka {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-suzuka__fv {
    position: relative;
    z-index: 1;
}
.c-suzuka__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    right: 6%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (max-width: 330px) {
.c-suzuka__fv::before {
    left: 2%;
    width: 72px;
    height: auto;
    aspect-ratio: 72 / 270;
}
}
@media (min-width: 460px) and (max-width: 768px) {
.c-suzuka__fv::before {
    content: "";
    position: absolute;
    bottom: -17vh;
    right: 6%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-suzuka {
    padding: 18px 0 0;
}
}

.c-suzuka__song {
    aspect-ratio: 200/118;
    max-width: 230px;
    margin-right: auto;     
    margin-left: 0;
}
.c-suzuka__song img {
    width: 100%;

}
.c-suzuka__fvImage {
  width: 100%;
  position: relative;
}


.c-suzuka__name span {
    font-size: 13px;
}
.c-suzuka__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-suzuka__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-suzuka__sol-link {
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}
.c-suzuka__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-mizyu
=============================================== */
.c-mizyu__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-mizyu__columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}
.c-mizyu__name {
  width: 100%;           
  display: block; 
}
.c-mizyu__name img {
  display: block;     
  text-align: left;   
  margin-top: 16px;
  aspect-ratio: 134/15;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 150px;      
  width: 100%;           
  
}
.c-mizyu__text {
    width: 68%;
    margin-top: 20px;
}
.c-mizyu__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-mizyu {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-mizyu__fv {
    position: relative;
    z-index: 1;
}
.c-mizyu__text::before {
    content: "";
    position: absolute;
    top: 0;
    right: -43%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (max-width: 330px) {
.c-mizyu__fv::before {
    left: 2%;
    width: 72px;
    height: auto;
    aspect-ratio: 72 / 270;
}
}

@media (min-width: 768px) {
    .c-mizyu {
    padding: 18px 0 0;
}
}

.c-mizyu__song {
    aspect-ratio: 260/97;
    max-width: 260px;
    margin-top: 20px;
    margin-right: auto;     
    margin-left: 0;
}
.c-mizyu__song img {
    width: 100%;

}
.c-mizyu__fvImage {
  width: 100%;
  position: relative;
}


.c-mizyu__name span {
    font-size: 13px;
}
.c-mizyu__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-mizyu__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
.c-mizyu__sol-link {
    position: relative;
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
}
.c-mizyu__sol-link img {
    display: block;
    width: 78px;
    height: auto;
    aspect-ratio: 78 / 31;
}
/* ===============================================
# MARK: c-rin
=============================================== */
.c-rin__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.c-rin__columns-box {
    width: 70%;
    margin-left: 30%;
    text-align:left;

}
.c-rin__song {
  width: 100%;           
  display: block; 
}
.c-rin__song img {
  display: block;     
  margin-top: 16px;
  aspect-ratio: 186/27;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;     
  width: 100%;           
  
}
.c-rin__text {
    width: 100%;

}
.c-rin__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-rin {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-rin__fv {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .c-rin {
    padding: 18px 0 0;
}
}

.c-rin__fvImage {
  width: 100%;
  position: relative;
}
.c-rin__fvImage::after {
    content: "";
    position: absolute;
    bottom: -42vh;
    left: 10%;
    display: block;
    width: 55px;
    height: 470px;
    background-image: url(../img/blue-text05.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

@media (min-width: 440px) {
.c-rin__fvImage::after {
    content: "";
    position: absolute;
    bottom: -35vh;
    left: 10%;
} 
}
.c-rin__name span {
    font-size: 13px;
}
.c-rin__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    padding-top: 30px;
    padding-bottom: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
.c-rin__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: c-miihi
=============================================== */
.c-miihi__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.c-kanon__name {
  width: 100%;           
  display: block; 
  height: 24px;
}
.c-kanon__name img {
  display: block;     
  margin-left: auto;
  margin-right: 10px;
  margin-top: 20px;
  aspect-ratio: 90/14;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 90px;      
  width: 100%;           
  
}
.c-kanon__columns-box {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-top: 40px;
    position:relative;
    z-index:3;
}
.c-kanon__fvInner {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
  position: relative;
  z-index: 1;
}
.c-kanon {
    padding: 18px 16px 0;
    background-color: var(--theme-black);
    position: relative;
    z-index: 2;
    overflow:hidden;
}
.c-kanon__fv {
    position: relative;
    z-index: 1;
}
.c-kanon__fv::before {
    content: "";
    position: absolute;
    bottom: -9vh;
    left: 7%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
@media (max-width: 340px) {
    .c-kanon__fv::before {
    bottom: -4vh;
    left: 7%;
    display: block;
    width: 50px;
    max-width: 50px;
    height: auto;
    aspect-ratio: 50 / 260;
    }
}
@media (min-width: 460px) and (max-width: 768px) {
.c-kanon__fv::before {
    content: "";
    position: absolute;
    bottom: -3vh;
    left: 7%;
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    aspect-ratio: 58 / 290;
    background: url(../img/blue-text01.png) center / contain no-repeat;
    z-index: 2;
}
}
@media (min-width: 768px) {
    .c-kanon {
    padding: 18px 0 0;
}
}

.c-kanon__song {
    aspect-ratio: 186/100;
    max-width: 186px;
    margin-left: auto;     
    margin-right: 0;
    margin-top: 10px;
    

}
.c-kanon__song img {
    width: 100%;   

}
.c-kanon__fvImage {
  width: 100%;
  position: relative;
}

.c-kanon__name span {
    font-size: 13px;
}
.c-kanon__jacket {
    display: flex;
    font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 40px;
    margin-top: 40px;
    position:relative;
    z-index: 3;
    
    }
.c-kanon__jacket img{
    width: 73px;
    height: auto;
    margin-right: 20px;
}
/* ===============================================
# MARK: p-topBackside
=============================================== */

/* ===============================================
# MARK: p-topMovie
=============================================== */

.p-topThanks__message {
  position: relative;
  z-index: 1;
  width: 88.0466472303%;
  margin-inline: auto;
}

.p-topThanks__message img {
  aspect-ratio: 302/191;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.p-topThanks__image {
  width: 100%;
  -webkit-margin-before: -16.3265306122%;
          margin-block-start: -16.3265306122%;
}

.p-topThanks__image img {
  aspect-ratio: 375/644;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

/* ===============================================
# MARK: p-topFooter
=============================================== */

.p-topFooter {
    background-color: var(--theme-black);
    text-align :center;
    font-size: 14px;
    line-height: 2.0;
    font-weight: 400;
    font-style: normal;
    color: var(--theme-white);
    padding: 45px 0 20px 0;
}
.p-topFooter__inner {
    margin: 0 auto;
    max-width: 280px;
}
.p-topFooter__text {
    font-family: "Zen Old Mincho", serif;
}
.p-topFooter__logo {
    margin: 0 auto;
    max-width: 80px;
    padding: 26px 0;
}
.p-topFooter__copy {
    color: var(--theme-white);
    font-size: 10px;
}
/* ===============================================
# MARK: p-topPromotion
=============================================== */



.u-only-laptop {
  display: none !important;
}

.u-only-laptop-block {
  display: none !important;
}

.u-only-laptop-grid {
  display: none !important;
}

.u-only-laptop-flex {
  display: none !important;
}

.u-only-pc {
  display: none !important;
}

.u-only-pc-block {
  display: none !important;
}

.u-only-pc-grid {
  display: none !important;
}

.u-only-pc-flex {
  display: none !important;
}

.u-only-mobile {
  display: inline-block !important;
}

.u-only-mobile-block {
  display: block !important;
}

.u-only-mobile-grid {
  display: grid !important;
}

.u-only-mobile-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-only-tablet-mobile {
  display: inline-block !important;
}

.u-only-tablet-mobile-block {
  display: block !important;
}

.u-only-tablet-mobile-grid {
  display: grid !important;
}

.u-only-tablet-mobile-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-hidden {
  display: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  outline: none !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.u-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.u-alternative:where(:lang(ja)) {
  position: fixed !important;
  inset-block-start: 0 !important;
  inset-inline-start: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  contain: strict !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* ===============================================
# MARK: u-text
=============================================== */

/* ===============================================
# MARK: u-other
=============================================== */

.u-space-s {
  padding-block: 0.5em;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.4466546112vw;
  }

  _::-webkit-full-page-media,
  _:future,
  :root rt {
    scale: 0.8;
  }

  .l-body__grid {
    grid-template-columns: 1fr auto;
  }

  .l-body__left {
    display: block;
  }
  .l-body__right {
    display: block;
  }
  .l-body__center {
    width: 375px;
  }

  .l-header__inner {
    -webkit-padding-end: 16px;
            padding-inline-end: 16px;
  }

  .l-inner {
    max-width: calc(var(--inner) + var(--padding-pc) * 2);
    padding-inline: var(--padding-pc);
  }

  .l-main__slider {
    margin-inline: calc(var(--padding-pc) * -1);
  }

  .c-sectionTitle {
    -webkit-margin-start: calc(var(--padding-pc) * -1);
            margin-inline-start: calc(var(--padding-pc) * -1);
  }

  .c-image {
    --_overflow: var(--padding-pc);
  }

  .p-topFv__fv {
    width: calc(100% + var(--padding-pc) * 2);
    margin-inline: calc(var(--padding-pc) * -1);
  }

  .u-only-pc {
    display: inline-block !important;
  }

  .u-only-pc-block {
    display: block !important;
  }

  .u-only-pc-grid {
    display: grid !important;
  }

  .u-only-pc-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-only-mobile {
    display: none !important;
  }

  .u-only-mobile-block {
    display: none !important;
  }

  .u-only-mobile-grid {
    display: none !important;
  }

  .u-only-mobile-flex {
    display: none !important;
  }
}

@media screen and (min-width: 1040px) {
  .l-body__center {
    width: 480px;
  }

  .u-only-laptop {
    display: inline-block !important;
  }

  .u-only-laptop-block {
    display: block !important;
  }

  .u-only-laptop-grid {
    display: grid !important;
  }

  .u-only-laptop-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-only-tablet-mobile {
    display: none !important;
  }

  .u-only-tablet-mobile-block {
    display: none !important;
  }

  .u-only-tablet-mobile-grid {
    display: none !important;
  }

  .u-only-tablet-mobile-flex {
    display: none !important;
  }
}

@media (min-width: 1106px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .l-body__grid {
    grid-template-columns: 1fr auto 1fr;
  }

  .l-body__center {
    width: 375px;
  }

  .l-body__right {
    display: block;
  }

  .c-backtotop {
    right: calc(52vw - 160px);
  }
}

@media screen and (min-width: 1366px) {
  .l-body__center {
    width: 375px;
  }

  .c-backtotop {
    right: calc(52vw - 200px);
  }
}

@media screen and (min-width: 1800px) {

  .c-backtotop {
    right: calc(52vw - 240px);
  }
}

@media (max-width: 389px) {
  html {
    font-size: 4.1131105398vw;
  }
}

@media (hover: hover) {
  button:hover,
  select:hover {
    text-decoration: none;
    opacity: 1;
  }
}

@media (any-hover: hover) {
  .l-header__anchorLink:hover {
    opacity: 1;
    color: var(--theme-white);
  }

  .l-header__anchorLink:hover::before {
    opacity: 1;
    background-color: var(--theme-white);
  }

  .l-header__anchorLink:hover .l-header__anchorArrow {
    color: var(--theme-white);
    translate: 4px 1px;
  }


  .l-footer__logo:hover {
    opacity: var(--hover-opacity);
  }

  .p-topFv__anchorLink:hover {
    opacity: 1;
    color: var(--theme-white);
  }

  .p-topFv__anchorLink:hover::before {
    opacity: 1;
    background-color: var(--theme-white);
  }

}
/* ===============================================
 アコーディオン
=============================================== */
.accordion__btn {
  display: block;
  cursor: pointer;
  color: var(--theme-blue);
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  padding: 30px 0;
  text-decoration: underline;
  position:relative;
  z-index:5;
}
.accordion__close {
  display: block;
  cursor: pointer;
  color: var(--theme-blue);
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  text-decoration: underline;
  padding: 30px 0;
}
.accordion__content {
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 30px;
  transition: height 1200ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.accordion__content[hidden] {
  display: block;
  height: 0;
  padding: 0;
}