@charset "utf-8";


/*
Theme Name: Magicaliny
Theme URL: http://apricotyk.cineraria-studio.com/
Description: つゆり花鈴個人サイト
Author: Lidea
Version: 1.3
*/

/*===================================================================

	000. reset

===================================================================*/

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

html {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
	width: device-width;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
	display: block;
}

body {
	margin: 0;
	font-family: "M PLUS Rounded 1c";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
	text-shadow: 0 0 5px rgba(255,255,255,.5);
	text-align: left;
	background-color: transparent;
	font-variant-ligatures: none;
}

[tabindex="-1"]:focus {
	outline: 0 !important;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	margin: 0;
}

abbr[title], abbr[data-original-title] {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

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

dt {
	font-weight: 700;
}

dd {
	margin: 0;
}

blockquote {
	margin: 0;
}

b, strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

a {
	text-decoration: none;
	background-color: transparent;
	transition: .5s;
	backface-visibility: hidden;
	color: #fff;
}

a:hover {
	opacity: .7;
}

a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

a img{
	transition: .5s;
	backface-visibility: hidden;
}

a:hover img{
	opacity: .7;
}

pre, code, kbd, samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1em;
}

pre {
	margin: 0;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

figure {
	margin: 0;
}

img {
	vertical-align: middle;
	border-style: none;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
}

label {
	display: inline-block;
	margin: 0;
}

button {
	border-radius: 0;
}

button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

input, button, select, optgroup, textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button, input {
	overflow: visible;
}

button, select {
	text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="radio"], input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="date"], input[type="time"],
input[type="datetime-local"], input[type="month"] {
	-webkit-appearance: listbox;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}

[hidden] {
	display: none !important;
}

/*===================================================================

	001. common

===================================================================*/


/*---------------------------------------
	001. box
---------------------------------------*/
.wrapper{
	background: url(assets/images/lace.png) repeat-x top left / 30% fixed;
	width: 100%;
	overflow: hidden;
}

.wrapper::before{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: translate3d(0, 0, -1px);
	width: 75%;
	height: 100vh;
	background: url(assets/images/mv.png) no-repeat top center / cover;
	z-index: -1;
}

.box{
	width: 150%;
	transform: rotate(10deg);
	background: rgba(170,93,112,.7);
	position: relative;
	margin: 150px 0 0 -25%;
	padding: 100px 25%;
}

.box:nth-of-type(even){
	transform: rotate(-10deg);
}

.box:nth-of-type(even) .section{
	transform: rotate(10deg);
}

.section{
	max-width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transform: rotate(-10deg);
}

.cont{
	max-width: 100%;
}

.inner{
	position: relative;
	margin-bottom: 30px;
}

/*---------------------------------------
	002. text
---------------------------------------*/

.sect-title, h1:not(.logo){
	font-weight: 400;
	font-size: 38px;
	margin-bottom: 20px;
}

.sect-subtitle{
	margin-bottom: 20px;
}

.gray{
	color: rgba(255,255,255,.8);
}

.inner-title, h2:not(.sect-title){
	margin-bottom: 20px;
}

.inner-title::before, h2:not(.sect-title)::before{
	content: "●";
	color: #A95D71;
	text-shadow: none;
	margin-right: .25em;
}

/*---------------------------------------
	003. button
---------------------------------------*/

*[role="button"]{
	outline: none;
}

.button a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: #aa5d70;
	padding: 1em;
}

/*---------------------------------------
	004. swiper
---------------------------------------*/

.swiper__arrow{
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: calc(50% - 25px);
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 80;
}

.swiper__next, .swiper__prev{
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	cursor: pointer;
	transition: .5s;
	position: absolute;
}

.swiper__next{
	border-width: 25px 0 25px 25px;
	border-left-color: #fff;
	right: -50px;
}

.swiper__prev{
	border-width: 25px 25px 25px 0;
	border-right-color: #fff;
	left: -50px;
}

.swiper__next:hover, .swiper__prev:hover{
	opacity: .7;
}

.swiper-container-initialized{
	overflow: hidden;
}

.swiper-wrapper img{
	height: auto;
}

/*---------------------------------------
	005. form
---------------------------------------*/

.form{
	margin: 150px auto 50px;
}

.wpcf7-form > p{
	display: table;
	width: 90%;
	table-layout: fixed;
	margin: 0 auto 30px;
}

.form__cont{
	display: table-row;
}

.form__cont span{
	display: table-cell;
}

.form__title{
	width: 15%;
	vertical-align: middle;
}

