:root {
  --color-bg: #ffffff;
  --color-bg-alt: #e6e6e6;
  --color-text: #3e3a39;
  --color-title: #383534;
  --color-accent: #bc1a21;
  --color-footer: #cc353b;
  --color-white: #ffffff;
  --color-border: rgba(62, 58, 57, 0.22);
  --color-shadow: rgba(106, 80, 76, 0.08);
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --section-width: min(calc(100% - 32px), 1100px);
  --hero-width: min(calc(100% - 32px), 1300px);
  --overlay-offset: 10px;
  --transition-base: 220ms ease;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  overflow-x: clip;
}


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

video {
  background: transparent;
}

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

button {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
dt {
  margin: 0;
}

.pageTop {
  position: relative;
}

/*背景のために追加*/
.pageTop {
  position: relative;
  isolation: isolate;
}

.pageTop::before,
.pageTop::after {
  content: "";
  position: fixed;
  inset: -40px;
  pointer-events: none;
}

.pageTop::before {
  z-index: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(0, 0, 0, 0.48) 0 2.8px, transparent 4.2px),
    radial-gradient(circle at 74% 18%, rgba(0, 0, 0, 0.34) 0 2.4px, transparent 3.8px),
    radial-gradient(circle at 34% 76%, rgba(0, 0, 0, 0.42) 0 2.6px, transparent 4px),
    radial-gradient(circle at 86% 68%, rgba(0, 0, 0, 0.28) 0 2.2px, transparent 3.6px),
    radial-gradient(circle at 52% 48%, rgba(0, 0, 0, 0.22) 0 4px, transparent 6px),
    radial-gradient(circle at 12% 82%, rgba(0, 0, 0, 0.18) 0 3.6px, transparent 5.6px);
  background-size:
    150px 150px,
    210px 210px,
    180px 180px,
    250px 250px,
    320px 320px,
    280px 280px;
  background-repeat: repeat;
  animation: grainFloatOne 12s ease-in-out infinite alternate;
}

.pageTop::after {
  z-index: 0;
  opacity: 0.09;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.1) 0 16px, transparent 28px),
    radial-gradient(circle at 78% 24%, rgba(0, 0, 0, 0.07) 0 18px, transparent 30px),
    radial-gradient(circle at 38% 72%, rgba(0, 0, 0, 0.08) 0 15px, transparent 26px),
    radial-gradient(circle at 82% 78%, rgba(0, 0, 0, 0.06) 0 20px, transparent 32px);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: blur(0.2px);
  animation: grainFloatTwo 14s ease-in-out infinite alternate;
}

/*ハートのために*/
.floatingHeart {
  position: fixed;
  right: 28px;
  bottom: 34px;
  z-index: 30;
  width: 52px;
  pointer-events: none;
  will-change: transform;
}

.floatingHeart img {
  display: block;
  width: 100%;
  height: auto;
}

/*ハートのためにここまで*/


@keyframes grainFloatOne {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(22px, 16px, 0);
  }
}

@keyframes grainFloatTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-20px, 22px, 0);
  }
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.30) 0 3px, transparent 4.5px),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.22) 0 6px, transparent 7.5px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.16) 0 2.5px, transparent 4px),
    radial-gradient(circle at 82% 60%, rgba(255, 255, 255, 0.12) 0 10px, transparent 12px);
  background-size:
    140px 140px,
    220px 220px,
    180px 180px,
    320px 320px;
  background-repeat: repeat;
}

/*カードなどが確実にドットよりも前に来るために*/
.profileCard,
.companyCard,
.contactFormCard,
.policyCard,
.thanksCard {
  position: relative;
  z-index: 3;
}

/*カードなどが確実にドットよりも前に来るためにここまで*/

/*左側にドットを増やすために２*/
@keyframes heroLeftFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(18px, -14px, 0);
  }
}
/*左側にドットを増やすために２ここまで*/
/*背景のために追加ここまで*/


.sectionShell {
  width: var(--section-width);
  margin-inline: auto;
}

.fullBleedSection {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.headerInner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px 0 10px;
}

.headerLogo {
  width: 110px;
}

.headerNav,
.headerCtaButton {
  display: none;
}

