/*
Theme Name: blue
*/

@charset "UTF-8";

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: "shippori-mincho", serif;
    font-style: normal;
    color: #2F1D13;
	background-color: #F0E9E2;
    overflow-x: clip;
}

body::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100svh;
    position: absolute;
    top:0;
    background-image: url(images/blue_topper_pc.webp);
    background-size: cover;
	-webkit-background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transform-origin: top center;
	z-index: -10;
}

.container {
    padding: 0 7.5rem;
}

.container02 {
    padding: 0 17.5rem;
}

.stickey-container {
    position: absolute;
    top: 17.5rem;
    left: 10rem;
}

.tablet-only {
    display: none;
}

.phone-only {
    display: none;
}

.contact-link {
	cursor : pointer;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100svh;
    background-color: #2F1D13;
    z-index: 100;
    visibility: visible;
    opacity: 1;
    transition: 1s 1s all ease;
}

.loading img {
    width: 17.5rem;
}

.loading.hidden {
    visibility: hidden;
    opacity: 0;
    transition: 1s 1s all ease;
}

.page-contact-form {
	background-color: #F0E9E2;
	padding: 10rem 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.page-contact-form .section-title01 {
	text-align: center;
	margin-bottom: 4rem;
}

.page-contact-form .section-title01 h2 {
	font-size: 5rem;
}

.page-contact-form .section-title01 p {
	font-size: 1.8rem;
}

.page-contact-form form {
	width: 40rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.page-contact-form input {
	padding: 1rem;
	margin: 0.75rem 0;
	border: 1px solid rgba(47, 29, 19, 0.8);
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0;
}

.page-contact-form select {
	padding: 1rem;
	margin: 0.75rem 0;
	border: 1px solid rgba(47, 29, 19, 0.8);
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0;
	color: #2F1D13;
}

.page-contact-form textarea {
	padding: 1rem;
	margin: 0.75rem 0;
	border: 1px solid rgba(47, 29, 19, 0.8);
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0;
}

.page-contact-form label {
	font-size: 1.5rem;
	border-radius: 0;
}

.page-contact-form p:last-of-type input {
	background-color: #AC5326;
	color: #F0E9E2;
	border: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 0;
	border: none;
	color: #dc3232;
    font-size: 1.5rem;
}

/*----------header---------*/

header {
    position: fixed;
    z-index: 10;
    top:0;
    width: 100vw;
    z-index: 10;
    padding: 5rem 7.5rem;
    box-sizing: border-box;
}

.header-top {
    display: flex;
    justify-content: space-between;
}

.header-top-img {
    height: 1.25rem;
    transition: filter 0.3s ease;
}

.menu-btn {
    border: none;
    background: none;
    padding: 0;
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
    position: relative;
    width: 4rem;
    height: 1rem;
    cursor: pointer;
}

.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-trigger.btn-trigger-active span {
    background-color: #2F1D13;
}

.btn-trigger span:nth-of-type(1) {
    top: 0;
}

.btn-trigger span:nth-of-type(2) {
    bottom: 0;
}

.btn-trigger.btn-trigger-active span:nth-of-type(1) {
    transform: rotate(20deg) translateY(0.5rem);
}

.btn-trigger.btn-trigger-active span:nth-of-type(2) {
    transform: rotate(-20deg) translateY(-0.5rem);
}

.menu {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100svh;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(20, 20, 20, 0.1);
    transition: opacity 0.3s , visibility 0.3s ease;
}

.menu.menu-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-container {
    margin-left: auto;
    width: 45rem;
    height: 100vh;
    background-color: #F0E9E2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.08,0.82,0.17,1), visibility 0.3s cubic-bezier(0.08,0.82,0.17,1);
}

.menu-container.menu-container-active {
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.08,0.82,0.17,1), visibility 0.3s cubic-bezier(0.08,0.82,0.17,1);
}

.menu ul {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu a {
    font-size: 1.8rem;
    font-family: "shippori-mincho", serif;
    color: #2F1D13;
}

header .topper-btn {
    position: static;
    display: flex;
	justify-content: center;
	align-items: center;
    background: none;
    border: 1px solid #2F1D13;
    margin: 6rem 0;
}

header .topper-btn img {
    height: 1.8rem;
    filter: brightness(0) saturate(100%) invert(8%) sepia(57%) saturate(582%) hue-rotate(339deg) brightness(100%) contrast(91%);
	transform: translateY(-0.15rem);
}

header .topper-btn span {
    display: inline-block;
    color: #2F1D13;
    font-size: 1.8rem;
}

.menu p {
    font-size: 1.4rem;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.menu-contact {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 2.8rem;
}

.menu-contact a {
    color: #2F1D13;
    display: block;
    font-size: 1.4rem;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.contact-form {
    opacity: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s , visibility 0.3s ease;
}

.contact-form ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-form.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s , visibility 0.3s ease;
}

.contact-form li {
    width: 40rem;
    text-align: center;
}

.contact-form a {
    display: block;
    font-size: 1.8rem;
    line-height: 12rem;
    color: #2F1D13;
    background-color: #F0E9E2;
}

.contact-form-btn-container {
    position: fixed;
    top: 5rem;
    right: 5rem;
}

.contact-form-btn {
    position: relative;
    cursor: pointer;
    width: 10rem;
    height: 10rem;
    border: 1px solid rgba(240, 233, 226, 0.4);
    border-radius: 100%;
    transition: 0.3s all ease;
}

.contact-form-btn:hover {
    border: 1px solid rgba(240, 233, 226, 0.8);
    transition: 0.3s all ease;
}

.contact-form-btn span {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    background-color: #F0E9E2;
    width: 2.5rem;
    height: 1px;
}

.contact-form-btn span:first-of-type {
    transform: rotate(45deg);
}

.contact-form-btn span:nth-of-type(2) {
    transform: rotate(-45deg);
}

/*----------topper---------*/

.topper {
    width: 100vw;
    height: 100svh;
    color: #fff;
    background-color: transparent;
    position: relative;
}

.topper-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100vw;
    height: 100svh;
    padding-left: 7.5rem;
    padding-right: 7.5rem;
    padding-bottom: 10rem;
    box-sizing: border-box;
}

.topper h2 {
    font-family: "cormorant-garamond", serif;
    font-weight: 200;
    font-size: 8rem;
    margin-bottom: 0.5rem;
}

.topper p {
    font-family: "shippori-mincho", serif;
    font-size: 2rem;
}

.topper-btn {
    position: fixed;
    z-index: 5;
    right: 0;
    bottom: 0;
    padding: 2rem 5rem;
    background-color: #AC5326;
    display: flex;
	justify-content: center;
	align-items: center;
}

.topper-btn img {
    height: 2rem;
    margin-right: 1rem;
	transform: translateY(-0.15rem);
}

.topper-btn span {
    display: inline-block;
    color: #fff;
    font-size: 2rem;
}

/*----------about-wrapper---------*/

.about-wrapper {
    padding: 12.5rem 0;
    text-align: center;
    margin-bottom: 30rem;
}

.about-wrapper h2 {
    color: #E2D7CE;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
}

.about-wrapper h3 {
    font-size: 6rem;
    margin-bottom: 2rem;
    display: inline-block;
    transform: translateX(2rem);
}

.about-wrapper .container > p {
    font-size: 1.6rem;
    opacity: 0.2;
}

.about-item01 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7vw;
    margin-top: 15rem;
    margin-bottom: 12.5vw;
    font-size: 1.8rem;
}

.about-item01 img {
    width: 35vw;
}

.about-item01 p {
    line-height: 2.5em;
}

.about-item02 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.8rem;
}

