@charset "utf-8";

/* ----------------------------------------
- RESET
---------------------------------------- */
*,*::before,*::after{box-sizing:border-box}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1em}input,button,textarea,select{font:inherit}/*img:not([alt]){filter:blur(10px)}*/@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}


/* CLEAR
----------------------------------------------------- */
.clear {clear:both;}


/* CLEAR FIX
----------------------------------------------------- */
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}


/* ----------------------------------------
- FORMAT
---------------------------------------- */
html {font-size:62.5%;}/*デフォルト16px*/

/*body {color:#636464; font-family:YakuHanJP,"Cormorant","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","Helvetica Neue",Helvetica,Arial,"Lucida Grande","メイリオ",Meiryo,sans-serif; text-size-adjust:100%; -webkit-text-size-adjust:100%; background:url("../img/back.png") center center / cover no-repeat fixed;}*/

body {color:#636464; font-family:"Zen Maru Gothic", sans-serif; text-size-adjust:100%; -webkit-text-size-adjust:100%; background:url("../img/back.png") center center / cover no-repeat fixed;}

a {text-decoration:none; outline:none; color:#636464; -webkit-tap-highlight-color:rgba(0,0,0,0);}

.spNone {display:none!important;}
.pcNone {display:block!important;}
/*** 960px以上 PCサイズcss適用 ***/
@media screen and (min-width: 960px) {
  .spNone {display:block!important;}
  .pcNone {display:none!important;}
}


/* ヘッダー */
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

@media screen and (min-width: 960px) {
  .header {
    height: 100px;
    background: url("../img/back.png") center center / cover no-repeat fixed;
    padding-bottom: 120px;
  }
}

.header_inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.header_title {
  width: 250px;
  visibility: visible;
}

@media screen and (min-width: 960px) {
  .header_title {
    width: 600px;
  }
}

.header_title a {
  display: block;
  width: 100%;
  height: 100%;
  position:relative;
  top: 50px;
  left: 20%;
}

@media screen and (min-width: 960px) {
  .header_title a {
    left:10px;
    z-index: 10;
	margin-top: 70px;
  }
  .header_title a {
  	transition-property: opacity;
  	transition-duration: 0.5s;
  }
  .header_title a:hover {
  	opacity: 0.7;
  }
}

.header_nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: ease .4s;
}


@media screen and (min-width: 960px) {
  .header_nav {
    position: static;
    transform: initial;
    height: inherit;
  }
}

.nav-items {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.sns-items {
  position: absolute;
  top: 320px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  border-top: solid 1px #fff;
}


@media screen and (min-width: 960px) {
  .nav-items, .sns-items {
    width: 100%;
    height: 100%;
    display: flex;
    position: static;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  .nav-items {
    justify-content: flex-end !important;
    padding: 20px 20px 0 0 !important;
  }
  .sns-items {
    border: none;
    justify-content: end !important;
    position: relative;
    top: -28px;
    left: -520px;
  }
  hr {
  	height: 0; margin: 0; padding: 0; border: 0;
  	/*border: solid 1px #ee9abb;*/
  	border: solid 1px #fff;
  	width: 480px;
  	float: right;
  	margin: -115px 0 0;
  }
}

.nav-items_item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
  font-family: "Bagel Fat One", system-ui;
}

.nav-items_item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .nav-items_item a {
    margin-bottom: 0;
    /*color: #ee9abb;*/
    color: #fff;
    transition : all 0.5s ease 0s;
	width: fit-content;
	font-size: 30px;
  }
  .nav-items .nav-items_item a {
    margin-left: 35px;
  }
  .sns_items .nav-items_item a {
    margin-left: 35px;
  }
  .nav-items .nav-items_item a:hover {
    color: #ee9abb;
  }
}

.nav-items_item i {
  color: #fff;
  font-size: 20px;
  float: left;
  margin: 30px 0 0 20px;
}

.nav-items_item i.fa-x-twitter {
  margin-left: 0;
}

@media screen and (min-width: 960px) {
  .nav-items_item i {
    /*color: #ee9abb;*/
    color: #fff;
	margin: 0;
	font-size: 30px;
  }
  .nav-items_item i:hover {
    color: #ee9abb;
    transition : all 1s ease 0s;
  }
}


/* ハンバーガーメニュー */
.header_hamburger {
  width: 48px;
  height: 100%;
  margin-top: 5px;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  font-family: "Concert One", sans-serif;
}

.hamburger::after {
	content: "MENU";
	font-size: 13px;
	/*color: #ce9ef3;*/
	color: #fff;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 100%;
  height: 3px;
  /*background-color: #ce9ef3;*/
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
  border-radius: 10px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 6px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header_nav.active {
  transform: translateX(0);
  background: linear-gradient(to bottom, #e7d2f7, #ffbfd4, #bbd9f1);
}

.hamburger.active::after {
	content: "CLOSE";
  color: #fff;
}

.hamburger.active span {
  background-color: #fff;
}

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
}


/*=============
main image
=============*/
#mainImage div {
  background-image: url(../img/main.png);
	background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
  margin: 190px 0 0;
}

@media screen and (min-width: 960px) {
  #mainImage div{
    height: 110vh;
	margin: 0;
  }
}