.headerMenuButton {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--color-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  justify-self: end;
}

.headerMenuButton img {
  width: 22px;
}

.mobileMenuBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(25, 20, 20, 0.42);
  z-index: 58;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 340px);
  height: 100dvh;
  padding: 20px;
  background: #ffffff;
  box-shadow: -18px 0 48px rgba(51, 33, 33, 0.14);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 59;
}

.mobileMenu.is-open {
  transform: translateX(0);
}

.mobileMenuHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mobileMenuClose {
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.mobileMenuNav {
  display: grid;
  gap: 10px;
}

.mobileMenuNav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.buttonWord {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 1px;
}

.buttonWord img {
  width: auto;
  height: 1em;
  display: block;
}

.sectionSvgTitle,
.sectionSvgLabel {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: end;
}
.sectionSvgLabel.sectionSvgLabelSingle {
  display: inline-block;
}
.sectionSvgTitle {
  gap: 4px;
  font-size: 32px;
  line-height: 1;
}

.sectionSvgLabel {
  gap: 0;
  font-size: 20px;
  line-height: 1;
}

.sectionSvgTitle img,
.sectionSvgLabel img {
  width: auto;
  height: 1em;
  display: block;
}

/*sとtを動かすから追加*/
.sectionTitleAccentChar {
  transform-origin: 50% 85%;
  will-change: transform;
}
/*sとtを動かすから追加ここまで*/

/*会社概要の対応領域のフォント太さ変更*/
.companyNoteLabel {
  font-weight: 400;
}
/*会社概要の対応領域のフォント太さ変更ここまで*/
.sectionSvgLabel img {
  margin-right: -1px;
}
.sectionSvgLabel.sectionSvgLabelSingle img {
  margin-right: 0;
}
.sectionSvgLabel img:last-child {
  margin-right: 0;
}
/*左側にドットを増やすために追加第一スタート*/
.sectionHero {
  position: relative;
  padding-top: 32px;
}

/*左側にドットを増やすために追加第二スタート*/
.sectionHero::before {
  content: "";
  position: absolute;
  left: -52px;
  top: 10px;
  width: min(14vw, 120px);
  height: 34%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 24% 20%, rgba(62, 58, 57, 0.24) 0 4px, transparent 5px),
    radial-gradient(circle at 46% 48%, rgba(62, 58, 57, 0.15) 0 7px, transparent 8px),
    radial-gradient(circle at 30% 78%, rgba(62, 58, 57, 0.18) 0 3px, transparent 4px);
  background-size:
    110px 110px,
    160px 160px,
    88px 88px;
  background-repeat: repeat;
  animation: heroLeftFloat 10s ease-in-out infinite alternate;
}

/*左側にドットを増やすために追加ここまで*/

.heroInner,
.heroMedia {
  position: relative;
}

.heroMedia {
  width: min(100%, var(--hero-width));
  margin-inline: auto;
}

.heroLayout {
  display: grid;
  gap: 36px;
  align-items: start;
}

.heroCopyColumn {
  display: grid;
  gap: 32px;
  order: 2;
}

.heroCatchGroup {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 6px;
  width: fit-content;
  opacity: 0;
  order: 2;
}

.heroCatchCell {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.heroCatchChar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 85%;
  will-change: transform, opacity;
}

.heroMediaGroup {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.98);
  will-change: transform, opacity;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  order: 1;
}

