/* CSS Document */
*{  
	font-family: "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0.2em;
	line-height: 1.8;
}
body{
	background: #FCF2F7;
	z-index: -10;
	color: #373838;
}
/*ヘッダー、メニューここから*/
header{
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	background: #fcf2f7;
	position: sticky;
	top: 0;
	z-index: 10;
	letter-spacing: 0em!important;
	padding: 20px 6%;
}
header>:first-child{
	margin-top: 0;
	margin-right: auto;
	/*width: 150px;*/
	width: 220px;
	display: block;
}

nav ul {
    justify-content: space-around;
    list-style: none;
    padding: 0;
}
nav ul li {
	display: block;
	font-size: 25px;/*文字サイズ*/
	font-weight: bold; 
	text-align: center;/*メニューの文字を中央揃え*/
	position: relative;
	padding: 0 8px;
	color: #fcf2f7;
	transition: .5s;
	user-select: none;
	width: 80%; /* 固定幅を設定 */
	max-width: 350px;
	border-bottom: 3px solid;
	margin-top: 20px;
	margin-right: 25px;
}
nav ul li a {
	display:flex;
	align-items: center;
	flex-flow: column;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
	color: #fcf2f7;
}
.icon {
	width: 80px;
	margin-right: 25px;
}

.menu-btn {
		position: fixed;
		top: 20px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 50px;
		background-color: #3D3C52;
		position: absolute;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}
	#menu-btn-check{
		display: none;
		
	}
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}	
#menu {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left:100%;/*leftの値を変更してメニューを画面外へ*/
		z-index: 80;
		background: rgba(173,56,113,0.80);
		backdrop-filter: blur(5px);
		transition: all 0.5s;/*アニメーション設定*/
		display: flex;
		justify-content: center; /* 水平方向の中央揃え */
		align-items: center; /* 垂直方向の中央揃え */
		flex-direction: column;
	}
	#menu ul {
		padding: 70px 10px 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#menu ul li {
		width: 65%;
		margin: 15px auto;
		padding: 2%;
		background: #FCF2F7;
		font-size: 20px!important;
		letter-spacing: 0.1em;
	}
	#menu ul a{
		text-align: center;
	}
	#menu-btn-check:checked ~ #menu {
		left: 0;/*メニューを画面内へ*/
	}

@media (min-width: 700px) {
	header{
		position: fixed;
	}
	nav ul {
		display: flex;
		justify-content: space-around;
		list-style: none;
		padding: 0;
	}
	nav ul li {
		font-size: 13px;
		text-align: center;
		width: 60px; /* 固定幅を設定 */
		border-bottom:none;
		margin-top: 0;
		transition: .2s;
		top:0;
	}
	nav ul li:hover{
		top:-2px;
		filter: brightness(190%);
	}
	nav ul li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-decoration: none;
		color: #373838;
	}

	.icon{
		width: 40px;
		margin-right: 0;
		color: #373838;
	}

	.menu-btn {
		display: none;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		display: none;
	}
	#menu ul {
		height: 80%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	#menu ul li {
		margin: 20px auto;
	}
	#menu {
		display: flex;
  		justify-content: center;
  		background: #fcf2f7;
  		position: sticky;
  		top: 0;
  		z-index: 10;
		flex-direction: row;
	}
	#menu-btn-check{
		display: none;
		
	}
}
/*ヘッダー、メニューここまで*/
/*トップページ動画ここから*/
#top-v{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9の縦横比 (9/16 = 56.25%) */
  overflow: hidden; /* 見切れを隠す */
  display: flex;
  justify-content: center;
  align-items: flex-end; /* テキストを下部に */
  text-align: center;
}
#headcon-v {
  width: 100%; /* ビューポート幅いっぱい */
  height: 100%; /* 16:9の高さにフィット */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover; /* 横を優先、上下は見切れOK */
	overflow: visible;
	filter: sepia(20%) brightness(50%) blur(3px);
}

#massage {
	position: absolute;
	bottom: 5rem;
	width: 100%;
	z-index: 1;
	display: flex;
	flex-direction: column; 
	justify-content: flex-start;
	align-items: flex-start;
	color: white;
	line-height: 1!important;
	margin-left: 30px;
}
#massage p{
	color: white;
	text-shadow: 0 0 10px #373838;
}
#massage p:first-of-type {
	font-size: 5vw;
	font-weight: 800;
	line-height: 1.5;
}
#massage p:nth-of-type(2) {
	font-size: 2vw;
}

/*PC*/
@media (min-width: 700px) {
	#top-v{
	
    height: 100vh; /* ビューポートの高さ */
    padding-bottom: 0;
}
#headcon-v {
    width: 100vw; /* ビューポート幅いっぱい */
    height: 100vh; /* ビューポート高さいっぱい */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央揃え */
}
	#massage{
		margin-left: 80px;
	}
	#massage p:first-of-type {
		font-size: 4vw;
		font-weight: 900;
	}
	#massage p:nth-of-type(2) {
		font-size: 1.5vw;
	}

}