.form__title.aster::after{
	content: "(必須)";
	font-size: 12px;
	opacity: .7;
	margin: 0 .25em;
	display: inline-block;
}

.wpcf7-form-control{
	width: 100%;
	padding: 5px;
	border: 2px solid #aa5d70;
	background: rgba(255,255,255,.95);
	outline: none;
	color: #6B2132;
}

.wpcf7-form-control.wpcf7-submit{
	cursor: pointer;
	width: 30%;
	display: block;
	margin: 0 auto;
	padding: 15px;
	color: #aa5d70;
	transition: .5s;
	font-size: 18px;
}

.wpcf7-form-control.wpcf7-submit:hover{
	opacity: .7;
}

div.wpcf7-response-output{
	border: 2px solid #EE5D67;
	padding: 10px;
	margin: 0 auto;
	width: 50%;
}

div.wpcf7-mail-sent-ok{
	border: 2px solid #fff;
}

/*===================================================================

	002. header

===================================================================*/

.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

.logo{
	width: 20%;
	max-width: 160px;
	color: #aa5d70;
	font-size: 12px;
	text-align: center;
}

.logo img{
	width: 80%;
	display: block;
	margin: 0 auto 10px;
}

/*---------------------------------------
	001. menu
---------------------------------------*/

#trigger{
	display: none;
}

.overlay{
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 0;
	transition: .5s;
	transform: scale(0);
	z-index: 100;
	top: 0;
	left: 0;
}

.menu__modal{
	position: absolute;
	width: 100%;
	height: 100%;
}

.menu__cont{
	position: relative;
	align-self: center;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background: rgba(170,93,112,.75);
	transition: .5s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu__close, .menu__open{
	cursor: pointer;
	transition: .5s;
}

.menu__close{
	display: block;
	position: absolute;
	right: 57px;
	top: 35px;
	width: 40px;
	height: 40px;
}

.menu__close span{
	display: block;
	width: 2px;
	height: 40px;
	background: #fff;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.menu__close span::before{
	display: block;
	content: "";
	position: absolute;
	top: 18px;
	left: -18px;
	background: #fff;
	width: 40px;
	height: 2px;
}

.menu__close:hover, .menu__open:hover{
	opacity: .7;
}

.menu__open{
	width: 60px;
	height: 60px;
	border: 2px solid #aa5d70;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50px;
	right: 5%;
	background: rgba(255,255,255,.9);
	z-index: 99;
}

.menu__open span{
	width: 40px;
	height: 2px;
	background: #aa5d70;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu__open span::before, .menu__open span::after{
	display: block;
	content: "";
	width: 40px;
	height: 2px;
	background: #aa5d70;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.menu__open span::before{
	top: 10px;
}

.menu__open span::after{
	bottom: 10px;
}

#trigger:checked ~ .overlay{
	opacity: 1;
	transform: scale(1);
	transition: .5s;
}

.menu__list{
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 24px;
	line-height: 2;
}


/*===================================================================

	003. mv, profile

===================================================================*/

.mv{
	color: #aa5d70;
	margin: 0 10% 50px auto;
	width: 20%;
}

.mv__read{
	font-size: 24px;
	margin: 0 auto 30px;
	text-align: center;
}

.mv__read strong{
	font-size: 32px;
}

.mv__anchor{
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
}

#profile{
	margin-top: 250px;
}

#profile .sect-title{
	margin-bottom: 0;
}

.prof__image{
	width: 250px;
	margin: 0 auto 20px;
}

.prof__image img{
	display: block;
	width: 100%;
	border-radius: 50%;
}

.prof__link{
	margin: 20px auto 0;
	display: flex;
	justify-content: center;
	font-size: 20px;
}

.p-link__list{
	margin: 0 .5em;
}

/*===================================================================

	004. news

===================================================================*/

.news__date{
	margin-right: .5em;
}

/*===================================================================

	005. request

===================================================================*/

.track{
	margin-bottom: 20px;
}

.track__info{
	margin-bottom: 1em;
}

.track__audio{
	display: block;
	width: 60%;
	padding-left: 2em;
}

#lyric .swiper__arrow{
	width: 80%;
}

.swiper__lyric .swiper-slide img{
	width: 75vh;
	min-width: 500px;
	margin: 0 auto;
	display: block;
}

/*===================================================================

	006. history

===================================================================*/

.history__pagination{
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	font-size: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
}

.history__pagination .swiper-pagination-bullet-active, .history__pagination .swiper-pagination-bullet{
	background: transparent;
	width: auto;
	height: auto;
	transition: .5s;
}

