fieldset,
legend,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	outline: none;
	padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
	border: 1px solid #ccc;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="week"],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ccc;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
	outline: none;
	padding: 4px;
}

textarea {
	height: 100px;
	overflow: auto;
	width: 100%;
}

select {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
	background-position: right 8px center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	padding-right: 30px;
}

.select {
	background: #fff;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.select select {
	background: none;
	border: 1px solid #ccc;
	cursor: pointer;
	padding-right: 24px;
	text-overflow: "";
	width: 100%;
}

.select::before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666;
	content: "";
	height: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 8px;
	top: 13px;
	width: 0;
}

/* radio & checkbox */

input[type="radio"],
input[type="checkbox"] {
	display: none;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
	color: #555;
	cursor: pointer;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 8px;
	padding: 10px 20px;
	position: relative;
	text-align: center;
}

input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
	background: #fff;
	border: 1px solid #ccc;
	content: "";
	height: 16px;
	left: -8px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}

/* fieldset */

fieldset {
	border: 1px solid #ccc;
	padding: 8px 16px;
}

legend {
	padding: 0 8px;
}

/* button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: #efefef;
	border: 1px solid #999;
	border-radius: 0;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	margin: 0;
	padding: 10px 30px;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */

/* Firefox */

/* IE */

select::-ms-expand {
	display: none;
}

/* webkit */

/* iOS */

input[type="submit"]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
	display: none;
}

::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
	-moz-appearance: none;
	-webkit-appearance: textfield;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 0;
}

/* 挙動
---------------------------------------------------------------------------- */

/* hover */

input:hover,
textarea:hover,
select:hover {
	border-color: #666;
}

input[type="radio"] + span:hover,
input[type="checkbox"] + span:hover {
	color: #000;
}

input[type="radio"] + span:hover::before,
input[type="checkbox"] + span:hover::before {
	border-color: #000;
}

input[type="radio"] + span:hover::after,
input[type="checkbox"] + span:hover::after {
	background: #ccc;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* checked */

input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
	color: #3498db;
}

input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
	border-color: #3498db;
}

input[type="radio"]:checked + span::after,
input[type="checkbox"]:checked + span::after {
	background: #3498db;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* radio */

input[type="radio"] + span::before,
input[type="radio"] + span:hover::after,
input[type="radio"]:checked + span::after {
	border-radius: 50%;
}

/* button */

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
	background: #3498db;
	color: #fff;
}

/* focus */

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-color: #3498db;
}

input[type="submit"]:focus,
input[type=reset]:focus,
input[type="button"]:focus,
input[type="search"]:focus {
	outline-offset: -2px;
}

/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
	background: #eee;
	border-color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span,
