@charset "utf-8";

@import url("https://use.typekit.net/dee4sff.css");
@import url("https://use.typekit.net/fvm8llg.css");

/* ----------------------------------------------
    reset
---------------------------------------------- */
*, ::before, ::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	/*line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;*/
}
body {
	margin: 0;
}
main {
	display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin: 0;
} 
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
dd {
	margin-left: 0;
}
hr {
	height: 0;
	margin: 0;
	color: inherit;
	border-top-width: 1px;
	box-sizing: content-box;
	clear: both;
	overflow: visible;
}
pre {
	font-size: inherit;
	font-family: monospace, monospace;
}
address {
	font-style: inherit;
}
a {
	color: inherit;
	word-break: break-all;
	text-decoration: none;
	background-color: transparent;
}
abbr[title] {
	text-decoration: underline dotted;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp {
	font-size: inherit;
	font-family: monospace, monospace;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg, img, embed, object, iframe {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
button, input, optgroup, select, textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	background: transparent;
	border-radius: 0;
	font: inherit;
	text-align: inherit;
	text-transform: inherit;
	vertical-align: middle;
	appearance: none;
	-webkit-appearance: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
	cursor: pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
	cursor: default;
}
:-moz-focusring {
	outline: auto;
}
select:disabled {
	opacity: inherit;
}
option {
	padding: 0;
}
fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
}
legend {
	padding: 0;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}
[type="number"] {
	/*-moz-appearance: textfield;*/
}
label[for] {
	cursor: pointer;
}
details {
	display: block;
}
summary {
	display: list-item;
}
[contenteditable]:focus {
	outline: auto;
}
table {
	border-color: inherit;
	border-collapse: collapse;
}
caption {
	text-align: left;
}
td, th {
	vertical-align: top;
	padding: 0;
}
th {
	text-align: left;
	font-weight: normal;
}
i {
    display: flex;
}

/* ----------------------------------------------
    base
---------------------------------------------- */
:root {
	--color-Black: #231815;
	--color-Gray:  #bebebe;
	--color-PinkL: #ffc9c2;
	--color-PinkB: #ff9e97;
	--color-Blue:  #004682;
	--font-Sans:   "Noto Sans JP", sans-serif;
	--font-Serif:  "Noto Serif JP", serif;
	--font-Baske:  "baskerville-urw", serif;
	--font-Renata: "renata", serif;
}
html {
	font-size: 62.5%;
    scroll-behavior: smooth;
    touch-action: manipulation;
}
body {
	color: var(--color-Brown);
	font: 400 1.8rem / 1.75 var(--font-Sans);
	font-feature-settings: "path";
}
#wrap {
	width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}