/*トップページ動画ここまで*/
/*メインコンテンツここから*/
h1{
	font-size: 5vw;
	font-weight: 800;
	text-align: center;
	padding: 5px 0;
    border-top: 3px solid#373838;
    border-bottom: 3px solid#373838;
	max-width: 1000px;
	margin: 40px auto 0;
}
#top{
	margin: 40px auto 0;
}
h2{
	font-size: 4.5vw;
	font-weight: 800;
	border-left: solid 5px #373838;
	padding-left: 20px;
	margin: 60px 0 20px;
}
h3{
	font-size: 4vw;
	font-weight: 600;
	padding-bottom: 2px;
	border-bottom: 2px solid #373838;
	margin: 30px 0 20px;
}
h4{
	font-size: 3.8vw;
	font-weight: 600;
	margin: 30px 0 10px;
}
h5{
	font-size: 3.5vw;
	font-weight: 600;
	margin: 30px 0 10px;
}
p{
	text-align: left!important;
	font-size: 13px;
	margin-bottom: 30px;
}
section small{
	display: block;
	font-weight: bold;
	font-size: 12px;
}

#h1s h1{
	font-size: 30px;
	text-align: center;
	font-weight: bold;
	padding: 10px 60px;
	margin: 20px;
	color: #373838;
	background-color: #FCF2F7;
	border-radius: 10px;
	filter: drop-shadow(0 8px 0 rgba(173,56,113,0.6));
    border-top: none;
    border-bottom: none;
	top: -10px;
  	position: relative;
}
#h1s{
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:repeating-linear-gradient(
	-45deg,
	#D47AA5,
	#D47AA5 2px,
	#F9D7EA 0,
	#F9D7EA 20px
	);
	margin-bottom: 50px;
	margin-top: 0;
}
	

strong{
	font-weight: bold;
}

article a{
	color: #ad3871;
	font-weight: 500;
	transition: .3s;
}
article a:hover{
	color: #EB9ECB
}
article img{
	filter: drop-shadow(0 0 15px #E1C6D3);
}

article{
	margin: 0 auto;
	width: 90%;
	max-width: 1000px;
}
section div{
	margin: 20px auto 0;
	width: 90%;
	text-align: center;
}

.audio-column{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}
.content{
	margin: 10px;
	padding: 0 20px 20px;
	background: #F9D7EA;
	border-radius: 15px;
	flex: 0 1 45%;
}

.content p{
	margin-bottom: 20px;
}

details{
	margin-bottom: 20px;
	text-align: left;
	font-size: 13px;
}
summary{
	color: #AD3871;
	padding: 5px;
	margin-bottom: 5px;
	border-radius: 10px;
	list-style: none;
}
summary::after{
	font-family: "Font Awesome 5 Free";
	content: '\f0d7';/*unicodeを使ってアイコンを挿入*/
	font-size: 16px;/*サイズは自由に変更*/
	font-weight: 900;/*SOLIDは900にしないと表示できない*/
	margin-left: 5px;/*文字との隙間を調整*/
	color: #ad3871;/*色は自由に変更*/
	right: 25px;
	top: 12px;
}
details>div{
	background: #F1F1F1;
	width: 100%;
	padding: 10px 10px 1px;
	border-radius: 10px;
	margin: 0;
}
details>div>p{
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 12px;
}

.player * {
	margin: 0;
	width: auto;
	text-align: left;
}

.colum{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.colum div:not(.audioplayer, .audioplayer-playpause, .audioplayer-time, .audioplayer-time-current, .audioplayer-bar, .audioplayer-bar-loaded, .audioplayer-bar-played, .audioplayer-time, .audioplayer-time-duration, .audioplayer-volume, .audioplayer-volume-button, .audioplayer-volume-adjust,.audioplayer-bar-loaded,.audioplayer-volume-adjust>div,.audioplayer-volume-adjust > div > div){
	padding: 20px ;
	flex: 1 1 300px;
}
.colum img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.list{
	list-style: disc;
	margin-left: 30px;
	margin-bottom: 20px;
}
.list li{
	padding-left: 10px;
	margin-bottom: 10px;
}

dl{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 20px;
	font-size: 13px;
}
dt, dd{
	padding: 0 10px 10px;
	border-bottom: dotted 3px #373838;
	margin-top: 10px;
}
dt{
	font-weight: 700;
	display: flex; 
	align-items:center;
	justify-content: center;
	flex: 0 1 40%;
}
dd{
	flex: 0 1 60%;
	text-align: left;
}

.btn {
	display: inline-block;/*文字リンクをボタン化するおまじない*/
	color: #fcf2f7;/*文字の色*/
	font-size: 18px;/*文字サイズ*/
	font-weight: bold; 
	text-align: center;/*メニューの文字を中央揃え*/
	position: relative;
	margin: 0 auto  20px;
	padding: 10px 50px 10px 40px;
	text-decoration: none;
	background: #ad3871;
	transition: .3s;
	border-radius: 30px;
	user-select: none;
	border: 2px solid #ad3871;
}
.btn::after{
	font-family: "Font Awesome 5 Free";
	content: '\f054';/*unicodeを使ってアイコンを挿入*/
	font-size: 16px;/*サイズは自由に変更*/
	font-weight: 900;/*SOLIDは900にしないと表示できない*/
	margin-left: 10px;/*文字との隙間を調整*/
	color: #fcf2f7;/*色は自由に変更*/
	transition: .3s;
	position: absolute;
	right: 25px;
	top: 12px;
}
.btn:hover {
	background: #FCF2F7;
	color: #ad3871;
/*	padding: 10px 60px 10px 50px;*/	
}
.btn:hover::after{
  color: #ad3871;/*色は自由に変更*/
	right: 20px;
}


#para1 {
	left: 3%;
	position: fixed;
	top: 600px;
	width: 300px;
	height: auto;
	z-index: -1;
  opacity: 0.2;
/*	animation:float 3s infinite ;
*/
}

#para2 {
	position: fixed;
	right: 3%;
	top: 400px;
	width: 300px;
	height: auto;
	z-index: -1;
  opacity: 0.2;
/*	animation:float 5s infinite ;
*/
}
#para3 {
	position: fixed;
	right: 5%;
	top: 1000px;
	width: 300px;
	height: auto;
	z-index: -1;
  opacity: 0.2;