input[type="checkbox"]:disabled + span {
	color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span::before,
input[type="checkbox"]:disabled + span::before {
	border-color: #ccc;
	cursor: not-allowed;
}

/* バリデーション */

/* placeholder */

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

/* リキッドレイアウト対応 */

html {
	font-size: 4.26667vw;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	color: #fff;
	font-family: 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35714;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	position: relative;
	z-index: -9999;
}

/* Box sizing rules */

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

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none !important;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

video,
iframe,
object {
	border: none;
	height: auto;
	max-width: 100%;
}

ul,
ol {
	list-style: none;
}

table {
	border: 5px solid #F2F2F2;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

.wp-block-table.is-style-stripes {
	border: 5px solid #F2F2F2;
}

th,
td {
	border: 1px solid;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

b,
strong {
	font-weight: 700;
}

form {
	margin: 0;
	padding: 0;
}

label {
	display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}

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

button,
select {
	text-transform: none;
}

select {
	cursor: pointer;
}

textarea {
	-ms-overflow-style: scrollbar;
	overflow: auto;
	resize: vertical;
}

dialog {
	background-color: inherit;
	border: solid;
	color: inherit;
	display: block;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

dialog:not([is-open]) {
	display: none;
}

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

/* Remove all animations and transitions for people that prefer not to see them */

.l-404 {
	margin-top: 3.125rem;
}

.l-about {
	margin-top: 3.125rem;
}

.l-conductors {
	margin-top: 3.125rem;
}

.l-contact {
	margin-top: 3.125rem;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 45.625rem;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}

.l-privacy {
	margin-top: 3.125rem;
}

.l-recruite {
	margin-top: 2.5rem;
}

.l-repertoire {
	margin-top: 3.125rem;
}

.c-arrow-down {
	margin: 1.875rem 0;
	text-align: center;
}

.c-arrow-down__icon {
	display: inline-block;
	height: 0.625rem;
	width: 6.25rem;
}

.c-arrow-down__icon img {
	width: 100%;
}

.c-block {
	background: #fff;
	position: relative;
	width: 100%;
}

.c-block__content {
	color: #666;
	text-align: left;
	width: 100%;
}

.c-block__headline {
	align-items: center;
}

.c-block__icon {
	width: 0.75rem;
}

.c-block__icon img {
	width: 100%;
}

.c-block__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	position: relative;
}

.c-block__text {
	font-weight: 500;
	line-height: 1.35714;
}

.c-box {
	background: #fff;
	border: 0.125rem solid #999;
	border-radius: 0.75rem;
	color: #666;
	position: relative;
	width: 100%;
}

.c-box__img {
	position: relative;
	width: 40%;
}

.c-box__img::before {
	content: "";
	display: block;
	padding-top: 44%;
}

.c-box__img img {
	-o-object-position: top;
	left: 50%;
	object-position: top;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.c-box__content {
	color: #666;
	text-align: left;
}

.c-box__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	position: relative;
}

.c-box__text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35714;
}

.c-btn-left {
	background: #fff;
	border: 0.0625rem solid #999;
	border-radius: 1.9375rem;
	color: #666;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	max-width: 31.25rem;
	padding: 0.625rem 0;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all .3s;
	width: 100%;
}

.c-btn-left:hover {
	color: #666;
	opacity: .7;
	transition: all .3s;
}

.c-btn-left::after {
	background-image: url(../images/common/arrow-left.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: inline-block;
	height: 1.875rem;
	left: 2.5rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	vertical-align: middle;
	width: 1.56875rem;
}

.c-btn-right {
	background: #fff;
	border: 0.0625rem solid #999;
	border-radius: 1.9375rem;
	color: #666;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	max-width: 31.25rem;
	padding: 0.625rem 0;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all .3s;
	width: 100%;
	z-index: 1;
}

.c-btn-right:hover {
	color: #666;
	opacity: .7;
	transition: all .3s;
}

.c-btn-right::after {
	background-image: url(../images/common/arrow-right.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: inline-block;
	height: 1.875rem;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	vertical-align: middle;
	width: 1.56875rem;
}

.c-field {
	border: 0.625rem solid #F2F2F2;
	color: #666;
}

.c-field:nth-child(n +2) {
	border-top: none;
}

.c-field__title {
	font-weight: 700;
	line-height: 1.25;
	width: 20%;
}

.c-field__text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35714;
	width: 80%;
}

.fc {
	background: #f2f2f2;
	padding: 0.625rem;
}

.fc .fc-toolbar.fc-header-toolbar {
	margin-bottom: 0 !important;
}

.fc-toolbar-title {
	color: #666 !important;
	font-size: 1.125rem !important;
	font-weight: 700;
}

.fc .fc-button-primary {
	color: #666 !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
}

.fc-today-button {
	background: #fff !important;
	border-color: #666 !important;
	border-radius: 40px !important;
	padding: 0.1875rem 0.625rem !important;
}

.fc-today-button:hover {
	background: #fff !important;
	border-color: #666 !important;
}

.fc-today-button:active {
	background: #fff !important;
	border-color: #666 !important;
}

.fc-today-button:focus {
	box-shadow: none !important;
}

.fc-today-button:disabled {
	background: #fff !important;
	color: #666 !important;
	opacity: 1 !important;
}

.fc-prev-button,
.fc-next-button {
	background-color: rgba(0, 0, 0, 0) !important;
	border: none !important;
	padding: 0.1875rem 0.3125rem !important;
}

.fc-prev-button:active {
	background-color: rgba(0, 0, 0, 0) !important;
}

.fc-prev-button:hover,
.fc-next-button:hover {
	background-color: rgba(0, 0, 0, 0) !important;
}

.fc-prev-button:focus,
.fc-next-button:focus {
	box-shadow: none !important;
}

.fc-view-harness {
	margin-top: 1.25rem;
}

.fc-theme-standard th {
	border: none;
}

.fc-list-day-text,
.fc-list-day-side-text {
	font-size: 1.125rem;
	font-weight: 500;
}

.fc-list-day-text,
.fc-list-day-side-text,
.fc-col-header-cell-cushion,
.fc-daygrid-day-number {
	color: #666 !important;
}

.fc .fc-cell-shaded {
	background: none !important;
}

.fc-theme-standard .fc-list-day-cushion {
	background: none !important;
}

.fc-day-mon th .fc-list-day-cushion.fc-cell-shaded,
.fc-day-tue th .fc-list-day-cushion.fc-cell-shaded,
.fc-day-wed th .fc-list-day-cushion.fc-cell-shaded,
.fc-day-thu th .fc-list-day-cushion.fc-cell-shaded,
.fc-day-fri th .fc-list-day-cushion.fc-cell-shaded {
	background: #DDD !important;
}

.fc-day-sat th .fc-list-day-cushion.fc-cell-shaded {
	background: #E3EBF5 !important;
}

.fc-day-sun th .fc-list-day-cushion.fc-cell-shaded {
	background-color: #F8E8E8 !important;
}

.fc-list-event {
	background: #fff;
}

.fc-list-event {
	color: #666 !important;
	font-size: 1rem !important;
	font-weight: 500;
}

.fc-event-title,
.fc-sticky,
.fc-event-time {
	color: #666 !important;
}

.fc-list-event-time {
	width: 30%;
}

.fc-list-event-graphic {
	display: none;
}

.fc-list-event-title {
	width: 70%;
}

.fc-list-table {
	table-layout: auto;
}

.c-hamburger {
	background: #999;
	height: 3.75rem;
	opacity: .7;
	position: relative;
	width: 3.75rem;
	z-index: 999;
}

.c-hamburger span { /* 線幅の半分 */
	background: #fff;
	border-radius: 0.0625rem;
	display: inline-block;
	transition: ease .3s;
}

.c-hamburger span:nth-child(1) {
	height: 0.1875rem;
	position: absolute;
	right: 0.625rem;
	top: 0.75rem;
	width: 2.5rem;
}

.c-hamburger span:nth-child(2) {
	height: 0.1875rem;
	position: absolute;
	right: 0.625rem;
	top: 1.875rem;
	width: 1.875rem;
}

.c-hamburger span:nth-child(3) {
	height: 0.1875rem;
	position: absolute;
	right: 0.625rem;
	top: 3rem;
	width: 2.5rem;
}

.c-hamburger span:nth-child(4) {
	height: 2.4375rem;
	position: absolute;
	right: 0.625rem;
	top: 0.75rem;
	width: 0.4375rem;
}

.c-hamburger.open {
	background: rgba(153, 153, 153, 0);
}

.c-hamburger.open span:nth-child(1) {
	height: 0.1875rem;
	position: absolute;
	right: 0.625rem;
	top: 1.5625rem;
	transform: rotate(-45deg);
	width: 2.5rem;
}

.c-hamburger.open span:nth-child(2) {
	display: none;
}

.c-hamburger.open span:nth-child(3) {
	height: 0.1875rem;
	position: absolute;
	right: 0.625rem;
	top: 1.5625rem;
	transform: rotate(45deg);
	width: 2.5rem;
}

.c-hamburger.open span:nth-child(4) {
	display: none;
}

.c-headline {
	align-items: center;
}

.c-headline__icon {
	width: 0.75rem;
}

.c-headline__icon img {
	width: 100%;
}

.c-headline__title {
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	position: relative;
}

.pagination {
	align-items: center;
	color: #666;
	font-size: 1rem;
	font-weight: 500;
}

.nav-links {
	margin: 0 auto;
}

.nav-links a {
	color: #666;
}

.nav-links a:hover {
	color: #666;
	opacity: .7;
}

.page-numbers {
	padding: 0.625rem 0;
}

.page-numbers:nth-child(n + 2) {
	margin-left: 1.875rem;
}

.prev img,
.next img {
	height: 1.875rem;
	width: 1.5625rem;
}

.current {
	border-bottom: 0.125rem solid;
}

.c-punctuation {
	text-align: center;
}

.c-punctuation__icon {
	display: inline-block;
	height: 1.875rem;
	width: 1.875rem;
}

.c-punctuation__icon img {
	width: 100%;
}

.c-section-header {
	position: relative;
	text-align: center;
}

.c-section-header__icon {
	width: 2.5rem;
}

.c-section-header__title--white {
	color: #fff;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0;
}

.c-section-header__title--gray {
	color: #666;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0;
}

.c-section-header__title--white::after {
	background: #fff;
	border-radius: 0.1875rem;
	bottom: -0.625rem;
	content: "";
	display: inline-block;
	height: 0.1875rem;
	left: 50%;
	position: absolute;
	transform: translateY(-50%) translateX(-50%);
	width: 2.1875rem;
}

.c-section-header__title--gray::after {
	background: #CCC;
	border-radius: 0.1875rem;
	bottom: -0.625rem;
	content: "";
	display: inline-block;
	height: 0.1875rem;
	left: 50%;
	position: absolute;
	transform: translateY(-50%) translateX(-50%);
	width: 2.1875rem;
}

.c-space {
	height: 6.25rem;
}

.c-summary {
	color: #666;
	display: flex;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35714;
	padding-left: 1.25rem;
}

.c-summary__title {
	width: 30%;
}

.c-summary__text {
	margin-left: 0.625rem;
	width: 65%;
}

.c-table {
	align-items: center;
	border: 0.625rem solid #F2F2F2;
	color: #666;
}

.c-table:nth-child(n +2) {
	border-top: none;
}

.c-table:nth-child(odd) {
	background: #ddd;
}

.c-table__title,
.c-table__title,
.c-table__text {
	font-size: 0.875rem;
	line-height: 1.35714;
	width: 30%;
}

.c-table__title {
	font-weight: 500;
	width: 40%;
}

.c-table__text {
	font-weight: 500;
	width: 20%;
}

.c-table__status--red {
	color: #CC3333;
	font-weight: 700;
	width: 40%;
}

.c-table__status--gray {
	color: #666;
	font-weight: 700;
	width: 40%;
}

.c-test {
	color: red;
	font-size: 1.25rem;
}

.p-404 {
	color: #666;
}

.p-404__title {
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
}

.p-404__text {
	font-weight: 500;
	text-align: center;
}

.p-404__btn {
	text-align: center;
}

.p-about__block {
	width: 100%;
}

.p-about__btn1 {
	text-align: center;
}

.p-about__btn2 {
	text-align: center;
}

.p-block {
	background: #fff;
	position: relative;
	transition: .3s ease;
	width: 100%;
}

.p-block__img {
	position: relative;
}

.p-block__img::before {
	content: "";
	display: block;
	padding-top: 56.164384%;
}

.p-block__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-block__content {
	color: #666;
	text-align: left;
}

.p-block__headline {
	align-items: center;
}

.p-block__icon {
	display: block;
	width: 0.75rem;
}

.p-block__icon img {
	width: 100%;
}

.p-block__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	position: relative;
}

.p-block__text {
	font-weight: 500;
	line-height: 1.35714;
}

.p-block2 {
	background: #fff;
	position: relative;
	transition: .3s ease;
	width: 100%;
}

.p-block2__img {
	position: relative;
}

.p-block2__img::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.p-block2__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-block2__content {
	color: #666;
	text-align: left;
}

.p-block2__headline {
	align-items: center;
}

.p-block2__icon {
	width: 0.75rem;
}

.p-block2__icon img {
	width: 100%;
}

.p-block2__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	position: relative;
}

.p-block2__text {
	font-weight: 500;
	line-height: 1.35714;
}

.p-breadcrumb {
	color: #666 !important;
	font-weight: 500;
}

.p-breadcrumb_inner span a {
	color: #666 !important;
}

.current-item {
	border-bottom: 0.125rem solid;
}

.p-card {
	box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.3);
	color: #666;
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: .3s ease;
	width: 100%;
}