@media (hover: hover) {
	a {
		transition: opacity ease .3s;
	}
	a:hover {
		opacity: .6;
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}
/* ------------------------------------------- */
.w90 {
	width: 90%;
}
.mw1160 {
	max-width: 1160px;
}
.m0auto {
	margin: 0 auto;
}
.relative {
	position: relative;
}
.z1 {
	z-index: 1;
}
.z2 {
	z-index: 2;
}
.mb1 {
	margin-bottom: 1em;
}
.mb2 {
	margin-bottom: 2em;
}
.mb3 {
	margin-bottom: 3em;
}
.mb4 {
	margin-bottom: 4em;
}
.pt4 {
	padding-top: 4em;
}
.pb4 {
	padding-bottom: 4em;
}
.pt6 {
	padding-top: 6em;
}
.pb6 {
	padding-bottom: 6em;
}
.pb8 {
	padding-bottom: 8em;
}
.ff-baske {
	font-family: var(--font-Baske);
}
.ff-serif {
	font-family: var(--font-Serif);
}
.ff-renata {
	font-family: var(--font-Renata);
}
.tac {
	text-align: center;
}
.fw500 {
	font-weight: 500;
}
.fw600 {
	font-weight: 600;
}
.fw700 {
    font-weight: 700;
}
.text-white {
	color: #fff;
}
.text-pinkL {
	color: var(--color-PinkL);
}
.text-pinkB {
	color: var(--color-PinkB);
}
.back-pinkL {
	background: var(--color-PinkL);
}
.back-black {
	background: var(--color-Black);
}
.back-white {
	background: #fff;
}
@media screen and (max-width: 768px) {
	.pt6 {
		padding-top: 4em;
	}
	.pb6 {
		padding-bottom: 4em;
	}
	.pb8 {
	    padding-bottom: 4em;
	}
}
/* ------------------------------------------- */
.title01 {
    display: grid;
    justify-content: center;
}
.title01 .en {
    font-size: 8.2rem;
    line-height: 1;
}
.title02 {
    display: grid;
    gap: .5em;
}
.title02::after {
    content: "";
    width: 3.5em;
    height: 1px;
    margin: 0 auto;
    background: var(--color-PinkL);
    display: block;
}
.title02 span {
    font-size: 2.8rem;
    line-height: 1.4;
}
.title03 {
    border-bottom: .3em solid var(--color-PinkL);
    font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
	.title01 {
		margin: 0 0 2em;
	}
	.title01 .en {
	    font-size: 4.6rem;
	}
	.title02 span {
	    font-size: 2.4rem;
	}
}
/* ------------------------------------------- */
.btn01.right {
    padding: 0 2em 0 0;
    display: flex;
    justify-content: flex-end;
}
.btn01 a {
    width: 270px;
    max-width: 100%;
    height: 50px;
    padding: 0 1em 0 0;
    box-shadow: .2em .2em 0 var(--color-Gray);
    border: 1px solid;
	display: flex;
    gap: .8em;
    align-items: center;
    justify-content: center;
}
.btn01 a.back-pinkL {
    box-shadow: none;
}
.btn01 a::before,
.btn01 a::after {
    content: "";
    width: .4em;
    aspect-ratio: 1;
    background: #fff;
    position: absolute;
}
.btn01 a.back-pinkL::before,
.btn01 a.back-pinkL::after {
    background: var(--color-PinkL);
}
.btn01 a::before {
    top: -1px;
    left: 0;
}
.btn01 a::after {
    right: -1px;
    bottom: 0;
}
.btn01 a .ff-serif {
    font-size: 2.4rem;
}
.btn01 a .ff-baske {
    font-size: 2.6rem;
}
.btn01 a .arrow01 {
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
	.btn01 a {
	    max-width: 200px;
	}
	.btn01 a .ff-baske {
	    font-size: 2.0rem;
	}
	.btn01 a .ff-serif {
	    font-size: 1.8rem;
	}
}
/* ------------------------------------------- */
.arrow01 {
    width: 4em;
    height: 1px;
    background: var(--color-Black);
}
.arrow01::before,
.arrow01::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: .6em;
	height: 1px;
	border-radius: 9999px;
	background: var(--color-Black);
	transform-origin: calc(100% - 0.5px) 50%;
}
.arrow01::before {
	transform: rotate(40deg);
}
.arrow01::after {
	transform: rotate(-40deg);
}
.arrow02 {
	width: 2em;
	height: 1px;
	margin: 0 0 -.3em;
	background: var(--color-Black);
	position: relative;
}
.arrow02::before {
	content: "";
	width: .6em;
	height: 1px;
	background: var(--color-Black);
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	transform: rotate(45deg);
	transform-origin: calc(100% - 0.5px) 50%;
}
.arrow02.left::before {
	left: 0;
	right: auto;
	transform: rotate(-45deg);
	transform-origin: 0.5px 50%;
}
/* ------------------------------------------- */
.table01 {
    width: 100%;
    table-layout: fixed;
}
.table01 th,
.table01 td {
    padding: 1em;
    border: 1px solid;
    font-size: 2.0rem;
    line-height: 1.4;
    vertical-align: middle;
}
.table01 thead th {
    background: var(--color-PinkL);
    text-align: center;
}
.table01 thead th.none {
    background: none;
    border: none;
}
.table01 tbody th {
    background: #ebe3e3;
    text-align: center;
}
@media screen and (max-width: 768px) {
	.table01 th,
	.table01 td {
		padding: 1em .5em;
	    font-size: 1.2rem;
	}
}
/* ------------------------------------------- */
.pagelink {
    margin: -100px 0 0;
    padding: 100px 0 0;
    display: block;
}
/* ------------------------------------------- */
@media screen and (min-width: 769px) {
	.desk-hidden {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.mobile-hidden {
		display: none !important;
	}
}
/* ------------------------------------------- */
.anime.fade {
    transition: opacity .6s cubic-bezier(.4, 0, .6, 1);
    -webkit-transition: opacity .6s cubic-bezier(.4, 0, .6, 1);
    opacity: 0;
}
.anime.fade.active {
    opacity: 1;
}

/* ----------------------------------------------
    header
---------------------------------------------- */
#header header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    transition: background ease .3s;
}
#header.scroll header {
    background: rgb(35 24 21 / 80%);
    backdrop-filter: blur(.5em);
}
#header header .inner {
    height: 100px;
    padding: 0 2%;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: space-between;
}
#header header .inner .logo a {
    display: flex;
    gap: 1em;
    align-items: center;
}
#header header .inner .logo a > span {
    font-size: 2.2rem;
    line-height: .8;
    letter-spacing: .1em;
    display: grid;
}
#header header .inner .logo a > span span {
    font-size: 4.8rem;
    letter-spacing: 0;
}
#header header .inner .gnav nav ul {
    display: flex;
    gap: .5em;
    align-items: center;
}
#header header .inner .gnav nav ul li {
    display: flex;
    gap: .5em;
    align-items: center;
}
#header header .inner .gnav nav ul li:not(:last-child)::after {
    content: "";
    width: 1em;
    aspect-ratio: 1;
    background: url(../img/common/icon-sparkle.svg) center / cover no-repeat;
    display: block;
}
#header header .inner .gnav nav ul li a {
    line-height: 1;
    display: grid;
    gap: .2em;
}
#header header .inner .gnav nav ul li a .en {
    font-size: 2.4rem;
}
#header header .inner .gnav nav ul li a .jp {
    font-size: 1.2rem;
}
#header header .inner .hamburger {
    display: none;
}
@media screen and (max-width: 1300px) {
	#header header .inner  {
	    height: 60px;
	    padding: 0 5%;
        gap: 1em;
	}
	#header header .inner .logo a {
	    gap: .5em;
	}
	#header header .inner .logo a img {
	    width: auto;
	    height: 50px;
	}
	#header header .inner .logo a > span {
	    font-size: 1.4rem;
	    line-height: 1;
	}
	#header header .inner .logo a > span span {
	    font-size: 3.2rem;
	}
	#header header .inner .hamburger {
	    width: 30px;
	    height: 60px;
	    border: none;
	    cursor: pointer;
	    display: flex;
        gap: 8px;
	    flex-shrink: 0;
        align-items: center;
	    flex-direction: column;
        justify-content: center;
	}
	#header header .inner .hamburger .bar {
	    width: 30px;
	    height: 2px;
	    background: #fff;
	    border-radius: 100vmax;
	    display: block;
	    transition: transform 0.3s ease, opacity 0.3s ease;
	}
	#header header .inner .hamburger.open .bar:nth-child(1) {
	    transform: rotate(45deg) translate(7px, 7px);
	}
	#header header .inner .hamburger.open .bar:nth-child(2) {
	    opacity: 0;
	}
	#header header .inner .hamburger.open .bar:nth-child(3) {
	    transform: rotate(-45deg) translate(7px, -7px);
	}
	#header header .gnav {
	    width: 100%;
	    height: calc(100dvh - 60px);
	    padding: 2em 5% 4em;
	    background: rgb(35 24 21 / 80%);
        backdrop-filter: blur(.5em);
	    position: fixed;
	    top: 60px;
	    left: 0;
	    transform: translateX(100vw);
	    transition: transform 0.3s ease, opacity 0.3s ease;
	}
	#header header .gnav.open {
	    transform: translateX(0);
	}
	#header header .inner .gnav nav ul {
        max-width: 500px;
        margin: 0 auto;
        display: grid;
        gap: 2em;
        grid-template-columns: repeat(3, 1fr);
	}
	#header header .inner .gnav nav ul li {
	    flex-direction: column;
	    position: relative;
	}
	#header header .inner .gnav nav ul li:not(:last-child)::after {
	    position: absolute;
	    left: calc(100% + .5em);
	}
	#header header .inner .gnav nav ul li a {
	    width: 100%;
	}
}
@media screen and (max-width: 768px) {
	#header header .inner .gnav nav ul {
        gap: 2em 1em;
        grid-template-columns: repeat(2, 1fr);
    }
    #header header .inner .gnav nav ul li:not(:last-child)::after {
        display: none;
    }
    #header header .inner .gnav nav ul li a {
        padding: 0 0 1em;
        border-bottom: 1px solid;
    }
    #header header .inner .gnav nav ul li a .en {
	    font-size: 2.0rem;
	}
}