.about-item02-img {
    position: relative;
    order: 1;
}

.about-item02 img:first-of-type {
    width: 47.5vw;
}

.about-item02 img:nth-of-type(2) {
    position: absolute;
    left: -30vw;
    bottom: -12vw;
    width: 24vw;
    order: 1;
}

.about-item02 p {
    order: 0;
    line-height: 2.5em;
    width: 40vw;
}


/*----------service-wrapper---------*/

.service-wrapper {
    text-align: center;
}


.service-wrapper h2 {
    font-size: 7.5rem;
    margin-bottom: 1rem;
}

.service-wrapper p {
    font-size: 2rem;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.service-item li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 27.5rem;
    overflow: hidden;
}

.service-item li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/blue_studio.webp);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.service-item li:first-of-type:before {
    background-image: url(images/blue_studio.webp);
}

.service-item li:nth-of-type(2):before {
    background-image: url(images/blue_recording.webp);
}

.service-item li:nth-of-type(3):before {
    background-image: url(images/blue_lesson.webp);
}

.service-item li:nth-of-type(4):before {
    background-image: url(images/Hallst.webp);
}

.service-item li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.75);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.service-item li a {
    color: #fff;
    font-size: 2.7rem;
    position: relative;
    z-index: 3;
    width: 50vw;
    line-height: 27.5rem;
}