.heroMediaMovie {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.heroTextGroup {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  opacity: 1;
  transform: none;
  filter: none;
  order: 3;
}

.heroTextBackground {
  width: min(100%, 34rem);
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.heroLead {
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.08em;
  text-align: left;
}

.heroDescription,
.serviceLeadTextGroup div,
.musicProjectLeadTextGroup div,
.musicTextContent,
.contactMessage,
.profileText,
.companyRow dt,
.companyRow dd {
  font-size: 12px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.sectionService {
  padding-top: 40px;
  display: grid;
  gap: 28px;
}

.serviceHeader {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.serviceHeader h2,
.cardTitleGroup h2,
.contactTitle h2 {
  color: var(--color-title);
  font-size: 32px;
  line-height: 1.875;
  letter-spacing: 0.08em;
}

/*会社概要・プロフィール・マーシーの手書きタイトルのために*/
.cardTitleGroupSvg {
  gap: 8px;
}

.cardSvgTitle,
.cardSvgSubtitle {
  margin: 0;
  line-height: 1;
}

.cardSvgTitle img,
.cardSvgSubtitle img {
  display: block;
  width: auto;
  height: 1em;
}

.cardSvgTitle {
  font-size: 32px;
}

.cardSvgSubtitle {
  font-size: 18px;
}

.musicProjectLeadTextGroupSvg h3 {
  line-height: 1;
}

.musicProjectLeadTextGroupSvg h3 img {
  display: block;
  width: auto;
  height: 1em;
}


/*会社概要・プロフィール・マーシーの手書きタイトルのためにここまで*/
.serviceBlockAdvertising,
.serviceBlockMusic {
  display: grid;
  gap: 16px;
  padding: 16px 0;
}

.serviceBlockLead {
  display: grid;
  gap: 20px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.serviceLeadImage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.serviceLeadBackground {
  width: min(100%, 320px);
  height: auto;
}


/*広告事業のリードイラストをシーソーの様にする*/
.serviceLeadImage.is-advertising img {
  transform-origin: 50% 85%;
  will-change: transform;
}
/*広告事業のリードイラストをシーソーの様にするここまで*/

.serviceLeadTextGroup {
  display: grid;
  gap: 16px;
}

.serviceLeadTextGroup h3 {
  color: var(--color-accent);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.serviceBlockSlider,
.musicBlockSlider {
  width: 100%;
  overflow: hidden;
}


.sliderViewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 0 16px;
}


.sliderViewport::-webkit-scrollbar {
  display: none;
}

.serviceBlockSliderTrack,
.musicBlockSliderTrack {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  max-width: none;
  will-change: transform;
}

/*手動のために追加*/
.sliderViewportManual {
  overflow-x: auto;
  overflow-y: hidden;
	overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  cursor: grab;
  padding-bottom: 8px;
}

.sliderViewportManual:active {
  cursor: grabbing;
}

.sliderViewportManual .serviceBlockSliderTrack {
  transform: none !important;
  width: max-content;
}

.sliderViewportManual .serviceCard {
  scroll-snap-align: start;
}

.sliderManualControls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}



.sliderDots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sliderDot {
  width: 16px;
  height: 16px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.32;
  transition: opacity var(--transition-base), transform var(--transition-base);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.sliderDot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sliderDot.is-active {
  opacity: 1;
}

.sliderDot:hover {
  transform: scale(1.08);
}


/*手動のために追加ここまで*/

.serviceCard {
  position: relative;
  width: 248px;
  min-height: 214px;
  padding: 24px 18px 20px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.serviceCard.is-wide {
  width: 280px;
  max-width: 280px;
  align-items: stretch;
}

.serviceCardFrame,
.serviceCardOverlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.serviceCardFrame {
  z-index: 0;
}

.serviceCardOverlay {
  z-index: 0;
  opacity: 0.2;
  transform: translate(var(--overlay-offset), var(--overlay-offset));
}

.serviceCardFrame img,
.serviceCardOverlay img {
  width: 100%;
  height: 100%;
}

.serviceCardContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 18px;
  gap: 14px;
  height: 100%;
}

.serviceCardIconWrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 82px;
  min-height: 50px;
}

.serviceCardIconWrap img:first-child {
  width: auto;
  max-height: 50px;
}

.serviceCardIconSub {
  position: absolute;
  top: -26px;
  right: -36px;
  width: 90px;
}

.serviceCard h4 {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.serviceCard p,
.serviceCard li {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-size: 9px;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.05em;
}


.serviceCardText {
  width: 100%;
  max-width: 160px;
}

.serviceCard.is-wide .serviceCardText {
  max-width: none;
}

.serviceCardWideBody {
  display: grid;
  gap: 10px;
}


.serviceCardSupportList {
  margin: 0;
  padding-left: 16px;
}

.serviceBlockMusicProject {
  position: relative;
  display: grid;
  gap: 16px;
}

.musicDecoration {
  position: absolute;
  top: 108px;
  left: -18px;
  width: 210px;
  opacity: 0.92;
  transform: rotate(-19deg);
}

.musicProjectLeadTextGroup h3 {
  color: var(--color-title);
  font-size: 22px;
  line-height: 2.55;
}

.musicImage {
  display: flex;
  justify-content: center;
}

.musicImage img {
  width: min(100%, 300px);
  aspect-ratio: 300 / 169;
  object-fit: cover;
}

.musicTextGroup {
  display: grid;
  gap: 16px;
}

.musicBlockSliderTrack img {
  flex: 0 0 auto;
  width: auto;
  max-height: 84px;
}

.musicTextContent {
  display: grid;
  gap: 16px;
  padding: 0 16px;
}

.musicProjectLink a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}


/*セクションカンパニーストライプ*/
.sectionCompany {
  position: relative;
  margin-top: 96px;
  padding: 40px 0 48px;
  background-color: #ececec;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.22) 0,
      rgba(255, 255, 255, 0.22) 8px,
      rgba(255, 255, 255, 0) 8px,
      rgba(255, 255, 255, 0) 24px
    );
}

/*セクションカンパニーストライプここまで*/

.companyContent {
  position: relative;
  width: 100vw;
  padding: 0;
  background: transparent;
}

.companyContentInner {
  position: relative;
  z-index: 1;
  padding-inline: 28px;
}


.companyCardBase {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--color-shadow);
}

.profileCard,
.companyCard {
  display: grid;
  gap: 32px;
  padding: 14px;
  width: min(100%, 920px);
  margin-inline: auto;
}

.profileCard {
  position: relative;
  margin-bottom: 32px;
}

.profileDecorationIcon {
  position: absolute;
  top: -26px;
  right: -10px;
  width: 82px;
  opacity: 0.95;
}

.cardTitleGroup {
  display: grid;
  gap: 8px;
}

.cardTitleGroup p {
  font-weight: 700;
  color: var(--color-title);
  font-size: 18px;
  line-height: 1.34;
  letter-spacing: 0.08em;
}

.profileText {
  display: grid;
  gap: 1em;
}

.companyList {
  display: grid;
}

.companyRow {
  display: grid;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(62, 58, 57, 0.8);
}

.companyRow dt {
  color: rgba(62, 58, 57, 0.6);
  font-weight: 700;
}

.sectionContact {
  position: relative;
  padding: 128px 0 160px;
}
/*セクションコンタクトに白いベール*/
.sectionContact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  z-index: 0;
}
/*中身を前に出す*/
.contactTitle,
.contactDecorationWave {
  position: relative;
  z-index: 1;
}
/*中身を前に出すここまで*/
/*セクションコンタクトに白いベールここまで*/
.contactTitle {
  position: relative;
  display: grid;
  gap: 52px;
  justify-items: center;
}

.ContactButtonGroup {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.contactButtonFrame,
.headerCtaButton {
  background: var(--color-text);
  color: var(--color-white);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.contactButtonFrame:hover,
.headerCtaButton:hover {
  transform: translateY(-2px);
}

.contactButtonFrame {
  min-width: 280px;
  padding: 18px 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.contactButtonFrame > img {
  width: 18px;
  height: auto;
  flex: 0 0 auto;
}

.contactButtonFrame .buttonWord {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.contactButtonFrame .buttonWord img {
  width: auto;
  height: 1.5em;
  margin-right: 0;
}

.contactButtonFrame .buttonWord img:last-child {
  margin-right: 0;
}

.contactMessage {
  text-align: center;
}

.contactDecorationWave {
  position: absolute;
  right: calc(50% - 160px);
  top: 98px;
  width: 46px;
}

.footer {
  position: relative;
  background: var(--color-footer);
  padding: 24px 0 0;
  overflow: hidden;
}

.footerInner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footerTextGroup {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 0 0 20px 16px;
}

.footerTextGroup p {
  margin: 0;
  color: #ffffff;
}

.footerTextGroup > p:first-child {
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footerAddress {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.04em;
}


.footerTown {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 460px;
  margin-left: 0;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  body,
  .pageTop,
  main,
  .sectionHero,
  .sectionService,
  .sectionContact {
    background: #ffffff;
  }
/*ハートのために*/

/*ハートのためにここまで*/
  .sectionCompany,
  .companyContent {
    background: var(--color-bg-alt) !important;
  }

  .header {
    position: relative;
    background: #ffffff;
  }

  .headerInner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 12px 0 8px;
  }

  .headerLogo {
    width: 74px;
  }

  .headerNav,
  .headerCtaButton {
    display: none !important;
  }

  .headerMenuButton {
    display: grid !important;
    width: 40px;
    height: 40px;
  }

  .mobileMenu {
    background: #ffffff;
  }
	
/*ヒーロー動画を少し大きくするために*/
.heroLayout {
  gap: 54px;
}

.heroMediaGroup {
  width: min(calc(100% + 40px), 600px);
  max-width: 600px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-10px);
}

/*ヒーロー動画を少し大きくするためにここまで*/

	/*モバイルで背景ドットを薄くするために*/
.sectionHero::before {
  left: -36px;
  top: 8px;
  width: min(20vw, 90px);
  height: 58%;
  opacity: 0.18;
}

	/*モバイルで背景ドットを薄くするためにここまで*/

/*モバイルの広告事業リードでイラストを上にするために*/
	  .serviceBlockAdvertising .serviceLeadImage {
    order: 1;
  }

  .serviceBlockAdvertising .serviceLeadTextGroup {
    order: 2;
  }
/*モバイルの広告事業リードでイラストを上にするためにここまで*/
	
/*モバイルでリードテキストとイラストを中央寄せにするために*/
.serviceBlockAdvertising .serviceLeadTextGroup,
.serviceBlockMusic .serviceLeadTextGroup {
  justify-self: center;
  width: min(100%, 22em);
  text-align: center;
}

.serviceBlockAdvertising .serviceLeadTextGroup h3,
.serviceBlockMusic .serviceLeadTextGroup h3 {
  justify-self: center;
}

.serviceBlockAdvertising .serviceLeadTextGroup div,
.serviceBlockMusic .serviceLeadTextGroup div {
  text-align: center;
}

.serviceBlockAdvertising .serviceLeadImage,
.serviceBlockMusic .serviceLeadImage {
  justify-content: center;
  padding-left: 0;
}
/*モバイルでリードテキストとイラストを中央寄せにするためにここまで*/

	
/*大きいカードのために*/
    .serviceCard.is-wide {
    width: 510px;
    max-width: 510px;
    min-height: 240px;
  }

  .serviceCard.is-wide .serviceCardContent {
    padding: 16px 40px 18px;
    gap: 12px;
  }

.serviceCard.is-wide .serviceCardWideBody {
  grid-template-columns: 200px 250px;
  gap: 18px;
  align-items: start;
  justify-content: center;
	padding-left: 34px;
}


  .serviceCard.is-wide .serviceCardText {
    max-width: none;
  }

  .serviceCard.is-wide .serviceCardSupportList {
    padding-left: 22px;
  }

  .serviceCard.is-wide h4 {
    font-size: 12px;
    line-height: 1.5;
  }

  .serviceCard.is-wide p,
  .serviceCard.is-wide li {
    font-size: 9px;
    line-height: 1.65;
  }

/*大きいカードのためにここまで*/
	
/*手動のために追加*/	
.sliderManualControls {
  margin-top: 6px;
}

.sliderDots {
  gap: 8px;
}

.sliderDot {
  width: 14px;
  height: 14px;
}



/*手動のために追加ここまで*/	
	
	/*モバイルでドクターマーシープロジェクトの上下に間隔をつくる*/
	.musicProjectLeadTextGroup {
  margin-top: 32px;
  margin-bottom: 14px;
}
		/*モバイルでドクターマーシープロジェクトの上下に間隔をつくるここまで*/
	/*モバイルではマーシーデコレーションを消す*/
	  .musicDecoration {
    display: none;
  }
	/*モバイルではマーシーデコレーションを消すここまで*/
	
	
	
}


@media (min-width: 1024px) {
  :root {
    --section-width: min(calc(100% - 340px), 1100px);
  }


  .sectionSvgTitle {
    font-size: 64px;
  }

  .sectionSvgLabel {
    font-size: 38px;
  }
.sectionSvgLabel.sectionSvgLabelSingle {
  display: inline-block;
}
  .sectionSvgLabel img {
    margin-right: -2px;
  }
.sectionSvgLabel.sectionSvgLabelSingle img {
  margin-right: 0;
}
  .sectionSvgLabel img:last-child {
    margin-right: 0;
  }
/*会社概要・プロフィール・マーシー手書きタイトルのために*/
	.cardSvgTitle {
  font-size: 64px;
}

.cardSvgSubtitle {
  font-size: 24px;
}

.musicProjectLeadTextGroupSvg h3 {
  font-size: 40px;
  line-height: 1;
}

.musicProjectLeadTextGroupSvg h3 img {
  height: 1em;
}

/*会社概要・プロフィール・マーシー手書きタイトルのためにここまで*/
/*ハートのために*/
.floatingHeart {
  right: 68px;
  bottom: 56px;
  width: 68px;
}

/*ハートのためにここまで*/

	.header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    background: transparent;
    z-index: 60;
  }

  .headerInner {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 24px;
    min-height: 84px;
    width: min(calc(100% - 80px), 1400px);
    margin-inline: auto;
    padding: 16px 0 10px;
  }

  .headerLogo {
    justify-self: start;
    width: 148px;
  }

  .headerNav {
    display: flex;
    justify-self: center;
    gap: 42px;
    font-size: 16px;
    line-height: 1.4;
  }

  .headerNav a:not(.headerCtaButton) {
    position: relative;
  }

  .headerNav a:not(.headerCtaButton)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
  }

  .headerNav a:not(.headerCtaButton):hover::after {
    transform: scaleX(1);
  }

  .headerCtaButton {
    display: inline-flex;
    justify-self: end;
    min-height: 54px;
    padding: 12px 18px;
    border-radius: 8px;
  }

  .headerCtaButton > img {
    width: 24px;
    height: auto;
    flex: 0 0 auto;
  }

  .headerCtaButton .buttonWord {
    display: inline-flex;
    align-items: center;
    gap: 2px;
  }

  .headerCtaButton .buttonWord img {
    width: auto;
    height: 0.88em;
    margin-right: 0;
  }

  .headerCtaButton .buttonWord img:last-child {
    margin-right: 0;
  }

  .headerMenuButton,
  .mobileMenu,
  .mobileMenuBackdrop {
    display: none;
  }

  .sectionHero {
    padding-top: 84px;
  }

.heroLayout {
  grid-template-columns: minmax(360px, 1fr) 730px;
  align-items: end;
  column-gap: 108px;
}

  .heroCopyColumn {
    order: 1;
    align-content: end;
    gap: 62px;
    padding-bottom: 18px;
  }

  .heroCatchGroup {
    gap: 16px 12px;
    order: 1;
  }

  .heroCatchCell {
    width: 48px;
    height: 48px;
  }

  .heroMediaGroup {
    width: 730px;
    max-width: 730px;
    justify-self: end;
    margin: 0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.5);
    order: 2;
  }

  .heroTextGroup {
    justify-content: flex-start;
    margin-top: 0;
    order: 2;
  }

  .heroTextBackground {
    width: 372px;
    padding: 0;
  }

  .heroLead {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

.heroDescription,
.serviceLeadTextGroup div,
.musicProjectLeadTextGroup div,
.musicTextContent,
.contactMessage,
.profileText,
.companyRow dt,
.companyRow dd {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.06em;
}

   .sectionService {
    gap: 56px;
    padding-top: 48px;
  }

	
  .serviceHeader {
    padding: 96px 0 112px;
  }

  .serviceHeader h2,
  .cardTitleGroup h2,
  .contactTitle h2 {
    font-size: 64px;
    line-height: 1;
  }

  /*contactとserviceの文字間隔・サイズ*/
.serviceHeader .sectionSvgTitle,
.contactTitle .sectionSvgTitle {
  gap: 10px;
}

.serviceHeader .sectionSvgTitle img,
.contactTitle .sectionSvgTitle img {
  height: 0.9em;
}
  /*contactとserviceの文字間隔・サイズここまで*/

  .serviceLeadBackground {
    width: min(100%, 460px);
    max-width: 100%;
  }

  
	/*差し替えたここから*/
	
	  .serviceBlockAdvertising,
  .serviceBlockMusic {
    gap: 40px;
    padding: 40px 0;
  }

  .serviceBlockLead {
    display: grid;
    align-items: center;
    margin-inline: auto;
  }

  /* 広告事業 */
  .serviceBlockAdvertising .serviceBlockLead {
    grid-template-columns: minmax(0, 1fr) 480px;
    column-gap: 20px;
	width: min(100%, 800px);
  }

  .serviceBlockAdvertising .serviceLeadTextGroup {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
  }

  .serviceBlockAdvertising .serviceLeadImage {
    grid-column: 2;
    justify-content: flex-start;
    align-self: start;
    min-width: 0;
    transform: translateY(-80px);
  }

  /* 音楽文化事業 */
  .serviceBlockMusic .serviceBlockLead {
    grid-template-columns: 480px minmax(0, 1fr);
    column-gap: 70px;
	width: min(100%, 860px);
  }

  .serviceBlockMusic .serviceLeadImage {
    grid-column: 1;
    justify-content: flex-start;
    align-self: start;
    min-width: 0;
    transform: translateY(-50px);
  }

  .serviceBlockMusic .serviceLeadTextGroup {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
  }

  .serviceLeadBackground {
    width: min(100%, 460px);
    max-width: 100%;
  }

  .serviceLeadTextGroup {
    gap: 22px;
  }

  .serviceLeadTextGroup h3 {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.02em;
  }

	
	/*差し替えたここまで*/
	

  .sliderViewport {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }

  .serviceCard {
    width: 360px;
    min-height: 344px;
    padding: 34px 40px 40px;
    gap: 16px;
  }

  .serviceCard.is-wide {
    width: 760px;
    min-height: 344px;
    max-width: none;
  }

  .serviceCardIconWrap {
    width: 150px;
    min-height: 84px;
  }

  .serviceCardIconWrap img:first-child {
    max-height: 84px;
  }

  .serviceCardIconSub {
    top: -40px;
    right: -90px;
    width: 150px;
  }

  .serviceCard h4 {
    font-size: 22px;
    line-height: 1.7;
  }

.serviceCard p,
.serviceCard li {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.04em;
}


  .serviceCardText {
    max-width: 240px;
  }


	.serviceCardWideBody {
  grid-template-columns: 290px 310px;
  gap: 32px;
  justify-content: center;
}


  .serviceCardSupportList {
    padding-left: 24px;
  }

  .serviceBlockMusicProject {
    gap: 24px;
    padding-top: 24px;
  }

  .musicDecoration {
    top: -50px;
    left: auto;
    right: -180px;
    width: 420px;
    transform: rotate(20deg);
  }

  .musicProjectLeadTextGroup h3 {
    font-size: 40px;
    line-height: 3.5;
  }

  .musicImage {
    justify-content: flex-end;
  }

  .musicImage img {
    width: 900px;
    aspect-ratio: 900 / 506;
  }

  .musicTextGroup {
    grid-template-columns: 500px 500px;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .musicTextContent {
    padding: 0;
    gap: 24px;
  }

  .musicBlockSliderTrack img {
    max-height: 100px;
  }


.sectionCompany {
  margin-top: 160px;
  padding: 120px 0 100px;
}
　
	
.companyContent {
  padding: 0;
  background: transparent;
}

  .companyContentInner {
    padding-inline: 120px;
  }

.profileDecorationIcon {
  top: -34px;
  right: -12px;
  width: 92px;
}

  .profileCard,
  .companyCard {
    width: min(100%, 700px);
    padding: 64px;
    gap: 28px;
  }

  .profileCard {
    position: relative;
    margin-bottom: 56px;
  }

  .cardTitleGroup {
    gap: 16px;
  }

  .cardTitleGroup p {
    font-size: 24px;
  }

  .companyRow {
    grid-template-columns: 160px 1fr;
    gap: 32px;
    align-items: center;
    padding: 14px 0;
  }

  .sectionContact {
    padding: 160px 0 180px;
  }

  .contactDecorationWave {
    right: calc(50% - 230px);
    top: 128px;
    width: 56px;
  }

  .footerInner {
    min-height: 340px;
  }

  .footerTown {
    right: -40px;
    bottom: -8px;
    width: 760px;
  }
.footerTextGroup {
  padding: 0 0 28px 24px;
}

.footerTextGroup > p:first-child {
  font-size: 28px;
}

}


/*コンタクトフォームのために*/
.subPageHero {
  padding-top: 140px;
  padding-bottom: 40px;
}

.subPageHeroInner {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.subPageHeroEn {
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.subPageHero h1 {
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-title);
}

.subPageHero p {
  font-size: 14px;
  line-height: 1.9;
}

.contactFormSection,
.policySection,
.thanksSection {
  padding-bottom: 120px;
}

.contactFormCard,
.policyCard,
.thanksCard {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(106, 80, 76, 0.08);
  padding: 28px 20px;
}

.contactForm {
  display: grid;
  gap: 20px;
}

.formRow {
  display: grid;
  gap: 8px;
}

.formRow label {
  font-size: 14px;
  font-weight: 700;
}

.formRow input,
.formRow select,
.formRow textarea {
  width: 100%;
  border: 1px solid rgba(62, 58, 57, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.formRow textarea {
  resize: vertical;
}

.required {
  display: inline-block;
  margin-left: 8px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.formPolicy {
  padding-top: 4px;
}

.formCheckbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.formCheckbox a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.formActions {
  padding-top: 8px;
}

.contactSubmitButton {
  border: 0;
  background: var(--color-text);
  color: #fff;
  border-radius: 10px;
  min-height: 54px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.contactSubmitButton:hover {
  transform: translateY(-2px);
}

.policyBody {
  display: grid;
  gap: 20px;
  font-size: 14px;
  line-height: 1.9;
}

.policyBody h2 {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-title);
}

.policyBody ul {
  margin: 0;
  padding-left: 1.2em;
}

.policyDate {
  padding-top: 8px;
  font-size: 13px;
  color: rgba(62, 58, 57, 0.7);
}

.thanksSection {
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.thanksCard {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
  text-align: center;
}

@media (min-width: 1024px) {
  .subPageHero {
    padding-top: 180px;
    padding-bottom: 56px;
  }

  .subPageHeroEn {
    font-size: 16px;
  }

  .subPageHero h1 {
    font-size: 56px;
  }

  .subPageHero p,
  .policyBody,
  .formCheckbox {
    font-size: 16px;
  }

  .contactFormCard,
  .policyCard,
  .thanksCard {
    padding: 56px 64px;
  }

  .contactForm {
    gap: 24px;
  }

  .policyBody h2 {
    font-size: 24px;
  }
}


/*
.formRowRecaptcha .g-recaptcha {
  transform-origin: left top;
}

@media (max-width: 520px) {
  .formRowRecaptcha .g-recaptcha {
    transform: scale(0.92);
  }
}
/*もし見た目が崩れたらここまで*/
.contactFormCard {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(106, 80, 76, 0.08);
}

.contactForm {
  gap: 22px;
}

.formRow label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-title);
  letter-spacing: 0.03em;
}

.required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(188, 26, 33, 0.08);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contactForm input,
.contactForm textarea,
.contactForm select {
  width: 100%;
  border: 1px solid rgba(62, 58, 57, 0.16);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  color: var(--color-text);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.contactForm textarea {
  resize: vertical;
  min-height: 180px;
}

.contactForm input:focus,
.contactForm textarea:focus,
.contactForm select:focus {
  outline: none;
  border-color: rgba(188, 26, 33, 0.5);
  box-shadow: 0 0 0 4px rgba(188, 26, 33, 0.08);
}

.formPolicy {
  padding-top: 4px;
}

.formCheckbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.8;
}

.formCheckbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.formCheckbox a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contactSubmitButton {
  min-width: 220px;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: var(--color-text);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 220ms ease, opacity 220ms ease;
}

.contactSubmitButton:hover {
  transform: translateY(-2px);
}

.contactSubmitButton:active {
  transform: translateY(0);
}

/*コンタクトフォームのためにここまで*/