/*=============
anchor
=============*/
#about, #toys, #use {
	scroll-margin-top: 70px;
}

@media screen and (min-width: 960px) {
#about, #toys, #use {
	position: relative;
	top: -150px;
}
}


/*=============
content  area
=============*/
#content {
	width: 100%;
	padding: 50px 20px;
}

#content .copy p {
	font-size: 12px;
    color: #724238;
    background: #fff;
    width: 100%;
    margin: 0 auto 70px;
    text-align: center;
	border-radius: 30px;
	padding: 25px 0;
	line-height: 1.5;
	font-weight: 900;
	outline: 2px dashed rgb(227, 135, 181);
	outline-offset: -10px;
}

#content .copy p span {
	font-size: 16px;
    color: #ff328b;
}

#content .group {
	font-size: 13px;
    color: #fff;
    width: 100%;
    margin: 40px auto 50px;
    text-align: center;
	font-weight: 900;
}

#content .group .ds_logo {
	margin: 0 auto;
	width: 50%;
}

#content .group p {
    font-size: 20px;
    margin: 20px auto 30px;
}

#content .group ul.group_info {
	padding: 0;
	justify-content: space-between;
	display:flex;
	flex-wrap:wrap;
}

#content .group li.group_img {
	width: 47.093%;
	position: relative;
	margin: 0 0 25px 0;
}

#content .group div.group_name {
	width: 85%;
	text-align: center;
	font-size: 11px;
	padding: 0.3em 0;
    margin: -5px auto 0;
    color: #ee9abb;
    background: #fff;
    box-shadow: 0px 0px 0px 5px #fff;
    border: dashed 1px #ee9abb;
    border-radius: 8px;
	position: relative;
	z-index: 10;
	font-weight: 900;
}

#content .group ul.sns_items {
    text-align: center;
	margin: 15px auto 0;
}

#content .group li.sns_item {
    display: inline;
	margin: 0 5px 0 0;
}

#content .group li.sns_item:last-child {
	margin: 0;
}

#content .group li.sns_item i {
	color: #fff;
	font-size: 15px;
}
	
#content h2 {
	color: #ee9abb;
	font-size: 30px;
	font-family: "Bagel Fat One", system-ui;
}

#content ul li {
	list-style: none;
}

#content .title {
	font-size: 22px;
	color: #ee9abb;
	font-weight: 900;
	text-align: center;
	text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
		-2px 2px 0 #FFF, 2px -2px 0 #FFF,
		0px 2px 0 #FFF,  0 -2px 0 #FFF,
		-2px 0 0 #FFF, 2px 0 0 #FFF;
}

#content a.back {
	width: fit-content;
	color: #8d5cbc;
	font-size: 15px;
	font-family: "Bagel Fat One", system-ui;
	display: block;
	margin: 0 auto;
	text-align: center;
}

#pageTop {position:fixed; bottom:10px; right:10px; z-index:9;}
#pageTop a {background:url(../img/page_top_icon.png) center no-repeat; width:60px; height:0; padding:64px 0 0; display:block; overflow:hidden;}