/* ----------------------------------------------
    pagehead
---------------------------------------------- */
#pagehead {
    height: 780px;
}
#about #pagehead {
    background: url(../img/about/header.jpg) center / cover no-repeat;
}
#first #pagehead {
    background: url(../img/first/header.jpg) top 30% left / cover no-repeat;
}
#news #pagehead {
    background: url(../img/news/header.jpg) center top 20% / cover no-repeat;
}
#studio #pagehead {
    background: url(../img/studio/header.jpg) center / cover no-repeat;
}
#price #pagehead {
    background: url(../img/price/header.jpg) center / cover no-repeat;
}
#recital #pagehead {
    background: url(../img/recital/header.jpg) center / cover no-repeat;
}
#pagehead::before,
#pagehead::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    position: absolute;
    top: 0;
    left: 0;
}
#pagehead::before {
    opacity: .1;
    mix-blend-mode: multiply;
}
#pagehead::after {
    opacity: .3;
    mix-blend-mode: saturation;
}
#recital #pagehead::before {
    display: none;
}
#recital #pagehead::after {
    mix-blend-mode: screen;
}
#pagehead .inner {
    height: 100%;
    display: grid;
    align-content: center;
}
#pagehead .inner h2 {
    line-height: 1;
    display: grid;
    gap: 1em;
}
#pagehead .inner h2 .en {
    font-size: 9.0rem;
}
#pagehead .inner h2 .jp {
    font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
	#pagehead {
	    height: 280px;
	}
	#pagehead .inner h2 {
	    gap: .5em;
	}
	#pagehead .inner h2 .en {
	    font-size: 5.0rem;
	}
	#pagehead .inner h2 .jp {
	    font-size: 1.4rem;
	}
}

/* ----------------------------------------------
    pager
---------------------------------------------- */
#pager ul {
	font-size: 2.0rem;
    display: flex;
    gap: 1em;
    justify-content: center;
}
#pager ul li a span {
    height: 100%;
    padding: .5em .6em;
    border: 1px solid var(--color-Gray);
    border-radius: 100vmax;
    line-height: 1;
    display: grid;
    place-items: center;
}
#pager ul li.act a {
    pointer-events: none;
}
#pager ul li.act span {
    color: #fff;
    background: var(--color-Black);
}
#pager ul li:is(.prev, .next) a span {
    padding: .5em 1em;
}
@media screen and (max-width: 768px) {
	#pager ul {
	    font-size: 1.4rem;
	}
}

/* ----------------------------------------------
    footer
---------------------------------------------- */
#footer footer::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/common/back-footer.png) center right / cover no-repeat;
    mix-blend-mode: luminosity;
    position: absolute;
    top: 0;
    left: 0;
}
#footer footer .inner {
    display: flex;
    gap: 2em 6em;
}
#footer footer .inner .info .box {
    display: flex;
    gap: 2em;
    align-items: flex-end;
}
#footer footer .inner .info .box .sns {
    display: flex;
    gap: 2em;
    align-items: center;
}
#footer footer .inner .info .studio {
    line-height: 1;
    display: grid;
    gap: .5em;
}
#footer footer .inner .info .studio .name {
    font-size: 3.6rem;
}
#footer footer .inner .info .studio .tel {
    font-size: 3.2rem;
}
#footer footer .inner .info .studio .tel span {
    font-size: 4.2rem;
}
#footer footer .inner .info dl {
    line-height: 1.4;
    display: grid;
    gap: 1em;
}
#footer footer .inner .info dl div dt {
    transform: translateX(-.7em);
}
#footer footer .inner .info dl div.time dd {
    font-size: 2.6rem;
    display: flex;
    gap: .5em;
    align-items: center;
}
#footer footer .inner .info dl div.time dd span {
    padding: 0 .5em;
    font-size: 1.4rem;
}
#footer footer .inner .info dl div.address dd span {
    font-size: 1.4rem;
    display: inline-block;
    transform: translateX(-.5em);
}
#footer footer .inner .fnav {
    display: grid;
    gap: 4em;
    align-content: end;
}
#footer footer .inner .fnav nav ul {
    display: grid;
    gap: .3em;
}
#footer footer .inner .fnav nav ul li {
    font-size: 1.4rem;
    letter-spacing: .1em;
    display: flex;
    gap: .5em;
}
#footer footer .inner .fnav nav ul li a .home {
    font-size: 2.2rem;
}
#footer footer .inner .fnav nav > ul > li > a {
    min-width: 8em;
    text-align-last: justify;
}
#footer footer .inner .fnav nav ul li ul li::before {
    content: "－";
}
#footer footer .inner .fnav .copy p {
    font-size: 1.2rem;
    letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
	#footer footer::after {
	    opacity: .5;
	}
	#footer footer .inner {
		width: fit-content;
	    flex-direction: column;
	}
	#footer footer .inner .info .box .logo {
	    width: 100px;
	}
	#footer footer .inner .info .studio .name {
	    font-size: 2.6rem;
	}
	#footer footer .inner .info .studio .tel {
	    font-size: 2.2rem;
	}
	#footer footer .inner .info .studio .tel span {
	    font-size: 3.2rem;
	}
	#footer footer .inner .info dl div.time dd {
	    font-size: 2.0rem;
	}
	#footer footer .inner .info dl div.address dd span {
	    font-size: 1.2rem;
	}
	#footer footer .inner .fnav {
	    gap: 2em;
	}
	#footer footer .inner .fnav nav ul li a .home {
	    font-size: 2.0rem;
	}
	#footer footer .inner .fnav nav ul {
	    gap: .2em;
	}
	#footer footer .inner .fnav nav ul li {
	    font-size: 1.2rem;
	}
}

/* ----------------------------------------------
    home
---------------------------------------------- */
#home .sec01 {
    text-shadow: 0 0 .6em rgb(0 0 0 / 40%);
}
#home .sec01 .inner .text {
    height: 100%;
    display: grid;
    place-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
}
#home .sec01 .inner .text h2 {
    display: grid;
    gap: .5em;
    align-content: center;
}
#home .sec01 .inner .text h2 .en {
    font-size: 15.0rem;
    line-height: 1;
    opacity: .85;
}
#home .sec01 .inner .text h2 .jp {
    font-size: 3.2rem;
    letter-spacing: .1em;
}
#home .sec01 .inner .text .scroll {
    letter-spacing: .05em;
    display: grid;
    gap: .8em;
    place-items: center;
    position: absolute;
    bottom: 3em;
}
#home .sec01 .inner .text .scroll::after {
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    color: #fff;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    display: block;
    transform: translateY(-25%) rotate(135deg);
}
#home .sec01 .inner .side {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}
#home .sec01 .inner .side .catch p {
    font-size: 4.0rem;
    letter-spacing: .1em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