/*	animation:float 4s infinite ;
*/
}
/*
@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(0, -10px); }
  100% { transform: translate(0, 0); }
}
*/
.yt{
	width: 100%;
	margin-bottom: 30px;
	aspect-ratio: 16 / 9 !important;

}
.yt iframe {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
#sorry{
	margin-top: 30px;
}
#sorry p {
	text-align: center!important;
	font-size: 18px;
	font-weight: bold; 
	vertical-align: top;
	margin: 0 auto 30px;
	padding: 10px 30px;
	min-width: 200px;
	max-width: 30%;
	background: #E9DBE3;
	border-radius: 10px;
}
#sorry p:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 15px solid #E9DBE3;
}
#sorry p{
    animation-name: sfw;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}

@keyframes sfw {
    0% {
        transform: translate(0,0px);
    }

    100% {
        transform: translate(0,-15px)
	}
}

/*PC*/
@media (min-width: 700px) {
	article{
		width: 80%;
	}
	h1{
		font-size: 35px;
		margin-top: 180px;
	}
	#h1s{
		margin-top: 110px;
	}
	h2{
		font-size: 25px;
	}
	h3{
		font-size: 25px;	
	}
	h4{
		font-size: 18px;
	}
	h5{
		font-size: 16px;
	}
	p{
		font-size: 16px;
	}
	dl{
		font-size: 15px;
	}
	
	#para1 {
		left: 7%;
	}
	#para2 {
		right: 10%;
	}
	#para3 {
		right: 20%;
	}
	
}
/*メインコンテンツここまで*/
/*フッターここから*/
footer{
    width: 100%;
    padding:20px 0 50px;
    background-color: #AD3871;
	margin-top: 150px;
}
footer small{
	color: #FCF2F7;
	font-size: 12px;
	font-weight: bold;
}
footer>div{	
	width: 85%;
    max-width: 1000px;
    padding: 1% 0 2%;
	margin: 0 auto;
	flex-flow: row wrap;
	justify-content: space-between;
}

#link{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

#fcal{
	display: flex;
	justify-content: flex-start;
	flex-flow: row wrap;
	flex: 0 1 85%;
}
		
#fcal a:not(.fnav>li a)::before{
	font-family: "Font Awesome 5 Free";
	content: '\f054';
	font-size: 15px;
	font-weight: 900;
	margin-right: 4px;
	color: #2E302B;
}
		
#fcal ul{
	flex: 0 1 30%;
	white-space: nowrap;
	margin: 0 0 20px;
}
.fnav-m {
	font-weight: bold;
		}
#fcal ul a{
	font-size: 14px;
	display: inline-block;/*文字リンクをボタン化するおまじない*/
	color: #EBC1D6;/*文字の色*/
	position: relative;
	transition: .4s;
}
#fcal ul a:hover{
	color: #FCF2F7;
	transform: translate(3px,0px);
}

#fshare{
	flex: a 1 15%;
}

#social{
	display: flex;
	justify-content: center;
	margin: 0 0 30px;
}

footer p{
	font-size: 13px;
	color: #FCF2F7;
}
#bn{
	border-bottom: solid 2px #FCF2F7;
	text-align: center;
	padding: 20px 1%;
	margin-bottom: 15px; 
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
}
#bn a{
	margin: 10px 0.25%;
	transition: .3s;
}
#bn a:hover{
	filter: brightness(130%);
}

/*フッターここまで*/