@media screen and (min-width: 960px) {
  #content {
    width: 960px;
    padding: 0;
    margin: 60px auto;
  }
  #content .copy p {
    font-size: 15px;
    line-height: 1.8;
    margin: 100px auto 120px;
  }
  #content .copy p span {
    font-size: 22px;
  }
  #content .group .ds_logo {
	width: auto;
  }
  #content .group p {
    font-size: 30px;
    margin: 30px auto 50px;
  }
#content .group ul.group_info {
	justify-content: flex-start;
}
#content .group li.group_img {
	/*width: 31.5%;*/
	width: 48.625%;
	margin-right: 2.75%;
	margin-bottom: 70px;
}
#content .group li.group_img:nth-child(2n) {
	margin-right:0;
}
#content .group div.group_name {
	width: 70%;
	font-size: 20px;
	padding: 0.4em 0;
    margin: -20px auto 0;
    box-shadow: 0px 0px 0px 10px #fff;
	border: dashed 2px #ee9abb;
}
#content .group ul.sns_items {
	margin: 30px auto 0;
}
#content .group li.sns_item {
	margin: 0 15px 0 0;
}
#content .group li.sns_item i {
    transition : all 0.5s ease 0s;
	font-size: 30px;
}
#content .group li.sns_item i:hover {
    color: #ee9abb;
}
  #content h2 {
	font-size: 40px;
  }
  #content .title {
  	font-size: 26px;
  }
  #content a.back {
	font-size: 20px;
	padding: 0 0 40px;
  }
  #content a.back:hover {
	color: #d1a2f5;
    transition : all 1s ease 0s;
  }
  #content a.disc_back {
	margin-top: -150px;
  }
  #pageTop {bottom:20px; right:20px;}
  #pageTop a {transition-property: opacity; transition-duration: 0.5s;}
  #pageTop a:hover {opacity: 0.7;}
}


/*=============
footer  area
=============*/
footer {
	width: 100%;
	background: #e387b5;
	margin: 30px 0 0;
	padding: 0 0 50px;
	text-align: center;
	color: #fff;
}

footer a {
	color: #fff;
}

.footer-logo {
	width: 50%;
	display: block;
	position: relative;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}

footer ul li {
	display: inline-block;
	width: fit-content;
}

.footer-sns {
	position: relative;
	top: -10px;
}

.footer-menu {
	position: relative;
	top: 15px;
}

.footer-sns li.fc a {
    font-size: 20px;
    font-family: "Bagel Fat One", system-ui;
}

.footer-sns i {
	font-size: 25px;
	margin: 0 0 0 20px;
}

.footer-sns i.fa-x-twitter {
	margin-left: 0;
}

.footer-menu li {
	font-size: 10px;
	margin: 0 0 0 15px;
}

.footer-menu li:first-child {
	margin-left: 0;
}

.copyright {
	font-size: 10px;
	position: relative;
	top: 30px;
	font-family: "Bagel Fat One", system-ui;
}

@media screen and (min-width: 960px) {
	footer {
		margin: 100px 0 0;
	}
	footer a {
  		transition : all 0.5s ease 0s;
  	}
	footer a:hover {
		color: #f6dfe9;
	}
	.footer-logo {
		width: 300px !important;
		top: -85px;
	}
	.footer-sns {
		top: -25px;
	}
	.footer-menu {
		top: 12px;
	}
	.footer-sns li.fc a {
	    font-size: 35px;
	}
	.footer-sns i {
		font-size: 35px;
		margin: 0 0 0 30px;
	}
	.footer-menu li {
		font-size: 12px;
		margin: 0 0 0 40px;
	}
	.copyright {
		top: 35px;
	}
}


/*=============
個別ページ
=============*/
.static h2 {
	padding: 130px 0 30px;
}

.static h2.event_month {
	padding: 180px 0 0;
}

.static h3 {
	font-size: 16px;
	text-align: center;
	margin: 30px 0 20px;
}

.static h3.list-title {
	text-align: left;
}

.static h3.entry-title {
	text-align: left;
	padding: 130px 0 10px;
	margin: 0;
}

.static h4 {
	font-size: 16px;
	margin: 30px 0 15px;
}

.static p {
	font-size: 14px;
	line-height: 1.8;
}

.static p.date {
	font-size: 15px !important;
	color: #adadad !important;
	font-family: "Bagel Fat One", system-ui;
}

.static .page-content {
	padding: 10px 0 40px;
}