#home .sec01 .inner .side .access a {
    margin: 4em 0 -4em;
    display: flex;
    gap: 1.5em;
    align-items: center;
}
#home .sec01 .inner .side .access a span {
    font-size: 3.0rem;
}
#home .sec01 .inner .side .access a .arrow01 {
    width: 8em;
    background: #fff;
}
#home .sec01 .inner .side .access a .arrow01::before,
#home .sec01 .inner .side .access a .arrow01::after {
    background: #fff;
}
#home .sec01 .inner .side .access a .circle {
    width: 3em;
    aspect-ratio: 1;
    background: var(--color-Blue);
    border-radius: 100vmax;
    position: absolute;
    top: calc(50% - 1px);
    right: -1.2em;
    transform: translateY(-50%);
}
#home .sec01 .inner .side .access a .circle::after {
    content: "";
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-Blue);
    border-radius: 100vmax;
    opacity: .5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
    animation: ripple-animation 2s infinite;
}
@keyframes ripple-animation {
    0% {
	    width: 100%;
        opacity: .5;
    }
    50% {
	    width: 150%;
        opacity: .5;
    }
    80% {
	    width: 150%;
        opacity: .1;
    }
    100% {
	    width: 100%;
        opacity: .1;
    }
}
#home .sec01 .inner .swiper.mv .swiper-slide img {
    width: 100%;
    height: 1100px;
    object-fit: cover;
}
#home .sec01 .inner .swiper.mv .swiper-pagination {
    width: fit-content;
    display: flex;
    gap: 1em;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: auto;
    right: 8%;
    bottom: auto;
    transform: translateY(-50%);
}
#home .sec01 .inner .swiper.mv .swiper-pagination-bullet {
    width: 2em;
    height: auto;
    aspect-ratio: 1;
    background: url(../img/common/icon-sparkle.svg) center / cover no-repeat;
    margin: 0;
    padding: 0;
    border-radius: 0;
    opacity: 1;
}
#home .sec01 .inner .swiper.mv .swiper-pagination-bullet-active {
    width: 4em;
	transform: scale(1);
}
@media screen and (max-width: 768px) {
	#home .sec01 .inner .text h2 {
	    margin: 0 0 6em auto;
	    text-align: right;
	}
	#home .sec01 .inner .text h2 .en {
	    font-size: 15vw;
	}
	#home .sec01 .inner .text h2 .jp {
	    font-size: 5vw;
	}
	#home .sec01 .inner .text .scroll {
		font-size: 1.2rem;
	    bottom: 2em;
	}
	#home .sec01 .inner .text .scroll::after {
	    width: 1em;
	}
	#home .sec01 .inner .side {
        height: 100%;
        padding: calc(60px + 2em) 0 2em;
        display: flex;
        gap: 2em;
        flex-direction: column;
        left: 2%;
	}
	#home .sec01 .inner .side .catch p {
	    font-size: 1.6rem;
	}
	#home .sec01 .inner .side .access a {
		margin: 0;
	    gap: 1em;
	    flex-direction: column;
	}
	#home .sec01 .inner .side .access a span {
	    font-size: 1.6rem;
	    -ms-writing-mode: tb-rl;
	    writing-mode: vertical-rl;
	}
	#home .sec01 .inner .side .access a .arrow01 {
	    width: 1px;
	    height: 4em;
	}
	#home .sec01 .inner .side .access a .arrow01::before,
	#home .sec01 .inner .side .access a .arrow01::after {
		width: 1px;
	    height: .6em;
	    top: auto;
	    left: calc(50% - 0.5px);
	    right: auto;
	    bottom: 0;
	    transform-origin: 50% calc(100% - 0.5px);
	}
	#home .sec01 .inner .side .access a .arrow01::before {
		transform: rotate(45deg);
	}
	#home .sec01 .inner .side .access a .arrow01::after {
		transform: rotate(-45deg);
	}
	#home .sec01 .inner .side .access a .circle {
	    width: 2em;
	    top: auto;
	    right: auto;
	    bottom: -1.6em;
	}
	#home .sec01 .inner .swiper.mv .swiper-slide img {
	    height: 600px;
	}
	#home .sec01 .inner .swiper.mv .swiper-pagination {
	    top: auto;
	    left: auto;
	    right: 2%;
	    bottom: 1em;
	    transform: translateY(0);
	}
	#home .sec01 .inner .swiper.mv .swiper-pagination {
	    gap: .5em;
	}
	#home .sec01 .inner .swiper.mv .swiper-pagination-bullet {
	    width: 1.5em;
	}
	#home .sec01 .inner .swiper.mv .swiper-pagination-bullet-active {
	    width: 2.5em;
	}
}
/* ------------------------------------------- */
#home .sec02 .inner ul {
    display: grid;
    gap: 6em;
}
#home .sec02 .inner ul li {
    display: flex;
    gap: 2em;
}
#home .sec02 .inner ul li:nth-child(even) {
    flex-direction: row-reverse;
}
#home .sec02 .inner ul li h2 {
    font-size: 7.8rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1;
}
#home .sec02 .inner ul li .text h3 {
    margin: 0 0 .5em;
    font-size: 3.0rem;
    line-height: 1;
}
#home .sec02 .inner ul li .text h3 span {
	margin: 0 .2em 0 0;
    font-size: 8.2rem;
    font-style: italic;
}
#home .sec02 .inner ul li .text h4 {
    margin: 0 0 .5em;
    font-size: 2.8rem;
}
#home .sec02 .inner ul li .img {
    display: flex;
    gap: 1em;
    flex-shrink: 0;
    align-items: flex-start;
}
#home .sec02 .inner ul li .img p {
    margin: 1em 0 0;
    font-size: 2.8rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	#home .sec02 .inner ul {
	    gap: 3em;
	}
	#home .sec02 .inner ul li,
	#home .sec02 .inner ul li:nth-child(even) {
	    flex-direction: column;
	}
	#home .sec02 .inner ul li h2 {
	    font-size: 4.8rem;
	    position: absolute;
	}
	#home .sec02 .inner ul li:nth-child(1) .text {
	    width: calc(100% - 4em);
	    margin: 0 0 0 auto;
	}
	#home .sec02 .inner ul li .text h3 span {
	    font-size: 5.2rem;
	}
	#home .sec02 .inner ul li .text h4 {
	    font-size: 2.0rem;
	}
	#home .sec02 .inner ul li .img {
	    flex-direction: row-reverse;
	    overflow: hidden;
	}
	#home .sec02 .inner ul li .img p {
	    font-size: 2.0rem;
	}
}
/* ------------------------------------------- */
#home .sec03::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/home/back-first.png) center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}
#home .sec03 .inner .catch {
    width: 100%;
    font-size: 15.0rem;
    line-height: 1.2;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: .75;
}
#home .sec03 .inner .text h2 {
	margin: 0 0 .5em;
    font-size: 4.0rem;
}
#home .sec03 .inner .text p {
    font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
	#home .sec03::after {
	    background-position: center right 20%;
	    opacity: .5;
	}
	#home .sec03 .inner .catch {
	    font-size: 17vw;
	}
	#home .sec03 .inner .text h2 {
	    font-size: 2.6rem;
	}
	#home .sec03 .inner .text p {
	    font-size: 1.4rem;
	}
}
/* ------------------------------------------- */
#home .sec04 .inner .swiper.news .swiper-slide .tmb {
    aspect-ratio: 1;
    background: var(--color-Gray);
    box-shadow: .5em -.5em 0 var(--color-PinkL);
}
#home .sec04 .inner .swiper.news .swiper-slide .tmb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#home .sec04 .inner .swiper.news .swiper-slide .text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media screen and (min-width: 769px) {
	#home .sec04 .inner .swiper.news .swiper-wrapper {
	    display: grid;
	    gap: 3em;
	    grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (max-width: 768px) {
	#home .sec04 .inner .swiper.news {
		width: 100vw;
        margin: 0 calc(50% - 50vw) 3em;
        padding: 0 0 0 5%;
	}
	#home .sec04 .inner .btn01.right {
	    padding: 0;
	    justify-content: space-evenly;
	}
}
/* ------------------------------------------- */
#home .sec05 {
    background: url(../img/home/back-studio.jpg) center / cover no-repeat;
}
#home .sec05 .inner .swiper.studio .swiper-slide {
	transform: scale(.8);
	transition: transform ease .3s; 
}
#home .sec05 .inner .swiper.studio .swiper-slide-active {
	transform: scale(1);
}
#home .sec05 .inner .swiper.studio .swiper-button-next:after,
#home .sec05 .inner .swiper.studio .swiper-button-prev:after {
    color: var(--color-Black);
    font-size: 1em;
}
#home .sec05 .inner .swiper.studio .swiper-button-prev,
#home .sec05 .inner .swiper.studio .swiper-button-next {
	margin: 0;
	position: absolute;
	top: calc(50% - 1em);
	transform: translate(-50%, -50%)
}
#home .sec05 .inner .swiper.studio .swiper-button-prev {
    left: calc(50% - 18.8%);
    right: auto;
}
#home .sec05 .inner .swiper.studio .swiper-button-next {
    left: calc(50% + 18.8%);
    right: auto;
}
#home .sec05 .inner .swiper.studio .swiper-pagination {
    margin: 2em 0 0;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
    position: static;
}
#home .sec05 .inner .swiper.studio .swiper-pagination-bullet {
    width: .8em;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
    background: #fff;
    opacity: .4;
}
#home .sec05 .inner .swiper.studio .swiper-pagination-bullet-active {
    width: 1.2em;
    background: #000;
    opacity: 1;
}
@media screen and (max-width: 768px) {
	#home .sec05 .inner .swiper.studio {
	    width: 100vw;
	    margin: 0 calc(50% - 50vw);
	}
	#home .sec05 .inner .swiper.studio .swiper-button-prev {
	    left: calc(50% - 37.5%);
	}
	#home .sec05 .inner .swiper.studio .swiper-button-next {
	    left: calc(50% + 37.5%);
	}
	#home .sec05 .inner .swiper.studio .swiper-pagination-bullet {
	    width: .6em;
	}
	#home .sec05 .inner .swiper.studio .swiper-pagination-bullet-active {
	    width: .8em;
	}
}
/* ------------------------------------------- */
#home .sec06 .inner .box {
    display: flex;
    gap: 2em 3em;
}
#home .sec06 .inner .box .map {
    width: 100%;
    padding: .5em;
    background: #fff;
    border: 1px solid var(--color-Gray);
    box-shadow: .5em -.5em 0 var(--color-PinkL);
}
#home .sec06 .inner .box .map iframe {
    width: 100%;
    height: 100%;
}
#home .sec06 .inner .box .text {
    flex-shrink: 0;
}
#home .sec06 .inner .box .text .studio {
    line-height: 1;
    display: grid;
    gap: .5em;
}
#home .sec06 .inner .box .text .studio .name {
    font-size: 3.0rem;
}
#home .sec06 .inner .box .text .studio .tel {
    font-size: 3.2rem;
}
#home .sec06 .inner .box .text .studio .tel span {
    font-size: 4.2rem;
}
#home .sec06 .inner .box .text dl {
    line-height: 1.4;
    display: grid;
    gap: 1em;
}
#home .sec06 .inner .box .text dl div dt {
    transform: translateX(-.7em);
}
#home .sec06 .inner .box .text dl div.time dd {
    font-size: 2.6rem;
    display: flex;
    gap: .5em;
    align-items: center;
}
#home .sec06 .inner .box .text dl div.time dd span {
    padding: 0 .5em;
    font-size: 1.4rem;
}
#home .sec06 .inner .box .text dl div.address dd span {
    font-size: 1.4rem;
    display: inline-block;
    transform: translateX(-.5em);
}
#home .sec06 .inner .box .text dl div.sns dd {
	margin: .5em 0 0;
    display: flex;
    gap: 1.5em;
    align-items: center;
}
@media screen and (max-width: 768px) {
	#home .sec06 .inner .box {
	    flex-direction: column;
	}
	#home .sec06 .inner .box .map iframe {
	    aspect-ratio: 1;
	}
	#home .sec06 .inner .box .text .studio .name {
	    font-size: 2.0rem;
	}
	#home .sec06 .inner .box .text .studio .tel {
	    font-size: 2.0rem;
	}
	#home .sec06 .inner .box .text .studio .tel span {
	    font-size: 3.2rem;
	}
	#home .sec06 .inner .box .text dl div.time dd {
	    font-size: 2.0rem;
	}
	#home .sec06 .inner .box .text dl div.address dd span {
	    font-size: 1.2rem;
	}
}
/* ------------------------------------------- */
#home .sec07 {
    background: url(../img/home/back-class.jpg) center / cover no-repeat;
}
#home .sec07::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#home .sec07 .inner .swiper.class .box {
	height: 100%;
    padding: 2em;
    background: rgb(255 201 194 / 75%);
    border: 1px solid #fff;
    border-radius: .5em;
}
#home .sec07 .inner .swiper.class .box h3 {
    margin: 0 0 .3em;
    font-size: 2.8rem;
}
#home .sec07 .inner .swiper.class .box .label {
    width: 90%;
    margin: 0 auto .5em;
    background: rgb(255 201 194 / 85%);
    border: 1px solid;
    mix-blend-mode: multiply;
}
#home .sec07 .inner .swiper.class .box .text {
    font-size: 1.6rem;
    line-height: 2;
}
#home .sec07 .inner .swiper.class .box.link {
    padding: 0;
}
#home .sec07 .inner .swiper.class .box.link a {
    width: 100%;
    height: 100%;
    padding: 2em 2em 3em;
    display: grid;
    gap: 1em;
    place-items: center;
    align-content: center;
}
#home .sec07 .inner .swiper.class .box.link a::after {
    content: "";
    height: 80%;
    aspect-ratio: 60 / 92;
    background: url(../img/common/logo.png) center / cover no-repeat;
    filter: brightness(0.5);
    opacity: .1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@media screen and (min-width: 769px) {
	#home .sec07 .inner .swiper.class .swiper-wrapper {
	    display: grid;
	    gap: 1.5em;
	    grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 768px) {
	#home .sec07 .inner .swiper.class {
	    width: 100vw;
	    margin: 0 calc(50% - 50vw);
	}
	#home .sec07 .inner .swiper.class .swiper-wrapper {
	    align-content: stretch;
	}
	#home .sec07 .inner .swiper.class .swiper-slide {
	    height: auto;
	}
	#home .sec07 .inner .swiper.class .box {
	    padding: 2em 1.5em;
	}
	#home .sec07 .inner .swiper.class .box h3 {
	    font-size: 2.0rem;
	}
	#home .sec07 .inner .swiper.class .box .text {
	    font-size: 1.2rem;
	}
}
/* ------------------------------------------- */
#home .sec08 .triangle {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 4em;
    left: 0;
}
#home .sec08 .triangle .item01 {
	width: 100%;
	clip-path: polygon(0 0,100% 50%,0 100%);
    background: url(../img/home/back-schedule01.jpg) center left / cover no-repeat;
}
#home .sec08 .triangle .item02 {
	width: 100%;
	clip-path: polygon(100% 0,0 50%,100% 100%);
    background: url(../img/home/back-schedule02.jpg) center right / cover no-repeat;
}
#home .sec08 .triangle .item01::after,
#home .sec08 .triangle .item02::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-PinkL);
    mix-blend-mode: color;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width: 768px) {
}
/* ------------------------------------------- */
#home .sec09 .inner .box {
    display: grid;
    gap: 2em 5em;
    grid-template-columns: 4fr 7fr;
}
#home .sec09 .inner .box .item {
    display: flex;
    gap: 2em 3em;
    align-items: center;
}
#home .sec09 .inner .box .left {
    display: grid;
    align-content: center;
    justify-content: flex-start;
}
#home .sec09 .inner .box .left p {
    font-size: 9.2rem;
    line-height: 1;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    mix-blend-mode: multiply;
    transform: translateX(-.12em);
}
#home .sec09 .inner .box .left .img {
    position: absolute;
    top: 50%;
    right: -2.5em;
    transform: translateY(-50%);
}
#home .sec09 .inner .box .right .item .text {
    display: grid;
    gap: 1em;
    align-content: center;
}
#home .sec09 .inner .box .right .item .text .text01 {
    font-size: 3.0rem;
}
#home .sec09 .inner .box .right .item .text .text02 {
    line-height: 1;
    display: grid;
    gap: 1em;
}
#home .sec09 .inner .box .right .item .text .text02 .jp {
    font-size: 3.8rem;
}
#home .sec09 .inner .box .right .item .text .text02 .en {
    font-size: 2.2rem;
}
#home .sec09 .inner .box .right .item .text .text03 {
    font-size: 2.8rem;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
	#home .sec09 .inner .box {
	    display: flex;
	    flex-direction: column-reverse;
	}
    #home .sec09 .inner .box .item {
        gap: 2em;
    }
	#home .sec09 .inner .box .right .item .text {
	    flex-shrink: 0;
	}
	#home .sec09 .inner .box .right .item .text .text01 {
	    font-size: 1.8rem;
	}
	#home .sec09 .inner .box .right .item .text .text02 .jp {
	    font-size: 2.6rem;
	}
	#home .sec09 .inner .box .right .item .text .text02 .en {
	    font-size: 1.4rem;
	}
	#home .sec09 .inner .box .right .item .text .text03 {
	    font-size: 1.8rem;
	}
	#home .sec09 .inner .box .left p {
	    font-size: 6.2rem;
	}
	#home .sec09 .inner .box .left .img {
	    width: 80%;
	}
}
/* ------------------------------------------- */
#home .sec10 .inner .back {
	background: url(../img/home/back-recital.jpg) top 40% center / 1920px no-repeat;
}
#home .sec10 .inner .back::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    mix-blend-mode: multiply;
    opacity: .65;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#home .sec10 .inner .back ul {
    display: grid;
    gap: .5em;
    grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
	#home .sec10 .inner .back ul {
	    grid-template-columns: repeat(2, 1fr);
	}
}

