@charset "utf-8";

body{
  background-color: #F1ECE7;
  font-family: 'Noto Sans JP', 'Lato', sans-serif;
	color:#2E5C6D;
	font-size:16px;
	font-optical-sizing: auto;
	line-height:1.9;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow: hidden;
}
html {
  scroll-behavior: smooth;
}
/* # ===========================
# 共通
# ========================== */
section p a{
  position: relative;
	color:#EF483E;
	text-decoration: underline;
  transition: opacity 0.3s ease;
}

section p a:hover{
  text-decoration: none;
  font-weight: 500;
  background-color: #eee;
}

section{
	text-align: center;

}
.sp-br {
  display: none;
}
.pc-br {
  display: inline;
}

/* メニュー */
  .dot-hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 61px;
    height: 61px;
    cursor: pointer;
   z-index: 3000;
   background-color:#F1ECE7;
   border-radius: 8px;
   z-index: 11000;
   transition: opacity 0.3s ease;
  }
  .dot-hamburger:hover {
   background-color:#E2DAD3;
  }

  .dot-hamburger span {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #2E5C6D;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }

  /* 初期：3x3のグリッド */
  .dot-hamburger span:nth-child(1) { top: 13px; left: 13px; }
  .dot-hamburger span:nth-child(2) { top: 13px; left: 27px; }
  .dot-hamburger span:nth-child(3) { top: 13px; left: 41px; }
  .dot-hamburger span:nth-child(4) { top: 27px; left: 13px; }
  .dot-hamburger span:nth-child(5) { top: 27px; left: 27px; }
  .dot-hamburger span:nth-child(6) { top: 27px; left: 41px; }
  .dot-hamburger span:nth-child(7) { top: 41px; left: 13px; }
  .dot-hamburger span:nth-child(8) { top: 41px; left: 27px; }
  .dot-hamburger span:nth-child(9) { top: 41px; left: 41px; }

  /* クリック時：✗の形 */
  .dot-hamburger.active span:nth-child(1) { top: 13px; left: 13px; }
  .dot-hamburger.active span:nth-child(2) { top: 20px; left: 20px; }
  .dot-hamburger.active span:nth-child(3) { top: 13px; left: 41px; }
  .dot-hamburger.active span:nth-child(4) { top: 34px; left: 20px; }
  .dot-hamburger.active span:nth-child(5) { top: 27px; left: 27px; }
  .dot-hamburger.active span:nth-child(6) { top: 20px; left: 34px; }
  .dot-hamburger.active span:nth-child(7) { top: 41px; left: 13px; }
  .dot-hamburger.active span:nth-child(8) { top: 34px; left: 34px; }
  .dot-hamburger.active span:nth-child(9) { top: 41px; left: 41px; }

  /* 全画面背景 */
  .menu-bg {
    position: fixed;
    top: 0; right: 0;
    width: 480px;
    height: 100vh;
    background-color: #2E5C6D;
    z-index: 1000;
    clip-path: circle(0% at top right);
    transition: clip-path 0.5s ease;
    background-image: url("../images/menu-bg.svg");
    background-position: right 0 top 0;
    z-index: 9998;
  }
  .menu-bg.active {
    clip-path: circle(150% at top right);
  }

  /* メニューリンク */
  .menu {
    position: fixed;
    top:0; right:0;
    width:480px;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items: stretch;
    pointer-events:none;
    z-index: 10000;
  }
  .menu.active {
    pointer-events:auto;
  }
.menu-links{
  margin: 200px auto 0;
  width: 90%;
}
.menu-links a {
  display: block;
  padding: 15px 20px 15px 40px;
  color: #fff;
  text-decoration: none;
  border-top: 2px solid rgba(255,255,255,0.4);
  position: relative;
  text-align: left;
  font-size:1.5rem;
  font-weight: 900;
}

.menu-links a:last-child {
  border-bottom: 2px solid rgba(255,255,255,0.4);
}

.menu-links a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 24px;
  background: url("../images/menu-link-mark.svg") no-repeat center;
  background-size: contain;
}
.menu-links a{
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.menu-links a.show{
  opacity: 1;
  transform: translateY(0);
}
.menu-links  a.show:hover{
  background-color:#416F80;
}
.sns-box {
  margin: 100px auto 0;
  width: 170px;
  height: 56px;
  background-color: #FFFFFF;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;

  opacity: 0; 
  transform: translateY(20px); 
  transition: all 0.5s ease;
}
.sns-box.show {
  opacity: 1;
  transform: translateY(0);
}
.sns-box a img {
  display: block; 
  height: 34px;  
  width: auto;
}
.icon-sns {
  transition: opacity 0.3s ease;
}
.icon-sns:hover {
  opacity: 0.7;
}
.icon-sns:hover{
  opacity: 0.8;
  transform: scale(1.1);
}
 /* h2タイトルまわり */
.title-mark h2{
  position: relative;
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
}

h2::before {
  content: "";
  display: block;
  width: auto;
  height: 72px;
  margin: 0 auto 16px;
  background: url("../images/h2-mark.svg") no-repeat center / contain;
}

h2.general{
	font-size:3.25rem;
  font-size: clamp(1.875rem, 3vw + 1rem, 3.25rem);
	font-weight: 900;
	line-height: 1.3em;
	display: inline-block;
}

h2.general span{
  font-size:2.375rem;
  font-size: clamp(1rem, 2vw + 1rem, 2.375rem);
	font-weight: 400;
  line-height: 1.3;
}
h2.general span.title-sub2{
	font-size:2.375rem;
  font-size: clamp(1rem, 2vw + 1rem, 2.375rem);
	font-weight: 400;
	display: block;
  margin-top: 0.15em;
}

h2.faq{
	font-size:3.75rem;
  font-size: clamp(2.25rem, 3.5vw + 1rem, 3.75rem);
	font-weight: 900;
	line-height: 1.2;
	display: inline-block;
}
h2.faq span{
	font-size:2rem;
  font-size: clamp(1.125rem, 1vw + 1rem, 2rem);
	font-weight: 500;
	display: block;
	margin-top: 0.4em;  
}

h2.faq-page{
	font-size:3.25rem;
  font-size: clamp(2.25rem, 4vw + 1rem, 4rem);
	font-weight: 900;
	line-height: 1.2;
	display: inline-block;
}

h2.faq-page span{
  font-size:2.375rem;
  font-size: clamp(1rem, 1.25vw + 1rem, 1.25rem);
	font-weight: 700;
  display: block;
  margin-top: 0.6em;  
}
h2.contact-link{
  font-size:2rem;
  font-size: clamp(1.25rem, 2vw + 1rem, 2rem);
	font-weight: 900;
	line-height: 1.4;
}
h2.contact-link span{
  font-size:1.375rem;
  font-size: clamp(1.25rem, 1.25vw + 1rem, 1.375rem);
	font-weight: 500;
}

/* footer */
footer{
  width: 100%;
  background-color: #F1ECE7;
  border-top: 1px solid #fff;
}
.footer-inner{
	max-width:1200px;
  width: 100%;
	min-height: 100px;
	margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-footer {
  height: 59px;
  opacity: 1;
}
.logo-footer:hover{
  opacity: 0.7;
}
.copyr {
  font-size: 0.875rem;
  color: #707070;
}

/* pagetop */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 73px;
  height:70px;
  line-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none; 
  transition: opacity 0.3s ease;
  z-index: 999;
}
.page-top.show {
  opacity: 1;
  pointer-events: auto;
}

.page-top img {
  width: 73px;
  height: auto;
  transition: transform 0.3s ease;
}
.page-top:hover img {
  transform: translateY(-4px);
  opacity: 0.9;
}

.page-deco-leftbottom::after {
  content: "";
  position: absolute;
  left:-160px;
  bottom:-120px;
  width:392px;
  height:392px;
  background: url("../images/page-deco-bottom.svg") no-repeat left bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
.page-deco-rightmiddle::after {
  content: "";
  position: absolute;
  right:-90px;
  top:670px;
  width:216px;
  height:332px;
  background: url("../images/page-deco-middle.svg") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* # ===========================
# TOP
# ========================== */

/* トップメイン */
.top-block01 {
  position: relative;
  overflow: hidden;
}
.top-block01::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/top.svg") no-repeat top center;
  background-size: cover;
  z-index: -1;
}
.top-mainv{
	width: 100%;
	min-height: 800px;
	height: 90vh;
	display: flex;
    align-items: center;
   justify-content: center; 
}
.top-mainv h1{
  font-size: 3.5rem;
  font-size: clamp(3rem, 3vw + 1rem, 3.5rem);
	line-height:1.4;
	font-weight:900;
}
.message{
	background-color: rgba(255, 255, 255, 0.95);
	padding:140px 0;
}
.message p{
  width: 95%;
	font-size:1.125rem;
	line-height: 2.3;
	font-weight:500;
	margin: 0 auto 50px;
}

/* 商用利用できるBGMサービス */
.top-block02{
	padding: 130px 0;
	position: relative;
	background-image: url("../images/top-obj03.svg");
  background-repeat: no-repeat;
  background-position:left 122px bottom 0;
  background-color: #F1ECE7;
  z-index: 0;
}

/* 右上の装飾 */
.top-block02::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -300px;
  width: 637px;
  height: 403px;
  background: url("../images/top-obj01.svg") no-repeat left top;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* 左の装飾 */
.top-block02::after {
  content: "";
  position: absolute;
  left: -480px;
  top:350px;
  width:680px;
  height:899px;
  background: url("../images/top-obj02.svg") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.music-list{
	margin: 90px auto 0;
	padding: 120px 0;
	width: 1100px;
	border-radius: 150px;
	background-color: rgba(255, 255, 255, 0.95);
	display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.music-list ul {
width: 840px;
  list-style: none;
  margin: 0 atuo;
  text-align: left;
}

.music-list li {
  border-bottom: 2px solid #2E5C6D;
}

.music-list li:first-child {
  border-top: 2px solid #2E5C6D;
}

.music-list li a {
  display: block;
  padding: 16px 15px 16px 30px;
  color: #EF483E;
  text-decoration: none;
  background: url("../images/list-link-mark.svg") no-repeat 3px center;
  background-size: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
  font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
  line-height: 1.4;
  font-weight: 700;
}
.music-list li a span{
  display: inline;
}
.music-list li a span.company-n {
  margin-left: 0.5em;
  text-align: right;
  color:#2E5C6D;
  font-size:1rem;
  line-height: 1.4;
  display: inline;
}

.music-list li:hover a {
  background-color: #f0f0f0;
}

/* FAQへ */
.top-block03{
	background-color:#fefefe;
	padding:120px 0;
	position: relative;
}
/* 右上の装飾 */
.top-block03::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 384px;
  height: 461px;
  background: url("../images/top-obj04.svg") no-repeat left top;
  background-size: contain;
  pointer-events: none;
}
.lead{
	font-size:1rem;
	font-weight: 500;
}
.faq-btn{
	margin: 52px auto 0;
}
.contact-btn {
min-width: 280px;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color:#2E5C6D;
  border: 2px solid #2E5C6D;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background-color: #fff;
  color: #2E5C6D;
  border: 2px solid #2E5C6D;
}


/* # ===========================
# FAQ
# ========================== */

.page-top-block{
  position: relative;
  overflow: hidden;
  padding:148px 0 115px;
}

/* 右上の装飾 */
.page-top-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 384px;
  height: 320px;
  background: url("../images/page-header-left.svg") no-repeat left top;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* 左の装飾 */
.page-top-block::after {
  content: "";
  position: absolute;
  right: 0;
  top:0;
  width:364px;
  height:360px;
  background: url("../images/page-header-right.svg") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.faq {
  max-width: 970px;
  margin: 118px auto 0;
  position:relative;
  z-index: 1;
}

.faq-item {
  background-color: #fefefe;
  border-radius: 42px;
  margin: 0 auto 20px;
  transition: opacity 0.8s ease;
}

.faq-item:hover {
  background-color: #F7F7F7;
}
.faq-question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size:1.5rem;
  line-height: 1.4;
  font-weight: 900;
  width: 100%;
  padding:44px 80px 44px 120px;
  text-align: left;
}

/* Qアイコン */
.faq-question::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 78px;
  height: 78px;
  background: url("../images/icon-q.svg") no-repeat center center;
  background-size: contain;
}

/* アンサー部分 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0;
}
/* Aアイコン */
.faq-answer p {
  position: relative;
  padding: 15px 20px 0 120px ;
  font-size:1.25rem;
  font-weight: 700;
  text-align: left;
}

.faq-answer p::before {
  content: "";
  position: absolute;
  left: 20px;
  top:0;
  width: 78px;
  height: 78px;
  background: url("../images/icon-a.svg") no-repeat center center;
  background-size: contain;
}
.faq-item.open .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 36px 40px 0;
  text-align: left;
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
}

/* 横線 */
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: #EF483E;
  transition: transform 0.3s ease;
}

/* 横線 */
.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* 縦線（＋の縦棒） */
.faq-toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* open のとき縦線を消して「−」に */
.faq-item.open .faq-toggle::after {
  transform: scaleY(0);
}

.contact-block{
background-color:#fefefe;
	padding:44px 0 104px;
	position: relative;
}

/* # ===========================
# Contact
# ========================== */
.contact-f .page-top-block{
  padding:148px 0 0;
}
.contact-form-area{
  background-color:#fefefe;
  padding:0 0 60px 0;
}
.txt-wrap{
  width: 970px;
  margin: 100px auto 0;
  padding:92px 0 80px;
}
.txt-wrap p{
  text-align: left;
  font-size:1rem;
  line-height: 2.4;
}
.txt-wrap p span{
  font-weight: 700;
}

/* ===========================
   Firefox用 行間ズレ補正
   =========================== */
@-moz-document url-prefix() {
  h2.general br:not(.sp-br):not(.pc-br) {
    line-height: 0;
    content: "";
    display: block;
    margin: 0;
    padding: 0;
  }
}