.static .page-content p {
	margin: 40px 0 10px;
}

.static .page-content .post h3 {
	margin: 0 0 20px;
	padding: 0;
	font-weight: normal;
}

.static .list {
	margin-top: -10px;
}

.static .list .post a {
	width: fit-content;
	display: block;
}

.static ul {
	margin: 50px auto;
	padding: 0;
}

.static li {
	width: 47.5%;
	margin: 0 5% 2em 0;
	float: left;
	text-align: center;
	font-weight: bold;
}

.static li:nth-child(4n) {
	margin-right: 0;
}

.static li img {
	margin: 0 0 10px;
}

.static li p {
	line-height: 1.5;
}

.static li p.sns_icon {
	display: inline-block;
}

.static li p i {
	font-size: 20px;
	margin: 10px 7px 0;
}

.static .profile .title {
	margin: 0 0 20px 0 !important;
	font-weight: bold;
}

.static .profile .item {
	font-size: 12px;
	margin: 10px 0 !important;
}

.static .profile .item span {
	font-weight: bold;
}

.static .profile .sns {
  	display: inline-block;
	margin: 20px 20px 0 0 !important;
}

.static .profile .sns:last-child {
	margin: 20px 0 0 0 !important;
}

.static .profile .sns a {
  	font-size: 25px;
}

.static .list .disc_item {
	margin: 0 0 50px;
}

.static .disc_item .thumb {
	margin: 140px 0 20px;
}

.static .list .disc_item .thumb {
	margin: 0 0 10px;
}

.static .disc_item .title {
	font-size: 16px !important;
	text-align: center;
	margin: 0 0 10px 0;
}

.static .disc_item .category {
	font-size: 12px !important;
	text-align: center;
	margin: 0;
}

.static .disc_item p.date {
	text-align: center;
	color: #767676 !important;
	margin: 0;
}

.static .disc_item .distribution {
	text-align: center;
	margin: 0 auto;
}

.static .list .disc_item .title,
.static .list .disc_item .category,
.static .list .disc_item p.date,
.static .list .disc_item .distribution {
	text-align: left;
}

.static .list .disc_item .title {
	font-size: 13px !important;
	margin: 0;
}

.static .list .disc_item .category,
.static .list .disc_item p.date {
	font-size: 10px !important;
}

.static .disc_item .apple,
.static .disc_item .spotify,
.static .disc_item .tunecore {
	margin: 0 auto;
}

.static .disc_item .spotify a {
  	margin: 0 0 0 20px;
}

.static .list .disc_item .apple,
.static .list .disc_item .spotify,
.static .list .disc_item .tunecore {
	margin-top: -10px;
}

.static .video_item {
	aspect-ratio: 16 / 9;
	margin: 140px 0 20px;
}

.static .video_item iframe {
	width: 100%;
	height: 100%;
}

.static .video-archive_img img {
	width: 960px;
	height: 198px;
	object-fit: cover;
}

.static .video-archive_img .title,
.static .video_item .title {
	font-size: 14px !important;
	margin: 5px 0 0;
}

.static .video-archive_img .date {
	margin: 0 0 50px !important;
}