.p-card:hover {
	color: #666;
}

.p-card--f {
	background: #fff;
}

.p-card--f2 {
	background: #F2F2F2;
}

.p-card__img {
	overflow: hidden;
	padding-top: 56.438356%;
	position: relative;
}

.p-card__img img {
	-o-object-fit: cover;
	-o-object-position: top;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: top;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-card__content {
	min-height: 9.375rem;
}

.p-card__info {
	align-items: center;
	font-weight: 700;
	line-height: 1.35714;
}

.p-card__category {
	background: #707070;
	border-radius: 1.125rem;
	color: #fff;
}

.p-card__date {
	color: #666;
}

.p-card__text {
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #666;
	display: -webkit-box;
	font-weight: 500;
	line-height: 1.35714;
	overflow: hidden;
	text-align: left;
}

.p-card::after {
	background-image: url(../images/common/arrow-right.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0.9375rem;
	content: '';
	display: inline-block;
	height: 1.5625rem;
	position: absolute;
	right: 0.625rem;
	vertical-align: middle;
	width: 1.25rem;
}

.p-concert-archive__title {
	background: #EEE;
	background-image: url(../images/common/phonogram-title-bg.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35714;
}

.p-concert-archive__link {
	text-decoration: none;
}

.p-concert-archive__img {
	position: relative;
	width: 90%;
}

.p-concert-archive__img::before {
	content: "";
	display: block;
	padding-top: 140.677966%;
}

.p-concert-archive__img img {
	-o-object-fit: cover;
	-o-object-position: 50% 50%;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: 50% 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-concert-future {
	color: #666;
}

.p-concert-future__title {
	background: #EEE;
	background-image: url(../images/common/phonogram-title-bg.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35714;
}

.p-concert-future__block {
	color: #666;
}

.p-concert-future__img-box {
	width: 90%;
}

.p-concert-future__img {
	position: relative;
	width: 100%;
}

.p-concert-future__img::before {
	content: "";
	display: block;
	padding-top: 140.677966%;
}

.p-concert-future__img img {
	-o-object-fit: cover;
	-o-object-position: 50% 50%;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: 50% 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-concert-future__content {
	width: 100%;
}

.p-concert-future__description {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
}

.p-concert-future__info {
	font-weight: 700;
	line-height: 1.35714;
}

.p-concert-future__info dt {
	clear: left;
	float: left;
	width: 30%;
}

.p-concert-future__info dd {
	margin-left: 30%;
}

.p-concert-future__map {
	border: 0.0625rem solid #666;
	border-radius: 1.5625rem;
	color: #666 !important;
	display: inline-block;
	font-weight: 700;
	line-height: 1.35714;
}

.p-concert-future__map:hover {
	opacity: .7;
	transition: all .3s;
}

.p-concert-future__btn {
	text-align: center;
}

.p-concert {
	color: #666;
}

.p-concert__select {
	align-items: center;
}

.p-concert__select-title {
	font-weight: 500;
}

.p-concert__select-box {
	background: #707070;
	background-image: url(../images/common/arrow-down_white.png);
	background-position: right 0.625rem center;
	background-repeat: no-repeat;
	background-size: 1.25rem 0.625rem;
	border: 0.0625rem solid #ccc;
	border-radius: 0.625rem;
	color: #fff;
	font-weight: 700;
	opacity: .7;
}

.p-conductors__punctuation {
	margin: 1.875rem 0;
}

.p-conductors__btn {
	text-align: center;
}

.p-contact {
	color: #666;
}

.p-contact__preamble {
	font-weight: 700;
	line-height: 1.35714;
	width: 100%;
}

/* Contact Form7 */

.contact7 {
	box-sizing: border-box;
	max-width: 100%;
}

.contact7 dd {
	align-items: center;
}

.contact7 dt {
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35714;
}

/* 必須マーク */

.contact7 .must {
	color: #CC3333;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.35714;
}

input[type="text"],
input[type="email"],
textarea {
	background: #F2F2F2;
	border: 1px solid #666;
	border-radius: 0.625rem;
	opacity: .7;
}

input[type="text"] {
	width: 100%;
}

input[type="email"] {
	width: 100%;
}

textarea {
	height: 18.75rem;
	width: 100%;
}

.btn_contact7 {
	text-align: center;
}

.wpcf7-form-control.wpcf7-submit {
	background: #fff;
	border: 0.0625rem solid #999;
	border-radius: 1.9375rem;
	color: #666;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	max-width: 31.25rem;
	padding: 0.625rem 0;
	position: relative;
	text-align: center;
	transition: all .3s;
	width: 100%;
}

.wpcf7-form-control.wpcf7-submit:hover {
	background: #666;
	border-color: #666;
	color: #fff;
	opacity: .3;
	transition: all .3s;
}

.p-detail-concert {
	color: #666;
}

.p-detail-concert__title {
	background: #EEE;
	background-image: url(../images/common/phonogram-title-bg.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35714;
}

.p-detail-concert__block {
	color: #666;
}

.p-detail-concert__img-box {
	width: 90%;
}

.p-detail-concert__img {
	position: relative;
	width: 100%;
}

.p-detail-concert__img::before {
	content: "";
	display: block;
	padding-top: 140.677966%;
}

.p-detail-concert__img img {
	-o-object-fit: cover;
	-o-object-position: 50% 50%;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: 50% 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-detail-concert__content {
	width: 100%;
}

.p-detail-concert__description {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
}

.p-detail-concert__info {
	font-weight: 700;
	line-height: 1.35714;
}

.p-detail-concert__info dt {
	clear: left;
	float: left;
	width: 30%;
}

.p-detail-concert__info dd {
	margin-left: 30%;
}

.p-detail-concert__map {
	border: 0.0625rem solid #666;
	border-radius: 1.5625rem;
	color: #666 !important;
	display: inline-block;
	font-weight: 700;
	line-height: 1.35714;
}

.p-detail-concert__map:hover {
	opacity: .7;
	transition: all .3s;
}

.p-detail-concert__btn {
	text-align: center;
}

.p-detail-info ul,
.p-detail-info ol {
	color: #666;
}

.p-detail-info ul {
	list-style-type: disc;
}

.p-detail-info ol {
	list-style-type: decimal;
}

.p-detail-info__title {
	background: #EEE;
	background-image: url(../images/common/phonogram-title-bg.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35714;
}

.p-detail-info__img {
	margin: 0 auto;
	overflow: hidden;
	padding-top: 56.438356%;
	position: relative;
	width: 100%;
}

.p-detail-info__img img {
	-o-object-fit: cover;
	-o-object-position: top;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: top;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-detail-info__content {
	min-height: 13.75rem;
	width: 100%;
}

.p-detail-info__info {
	align-items: center;
	font-weight: 700;
	line-height: 1.35714;
}

.p-detail-info__category {
	background: #707070;
	border-radius: 1.125rem;
	color: #fff;
}

.p-detail-info__date {
	color: #666;
}

.p-detail-info__text {
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #666;
	display: -webkit-box;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.35714;
	overflow: hidden;
	text-align: left;
}

.p-detail-info__btn {
	text-align: center;
}

.p-footer-pc-nav {
	max-width: 50rem;
}

.p-footer-pc-nav__item {
	font-weight: 700;
}

.p-footer-pc-nav__item a {
	color: #666;
	text-decoration: none;
	transition: all .3s;
}

.p-footer-pc-nav__item a:hover {
	color: #666;
	opacity: 0.7;
	transition: all .3s;
}

.p-footer-pc-nav__item a:focus {
	color: #666;
}

.p-footer-sp-nav {
	max-width: 31.25rem;
}

.p-footer-sp-nav__item {
	align-items: center;
	font-weight: 700;
}

.p-footer-sp-nav__item a {
	color: #666;
	text-decoration: none;
}

.p-footer-sp-nav__item a:hover {
	color: #666;
	opacity: 0.7;
}

.p-footer {
	background: #EEE;
}

.p-footer__pagetop {
	bottom: 0.625rem;
	height: 3.125rem;
	position: fixed;
	right: 0.625rem;
	width: 3.125rem;
	z-index: 444;
}

.p-footer__inner {
	padding: 0 10px;
}

.p-footer__logo {
	width: 3.75rem;
}

.p-footer__link {
	display: inline-block;
	height: inherit;
	width: 100%;
}

.p-footer__link img {
	width: 100%;
}

.p-footer__icons {
	justify-content: center;
	text-align: center;
}

.p-footer__sns {
	width: 2.5rem;
}

.p-footer__snsLink {
	display: inline-block;
	transition: all .3s;
}

.p-footer__snsLink:hover {
	opacity: .7;
	transition: all .3s;
}

.p-footer__sp-nav {
	font-size: 0.875rem;
}

.p-footer__block {
	background: linear-gradient(to bottom, #EEE, #ABABAB);
	height: 2.5rem;
}

.p-footer__copy-box {
	background-image: url(../images/common/footer-line.png);
	background-repeat: repeat;
	background-size: cover;
	text-align: center;
	width: 100%;
}

.p-footer__copy {
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
}

.p-header {
	height: 5rem;
	left: 0;
	max-width: 100vw;
	position: fixed;
	right: 0;
	top: 0;
	transition: .3s ease;
	z-index: 555;
}

.p-header__box {
	background-image: url(../images/common/header-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	height: inherit;
}

.p-header__inner {
	height: inherit;
	max-width: 64rem;
	position: relative;
}

.p-header__logo {
	height: 100%;
	text-align: center;
}

.p-header__link {
	display: inline-block;
	height: inherit;
}

.p-header__link img {
	height: inherit;
}

.p-header__icons {
	display: none;
}

.p-header__sns {
	width: 2.5rem;
}

.p-header__snsLink {
	display: inline-block;
	height: inherit;
	transition: all .3s;
}

.p-header__sns:hover {
	opacity: .7;
	transition: all .3s;
}

.p-header__snsLink img {
	width: 100%;
}

.p-header__menu {
	position: absolute;
	right: 0.625rem;
	top: 0.625rem;
}

.p-info__space {
	height: 8.125rem;
}

.p-info-archive__title {
	background: #EEE;
	background-image: url(../images/common/phonogram-title-bg.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35714;
}

.p-info__items {
	max-width: 64rem;
}

.p-info__btn {
	text-align: center;
}

.p-mv__space {
	height: 5rem;
}

.p-mv {
	overflow: hidden;
	position: relative;
}

.p-mv__img {
	margin-bottom: 0;
}

.p-mv__bg {
	left: 0;
	position: absolute;
	top: 35%;
	transform: translateY(-50%) translateX(-15%);
}

.p-mv__bg img {
	display: inline-block;
}

.p-mv__recruit {
	display: block;
	position: absolute;
	top: 55%;
	transform: translateY(-50%) translateX(20%);
}

.p-mv__recruit img {
	display: inline-block;
}

.p-pc-nav {
	background: #999;
	font-size: 1.125rem;
	font-weight: 700;
	opacity: .9;
}

.p-pc-nav__inner {
	height: inherit;
}

.p-pc-nav__items {
	height: inherit;
}

.p-pc-nav__item {
	height: inherit;
	position: relative;
	transition: .3s ease;
}

.p-pc-nav__title {
	position: relative;
	transition: .3s ease;
}

.p-pc-nav__title::after {
	background: transparent;
	bottom: -0.625rem;
	content: "";
	height: 0.1875rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) translateY(-50%);
	transition: all .3s ease;
	width: 90%;
}

.p-pc-nav__link {
	align-items: center;
	color: #fff !important;
	height: inherit;
	text-decoration: none;
	transition: all .3s;
}

.p-pc-nav__link img {
	width: 1.5625rem;
}

.p-pc-nav__link:hover .p-pc-nav__title:after {
	background: #fff;
	opacity: .7;
	transition: all .3s ease;
}

.p-pc-nav__items {
	position: relative;
}

.menu__second-level {
	display: none;
	font-size: 0.9375rem;
}

.p-pc-nav__item:hover .menu__second-level {
	background: #999;
	display: block;
	left: 0.625rem;
	position: absolute;
	top: 3.75rem;
	transition: .3s ease;
}

.menu__second-level li a {
	color: #fff;
}

.menu__second-level li a:hover {
	color: #fff;
	opacity: .7;
	transition: .3s ease;
}

.p-privacy__preamble {
	color: #666;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.35714;
}

.p-recruit__btn {
	text-align: center;
}

.p-repertoire__text {
	color: #666;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
}

.p-repertoire__btn {
	text-align: center;
}

.p-schedule__google-calendar {
	height: 500px;
	width: 100%;
}

.p-sns__insta,
.p-sns__fb {
	margin: 0 auto;
	max-width: 31.25rem;
	width: 100%;
}

.p-sns__insta {
	border: 1px solid #707070;
	height: 100%;
}

.sbi_header_link:hover {
	color: #666;
}

.p-sns__fb {
	padding-top: 104.52%;
	position: relative;
}

.facebook-wrapper {
	height: 100%;
	left: 50%;
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.fb-page {
	height: inherit;
}

._2p3a {
	margin: 0 auto !important;
	width: 100% !important;
}

.uiScaledImageContainer._2zfr {
	width: 100% !important;
}

.p-sp-nav {
	background-color: rgba(153, 153, 153, 0.7);
	height: 100vh;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: ease .3s;
	width: 100%;
	z-index: 777;
}

.p-sp-nav.open {
	transform: translateX(20%);
}

.p-sp-nav__items {
	height: 100vh;
	margin: 0 auto;
	overflow: scroll;
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
	width: 100%;
}

.p-sp-nav__item {
	transition: .3s ease;
	width: 100%;
}

.p-sp-nav__item a {
	color: #fff;
}

.p-sp-nav__link {
	align-items: center;
	color: #fff;
	text-decoration: none;
	transition: all .3s;
}

.p-sp-nav__link:hover {
	color: #fff;
	opacity: .7;
	transition: all .3s;
}

.p-sp-nav__link img {
	width: 1.5625rem;
}

.p-sp-nav__title {
	font-size: 1.5rem;
	font-weight: 700;
}

.p-sp-nav__sns {
	width: 2.5rem;
}

.p-sp-nav__snsLink {
	display: inline-block;
	height: inherit;
	transition: all .3s;
}

.p-sp-nav__sns:hover {
	opacity: .7;
	transition: all .3s;
}

.p-sp-nav__snsLink img {
	width: 100%;
}

.p-sub-mv {
	background-position: center;
	background-size: cover;
	position: relative;
}

.p-sub-mv::after {
	background-color: rgba(255, 255, 255, 0.5);
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.p-sub-mv__img {
	margin: 0 auto;
	max-width: 64rem;
	position: relative;
	z-index: 10;
}

.p-sub-mv__img::before {
	content: "";
	display: block;
	padding-top: 53.333333%;
}

.p-sub-mv__img img {
	-o-object-fit: cover;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-sub-mv__bgimg {
	position: relative;
}

.p-sub-mv__text {
	background-image: url(../images/common/sub-mv-bg.png);
	color: #fff;
	font-weight: 700;
	left: 50%;
	line-height: 1.35714;
	max-width: 64rem;
	padding: 1.25rem 0.625rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 100;
}

/* スライドの動き等速 */

.swiper-wrapper {
	transition-timing-function: linear;
}

/* 画像のサイズ調整 */

.swiper-slide img {
	-o-object-fit: cover;
	height: 14.375rem;
	object-fit: cover;
	width: 100%;
}

/* swiperボタン */

.swiper-button-prev,
.swiper-button-next {
	background: #fff;
	border-radius: 1.25rem;
	height: 1.875rem !important;
	opacity: .7;
	width: 1.875rem !important;
}

.swiper-button-prev::after {
	content: '' !important;
}

.swiper-button-next::after {
	content: '' !important;
}

/* 前へ次への矢印カスタマイズ */

.swiper-button-prev:after,
.swiper-button-next:after {
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.25rem;
	margin: 0 auto;
	width: 1.125rem;
}

/* 前への矢印カスタマイズ */

.swiper-button-prev:after {
	background-image: url(../images/common/arrow-left.png);
}

/* 次への矢印カスタマイズ */

.swiper-button-next:after {
	background-image: url(../images/common/arrow-right.png);
}

.p-thanks {
	color: #666;
}

.p-thanks__title {
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
}

.p-thanks__text {
	font-weight: 500;
	text-align: center;
}

.p-thanks__btn {
	text-align: center;
}

.p-top-about {
	background-image: url(../images/common/top/top-about-img.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
	width: 100%;
}

.p-top-about__bg {
	background: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.p-top-about__content {
	width: 70%;
}

.p-top-about__title {
	font-size: 1.125rem;
	font-weight: 700;
}

.p-top-about__text {
	font-weight: 700;
	line-height: 1.35714;
}

.p-top-about__btn {
	text-align: center;
}

.p-top-info {
	background: #F2F2F2;
}

.p-top-info__space {
	height: 8.125rem;
}

.p-top-info__items {
	max-width: 64rem;
}

.p-top-info__btn {
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	-webkit-animation-duration: 0.01ms !important;
	-webkit-animation-iteration-count: 1 !important;
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

@media screen and (min-width: 375px) {

html {
	font-size: 16px;
}

.u-hidden-sp {
	display: none;
}

}

@media screen and (min-width: 768px) {

html {
	font-size: 1.5625vw;
}

.l-inner {
	max-width: 1074px;
	padding-left: 25px;
	padding-right: 25px;
}

.l-recruite {
	margin-top: 3.125rem;
}

.c-block__icon {
	width: 0.625rem;
}

.c-block__title {
	line-height: 1;
	padding-left: 0.625rem;
}

.c-box__img {
	max-height: 15rem;
	max-width: 15rem;
}

.c-box__content {
	width: 65%;
}

.c-box__title {
	font-size: 1.25rem;
	line-height: 1;
}

.c-box__text {
	font-size: 1rem;
}

.c-btn-left {
	border-radius: 1.5625rem;
	max-width: 25rem;
	padding: 0.75rem 0;
}

.c-btn-left::after {
	height: 0.9375rem;
	left: 1.25rem;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	transition: all .3s;
	width: 0.78438rem;
}

.c-btn-left:hover:after {
	left: 0.9375rem;
	transition: all .3s;
}

.c-btn-right {
	border-radius: 1.5625rem;
	max-width: 25rem;
	padding: 0.75rem 0;
}

.c-btn-right::after {
	height: 0.9375rem;
	right: 0.9375rem;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	transition: all .3s;
	width: 0.78438rem;
}

.c-btn-right:hover:after {
	right: 0.625rem;
	transition: all .3s;
}

.c-field__title {
	font-size: 1.25rem;
	line-height: 1;
}

.c-field__text {
	font-size: 1rem;
	line-height: 1.35714;
}

.fc {
	padding: 1.25rem;
}

.fc-toolbar-title {
	font-size: 1.625rem !important;
}

.fc .fc-button-primary {
	font-size: 1.125rem !important;
}

.fc-list-day-text,
.fc-list-day-side-text {
	font-size: 1.25rem !important;
}

.c-headline__icon {
	width: 0.625rem;
}

.c-headline__title {
	line-height: 1;
}

.prev img,
.next img {
	height: 1.25rem;
	width: 1rem;
}

.c-punctuation__icon {
	height: 1.25rem;
	width: 1.25rem;
}

.c-table__title,
.c-table__title,
.c-table__text {
	font-size: 1rem;
}

.c-test {
	color: green;
	font-size: 3.125rem;
}

.p-404__title {
	font-size: 2rem;
}

.p-about__blocks {
	max-width: 56.25rem;
}

.p-block {
	min-height: 15rem;
}

.p-block__img {
	max-height: 15rem;
	max-width: 21.875rem;
	width: 100%;
}

.p-block__img::before {
	padding-top: 68.58571429%;
}

.p-block__content {
	max-width: 34.375rem;
	width: 100%;
}

.p-block__icon {
	width: 0.625rem;
}

.p-block__title {
	line-height: 1;
}

.p-block__text {
	min-height: 9.375rem;
}

.p-block2 {
	min-height: 15rem;
}

.p-block2__img {
	max-height: 21.875rem;
	max-width: 21.875rem;
	width: 100%;
}

.p-block2__content {
	max-width: 34.375rem;
	width: 100%;
}

.p-block2__icon {
	width: 0.625rem;
}

.p-block2__title {
	font-size: 1.25rem;
	line-height: 1;
}

.p-block2__text {
	min-height: 9.375rem;
}

.p-breadcrumb_inner {
	max-width: 64rem;
}

.p-card:hover {
	opacity: .7;
	transition: .3s ease;
}

.p-card__img img {
	transition: transform .6s ease;
}

.p-card:hover figure img {
	transform: translate(-50%, -50%) scale(1.2);
}

.p-card__content {
	min-height: 9.375rem;
}

.p-card::after {
	bottom: 0.625rem;
	height: 0.9375rem;
	right: 0.9375rem;
	transition: all .3s;
	width: 0.8125rem;
}

.p-card:hover:before,
.p-card:hover:after {
	right: 0.625rem;
	transition: all .3s;
}

.p-concert-archive__title {
	font-size: 1.625rem;
}

.p-concert-archive__link {
	transition: .3s ease;
}

.p-concert-archive__link:hover {
	opacity: .7;
	transition: .3s ease;
}

.p-concert-archive__links {
	gap: 5%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
	max-width: 56.25rem;
}

.p-concert-archive__img {
	width: 100%;
}

.p-concert-future__title {
	font-size: 1.625rem;
}

.p-concert-future__block {
	width: 90%;
}

.p-concert-future__img-box {
	width: 35%;
}

.p-concert-future__content {
	width: 65%;
}

.p-concert-future__description {
	font-size: 1.25rem;
	line-height: 1.35714;
}

.p-concert-future__map {
	font-size: 1.125rem;
	transition: all .3s;
}

.p-conductors__blocks {
	max-width: 56.25rem;
}

.p-contact__preamble {
	font-size: 1.125rem;
	max-width: 56.25rem;
}

.contact7 {
	font-size: 1.125rem;
	margin: 0 auto;
	max-width: 50rem;
}

.contact7 dt {
	font-size: 1.25rem;
	line-height: 1;
}

.contact7 .must {
	font-size: 1.125rem;
	line-height: 1;
}

input[type="text"],
input[type="email"],
textarea {
	font-size: 1.25rem;
}

input[type="text"] {
	max-width: 50rem;
}

input[type="email"] {
	max-width: 50rem;
}

textarea {
	max-width: 50rem;
}

.wpcf7-form-control.wpcf7-submit {
	border-radius: 1.5625rem;
	font-size: 1.125rem;
	max-width: 25rem;
	padding: 0.75rem 0;
}

.contact7 dt {
	clear: left;
	float: left;
	width: 35%;
}

.contact7 dd {
	margin-left: 35%;
}

.p-detail-concert__title {
	font-size: 1.625rem;
}

.p-detail-concert__block {
	width: 90%;
}

.p-detail-concert__img-box {
	width: 50%;
}

.p-detail-concert__content {
	width: 50%;
}

.p-detail-concert__description {
	font-size: 1.25rem;
	line-height: 1.35714;
}

.p-detail-concert__map {
	font-size: 1.125rem;
	transition: all .3s;
}

.p-detail-info__title {
	font-size: 1.625rem;
}

.p-detail-info__img {
	max-width: 56.25rem;
}

.p-detail-info__img img {
	transition: transform .6s ease;
}

.p-detail-info__content {
	max-width: 46.25rem;
	min-height: 9.375rem;
}

.p-detail-info__text {
	font-size: 1rem;
}

.p-footer__pagetop {
	bottom: 1.875rem;
	right: 13.125rem;
}

.p-footer__logo {
	width: 5rem;
}

.p-footer__pc-nav {
	justify-content: center;
}

.p-header {
	height: 10rem;
}

.p-header__box {
	height: 6.25rem;
}

.p-header__icons {
	bottom: 0;
	max-width: 64rem;
	position: absolute;
	right: 1.25rem;
}

.p-header__pc-nav {
	height: 3.75rem;
}

.p-header__menu {
	display: none;
}

.p-info__space {
	height: 12.5rem;
}

.p-info-archive__title {
	font-size: 1.625rem;
}

.p-info__items {
	gap: 1.5625rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.p-mv__space {
	height: 6.25rem;
}

.p-mv {
	margin: 0 auto;
	max-width: 1600px;
}

.p-mv__bg {
	left: 0;
	top: 60%;
	transform: translateY(-50%) translateX(0%);
}

.p-mv__recruit {
	right: 0;
	top: 85%;
	transform: translateY(-50%) translateX(0%);
	transition: all .3s;
}

.p-mv__recruit:hover {
	opacity: .8;
	transition: all .3s;
}

.p-pc-nav__inner {
	max-width: 1024px;
	width: 100%;
}

.p-privacy__preamble {
	font-size: 1.125rem;
	max-width: 56.25rem;
}

.p-privacy__blocks {
	max-width: 56.25rem;
}

.p-recruit__table {
	max-width: 40rem;
}

.p-recruit__boxes {
	max-width: 53.75rem;
}

.p-repertoire__blocks {
	max-width: 56.25rem;
}

.p-repertoire__text {
	line-height: 1;
}

.p-sns__content {
	max-width: 59.375rem;
}

.sbi_header_text h3 {
	font-size: 1rem !important;
}

.p-sns__fb {
	margin-left: 3.125rem;
	padding-top: 59%;
}

.p-sub-mv {
	margin: 0 auto;
	max-width: 1600px;
}

.p-sub-mv__img::before {
	padding-top: 39.0625%;
}

.swiper-slide img {
	height: 15.625rem;
}

.swiper-button-prev,
.swiper-button-next {
	border-radius: 1.875rem;
	height: 3.125rem !important;
	width: 3.125rem !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	height: 1.875rem;
	width: 1.625rem;
}

.p-thanks__title {
	font-size: 2rem;
}

.p-top-about {
	margin: 0 auto;
	max-width: 1600px;
}

.p-top-about__content {
	max-width: 36.875rem;
	width: 100%;
}

.p-top-info__space {
	height: 12.5rem;
}

.p-top-info__items {
	gap: 1.5625rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

}

@media (min-width: 1024px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1024px) {

.c-test {
	color: blue;
}

.u-hidden-pc {
	display: none;
}

}

@media screen and (min-width: 1440px) {

.c-test {
	color: brown;
}

}

