@charset "UTF-8";
/* ======================
  Reset
====================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img, picture {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

/* ===============
  Config
=============== */
:root {
  --text: #141414;
  --bg: #fff;
  --muted: #D4D5F2;
  --primary: #0000cd;
}

html, body {
  height: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 80px;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: initial;
  text-decoration: none;
}
/* ===============
  Utilities / Layout
=============== */
.l-container {
  width: min(100% - 200px, 1040px);
  margin-inline: auto;
}
@media (max-width: 1240px) {
  .l-container {
    width: min(100% - 66.6666666667px, 1040px);
  }
}
@media (max-width: 768px) {
  .l-container {
    width: min(100% - 40px, 1040px);
  }
}

.fugtree, .news_list_item a span, .section_button.-contact, .section_button.-more, .section_title {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ===============
  Header / Nav
=============== */

/* ===============
  Main / Sections
=============== */
.hero {
  margin-top:80px;
  height: 45.625vw;
  position: relative;
  background-image: url(/wp-content/themes/rsmcpn/images/top/mv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #F6F4EF;
  overflow:hidden;
}
@media only screen and (max-width: 639px) {
  .hero {
	margin-top:70px;
  }
}
@media (max-width: 768px) {
  .hero {
    background-image: nonw;
    height: auto;
  }
}
.hero_heading {
  position: absolute;
  top: 45%;
  translate: 0 -50%;
  left: 6.9444444444vw;
}
@media (max-width: 768px) {
  .hero_heading {
    translate: none;
    position: static;
    padding: 10vh 20px 20px;
  }
}
.hero_heading h1 {
  font-weight: bold;
  color: var(--primary);
  font-size: clamp(30px, 13.8vw, 3.8194444444vw);
  letter-spacing: 0.2em;
  line-height: 1.75;
  margin-bottom: 2.4305555556vw;
}
.hero_heading h1 span {
  display: inline;
  background-color: #fff;
  padding: 0.1em 0;
}
.hero_heading p {
  font-size: clamp(16px, 13.8vw, 1.7361111111vw);
}
.hero .marquee {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hero .marquee__track {
  display: inline-flex;
  align-items: flex-end;
  gap: 1rem;
  will-change: transform;
  animation: marquee 18s linear infinite;
}
.hero .marquee__item {
  display: inline-block;
  letter-spacing: 0.08em;
  font-size: clamp(80px, 13.8vw, 200px);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  transform: translateY(0.15em);
  color: #fff;
  opacity: 0.6;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}
/* ===============
  Top
=============== */
.section {
  padding: clamp(45px, 13.8vw, 90px) 0;
}
.section.-primary {
  background: var(--primary);
}
.section_title {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  position: relative;
  margin-bottom: 40px;
}
.section_title:after {
  content: "";
  width: 33px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: -5px;
  translate: -50% 0;
  background-color: #fff;
}
.section_title.-primary {
  color: var(--primary);
}
.section_title.-primary:after {
  background-color: var(--primary);
}
.section_list {
  display: flex;
  gap: clamp(20px, 13.8vw, 40px);
  justify-content: center;
}
@media (max-width: 768px) {
  .section_list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.section_list_item {
  width: calc(33.3333333333% - clamp(20px, 13.8vw, 40px) / 2);
}
@media (max-width: 768px) {
  .section_list_item {
    width: 100%;
  }
}
.section_list_item img{
  width:100%;	
}
.section_button {
  background: #fff;
  color: var(--primary);
  text-align: center;
  width: 100%;
  max-width: 300px;
  border-radius: 100px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: bold;
  margin: auto;
  border: 1px solid var(--primary);
  transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.section_button:after {
  content: "";
  background-image: url(../images/top/arrow.svg), url(../images/top/arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain, 0;
  width: 6px;
  height: 11px;
  display: inline-block;
  position: absolute;
  right: 15px;
}
.section_button:hover {
  background-color: var(--primary);
  color: #fff;
  letter-spacing: 0.15em;
  border: 1px solid #fff;
}
.section_button:hover:after {
  background-size: 0, contain;
}
.section_button.-primary {
  color: #fff;
  background: var(--primary);
}
.section_button.-primary:after {
  background-image: url(../images/top/arrow_w.svg), url(../images/top/arrow.svg);
}
.section_button.-primary:hover {
  background-color: #fff;
  color: var(--primary);
  letter-spacing: 0.15em;
  border: 1px solid var(--primary);
}
.section_button.-primary:hover:after {
  background-size: 0, contain;
}
.section_button.-more {
  max-width: 250px;
  height: 50px;
}
.section_button.-contact {
  font-weight: 500;
  font-size: 20px;
}
.section_button.-contact:after {
  display: none;
}
.section_button.-double{
  height:55px;	
  font-weight:bold;
}
.section_button.-double:before{
  content:'';
  position:absolute;
  width:97%;
  height:85%;
  border:1px solid #2d3193;
  display:inline-block;
  border-radius:100px;
}
.section_button_area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.pickup_section .l-container {
  width: 100%;
}
.pickup_slider {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pickup_slider_item {
  margin: 0 2.0833333333vw;
}
@media (max-width: 768px) {
  .pickup_slider_item {
    margin: 0 15px;
  }
}
.pickup_slider_item img {
  width: 100%;
  height: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.pickup_slider .dots-wrap {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.pickup_slider .dots-wrap li {
  width: 9px;
  height: 9px;
  margin: 0 2.5px;
  background: #00257A;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}
.pickup_slider .dots-wrap li:hover, .pickup_slider .dots-wrap li.slick-active {
  background: #fff;
}
.pickup_slider .dots-wrap button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.pickup_slider .prev-arrow {
  position: absolute;
  left: 30.3333333%;
  top: 40%;
  z-index: 1;
}
@media (max-width: 768px) {
  .pickup_slider .prev-arrow {
    left: 9%;
    top: 43%;
  }
  .pickup_slider .prev-arrow img {
    width: 8px;
  }
}
.pickup_slider .next-arrow {
  position: absolute;
  right: 30.3333333%;
  top: 40%;
  transform: scale(-1, -1);
  z-index: 1;
}
@media (max-width: 768px) {
  .pickup_slider .next-arrow {
    right: 9%;
    top: 43%;
  }
  .pickup_slider .next-arrow img {
    width: 8px;
  }
}

.news_section {
  background: #EAEAEE;
}
.news_list_item {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--primary);
}
.news_list_item:not(:first-child) {
  padding-top: 20px;
}
.news_list_item a {
  display: flex;
  gap: clamp(15px, 13.8vw, 30px);
  align-items: center;
}
@media (max-width: 768px) {
  .news_list_item a {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
.news_list_item a time {
  font-size: 14px;
}
.news_list_item a span {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-align: center;
  width: 114px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
}
@media (max-width: 768px) {
  .news_list_item a span {
    font-size: 12px;
    height: 25px;
    width: 100px;
    border: 1px solid;
  }
}
@media (max-width: 768px) {
  .news_list_item a p {
    width: 100%;
  }
}

.release_list_item img {
  margin-bottom: 16px;
}
.release_list_item span {
  display: block;
  color: var(--muted);
  margin-bottom: 5px;
}
.release_list_item p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.movie_section {
  background: #EAEAEE;
  overflow:hidden;
}
.movie_section .l-container {
  width: 100%;
}
.movie_slider {
  margin-top: 4.1666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .movie_slider {
    margin-top: 12vw;
  }
}
.movie_slider .slick-list {
  overflow: visible;
}
.movie_slider_item {
  margin: 0 2.5vw;
  transition: all 300ms ease;
  transform: scale(1);
  opacity: 0.4;
}
@media (max-width: 768px) {
  .movie_slider_item {
    margin: 0 18px;
  }
}
.movie_slider_item p {
  opacity: 0;
  text-align: center;
  color: var(--primary);
  margin-top: 0.6944444444vw;
  line-height: 1.4;
}
.movie_slider_item.slick-active {
  transform: scale(1.15);
  transition: all 300ms ease;
  opacity: 1;
}
.movie_slider_item.slick-active p {
  opacity: 1;
}
.movie_slider_item img {
  width: 100%;
  height: auto;
}
.movie_slider .slick-arrow {
  background: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .movie_slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.movie_slider .slick-arrow img {
  width: 8px;
  height: 15px;
  margin-left: -4px;
}
@media (max-width: 768px) {
  .movie_slider .slick-arrow img {
    width: 6px;
    height: 11.25px;
    margin-left: -2px;
  }
}
.movie_slider .prev-arrow {
  position: absolute;
  left: 24%;
  top: 45%;
  translate: 0 -50%;
  z-index: 1;
}
@media (max-width: 768px) {
  .movie_slider .prev-arrow {
    left: 1.8%;
    top: 43%;
  }
  .movie_slider .prev-arrow img {
    width: 8px;
  }
}
.movie_slider .next-arrow {
  position: absolute;
  right: 24%;
  top: 45%;
  translate: 0 -50%;
  transform: scale(-1, -1);
}
@media (max-width: 768px) {
  .movie_slider .next-arrow {
    right: 1.8%;
    top: 43%;
  }
  .movie_slider .next-arrow img {
    width: 8px;
  }
}

.artist_content {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 13.8vw, 50px);
}
.artist_card {
  display: flex;
  gap: 3.5069444444vw 0;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: clamp(25px, 13.8vw, 50px);
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .artist_card {
    flex-direction: column;
  }
}
.artist_card_text {
  width: 50%;
  color: #fff;
}
@media (max-width: 768px) {
  .artist_card_text {
    width: 100%;
  }
}
.artist_card_text p {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 20px;
  line-height: 1;
}
.artist_card_text p small {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .artist_card_text p small {
    font-size: 14px;
  }
}
.artist_card_img {
  width: calc(50% - 2.0833333333vw);
}
@media (max-width: 768px) {
  .artist_card_img {
    width: 100%;
  }
}
.artist_card_button {
  width: 100%;
  text-align: center;
  margin: auto;
}
@media (max-width: 768px) {
  .artist_card_button {
    margin-top: 20px;
  }
}
.artist_list_item p {
  color: #fff;
  text-align: center;
  margin-top: 0.9583333333vw;
}

.discography_section {
  background: #EAEAEE;
}
.discography_list_item img {
  margin-bottom: 9px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.discography_list_item time {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}
.discography_list_item p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.discography_list_item span {
  background: #fff;
  border: 1px solid #1A1C5D;
  border-radius: 50px;
  display: inline-flex;
  height: 33px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.service_title{
	font-size:25px;
	color:#fff;
	font-weight:bold;
	margin-bottom:20px;
}
.service_content {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 13.8vw, 50px);
}
.service_card {
  display: flex;
  gap: 3.5069444444vw 0;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: clamp(25px, 13.8vw, 50px);
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .service_card {
    flex-direction: column;
  }
}
.service_card_text {
  width: 50%;
  color: #fff;
}
@media (max-width: 768px) {
  .service_card_text {
    width: 100%;
  }
}
.service_card_text p{
  line-height:2;
}
.service_card_img {
  width: calc(50% - 2.0833333333vw);
}
@media (max-width: 768px) {
  .service_card_img {
    width: 100%;
  }
}
.service_card_button {
  width: 100%;
  text-align: center;
  margin: auto;
}
@media (max-width: 768px) {
  .service_card_button {
    margin-top: 20px;
  }
}
.service_list{
  width:calc(100% - 40px);
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 10px;
  margin-top:40.5px;
}
@media (max-width: 768px) {
  .service_list{
	width:100%;
	grid-template-columns:1fr;
  }
}
.service_list_item{
  display:flex;
  gap:10px;
  align-items:center;
}
.service_list_item img{
  background:#fff;
  border-radius:50%;
}
.service_list_item figcaption{
  font-weight:bold;
  font-size:20px;
  color:#fff;
}
@media (max-width: 768px) {
  .service_list_item figcaption{
	font-size:18px;	
  }
}


.shop_section {
  background: #EAEAEE;
}
.shop_list_item img {
  margin-bottom: 10px;
  width: 100%;
}
.shop_list_item p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--primary);
}

.recruit_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruit_card {
  background: #fff;
  padding: 1.5972222222vw 1.3888888889vw 57px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.0833333333vw;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .recruit_card {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
}
.recruit_card_title {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  color: var(--primary);
  border-bottom: 1px solid;
  width: 100%;
}
@media (max-width: 768px) {
  .recruit_card_title {
    margin-bottom: 0;
  }
}
.recruit_card_img {
  width: 240px;
}
@media (max-width: 768px) {
  .recruit_card_img {
    width: 100%;
  }
}
.recruit_card_text {
  width: calc(100% - 240px - 2.0833333333vw);
}
@media (max-width: 768px) {
  .recruit_card_text {
    width: 100%;
  }
}
.recruit_card_button {
  position: absolute;
  right: 1.3888888889vw;
  bottom: 22.5px;
  padding: 5px 15px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
}
.recruit_card_button img {
  width: 8px;
  height: 15px;
  transition: 0.3s all;
}
.recruit_card_button:hover img {
  transform: translateX(6px);
}
@media (max-width: 768px) {
  .recruit_card_button {
    position: static;
    display: inline-flex;
  }
}

.contact_section {
  background: #EAEAEE;
}
.contact_text {
  text-align: center;
  font-weight: 500;
}

/* ===============
  Footer
=============== */
/* ===============
  Animation
=============== */
/* 共通（ベース） */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* 表示状態 */
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============
  Extra
=============== */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 0px;
  text-align: center;
  width: 122px;
  height: 122px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  flex-direction: column;
  line-height: 1.5;
  font-size: 1.1rem;
  gap: 10px;
  box-shadow: 2.5px 2.5px 0 var(--primary);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-top:before {
  content: "";
  background: url(/assets/img/icon-arrow.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 13px;
}
@media (max-width: 768px) {
  .page-top {
    transform: scale(0.5);
    right: -5px;
  }
}
.page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
.page-top.is-hide {
  opacity: 0;
  pointer-events: none;
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