/* ----------------------------------------------
    about
---------------------------------------------- */
#about .sec01 {
    background: url(../img/about/back01.jpg) center / cover no-repeat;
}
#about .sec01 .inner h3 {
    font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
	#about .sec01 .inner h3 {
	    font-size: 2.2rem;
	}
}
/* ------------------------------------------- */
#about .sec02 .inner .list01 {
    width: fit-content;
}
#about .sec02 .inner .list01 li {
    padding: 0 0 0 1.2em;
    text-indent: -1.2em;
}
#about .sec02 .inner .list01 li:first-letter {
	margin: 0 .2em 0 0;
    color: var(--color-PinkL);
}
#about .sec02 .inner .list02 {
    display: grid;
    gap: 2em;
}
#about .sec02 .inner .list02 li {
    display: flex;
    align-items: center;
}
#about .sec02 .inner .list02 li .img {
    width: 49%;
}
#about .sec02 .inner .list02 li .text {
    width: 70%;
    min-height: 90%;
    padding: 2em;
    background: rgb(255 158 151 / 75%);
}
#about .sec02 .inner .list02 li .text h3 {
    font-size: 2.0rem;
}
#about .sec02 .inner .list02 li .text p {
    font-size: 1.6rem;
    line-height: 2;
}
@media screen and (min-width: 769px) {
	#about .sec02 .inner .list02 li:nth-child(even) {
	    flex-direction: row-reverse;
	}
	#about .sec02 .inner .list02 li:nth-child(odd) .text {
	    margin: 0 0 0 -10%;
	}
	#about .sec02 .inner .list02 li:nth-child(even) .text {
	    margin: 0 -10% 0 0;
	}
}
@media screen and (max-width: 768px) {
	#about .sec02 .inner {
	    padding-bottom: 0;
	}
	#about .sec02 .inner .list02 {
	    width: 100vw;
	    margin: 0 calc(50% - 50vw);
	}
	#about .sec02 .inner .list02 li {
	    align-items: flex-start;
	    flex-direction: column;
	}
	#about .sec02 .inner .list02 li .img {
	    width: 90%;
	}
	#about .sec02 .inner .list02 li .text {
	    width: 90%;
	    min-height: auto;
	    margin: -1.5em 0 0 auto;
	}
	#about .sec02 .inner .list02 li .text h3 {
	    font-size: 1.8rem;
	}
	#about .sec02 .inner .list02 li .text p {
	    font-size: 1.4rem;
	}
}
/* ------------------------------------------- */
#about .sec03 .inner .box {
    display: grid;
    gap: 2em;
    grid-template-columns: 3fr 5fr;
}
#about .sec03 .inner .box .text h4 {
    display: flex;
    gap: 4em;
    align-items: end;
}
#about .sec03 .inner .box .text h4 .jp {
    font-size: 2.4rem;
}
#about .sec03 .inner .box .text h4 .en {
    font-size: 3.6rem;
    line-height: .8;
    text-indent: -1em;
    letter-spacing: .1em;
    rotate: -10deg;
}
#about .sec03 .inner .box .text .block {
    margin: 1em 0 0;
    padding: 1em 0 0;
    border-top: 1px dotted;
    font-size: 1.6rem;
    line-height: 2;
}
@media screen and (max-width: 768px) {
	#about .sec03 .inner .box {
	    grid-template-columns: 1fr;
	}
	#about .sec03 .inner .box .img {
	    width: 200px;
	    margin: 0 auto;
	}
	#about .sec03 .inner .box .text h4 {
	    gap: 3em;
	    justify-content: center;
	}
	#about .sec03 .inner .box .text h4 .jp {
	    font-size: 2.0rem;
	}
	#about .sec03 .inner .box .text h4 .en {
	    font-size: 2.6rem;
	}
	#about .sec03 .inner .box .text .block {
	    font-size: 1.4rem;
	}
}