@media (hover: hover) {
	.service-item li:hover::after {
		transition: background-color 0.3s ease;
		background-color: rgba(20, 20, 20, 0.5);
	}
}

/*----------studio-wrapper---------*/

.studio-wrapper {
    position: relative;
    padding-top: 17.5rem;
}

.section-title-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10rem;
    gap: 5rem;
}

.section-title01 p {
    font-size: 2rem;
	margin-top: 1rem;
}

.section-title01 p:first-child {
    color: #AC5326;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.section-title01 h2 {
    font-size: 10rem;
    margin-top: 5rem;
}

.section-title02 {
    position: sticky;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 50vw;
    gap: 0.5rem;
    top: 10rem;
    bottom: 0;
    left: 10rem;
    font-size: 1.6rem;
    transform: rotate(90deg);
    transform-origin: 0 0;
    transition: color 0.3s ease;
}

.section-title02::after {
    content: '';
    display: inline-block;
    background-color: #2F1D13;
    width: 5rem;
    height: 1px;
    transform: translateY(0.2rem);
    transition: background-color 0.3s ease;
}

.section-title02.section-title02-active {
    color: #F0E9E2;
    transition: color 0.3s ease;
}

.section-title02-active.section-title02::after {
    background-color: #F0E9E2;
    transition: background-color 0.3s ease;
}

.section-title-column-right {
    font-size: 1.6rem;
    line-height: 2em;
}

.section-title-column-right a {
	color: #2F1D13;
	text-decoration: underline;
	position: relative;
    z-index: 1;
}

.price-table01 {
    margin-bottom: 10rem;
}

.price-title {
    font-size: 5rem;
    margin-bottom: 2.5rem;
}

.price-title span {
    font-size: 1.5rem;
    margin-left: 1.5rem;
}

.price-table01 table {
    width: 100%;
    text-align: center;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-size: 1.6rem;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

.price-table01 table th, td {
    border: 1px solid #978989/*rgba(47, 29, 19, 0.5)が#F0E9E2の上にある場合*/;
    padding: 3rem 0;
    width: 20%;
    vertical-align: middle;
}

.price-table01 table th:nth-of-type(2), .price-table01 table th:nth-of-type(4) {
    color: #fff;
    background-color: #2F1D13;
}

.price-table01 table th:nth-of-type(3), .price-table01 table th:nth-of-type(5) {
    color: #fff;
    background-color: rgba(47, 29, 19, 0.9);
}

.price-table01 p, .cancel-table p{
    font-size: 1.6rem;
    line-height: 2em;
}

.price-table01__caption {
    a {
        font-size: 1.6rem;
        line-height: 2em;
        color: #2F1D13;
        text-decoration: underline;
    }
}

.cancel-table {
	margin-bottom: 10rem;
}

.cancel-table h4 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.cancel-table-list {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 100%;
    border-collapse: collapse;
    background-color: #978989;
    border: 0.5px solid #978989;
}

.cancel-table-list .term, 
.cancel-table-list .fee {
    background-color: #F0E9E2;
    text-align: center;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-size: 1.6rem;
    padding: 3rem 0;
    vertical-align: middle;
    border: 0.5px solid #978989;
}

.self-studio-section {
    margin-bottom: 10rem;
}

.self-studio-section h4 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.self-studio-section p:first-of-type {
    font-size: 1.6rem;
    line-height: 2em;
    margin-bottom: 5rem;
}

.self-studio-section a {
    color: #2F1D13;
    text-decoration: underline;
	position: relative;
    z-index: 1;
}

.self-studio-time {
    font-size: 1.6rem;
    line-height: 2em;
    margin-bottom: 5rem;
}

.self-studio-time h5 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.self-studio-time h5::after {
  content: '';
  display: block;
  background-color: #2F1D13;
  width: 30rem;
  height: 0.5px;
}

.self-studio-time a {
    display: block;
    margin-top: 1rem;
}

.self-studio-time-list {
    display: flex;
    gap: 5rem;
}

.self-studio-reserve {
    font-size: 1.6rem;
}

.self-studio-reserve h5 {
    margin-bottom: 1.5rem;
}

.self-studio-reserve ul {
    padding: 6rem 0;
    border: 0.5px solid #978989;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.self-studio-reserve ul li {
    line-height: 2rem;
    text-align: center;
}

.self-studio-reserve .terms {
    display: block;
    text-align: center;
    margin-top: 2rem;
}

.dli-arrow-down {
    position: relative;
    color: #2F1D13;
}
  
.dli-arrow-down::before {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 0.1em solid currentColor;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    position: absolute;
    left: 50%;
    bottom: -0.05em;
    box-sizing: border-box;
}

.studio-type-section {
    color: #F0E9E2;
    background-color: #2F1D13;
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.studio-type-section .line-title {
    margin-bottom: 10rem;
}

.line-title {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.line-title h3 {
    white-space: nowrap;
}

.line-title::after {
    content: '';
    display: block;
    background-color: #2F1D13;
    width: 0%;
    height: 1px;
    transition: width 2s 0.5s cubic-bezier(0.03,0.9,0.01,1);
}

.line-title.line-title-active::after {
    width: 100%;
    transition: width 2s 0.5s cubic-bezier(0.03,0.9,0.01,1);
}

.studio-wrapper .container02 {
    position: relative;
    z-index: 10;
}

.studio-wrapper .line-title::after {
    background-color: #F0E9E2;
    opacity: 0.2;
}

.accordion-list-summary {
    position: relative;
}

.accordion-list-summary h4 {
    padding: 4.5rem 0;
    font-size: 3.5rem;
}

.accordion-list-summary h4 span {
    font-size: 1.2rem;
    margin-left: 2rem;
    display: inline-block;
    transform: translateY(-0.5rem);
}

.accordion-list .accordion-list-summary:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #56463C/*rgba(240, 233, 226, 0.2)が#2F1D13の上にある場合*/;
    transform: translateY(-0.125rem);
}

.accordion-list .accordion-list-summary::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #56463C/*rgba(240, 233, 226, 0.2)が#2F1D13の上にある場合*/;
}

.accordion-toggle-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.accordion-toggle {
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
}

.accordion-toggle::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: '';
    display: inline-block;
    height: 1px;
    width: 2rem;
    background-color: #F0E9E2;
}