@media screen and (min-width: 960px) {
	.static h2 {
		padding: 70px 0 30px;
	}
	.static h2.event_month {
		padding: 130px 0 0;
	}
	.static h3 {
		font-size: 20px;
		margin: 40px 0;
	}
	.static h3.entry-title {
		padding: 100px 0 10px;
		margin: 0;
	}
	.static h4 {
		font-size: 20px;
	}
	.static .page-content {
		padding: 20px 0 100px;
	}
	.static .list .post a {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .list .post a:hover {
		opacity: 0.5;
	}
	.static ul {
		margin: 70px auto;
	}
	.static li {
		width: 30%;
		margin: 0 0 40px 0;
		margin-right: 5%;
	}
	.static li:nth-child(even) {
		margin-right: 5%;
	}
	.static li:nth-child(3n) {
		margin-right: 0;
	}
	.static li img {
		margin: 0 0 20px;
	}
	.static li p {
		font-size: 15px;
	}
	.static li p i {
		transition-property: opacity;
		transition-duration: 0.5s;
		font-size: 25px;
		margin: 20px 10px;
	}
	.static li p i:hover {
		opacity: 0.5;
	}
	.static .profile_list div {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .profile_list div:hover {
		opacity: 0.5;
	}
	.static .profile .title {
		margin: 0 0 30px 0 !important;
	}
	.static .profile .item {
		font-size: 15px;
		margin: 15px 0 !important;
	}
	.static .profile .sns a {
		font-size: 30px;
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .profile .sns a:hover {
		opacity: 0.5;
	}
	.static .profile .sns {
		margin-right: 30px !important;
	}
	.static .disc_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.static .list .disc_item {
		margin: 0 30px 60px 0;
	}
	.static .list .post:nth-of-type(3n) .disc_item {	
		margin: 0;
	}
	.static .disc_item .thumb {
		margin: 100px 0 0;
		padding: 0 0 150px;
	}
	.static .list .disc_item .thumb {
		width: calc(900px / 3) ;
		height: auto;
		margin: 0 0 10px 0;
		padding: 0;
	}
	.static .list .disc_item .info {
  		position: static;
  	}
	.static .list .disc_item .apple a,
	.static .list .disc_item .spotify a {
		font-size: 30px;
  	}
  	.static .list .disc_item .spotify a {
		font-size: 25px;
		margin: 0 0 0 10px;
  	}
  	.static .list .disc_item .tunecore a {
		font-size: 10px;
		margin-top: 5px;
  	}
	.static .disc_item .title {
		text-align: left;
		font-size: 30px !important;
	}
	.static .list .disc_item .title {
		font-size: 15px !important;
		margin-bottom: 5px;
	}
	.static .disc_item .category {
		text-align: left;
	}
	.static .disc_item p.date {
		text-align: left;
	}
	.static .list .disc_item .category,
	.static .list .disc_item p.date {
		font-size: 13px !important;
	}
	.static .disc_item .distribution {
		text-align: left;
	}
	.static .disc_item .apple a,
	.static .disc_item .spotify a,
	.static .disc_item .tunecore a {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .disc_item .apple a:hover,
	.static .disc_item .spotify a:hover,
	.static .disc_item .tunecore a:hover {
		opacity: 0.5;
	}
	.static .video_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.static .list .video-archive_img {
		width: calc(930px / 2) ;
		height: auto;
		margin: 0 30px 60px 0;
		padding: 0;
	}
	.static .list .post:nth-of-type(2n) .video-archive_img {	
		margin: 0;
	}
	.static .video-archive_img img {
		height: 262px;
	}
	.static .video-archive_img .title,
	.static .video_item .title {
		font-size: 16px !important;
		margin: 10px 0 0;
	}
	.static .video_item {
		margin: 100px 0 150px;
	}
}


/*=============
FORM
=============*/
.contact {
	margin-bottom: 60px !important;
}

.c-form__required {
	color: #ef8383;
}

input, textarea {
  padding: 10px 10px;
  border: 1px solid #cecece;
  background: #fff;
  border-radius: 5px;
  background-clip: padding-box;
  box-sizing: border-box;
  width: 100%;
}

textarea {
  height:100px;
}

.btn {
  background-color: #ee9abb;
  padding: 12px 45px;
  margin-bottom: 30px;
  border: 1px solid #ee9abb;
  display: block;
  cursor: pointer;
  color: #fff;
}

.conf {
	margin-top: 15px;
}

.backBtn {
	background-color: #f5b5ce;
	border: 1px solid #f5b5ce;
}

@media screen and (min-width: 960px) {
	.contact {
		margin-bottom: 200px !important;
	}
	textarea {
		height:200px;
	}
	.btn {
		width: 50%;
		margin: 0 auto 40px;
		transition: .5s;
	}
	.btn:hover {
		opacity: 0.7;
	}
	.conf {
		margin-top: 20px;
	}
	.backBtn {
		margin-bottom: 60px;
	}
}


/*===================================================
  anim
====================================================*/
.anim.fadeX,
.anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.anim.fadeX {
    transform: translateX(20px);
}
.anim.fadeY {
    transform: translateY(20px);
}
.anim.fadeX.on,
.anim.fadeY.on {
    opacity: 1;
}
.anim.fadeX.on {
    transform: translateX(0px);
}
.anim.fadeY.on {
    transform: translateY(0px);
}