/* ----------------------------------------------
    first
---------------------------------------------- */
#first .sec01 {
    background: url(../img/first/back01.jpg) center bottom 20%/ cover no-repeat;
}
#first .sec01 .inner h3 {
    font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
	#first .sec01::after {
	    content: "";
	    width: 100%;
	    height: 100%;
	    background: #fff;
	    opacity: .5;
	    position: absolute;
	    top: 0;
	    left: 0;
	}
	#first .sec01 .inner h3 {
	    font-size: 2.2rem;
	}
}
/* ------------------------------------------- */
#first .sec02 .inner ul {
    display: grid;
    gap: 2em 3em;
    grid-template-columns: repeat(3, 1fr);
}
#first .sec02 .inner ul li {
    display: grid;
    gap: 1em;
    align-content: flex-start;
}
#first .sec02 .inner ul li .img {
    width: 80%;
    max-width: 225px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 100vmax;
    overflow: hidden;
}
#first .sec02 .inner ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#first .sec02 .inner ul li:nth-child(2) .img img,
#first .sec02 .inner ul li:nth-child(3) .img img {
	object-position: right;
}
#first .sec02 .inner ul li h4 {
    font-size: 2.0rem;
}
#first .sec02 .inner ul li p {
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
	#first .sec02 .inner ul {
	    grid-template-columns: 1fr;
	}
	#first .sec02 .inner ul li p {
	    font-size: 1.4rem;
	}
}
/* ------------------------------------------- */
#first .sec03 .inner .title02::after {
    background: #fff;
}
#first .sec03 .inner ol {
    display: grid;
    gap: 2em;
}
#first .sec03 .inner ol li {
	min-height: 9.5em;
    padding: 1em 2em;
    border-radius: 1.5em;
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 3fr 20fr;
}
#first .sec03 .inner ol li .num {
    font-size: 7.4rem;
    line-height: 1;
    display: grid;
    align-items: center;
}
#first .sec03 .inner ol li i {
    align-items: center;
    justify-content: center;
}
#first .sec03 .inner ol li .text {
    padding: 0 0 0 1em;
}
#first .sec03 .inner ol li .text h4 {
    margin: 0 0 .5em;
    font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
	#first .sec03 .inner ol li {
	    min-height: auto;
	    padding: 2em 1em;
	    grid-template-columns: 1fr;
	}
	#first .sec03 .inner ol li i img {
	    width: auto;
	    height: 70px;
	}
	#first .sec03 .inner ol li .text {
	    padding: 0;
	}
	#first .sec03 .inner ol li .text h4 {
	    text-align: center;
	}
}
/* ------------------------------------------- */
#first .sec04 .inner dl div {
    padding: 1em 2em;
    border-top: 1px dotted;
    display: grid;
    gap: 1em;
}
#first .sec04 .inner dl div dt,
#first .sec04 .inner dl div dd {
    display: flex;
    gap: 2em;
    align-items: baseline;
}
#first .sec04 .inner dl div dt p {
    font-size: 2.0rem;
}
#first .sec04 .inner dl div .icon {
	width: 1em;
    font-size: 2.0rem;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
}
#first .sec04 .inner dl div dd p {
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
	#first .sec04 .inner dl div {
	    padding: 1em 0;
	    gap: .5em;
	}
	#first .sec04 .inner dl div dt,
	#first .sec04 .inner dl div dd {
	    gap: 1em;
	}
	#first .sec04 .inner dl div dt p {
	    font-size: 1.6rem;
	}
	#first .sec04 .inner dl div dd p {
	    font-size: 1.4rem;
	}
}

