@charset "UTF-8";
/* サイトカラー設定 
========================================================= */
:root {
	--green: #273C2B;
	--white: #FFF;
	--black: #000;
  }

/* 全体背景 
========================================================= */
.info{
	background-color: var(--black);
}
.performer {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#213526+0,1d3021+100 */
	background: #213526;
	/* Old browsers */
	background: -moz-linear-gradient(top, #213526 0%, #1d3021 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, #213526 0%, #1d3021 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #213526 0%, #1d3021 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#213526', endColorstr='#1d3021', GradientType=0);
	/* IE6-9 */
}

.program {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1b2f21+0,172a1c+100 */
	background: #1b2f21;
	/* Old browsers */
	background: -moz-linear-gradient(top, #1b2f21 0%, #172a1c 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, #1b2f21 0%, #172a1c 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #1b2f21 0%, #172a1c 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1b2f21', endColorstr='#172a1c', GradientType=0);
	/* IE6-9 */
}

.about {
	background: var(--black);
}

.ticket {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#213526+0,1d3021+100 */
	background: #213526;
	/* Old browsers */
	background: -moz-linear-gradient(top, #213526 0%, #182B1B 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, #213526 0%, #182B1B 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #213526 0%, #182B1B 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#213526', endColorstr='#1d3021', GradientType=0);
	/* IE6-9 */
}

.notice {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#213526+0,1d3021+100 */
	background: #182B1B;
	/* Old browsers */
	background: -moz-linear-gradient(top, #182B1B 0%, #152819 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, #182B1B 0%, #152819 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #182B1B 0%, #152819 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#213526', endColorstr='#1d3021', GradientType=0);
	/* IE6-9 */
}

.footer {
	background: #d0d4d1;
}

/* 各セクション間隔 */
.performer,.about,.ticket,.notice {
	padding: 76px 0;
}

.footer {
	padding: 76px 0 30px;
}
.flex{
	margin-left: 0;
    margin-right: 0;
}

/* サイドの光アニメ設定
========================================================= */
.twinkle {
	/*色*/
	color: #a3b97a;
	;
	/*大きさ*/
	font-size: 15px;
	/*初期位置*/
	position: fixed;
	bottom: -5%;
	/*適当な幅で動かす*/
	text-shadow:
		3vw -123px 8px, 10vw -317px 3px, 5vw -680px 6px, 14vw -627px 7px, 93vw -500px 4px, 87vw -653px 6px, 96vw -87px 3px, 82vw -824px 3px, 96vw -952px 4px, 89vw -269px 3px, 5vw -938px 7px;
	animation: roll 5s linear infinite;
}

.twinkle2nd {
	/*色*/
	color: #70db3c;
	/*大きさ*/
	font-size: 25px;
	/*初期位置*/
	position: fixed;
	bottom: -5%;
	/*適当な幅で動かす*/
	text-shadow:
		11vw -70px 8px, 9vw -317px 3px, 2vw -417px 11px, 8vw -742px 5px, 1vw -1037px 5px, 95vw -670px 6px, 88vw -67px 3px, 83vw -824px 3px, 93vw -952px 4px, 86vw -320px 9px, 85vw -1040px 8px;
	animation: roll 8s linear infinite;
}

@media (max-width: 456px) {
	.twinkle {
		font-size: 12px;
		text-shadow: 2vw -123px 8px, 5vw -680px 6px, 14vw -627px 7px, 93vw -500px 4px, 87vw -653px 6px, 96vw -87px 3px, 82vw -824px 3px, 86vw -269px 3px;
	}

	.twinkle2nd {
		font-size: 15px;
		text-shadow: 11vw -70px 8px, 9vw -317px 3px, 2vw -417px 11px, 8vw -742px 5px, 93vw -670px 6px, 88vw -67px 3px, 88vw -824px 3px, 86vw -320px 9px;
		
	}
}

/*アニメーション*/
@keyframes roll {
	0% {
		transform: translateY(64px);
		opacity: 0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		transform: translateY(0);
		opacity: 0;
	}
}

/* ページ内 共通
========================================================= */
h5,h6,p,ul,button,a.btn {
	color: var(--white);
	font-family: 'BIZ UDPMincho', serif;
}

p,ul {
	line-height: 1.75;
	font-size: 18px;
}

ul {
	margin-left: 15px;
	list-style: disc;
}

h2 {
	margin: 25px 0 25px 0;
	background: #fff;
	color: var(--green);
	text-align: center;
	font-size: 50px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}

h3 {
	margin: 15px 0 15px 0;
	border: solid 1px;
	border-right: none;
	border-left: none;
	padding: 10px;
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}

h4 {
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin: 45px;
	padding: 20px;
}

h5 {
	font-size: 25px;
    margin-bottom: 10px;
    margin-top: 25px;
}

h5::before {
	display: inline-block;
	content: "";
	background-image: url(/p/event/musicletter-concert/archive/2024/images/icon-sprout.png);
	width: 32px;
	height: 38px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
	margin-bottom: -3px;
}

@media (max-width: 767px) {

	/* 各セクション間隔 */
	.performer,	.about,	.ticket,.notice {
		padding: 25px 0;
	}

	/* 見出し */
	h2 {
		font-size: 30px;
		margin: 17px 0 17px 0;
	}

	h3 {
		font-size: 20px;
		margin: 10px 0 10px 0;
	}

	h4 {
		font-size: 20px;
		margin: 15px 0 10px;
	}

	h5 {
		font-size: 18px;
		margin-bottom: 10px;
		margin-top: 10px;
	}

	h5::before {
		width: 20px;
		height: 23px;
		margin-right: 5px;
	}

	/* 文字 */
	ul li{
		font-size: 15px;
	}
}

/* header */
header {
	height: 800px;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/p/event/musicletter-concert/archive/2024/images/title-back-pc.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

header div.container {
	position: relative;
	height: 800px;
}

header div.container h1 img {
	position: absolute;
	padding: 20px;
	top: -50px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 500px;
	height: auto;
}

header div.container .flex {
	position: absolute;
	bottom: 70px;
	left: 0;
	right: 0;
}

header div.container .flex a.btn {
	border-radius: 0px;
	border: 4px solid;
	border-color: var(--green);
	box-sizing: border-box;
	padding: 0;
}

header div.container .flex a.btn {
	color: var(--green);
	font-size: 18px;
	display: block;
	padding: 10px 16px;
}

header div.container .flex a.btn::after {
	content: "";
	background-image: url(/p/event/musicletter-concert/archive/2024/images/circle-chevron-down-solid.svg);
	width: 18px;
	height: 18px;
	background-size: cover;
	background-repeat: no-repeat;
	float: right;
}

header span.credit {
	position: absolute;
	right: 1%;
	bottom: 1%;
	color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
	header {
		height: 90vh;
		background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/p/event/musicletter-concert/archive/2024/images/title-back-sp.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

	header div.container {
		height: 90vh;
	}

	header div.container h1 img {
		top: -125px;
		width: auto;
		height: 50%;
	}

	 .flex>div {
		margin-bottom: 20px;
	}
	header .container .flex{
		justify-content: center;
	}
}

/* info */
.info .container{
	padding: 20px;
}

.info .container p{
	text-align: center;
}
@media (max-width: 414px) {
	.container p {
		font-size: 17px;
	}
}
/* parformer */
.performer .container .flex{
	justify-content: center;
}
.performer h3 {
	font-size: 15px;
	margin: 20px 0 0 0;
	border: none;
	text-align: left;
	padding: 0;
}

.performer p {
	font-size: 18px;
}

.performer button {
	border-radius: 0;
	background-color: transparent;
	margin-top: 15px;
	margin-bottom: 10px;
	color: #fff;
}

.performer button:focus,.performer button:active,.performer button:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	border-color: #ffffff;
}

.modal-header {
	padding: 15px 15px 10px;
}

.modal-header {
	position: relative;
}

h4.modal-title {
	color: var(--black);
	text-align: start;
	padding: 0 20px;
	font-size: 18px;
	position: absolute;
	bottom: 14px;
}

.modal-header button.close span {
	color: var(--black);
}

.performer .modal-footer button {
	color: var(--black);
}

.performer div.profile h3 {
	margin: 0px 0 16px;
	font-size: 18px;
	color: var(--black);
}

.performer div.profile p {
	font-size: 16px;
	color: var(--black);
}

.performer div.profile a {
	font-size: 16px;
	font-family: 'BIZ UDPMincho', serif;
}

@media (min-width: 768px) {
	.modal-dialog {
		width: 70%;
	}
}

@media (max-width: 1199px) {
	.performer .flex>div {
		margin-bottom: 20px;
	}
}

@media (max-width: 991px) {
	.performer div.profile p {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.performer p.siena-name {
		letter-spacing: -0.1em;
	}

	.performer h3 {
		margin-top: 12px;
		font-size: 13px;
	}

	.performer button {
		margin-top: 8px;
	}

	.btn-group-lg>.btn,	.btn-lg {
		padding: 8px 16px;
		font-size: 16px;
	}

	.performer .flex>div>p {
		font-size: 13px;
	}

	.modal-dialog {
		width: 90%;
	}

	h4.modal-title {
		font-size: 17px;
		position: absolute;
		bottom: 15px;
		padding-left: 10px;
	}

	.performer div.profile p {
		font-size: 16px;
	}
}

@media (max-width: 414px) {
	.performer div.profile p {
		font-size: 14px;
	}
}

/* program */
.program .container {
	position: relative;
	overflow: hidden;
}
.program img.deco-parts-1 {
	opacity: 0.3;
	transform: rotate(105deg);
	top: -12px;
	left: 10%;
	position: absolute;
	width: 80px;
	height: auto;
}

.program img.deco-parts-2 {
	opacity: 0.3;
	transform: rotate(243deg);
	top: 5px;
	right: 10%;
	position: absolute;
}

.program img.deco-parts-3 {
	opacity: 0.3;
	transform: rotate(0deg);
	bottom: -2px;
	left: 10%;
	position: absolute;
	width: 91px;
	height: auto;
}

.program img.deco-parts-4 {
	opacity: 0.3;
	bottom: 0;
	right: 10%;
	position: absolute;
}

.program p {
	font-size: 30px;
	margin: 75px 0 75px;
	text-align: center;
}

@media (max-width: 767px) {
	.program img.deco-parts-1 {
		left: 0;
		width: 66px;
	}

	.program img.deco-parts-2 {
		right: 13px;
		width: 60px;
	}

	.program img.deco-parts-3 {
		left: 10px;
		width: 66px;
	}

	.program img.deco-parts-4 {
		right: 10px;
	}

	.program p {
		font-size: 17px;
		margin: 60px 0;
	}
}

@media (max-width: 414px) {
	.program img.deco-parts-1 {
		transform: rotate(0deg);
		top: 7px;
		width: 44px;
	}

	.program img.deco-parts-2 {
		right: 0;
		width: 44px;
		transform: rotate(3deg);
	}

	.program img.deco-parts-3 {
		left: 0;
		width: 44px;
		bottom: 6px;
	}

	.program img.deco-parts-4 {
		right: 0;
		right: 12px;
		width: 41px;
	}
}

/* about */
.about .text-center {
	font-size: 30px;
	font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
	font-weight: 600;
	padding: 15px 0 15px;
}

.no {
	font-size: 60px;
}

.about .center-block {
	width: 660px;
}

.about .center-block .flex .time:nth-child(1) {
	margin-right: 4%;
}

.about .center-block .flex .time {
	background-color: #fff;
	padding: 25px;
	text-align: center;
	width: 48%;
	margin-bottom: 45px;
}

.about .center-block .flex .time p {
	color: var(--green);
	font-size: 40px;
	font-weight: 900;
	line-height: 1.2;
}

.about .center-block .flex .time p .small {
	font-size: 75%;
}

.about .access p {
	margin-bottom: 10px;
	margin-left: 15px;
}

.about ul {
	margin-left: 40px;
}

.about a.text-right {
	display: block;
	font-family: 'BIZ UDPMincho';
	margin-top: 15px;
}

@media (max-width: 767px) {
	.about .text-center {
		font-size: 20px;
	}

	.no {
		font-size: 40px;
	}

	.about .center-block {
		width: 90%;
	}

	.about .center-block .flex .time:nth-child(1) {
		margin-right: 4%;
	}

	.about .center-block .flex .time {
		background-color: #fff;
		padding: 20px 5px;
		text-align: center;
		margin-bottom: 45px;
		width: 48%;
	}

	.about .center-block .flex .time p {
		font-size: 22px;
	}

	.about .center-block .flex .time p .small {
		font-size: 75%;
	}

	.about .access p,
	.about .access ul li,
	{
	font-size: 14px;
}

.about .access .flex>div:nth-of-type(2) {
	margin-top: 10px;
}
}

@media (max-width: 414px) {
	.about .access iframe {
		height: 250px;
	}

	.about p {
		font-size: 15px;
	}

	.about ul {
		margin-left: 30px;
		font-size: 15px;
	}
}

/* ticket */
.ticket .text {
	margin-bottom: 90px;
}

.ticket p {
	font-size: 18px;
}

.ticket-release h4 {
	margin-bottom: 0;
}

.ticket-release p.text-center br{
	display: none;
}

.ticket-info {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px 30px 30px 30px;
	margin-top: 45px;
}

.ticket-info h4 {
	margin: 0;
	font-size: 25px;
    padding: 10px 0 30px;
}

.ticket-info h5 span.small{
	color: white;
}

.ticket-info .flex>div {
	padding-right: 10px;
	padding-left: 10px;
}

.ticket-info a.btn {
	border-radius: 0;
	height: 60px;
	margin-bottom: 15px;
	padding: 0;
}

.ticket-info a.btn:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.ticket-info a.btn {
	color: var(--green);
	font-size: 16px;
	display: block;
	padding: 18px 10px;
}

.ticket-info a.btn::after {
	display: inline-block;
	content: "";
	background-image: url(/p/event/musicletter-concert/archive/2024/images/arrow-up-right-from-square-solid-green.svg);
	width: 18px;
	height: 18px;
	background-size: cover;
	background-repeat: no-repeat;
	float: right;
}
.ticket-info a.ticket-sales-site {
	margin-top: 25px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 80px;
    padding: 28px 27px;
}

.ticket-info a.btn:hover::after,.ticket-info a.btn:focus::after{
	background-image: url(/p/event/musicletter-concert/archive/2024/images/arrow-up-right-from-square-solid-white.svg);
}

.ticket-info a.btn:focus,.ticket-info a.btn:active,.ticket-info a.btn:hover {
	color: #fff;
	background-color: transparent;
}

.ticket-contact {
	margin-top: 50px;
	padding-right: 15px;
	padding-left: 15px;
}

.ticket-contact ul {
	margin-left: 0;
	list-style: none;
}

@media (max-width: 991px) {
	.ticket-info {
		margin: 15px -15px 0;
	}
	.ticket-info a.ticket-sales-site {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.ticket p {
		font-size: 16px;
	}

	.ticket .text {
		margin-bottom: 40px;
	}
	.ticket .ticket-contact .ticket-info .col-xs-12 {
		width: 50%;
	}
	.ticket-release h4 {
		padding: 10px;
	}
	.ticket-release p.text-center br{
		display: inline;
	}
	.ticket-info h5 {
		font-size: 22px;
		margin-bottom: 20px;
		margin-top: 25px;
	}

	.ticket button a {
		padding: 10px 10px;
	}

	.ticket-contact {
		margin-top: 40px;
	}

	.ticket .ticket-contact {
		margin-top: 40px;
		margin-bottom: 30px;
	}
}

@media (max-width: 474px) {
.ticket .ticket-contact .ticket-info .col-xs-12 {
	width: 100%;
}
.ticket-info a.ticket-sales-site {
    padding-right: 20px;
}
}
@media (max-width: 414px) {
	.ticket-info a.btn {
		font-size: 16px;
	}

	.ticket-info a.btn::after {
		width: 16px;
		height: 16px;
		margin-top: 2px;
	}
}

/* notice */
.notice {
	padding-right: 15px;
	padding-left: 15px;
}

@media (max-width: 767px) {
	.notice .container {
		margin: 20px 10px 30px;
	}
}

/* フッター */

.footer h2 {
	color: #152819;
	background-color: transparent;
	text-align: left;
	font-size: 16px;
	margin: 0;
	font-family: 'BIZ UDPMincho', serif;
	font-weight: 600;
}

.footer p {
	color: #152819;
	font-size: 16px;
	font-family: 'BIZ UDPMincho', serif;
	font-weight: 400;
	margin-bottom: 10px;
}

.footer .text-right a{
	margin: 0 5px 0 10px;
}

footer {
	padding: 20px;
	font-size: 14px;
	text-align: center;
	background: #2f2f2f;
	color: #fff;
}

footer a {
	color: #fff;
}

footer a:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.footer {
		padding: 30px 0 50px;
	}

	.footer h2 {
		text-align: center;
		font-size: 14px;
		font-weight: 400;
	}

	.footer p {
		text-align: center;
		font-size: 14px;
	}

	.footer .text-right {
		text-align: center;
		margin-top: 25px;
	}

	.footer .text-right img {
		width: 100px;
		height: auto;
	}
}

@media (max-width: 767px) {
	.footer {
		padding: 30px 0 30px;
	}

	.footer h2 {
		text-align: center;
		font-size: 14px;
		font-weight: 400;
	}

	.footer p {
		text-align: center;
		font-size: 14px;
	}

	.footer .text-right {
		text-align: center;
	}

	.footer .text-right img {
		width: 100px;
		height: auto;
	}
}

/* ページトップ移動アイコン */
div#page_top {
	position: relative;
}

p#page-top {
	display: none;
	position: fixed;
	right: 2%;
	bottom: 2%;
}

#page-top i {
	color: #fff;
	font-size: 50px;
}

#page-top i.glyphicon-circle-arrow-up:before {
	text-shadow: 0 0 10px #272727;
}

@media (max-width: 767px) {
	#page-top i {
		font-size: 40px;
	}
}