.history__pagination .swiper-pagination-bullet{
	opacity: .4;
}

.history__pagination .swiper-pagination-bullet-active{
	opacity: 1;
}

.history__pagination .swiper-pagination-bullet:hover{
	opacity: .7;
}

.history__cont{
	display: flex;
	flex-wrap: wrap;
}

.history__list{
	width: calc(100% / 3);
	padding: 3%;
}

.history__title{
	position: relative;
	font-size: 16px;
	line-height: 2;
	margin-bottom: 10px;
	padding-left: .25em;
}

.history__title::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: repeating-linear-gradient(-45deg, transparent, transparent 1px, #fff 1px, #fff 2px);
}

.history__inner.link{
	margin-top: 20px;
}

.history__inner.link a{
	display: block;
}

.history__inner.link img{
	width: 200px;
	height: 40px;
	object-fit: cover;
}

/*===================================================================

	007. link

===================================================================*/

.link__cont{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.link__list{
	max-width: 200px;
	margin: 0 1em 2em 1em;
	text-align: center;
	font-size: 12px;
}

.link__list a{
	display: block;
	margin-bottom: .5em;
}

/*===================================================================

	008. footer

===================================================================*/

.footer{
	margin: 100vh 0 25px;
	text-align: center;
	font-size: 10px;
	text-shadow: 0 0 5px #aa5d70;
}

.return{
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 144px;
	z-index: 10;
}

.return__button{
	display: block;
	transition: 1s;
	transform: translate(0, 150%);
	opacity: 0;
}

.return__button.scroll-animate{
	opacity: 1;
	transform: translate(0, 0);
}

.return img{
	display: block;
	width: 100%;
}

/*===================================================================

	009. responsive

===================================================================*/

@media screen and (max-width: 768px){
	/*=============================================

		001. common

	=============================================*/


	/*---------------------------------------
		001. box
	---------------------------------------*/

	.wrapper::before{
		width: 100%;
	}

	.box{
		width: 200%;
		transform: rotate(5deg);
		background: rgba(170,93,112,.5);
		position: relative;
		margin: 0 0 0 -50%;
		padding: 100px 20%;
	}

	.box:nth-of-type(even){
		transform: rotate(-5deg);
	}

	.box:nth-of-type(even) .section{
		transform: rotate(5deg);
	}

	.section{
		max-width: 55%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		transform: rotate(-5deg);
	}

	.cont{
		max-width: 100%;
	}

	.inner{
		position: relative;
		margin-bottom: 30px;
	}

	/*---------------------------------------
		002. text
	---------------------------------------*/

	.sect-title{
		font-size: 28px;
		margin-bottom: 20px;
	}

	.sect-subtitle{
		margin-bottom: 20px;
	}

	.gray{
		color: rgba(255,255,255,.8);
	}

	/*---------------------------------------
		003. button
	---------------------------------------*/

	*[role="button"]{
		outline: none;
	}

	.button a{
		display: inline-flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		background: #aa5d70;
		padding: .75em;
		font-size: 12px;
	}

	/*---------------------------------------
		004. swiper
	---------------------------------------*/

	.swiper__arrow{
		width: 75%;
		display: flex;
		justify-content: space-between;
		position: absolute;
		top: calc(50% - 25px);
		left: 0;
		right: 0;
		margin: 0 auto;
		z-index: 80;
	}

	.swiper__next, .swiper__prev{
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent;
		cursor: pointer;
		transition: .5s;
		position: absolute;
	}

	.swiper__next{
		border-width: 15px 0 15px 15px;
		border-left-color: #fff;
		right: -50px;
	}

	.swiper__prev{
		border-width: 15px 15px 15px 0;
		border-right-color: #fff;
		left: -50px;
	}

	.swiper__next:hover, .swiper__prev:hover{
		opacity: .7;
	}

	.swiper-container-initialized{
		overflow: hidden;
	}

	/*=============================================

		002. header

	=============================================*/

	.header{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 90%;
		margin: 0 auto;
		padding: 30px 0;
		position: relative;
	}

	.logo{
		width: 25%;
		max-width: 120px;
		color: #fff;
		text-shadow: 0 0 5px #aa5d70;
		font-size: 10px;
		text-align: center;
	}

	.logo img{
		width: 50%;
		display: block;
		margin: 0 auto 10px;
	}

	/*---------------------------------------
		001. menu
	---------------------------------------*/

	#trigger{
		display: none;
	}

	.overlay{
		display: flex;
		justify-content: center;
		overflow: auto;
		position: fixed;
		width: 100%;
		height: 100%;
		background: transparent;
		opacity: 0;
		transition: .5s;
		transform: scale(0);
		z-index: 100;
		top: 0;
		left: 0;
	}

	.menu__modal{
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.menu__cont{
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}

	.menu__close, .menu__open{
		cursor: pointer;
		transition: .5s;
	}

	.menu__close{
		right: 10px;
		top: 20px;
		width: 40px;
		height: 40px;
	}

	.menu__close span{
		display: block;
		width: 2px;
		height: 40px;
		background: #fff;
		transform: rotate(45deg);
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.menu__close span::before{
		display: block;
		content: "";
		position: absolute;
		top: 18px;
		left: -18px;
		background: #fff;
		width: 40px;
		height: 2px;
	}

	.menu__close:hover, .menu__open:hover{
		opacity: .7;
	}

	.menu__open{
		width: 40px;
		height: 40px;
		top: 30px;
	}

	.menu__open span{
		width: 25px;
	}

	.menu__open span::before, .menu__open span::after{
		display: block;
		content: "";
		width: 25px;
	}

	.menu__open span::before{
		top: 10px;
	}

	.menu__open span::after{
		bottom: 10px;
	}

	#trigger:checked ~ .overlay{
		opacity: 1;
		transform: scale(1);
		transition: .5s;
	}


	/*=============================================

		003. mv, profile

	=============================================*/

	.mv{
		margin: 0 auto;
		width: 100%;
		height: 50vh;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.mv__read{
		font-size: 14px;
		color: #fff;
		text-shadow: 0 0 5px #aa5d70;
	}

	.mv__read strong{
		font-size: 18px;
	}

	.mv__anchor li{
		margin: 0 .5em;
	}

	#profile{
		margin-top: 125px;
	}

	#profile .sect-title{
		margin-bottom: 0;
	}

	.prof__image{
		width: 250px;
		margin: 0 auto;
	}

	.prof__image img{
		display: block;
		width: 100%;
		border-radius: 50%;
	}

	.prof__link{
		margin: 20px auto 0;
		display: flex;
		justify-content: center;
	}

	.p-link__list{
		margin: 0 .5em;
	}

	/*=============================================

		004. news

	=============================================*/

	/*=============================================

		005. request

	=============================================*/

	#lyric .swiper__arrow{
		width: 75%;
	}

	.swiper__lyric .swiper-slide img{
		width: 75vw;
		min-width: initial;
	}

	.track__audio{
		margin-left: 0;
		width: 100%;
	}

	.wp-block-audio audio{
		width: 100%;
	}

	/*=============================================

		006. history

	=============================================*/

	.history__pagination{
		display: flex;
		justify-content: space-evenly;
		width: 100%;
		font-size: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #fff;
	}

	.history__pagination .swiper-pagination-bullet-active, .history__pagination .swiper-pagination-bullet{
		background: transparent;
		width: auto;
		height: auto;
		transition: .5s;
	}

	.history__pagination .swiper-pagination-bullet{
		opacity: .4;
	}

	.history__pagination .swiper-pagination-bullet-active{
		opacity: 1;
	}

	.history__pagination .swiper-pagination-bullet:hover{
		opacity: .7;
	}

	.history__cont{
		display: flex;
		flex-wrap: wrap;
		padding: 0 3.125%;
	}

	.history__list{
		width: 50%;
		padding: 1.5%;
		font-size: 10px;
		margin-bottom: 30px;
	}

	.history__title{
		position: relative;
		font-size: 14px;
		line-height: 2;
		margin-bottom: 10px;
		padding-left: .25em;
	}

	.history__title::before{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 2px;
		background: repeating-linear-gradient(-45deg, transparent, transparent 1px, #fff 1px, #fff 2px);
	}

	.history__inner.link{
		margin-top: 20px;
	}

	.history__inner.link img{
		width: 100%;
		max-width: 200px;
	}

	/*=============================================

		007. link

	=============================================*/

	.link__cont{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.link__list{
		width: 45%;
		margin: 0 .25em 2em .25em;
		text-align: center;
		font-size: 10px;
	}

	.link__list a{
		display: block;
		margin-bottom: .5em;
	}

	.link__list img{
		width: 100%;
	}

	/*=============================================

		008. footer

	=============================================*/

	.footer{
		margin: 100vh 0 25px;
		text-align: center;
		font-size: 10px;
		text-shadow: 0 0 5px #aa5d70;
	}
}