/* ----------------------------------------------
    news
---------------------------------------------- */
#news .sec01 .inner .list {
    display: grid;
    gap: 2em;
}
#news .sec01 .inner .list li {
    padding: 0 0 2em;
    border-bottom: 1px dotted;
}
#news .sec01 .inner .list li a {
    display: flex;
    gap: 3em;
    align-items: center;
}
#news .sec01 .inner .list li a .tmb {
    max-width: 250px;
    aspect-ratio: 1;
    background: var(--color-Gray);
}
#news .sec01 .inner .list li a .tmb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#news .sec01 .inner .list li a .text .title {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
#news .sec01 .inner .date,
#news .sec01 .inner .title {
    font-size: 2.0rem;
}
#news .sec01 .inner .box {
    padding: 1em 0 0;
    border-top: 1px dotted;
}
#news .sec01 .inner .box p,
#news .sec01 .inner .box ul {
    margin: 0 0 1em;
}
#news .sec01 .inner .btn a {
    width: fit-content;
    padding: 1em 2em;
    border: 1px solid var(--color-Gray);
    border-radius: 100vmax;
    line-height: 1;
    display: flex;
    gap: 1em;
    align-items: center;
}
@media screen and (max-width: 768px) {
	#news .sec01 .inner .list li a {
	    display: grid;
	    gap: 1em;
	    grid-template-columns: 1fr 3fr;
	}
	#news .sec01 .inner .date {
	    font-size: 1.4rem;
	}
	#news .sec01 .inner .title {
	    font-size: 1.8rem;
	}
	#news .sec01 .inner .list li a .text .title {
	    font-size: 1.4rem;
		-webkit-line-clamp: 2;
	}
}