.accordion-toggle::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: '';
    display: inline-block;
    height: 2rem;
    width: 1px;
    background-color: #F0E9E2;
    transition: transform 0.5s cubic-bezier(0.08,0.82,0.17,1);
    transform-origin: center; /* 真ん中を軸に回転 */
}

.accordion-toggle.toggle-active::after {
    transform: rotate(90deg); /* 90度回転 */
}

/*jsで擬似要素のラインを濃くするなどして視認性を上げる*/

.accordion-list-detail {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    font-family: "yu-gothic-pr6n", sans-serif;
}

/*アコーディオンメニュー設定*/

.accordion-list-detail-container {
    visibility: hidden;
    max-height: 0;
    padding: 0;
    opacity: 0;
    display: grid; 
    grid-template-rows: 0fr;
    transition: 0.3s cubic-bezier(0.08,0.82,0.17,1);
}

.accordion-list-detail-container.active {
    visibility: visible;
    max-height: 500px;
    padding: 5rem 0;
    opacity: 1;
    grid-template-rows: 1fr;
    transition: 1s cubic-bezier(0.08,0.82,0.17,1);
}

.accordion-list li:last-of-type .accordion-list-detail::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #56463C/*rgba(240, 233, 226, 0.2)が#2F1D13の上にある場合*/;
    position: absolute;
    bottom: -5rem;
}

.accordion-list-detail-left {
    width: 40vw;
}

.accordion-list-detail-left img {
    width: 100%;
}

.accordion-list-detail-right {
    margin: 0 auto;
}

.accordion-list-detail-right li {
    font-size: 1.4rem;
    line-height: 2;
    white-space: nowrap;
}

.accordion-list-detail-right li:first-of-type {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.accordion-list-detail-right01 {
    margin-bottom: 4rem;
}

.accordion-list-detail-right01, .accordion-list-detail-right02 {
    display: flex;
    position: relative;
    gap: 5rem;
}

.accordion-list-detail-right01::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    width: 100%;
    height: 1.5px;
    background-image : linear-gradient(to right, #56463C 1.5px, transparent 1.5px);
    background-size: 6px 1.5px;
    background-repeat: repeat-x;
}

/*----------recording-wrapper---------*/

.recording-wrapper {
    position: relative;
    padding-top: 17.5rem;
}

.recording-wrapper .section-catch {
    display: flex;
    align-items: center;
    gap: 5vw;
    padding-left: 17.5rem;
    margin-top: 8rem;
    margin-bottom: 10rem;
}

.recording-wrapper .section-catch img {
    width: 55vw;
    filter: grayscale(100%);
}

.recording-wrapper .section-catch p {
    font-size: 1.6rem;
    line-height: 2em;
}

.recording-wrapper .price-table02 {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 12.5rem;
}

.recording-wrapper .price-table02 table {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.recording-wrapper .price-table02 table.pc-only tr:first-of-type td:nth-of-type(2) {
    color: #fff;
    background-color: #2F1D13;
}

.recording-wrapper .price-table02 table.pc-only tr:first-of-type td:nth-of-type(3) {
    color: #fff;
    background-color: rgba(47, 29, 19, 0.9);
}

.recording-wrapper .price-table02 p {
    font-size: 1.6rem;
}

.recording-enginner {
    margin-bottom: 10rem;
}

.enginner-profile {
    margin-top: 10rem;
    background-color: #E2D7CE;
    padding: 5rem 0;
}

.enginner-profile .container02 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 4rem;
}

.enginner-profile h4 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.enginner-profile h4 span {
    display: inline-block;
    font-size: 1.2rem;
    margin-left: 2rem;
    transform: translateY(-0.5rem);
}

.enginner-profile p {
    font-family: "yu-gothic-pr6n", sans-serif;
    font-size: 1.4rem;
    line-height: 2em;
    max-width: 500px;
}

.enginner-profile img {
    width: 22vw;
    margin-top: -10rem;
}

.enginner-profile-works {
  width: fit-content;
  margin: 55px auto 10px;
  position: relative;
  z-index: 1;

  a {
    color: #2F1D13;
    font-size: 1.6rem;
    background-color: transparent;
    padding: 2rem 3rem;
    border: 1px #2F1D13 solid;
    transition: background-color 0.3s ease;
  }

  a:hover {
    background-color: #F0E9E2;
  }
}


.recording-eqipment {
    text-align: center;
    margin-bottom: 12.5rem;
}

.recording-eqipment h3 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.recording-eqipment p {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
}

.recording-eqipment ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.recording-eqipment ul:first-of-type {
    margin-bottom: 2rem;
}

.recording-eqipment ul li {
    font-size: 2rem;
    width: 35rem;
    background-color: #fff;
    border: 1px solid rgba(47, 29, 19, 0.8);
    transition: background-color 0.3s ease;
}

.recording-eqipment ul li a {
    display: inline-block;
    width: 100%;
    line-height: 12rem;
    color: #2F1D13;
}

@media (hover: hover) {
	.recording-eqipment ul li:hover {
		background-color: rgba(255, 255, 255, 0.4);
		transition: background-color 0.3s ease;
	}
}

/*モータルウィンドウ設定*/

.modal {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s ease;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal.show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

/* モーダルのコンテンツボックス */
.modal-content {
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-height: 80svh;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: modalFadeIn 0.5s ease;
    overflow-y: scroll;
}

/* モーダルが開く時のフェードインアニメーション */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* モーダルを閉じるボタン */
.close-modal {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

@media (hover: hover) {
	.close-modal:hover {
		color: #aaa;
	}
}

.equipment_info {
    position: relative;
    cursor: pointer;
}

/* hide-areaに対応した表示切替用クラス */

.hide-area {
    display: none;
    width: 100%;
    background-color: #fff;
}

.hide-area-container-flex {
    display: flex;
    justify-content: center;
}

.hide-area-container dl {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.hide-area-container hr {
    height: 1px;
    margin: 2.5rem 0;
    width: 100%;
    display: block;
    background-color: #ECECEC;
    border: none;
}

.hide-area-container dt {
    display: block;
    font-weight: 500;
    line-height: 1.5em;
    width: 20rem;
    color: #aaaaaa;
    font-size: 1.4rem;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.hide-area-container dd {
    display: block;
    unicode-bidi: isolate;
    font-weight: 500;
    line-height: 2em;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.recording-caution h3 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.recording-caution h3::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #2F1D13;
    transform: translateY(-0.5rem);
}

.recording-caution li {
    font-family: "yu-gothic-pr6n", sans-serif;
    font-size: 1.4rem;
    line-height: 2;
}


/*----------lesson-wrapper---------*/

.lesson-wrapper {
    position: relative;
    padding-top: 17.5rem;
}

.lesson-wrapper .section-catch {
    position: relative;
    width: 60vw;
    margin-bottom: 12.5rem;
}

.lesson-wrapper .section-catch img {
    filter: grayscale(100%);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 60vw;
}

.lesson-wrapper .section-catch::after {
    content: 'LESSON VIEW';
    display: inline-block;
    font-size: 1.5rem;
    color: #2F1D13;
    position: absolute;
    top: 0;
    right: -14.5rem;
    transform:rotate(90deg);
    transform-origin: 0 0; 
}

.lesson-list .lesson-list-detail {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    gap: 15rem;
}

.lesson-list .lesson-list-detail li {
    display: flex;
}

.lesson-list .lesson-list-detail > li {
    gap: 10rem;
}

.lesson-list li .lesson-list-img {
    position: relative;
}

.lesson-list img {
    width: 20rem;
}

.lesson-list li .lesson-list-img::before {
    content: '';
    display: block;
    position: absolute;
    top: -3.75rem;
    left: -3.75rem;
    background-color: #AC5326;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 3.75rem;
    text-align: center;
}

.lesson-list li .lesson-list-img::after {
    display: block;
    position: absolute;
    color: #fff;
    font-size: 1.2rem;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.lesson-list li:first-of-type .lesson-list-img::after {
    content: 'BASS';
    top: -0.45rem;
    left: -1.5rem;
}

.lesson-list li:nth-of-type(2) .lesson-list-img::after {
    content: 'DRUMS';
    top: -0.45rem;
    left: -2.1rem;
}

.lesson-list li:nth-of-type(3) .lesson-list-img::after {
    content: 'VOCAL';
    top: -0.45rem;
    left: -1.85rem;
}

.lesson-profile h4 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.lesson-profile h4 span {
    display: inline-block;
    font-size: 1.2rem;
    margin-left: 2rem;
    transform: translateY(-0.75rem);
}

.lesson-profile p {
    font-size: 1.4rem;
    line-height: 2;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.lesson-profile > p{
    margin-bottom: 5rem;
}

.lesson-profile ul li {
    display: flex;
    align-items: center;
    gap: 5rem;
    border-bottom: 1px solid rgba(47, 29, 19, 0.15);
    padding: 1rem 0;
}

.lesson-profile ul li a {
    color: #2F1D13;
    text-decoration: underline;
}

.lesson-profile ul li p:first-of-type {
    white-space: nowrap;
}

.lesson-list-detail li:nth-of-type(3) li:nth-of-type(3) p {
    white-space: normal; /*AKIRAボーカルレッスン案内*/
}

.lesson-list li:nth-of-type(2) .lesson-list-img {
    order: 1; /*モバイルでは無し*/
}

/*----------hall-wrapper---------*/

.hall-wrapper {
    position: relative;
    padding-top: 17.5rem;
}

.hall-wrapper .section-catch {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5vw;
    margin-top: 8rem;
    margin-bottom: 33rem;
}

.hall-wrapper .section-catch img {
    width: 55vw;
}

.hall-wrapper .section-catch img:nth-of-type(2) {
    position: absolute;
    bottom: -25rem;
    left: 25rem;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    width: 20vw;
}

.hall-wrapper .section-catch p {
    font-size: 1.6rem;
    line-height: 2;
    transform: translateY(-5rem);
    padding-left: 17.5rem;
}

.hall-price-section-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hall-price-section p {
    font-size: 5rem;
    margin: 5rem 0;
}

.hall-price-section p span {
    font-size: 2.5rem;
    display: inline-block;
    transform: translateY(-0.5rem);
}

.hall-price-section p span:first-of-type::after {
    content: '';
    display: inline-block;
    background-color: #2F1D13;
    margin: 0 2.5rem;
    width: 1px;
    height: 5rem;
    transform: translateY(1rem);
}

.hall-price-section li {
    font-size: 1.5rem;
    line-height: 2;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.hall-price-section-detail a {
	color: #2F1D13;
	text-decoration: underline;
}


/*----------equipment-wrapper---------*/

.equipment-wrapper {
    position: relative;
    padding-top: 17.5rem;
}

.equipment-wrapper .section-title01 .blur-in-active p {
    margin-top: 3rem;
}

.rental-list {
    background-color: #E2D7CE;
    margin-top: 10rem;
    padding-bottom: 10rem;
}

.rental-list-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 10vw;
    padding-top: 5rem;
}

.rental-list-section p {
    font-size: 1.6rem;
    line-height: 2em;
}

.rental-list-section img {
    width: 35vw;
    transform: translateY(-10rem);
    filter: grayscale(100%);
}

.rental-list-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rental-list table {
    text-align: center;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-size: 1.6rem;
    line-height: 2em;
    max-width: 900px;
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.rental-list-detail p {
    font-size: 1.5rem;
    font-family: "yu-gothic-pr6n", sans-serif;
    line-height: 2em;

}

/*----------company-wrapper---------*/

.company-wrapper {
    position: relative;
    padding-top: 17.5rem;
    padding-bottom: 17.5rem;
}

.company-detail {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 2em;
    font-family: "yu-gothic-pr6n", sans-serif;
    margin-top: 10rem;
    gap: 5vw;
}

.company-detail-item {
    display: flex;
    position: relative;
    align-items: center;
    gap: 3vw;
    padding: 4.5rem 0;
}

.company-detail-item dt {
    width: 10rem;
    white-space: nowrap;
}

.company-detail-item a {
    color: #2F1D13;
    font-size: 1.5rem;
    line-height: 2em;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.company-detail-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #2F1D13;
    opacity: 0.15;
}

/*----------footer---------*/

footer {
    color: #F0E9E2;
    background-color: #2F1D13;
    padding: 15rem 0;
    font-size: 1.6rem;
    line-height: 2em;
    font-family: "yu-gothic-pr6n", sans-serif;
}

footer .container02:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer img {
    height: 2rem;
    margin-bottom: 5rem;
}

.footer-address {
    margin-bottom: 3rem;
}

.footer-address p {
    text-decoration: none;
	border: none;
}

.footer-address a {
    color: #fff;
	text-decoration: underline;
}

.footer-contact a {
    color: #F0E9E2;
    display: block;
    font-size: 1.6rem;
    line-height: 2em;
    font-family: "yu-gothic-pr6n", sans-serif;
}

.footer-lead {
    font-family: "shippori-mincho", serif;
}

.footer-lead::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #F0E9E2;
    opacity: 0.1;
    transform: translateY(-0.75rem);
}

.footer-center-comment {
	font-family: "yu-gothic-pr6n", sans-serif;
	margin-top: 1rem;
}

.footer-opening-hours, .footer-menu {
    display: flex;
    gap: 5rem;
}

.footer-menu a {
    color: #fff;
}

.footer-credit {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 10rem;
}

.footer-credit::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #F0E9E2;
    opacity: 0.1;
    transform: translateY(-2rem);
}


/*CSSアニメーション*/

.slide-top {
	-webkit-animation: slide-top 1s cubic-bezier(0.17,0.84,0.44,1) 0.2s forwards;
	        animation: slide-top 1s cubic-bezier(0.17,0.84,0.44,1) 0.2s forwards;
}

.slide-top-active {
    opacity: 0;
}

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
                opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
                opacity: 1;
    }
    }
    @keyframes slide-top {
    0% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
                opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
                opacity: 1;
    }
}

.fade-in {
	-webkit-animation: fade-in 2s cubic-bezier(0.17,0.84,0.44,1) 0.2s forwards;
	        animation: fade-in 2s cubic-bezier(0.17,0.84,0.44,1) 0.2s forwards;
}

.fade-in-active {
    opacity: 0;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    }
    @keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.blur-in {
    filter: blur(10px);
    animation: blur 1s 0.2s forwards;
}

.blur-in-active {
    opacity: 0;
}
  
@keyframes blur {
    0% {
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

/* スクロールダウンの位置 */
.scroll {
    position: absolute;
    right: 3rem;
    bottom: 30rem;
    writing-mode: vertical-rl;
    transition: opacity 0.3s ease;
}
/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #000;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
}
/* 線の背景色 */
.scroll::after {
    background-color: #ccc;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
}
50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
}
51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
}
100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
}
}

.pre-recording-caution {
    margin-top: 3rem;
}

.pre-recording-caution p {
    line-height: 2em;
}

.pre-recording-caution p:nth-of-type(2) {
    margin-top: 2rem;
}