/* ----------------------------------------------
    recital
---------------------------------------------- */
#recital .sec01 .inner .link {
    display: flex;
    gap: 2em 5em;
    flex-wrap: wrap;
    justify-content: center;
}
#recital .sec01 .inner .swiper-slide img {
    width: 100%;
    aspect-ratio: 1160 / 770;
    object-fit: cover;
}
#recital .sec01 .inner .swiper-button-next,
#recital .sec01 .inner .swiper-button-prev {
    width: 1.8em;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 100vmax;
    opacity: .8;
}
#recital .sec01 .inner .swiper-button-next::after,
#recital .sec01 .inner .swiper-button-prev::after {
    color: var(--color-Black);
    font-size: 1em;
    font-weight: 900;
}
#recital .sec01 .inner .swiper-button-next::after {
    transform: translateX(.1em);
}
#recital .sec01 .inner .swiper-button-prev::after {
    transform: translateX(-.05em);
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    price
---------------------------------------------- */
#price .sec01 .inner table {
    margin: 0 0 .5em;
}
#price .sec01 .inner .list li {
    padding: 0 0 0 1em;
    font-size: 1.6rem;
    text-indent: -1em;
}
@media screen and (min-width: 769px) {
	#price .sec01 .inner .table01.type01 th {
	    width: 25%;
	    height: 100px;
	}
	#price .sec01 .inner .table01.type01 td {
	    padding: 1em 2em;
	}
}
@media screen and (max-width: 768px) {
	#price .sec01 .inner .list li {
	    font-size: 1.2rem;
	}
}

/* ----------------------------------------------
    studio
---------------------------------------------- */
#studio .sec01 {
    background: url(../img/home/back-class.jpg) center / cover no-repeat;
}
#studio .sec01::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#studio .sec01 .inner .swiper.class .box {
	height: 100%;
    padding: 2em;
    background: rgb(255 201 194 / 75%);
    border: 1px solid #fff;
    border-radius: .5em;
}
#studio .sec01 .inner .swiper.class .box h3 {
    margin: 0 0 .3em;
    font-size: 2.8rem;
}
#studio .sec01 .inner .swiper.class .box .label {
    width: 90%;
    margin: 0 auto .5em;
    background: rgb(255 201 194 / 85%);
    border: 1px solid;
    mix-blend-mode: multiply;
}
#studio .sec01 .inner .swiper.class .box .text {
    font-size: 1.6rem;
    line-height: 2;
}
#studio .sec01 .inner .swiper.class .box.link {
    padding: 0;
}
#studio .sec01 .inner .swiper.class .box.link a {
    width: 100%;
    height: 100%;
    padding: 2em 2em 3em;
    display: grid;
    gap: 1em;
    place-items: center;
    align-content: center;
}
#studio .sec01 .inner .swiper.class .box.link a::after {
    content: "";
    height: 80%;
    aspect-ratio: 60 / 92;
    background: url(../img/common/logo.png) center / cover no-repeat;
    filter: brightness(0.5);
    opacity: .1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@media screen and (min-width: 769px) {
	#studio .sec01 .inner .swiper.class .swiper-wrapper {
	    display: grid;
	    gap: 1.5em;
	    grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 768px) {
	#studio .sec01 .inner .swiper.class {
	    width: 100vw;
	    margin: 0 calc(50% - 50vw);
	}
	#studio .sec01 .inner .swiper.class .swiper-wrapper {
	    align-content: stretch;
	}
	#studio .sec01 .inner .swiper.class .swiper-slide {
	    height: auto;
	}
	#studio .sec01 .inner .swiper.class .box {
	    padding: 2em 1.5em;
	}
	#studio .sec01 .inner .swiper.class .box h3 {
	    font-size: 2.0rem;
	}
	#studio .sec01 .inner .swiper.class .box .text {
	    font-size: 1.2rem;
	}
}
/* ------------------------------------------- */
#studio .sec02 .triangle {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 4em;
    left: 0;
}
#studio .sec02 .triangle .item01 {
	width: 100%;
	clip-path: polygon(0 0,100% 50%,0 100%);
    background: url(../img/home/back-schedule01.jpg) center left / cover no-repeat;
}
#studio .sec02 .triangle .item02 {
	width: 100%;
	clip-path: polygon(100% 0,0 50%,100% 100%);
    background: url(../img/home/back-schedule02.jpg) center right / cover no-repeat;
}
#studio .sec02 .triangle .item01::after,
#studio .sec02 .triangle .item02::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-PinkL);
    mix-blend-mode: color;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width: 768px) {
}


