:root {
    --main-color: #272727;
    --red: #A71F1F;
}

.play {
    font-family: 'Playfair Display', serif;
}

.garamond {
    font-family: 'Cormorant Garamond', serif;
}

.serif {
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

p {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 160%;
    font-size: 15px;
    letter-spacing: 0.03em;
}

section.mv {
    width: 100%;
    height: 100vh;
    position: relative;
	overflow: hidden;
}

section.mv:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0) 100%);
    left: 0;
    top: 0;
    opacity: 0.4;
    width: 50%;
}

section.mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv img {
  opacity: 0;
  transform: scale(1.05); /* 少し大きくしておくと自然 */
  animation: fadeInZoom 2s ease forwards; /* 2秒で表示 */
}

@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

header {
    position: absolute;
    top: 80px;
    left: 70px;
    z-index: 2;
}

.pc-nav-wrapper {
    position: fixed;
    top: 180px;
    left: 70px;
    z-index: 3;
}

ul.pc-nav {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-bottom: 48px;
}

ul.pc-nav a {
    color: white;
    font-weight: 300;
    letter-spacing: 0.1em;
    font-size: 14px;
    position: relative;
}

.pc-nav li a {
    color: white;
    /* 初期色 */
    transition: all 0.4s ease;

    /* ← ここがポイント */
}

/* スクロール後に適用する色 */
.pc-nav.scroll li a {
    color: #272727;
}



.biography-item ul li:before {
    content: "・";
    position: absolute;
    top: 0px;
    left: 0;
}
.biography-item ul li {
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
    font-size: 15px;
}


ul.sns-nav img {
    transition: all 0.4s;
}

ul.sns-nav img:hover {
    opacity: 0.5;
}

ul.sns-nav.scroll img {
    filter: invert(1);
}

ul.pc-nav.scroll li.active a:before {
    background: #272727;
}

.pc-nav li a:hover {
    letter-spacing: 0.2em;
}

ul.sns-nav {
    display: flex;
    gap: 20px;
}

ul.pc-nav li.active a {
    padding-left: 20px;
}

ul.pc-nav li.active a:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    background: white;
    top: 50%;
    left: 0;
    transition: all 0.4s;
}







main {
    max-width: 1280px;
    margin: auto;
    width: calc(100% - 280px);
    padding-top: 100px;
    padding-bottom: 200px;
    padding-left: 120px;
}

.title-block {
    width: 250px;
    aspect-ratio: 1 / 1;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

section.top-info h2 {
    color: white;
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 0.1em;
}

section.top-info {
    display: flex;
    gap: 50px;
    align-items: center;
}

.info-list {
    width: calc(100% - 290px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-list__title {
    transition: 0.4s;
}

.info-list a:hover .info-list__title {
    opacity: 0.6;
}

.info-list a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #D4D4D4;
    position: relative;
    padding-bottom: 12px;
}

.more-btn {
    position: absolute;
    right: 40px;
    bottom: 10px;
}

p.info-date.play {
    color: #9C9C9C;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
}

.more-btn p:after {
    content: "";
    width: 14px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    left: 50px;
    top: 13px;
    transition: all 0.4s;
    transform-origin: left;
}

.more-btn p {
    position: relative;
    letter-spacing: 0.1em;
    transition: all 0.4s;
}

.more-btn.active p {
    color: var(--red);

}

.more-btn.active p:after {
    background: var(--red);
    width: 20px;
}

section.content {
    padding-bottom: 140px;
}


section.top-biography .content-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.top-biography-body p:first-of-type {
    font-size: 24px;
}

.top-biography-body p:first-of-type {
    font-size: 28px;
    color: #C0C0C0;
    margin-bottom: 28px;
}

.top-biography-body h4 {
    font-size: 32px;
    margin-bottom: 28px;
}

.top-biography-body {
    width: 52%;
}

.biography-image {
    width: 48%;
}

.biography-image img {
    width: 100%;
}

.viewmore a {
    position: relative;
    letter-spacing: 0.1em;
}

.viewmore a:after {
    content: "";
    width: 14px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    left: 100px;
    top: 13px;
    transition: 0.4s;
}

.viewmore {
    margin-top: 60px;
}

.viewmore a {
    color: #333;
    transition: color 0.3s ease;
}

.viewmore a.active {
    color: var(--red);
}

.viewmore a.active:after {
    background: var(--red);
    width: 22px;
}


section.top-lesson .content-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}
p.access{
    margin-top: 40px;
    text-align: right;
    font-weight: bold;
}
br.sp-block{
	display:none;
}
.top-lesson-body p:first-of-type {
    font-size: 28px;
    color: #C0C0C0;
    margin-bottom: 28px;
}

.top-lesson-body h4 {
    font-size: 32px;
    margin-bottom: 28px;
}

.top-lesson-body {
    width: 50%;
}

.lesson-image {
    width: 50%;
}

.lesson-image img {
    width: 100%;
}


.performance-title p {
    font-size: 28px;
    color: #C0C0C0;
    margin-bottom: 28px;
}

.performance-title h4 {
    font-size: 32px;
}

.performance-title {
    margin-bottom: 32px;
}

.performance-item iframe {
    width: 100%;
}

.performance-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.performance-item {
    width: calc(50% - 20px);
}

a.contact-banner {
    width: 50%;
    display: flex;
    padding: 60px 100px;
    background: red;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

a.contact-banner * {
    color: white;
}

a.contact-banner h4 {
    font-size: 24px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

a.contact-banner p {
    position: relative;
    z-index: 2;
}

.footer-more {
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.contact-area {
    display: flex;
}

.footer-more {
    margin-top: 28px;
}

a.contact-banner:first-of-type {
    background: url("../img/contact01.jpg");
    background-size: cover;
    background-position: center;
}

a.contact-banner:last-of-type {
    background: url("../img/contact02.jpg");
    background-size: cover;
    background-position: center;
}

a.contact-banner:first-of-type:after {
    background: #525252;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.8;
    transition: 0.4s;
}

a.contact-banner:last-of-type:after {
    background: black;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.7;
    transition: 0.4s;
}

.footer-inner {
    background: var(--main-color);
}

.footer-more p {
    position: relative;
}

.footer-more p:after {
    content: "";
    width: 14px;
    height: 2px;
    background: white;
    position: absolute;
    left: 50px;
    top: 13px;
    transition: 0.4s;
}

a.contact-banner:first-of-type:hover::after,
a.contact-banner:last-of-type:hover::after {
    opacity: 1;
    cursor: pointer;
}


.footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 80px 140px;
}

ul.footer-nav li a {
    color: white;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 300;
}

.footer-right {
    display: flex;
    gap: 60px;
}

ul.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

ul.footer-sns-nav {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

p.copy.serif {
    background: #272727;
    color: white;
    text-align: center;
    padding-bottom: 40px;
    font-size: 12px;
    font-weight: 100;
}

.footer-nav li a {
    transition: 0.4s;
}

.footer-nav li a:hover {
    opacity: 0.4;
}


.page .pc-nav li a {
    color: var(--main-color);
    transition: all 0.4s ease;
}

.page ul.pc-nav li.active a:before {
    background: var(--main-color);
}

.page ul.sns-nav img {
    filter: invert(1);
}

.page-title {
    max-width: 1280px;
    margin: auto;
    width: calc(100% - 280px);
    padding-top: 100px;
    padding-bottom: 40px;
    padding-left: 120px;
    text-align: center;
}

.page-title h2 {
    font-size: 56px;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: var(--main-color);
    position: relative;
}

.page-title h2:before {
    content: "";
    position: absolute;
    height: 40px;
    width: 1px;
    background: var(--main-color);
    left: 50%;
    bottom: -60px;
}

section.biography-header {
    position: relative;
    margin-bottom: 140px;
}

.biography-header__image {
    width: calc(100% - 260px);
}

.biography-header__image img {
    width: 100%;
}

.biography-name {
    position: absolute;
    bottom: 50px;
    right: 70px;
}

.biography-name p:first-of-type {
    font-size: 56px;
    line-height: 1.2em;
    color: white;
    letter-spacing: 0.04em;
}

.biography-name p:last-of-type {
    text-align: right;
    font-size: 16px;
    margin-top: 10px;
    color: white;
}

section.biography-header:before {
    content: "";
    position: absolute;
    width: 445px;
    height: 385px;
    right: 0;
    bottom: -60px;
    background: var(--main-color);
    z-index: -1;
}

.biography-header__image {
    position: relative;
}

.biography-header__image:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 52%, rgb(0 0 0 / 64%) 100%);
    right: 0;
}

.biography-name p:last-of-type {
    position: relative;
}

.biography-name p:last-of-type:after {
    content: "";
    position: absolute;
    width: calc(100% - 90px);
    background: white;
    height: 1px;
    left: 0;
    bottom: 50%;
}

.biography-item h4 {
    font-size: 20px;
    border-bottom: 1px solid #A8A8A8;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.biography-item {
    margin-bottom: 60px;
}

.gallery-inner {
    display: flex;
    gap: 60px;
    padding-top: 60px;
}

.gallery-inner img {
    width: 100%;
}

.gallery-right {
    width: 50%;
}

.gallery-left {
    width: 45%;
}

.gallery-right img:first-of-type {
    margin-left: auto;
    margin-right: 0;
    display: block;
    margin-top: 50px;
    margin-bottom: 60px;
}

.gallery-right img {
    width: 90%;
}

.gallery-desc {
    padding-top: 60px;
}

.biography-button {
    position: fixed;
    top: 30%;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.biography-button a {
    display: block;
    padding: 10px 40px 10px 30px;
    text-align: left;
    background: #7B7B7B;
}

.biography-button a p {
    color: white;
}

.biography-button a.active {
    background: #6B0000;
}

.biography-button a p {
    color: white;
    letter-spacing: 0.04em;
    font-size: 14px;
    position: relative;
    display: inline-block;
}

.biography-button a.active p:after {
    width: 12px;
    height: 2px;
    background: white;
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
}


section.lesson-header {
    display: flex;
    align-items: center;
    gap: 54px;
    margin-bottom: 80px;
}

.lesson-header__image {
    width: calc(50% - 54px);
}

.lesson-desc {
    width: 50%
}

.lesson-header__image img {
    width: 100%;
}

section.lesson {
    padding: 60px;
    background: #f3f3f3;
}

.lesson h4 {
    font-size: 22px;
    border-bottom: 1px solid #A8A8A8;
    color: var(--main-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.reccomend {
    display: flex;
    gap: 30px;
    margin-top: 28px;
    align-items: flex-start;
}

.reccomend-inner {
    background: white;
    width: 50%;
    padding: 30px;
}

.reccomend-inner h5 {
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 16px;
    margin-bottom: 20px;
    color: var(--main-color);
    line-height: 1.4em;
}

.reccomend-inner ul li:before {
    content: "・";
    position: absolute;
    left: 0;
}

.reccomend-inner ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.reccomend-inner p {
    border: 1px solid #c5c5c5;
    padding: 20px;
    margin-top: 30px;
}

.price-inner {
    display: flex;
    gap: 30px;
}

.price-item {
    width: 50%;
}

.price-item h5 {
    text-align: center;
    background: var(--main-color);
    color: white;
    padding: 10px;
    font-weight: normal;
    font-size: 16px;
}

.price {
    margin-top: 40px;
}

.price-item ul li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px dashed #9d9d9d;
    margin-top: 20px;
    padding-left: 4px;
    padding-right: 4px;
}

p.note {
    margin-top: 10px;
    text-align: right;
}
p.note.note--2 {
    margin-top: 0px;
}
section.lesson.lesson--second {
    margin-top: 60px;
}

.price.price--second .price-item {
    width: 100%;
    padding-bottom: 20px;
}

.price-desc {
    padding: 20px 34px;
    background: white;
    margin-top: 16px;
}


.pc-nav,
.sns-nav {
    transition: opacity 0.5s ease;
    opacity: 1;
    pointer-events: auto;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

.contact-button {
    margin-top: 40px;
}

.contact-button a {
    display: block;
    background: #6B0000;
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 24px;
    transition: 0.4s;
}

.contact-button a:hover {
    background: var(--main-color);
}

.information-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
}


.information-item img {
    width: 100%;
}

.information-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
	height: auto;
}

.information-item p:first-of-type {
    margin-top: 10px;
    margin-bottom: 4px;
    color: #9C9C9C;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
}

.information-item {
    width: calc(100% / 3 - 20px);
}

.information-item a {
    transition: 0.4s;
}

.information-item a:hover {
    opacity: 0.6;
}

.single-title h2 {
    font-size: 24px;
    padding: 10px 0 30px;
}

.single-title p {
    margin-top: 10px;
    margin-bottom: 4px;
    color: #9C9C9C;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
}

.single-inner {
    max-width: 820px;
    margin: auto;
}

.biography-image p.garamond.sp-title,
.lesson-image p.garamond.sp-title {
    display: none;
}

.sp-nav-wrapper {
    display: none;
}
section.mv:before {
    content: "Photo by JUNICHIRO MATSUO";
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    z-index: 4;
    color: #ffffffbf;
    padding-bottom: 20px;
    padding-right: 30px;
    font-size: 14px;
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

@media screen and (max-width:820px){
	section.mv:before {
	    padding-bottom: 10px;
    padding-right: 10px;
}
}
p.mv-scroll.serif:after {
    content: "";
    width: 1px;
    height: 24px;
    background: white;
    left: 50%;
    position: absolute;
    bottom: -30px;
}

p.mv-scroll.serif {
    position: absolute;
    bottom: 0;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    bottom: 30px;
    letter-spacing: 0.1em;
}

body.page header {
    display: none;
}

.single-thumbnail img {
    max-width: 100%;
    height: auto;
}

.pagination {
    margin-top: 80px;
}

ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 20px;
}

ul.page-numbers li .page-numbers {
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
    border: 1px solid;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3px;
}

ul.page-numbers li .page-numbers.prev,
ul.page-numbers li .page-numbers.next {
    border: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    padding-bottom: 6px;
}

ul.page-numbers li .page-numbers.current {
    background: var(--main-color);
    color: white;
}
.single-cms img {
    max-width: 100%;
}
.single-cms h1,
.single-cms h2,
.single-cms h3,
.single-cms h4,
.single-cms h5 {
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
}
.single-cms a {
    text-decoration: underline;
}
.single-cms h1 {
    font-size: 24px;
}

.single-cms h2 {
    font-size: 20px;
}

.single-cms h3 {
    font-size: 18px;
}

.single-cms {
    padding-top: 40px;
}

.single-cms p {
    padding: 1.2em 0;
}

nav.post-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

nav.post-nav div a {
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

/*-------------------------------スマホ以下--------------------------------------*/
@media screen and (max-width:820px) {
	.info-list__title p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 100px;
}
	p.access {
    margin-top: 40px;
    text-align: left;
    font-weight: bold;
    line-height: 1.8em;
}
    body.page header {
        display: block;
    }

    header h1 img {
        width: 100%;
    }

    header h1 {
        width: 170px;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--main-color);
        padding: 10px 20px 18px;
        z-index: 10;
    }

    .pc-nav-wrapper {
        display: none;
    }

    section.mv {
        width: 100%;
        height: 50vh;
        position: relative;
        margin-top: 60px;
    }

    main {
        max-width: 1280px;
        margin: auto;
        width: 100%;
        padding-top: 60px;
        padding-bottom: 130px;
        padding-left: 24px;
        padding-right: 24px;
    }

    section.top-info {
        flex-direction: column;
        gap: 30px;
    }

    .title-block {
        width: 100%;
        aspect-ratio: auto;
        background: none;
        display: block;
        align-items: flex-end;
        justify-content: center;
    }

    section.top-info h2 {
        color: #C0C0C0;
        font-weight: normal;
        font-size: 38px;
        letter-spacing: 0.04em;
    }

    .info-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    section.content {
        padding-bottom: 80px;
    }

    .top-biography-body {
        width: 100%;
        order: 2;
    }

    section.top-biography .content-inner {
        flex-direction: column;
        gap: 32px;
    }

    .biography-image {
        width: 100%;
        order: 1;
    }

    .top-biography-body p:first-of-type {
        display: none;
    }

    .top-biography-body h4 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .viewmore {
        margin-top: 32px;
    }

    .biography-image p.garamond.sp-title {
        color: #C0C0C0;
        font-weight: normal;
        font-size: 38px;
        letter-spacing: 0.04em;
        display: block;
        margin-bottom: 24px;
    }

    section.top-lesson .content-inner {
        flex-direction: column;
        gap: 32px;
    }

    .top-lesson-body p:first-of-type {
        display: none;
    }

    .top-lesson-body h4 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .lesson-image {
        width: 100%;
    }

    .top-lesson-body {
        width: 100%;
    }

    .lesson-image p.garamond.sp-title {
        color: #C0C0C0;
        font-weight: normal;
        font-size: 38px;
        letter-spacing: 0.04em;
        display: block;
        margin-bottom: 24px;
    }

    .performance-inner {
        flex-direction: column;
        gap: 20px;
    }

    .performance-item {
        width: 100%;
    }

    .performance-item iframe {
        width: 100%;
        height: 50vw;
    }

    a.contact-banner {
        width: 100%;
        padding: 50px 34px;
    }

    .contact-area {
        display: flex;
        flex-direction: column;
    }

    a.contact-banner h4 {
        font-size: 20px;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        padding: 80px 46px 120px;
        flex-direction: column;
        gap: 70px;
    }

    .footer-right {
        display: flex;
        gap: 40px;
    }

    p.copy.serif {
        padding-bottom: 120px;
    }

    ul.footer-sns-nav {
        gap: 32px;
    }

    ul.footer-nav {
        gap: 32px;
    }



    .hamberguer {
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 26px;
    }

    .hamberguer span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: #ffffff;
        transition: all 0.3s ease;
    }

    /* 1本目 */
    .hamberguer span:nth-child(1) {
        top: 8px;
    }

    /* 2本目 */
    .hamberguer span:nth-child(2) {
        bottom: 0;
    }

    /* active 時の変形 */
    .hamberguer.active span:nth-child(1) {
        transform: translateY(2px) rotate(45deg);
    }

    .hamberguer.active span:nth-child(2) {
        transform: translateY(-9px) rotate(-45deg);
    }




    .sp-nav-wrapper {
        position: fixed;
        z-index: 9;
        width: 250px;
        background: #1b1b1bc7;
        height: 100vh;
        padding-top: 100px;
        padding-right: 40px;
        right: -250px;
        padding-left: 40px;
        transition: 0.4s;
        display: block;
    }

    .sp-nav-wrapper.active {
        right: 0;
    }

    ul.sp-nav {
        display: flex;
        flex-direction: column;
        gap: 34px;
        margin-bottom: 48px;

    }

    ul.sp-nav a {
        color: white;
        font-weight: 300;
        letter-spacing: 0.1em;
        font-size: 14px;
        position: relative;
    }

    ul.sp-nav li.active a {
        padding-left: 20px;
    }

    ul.sp-nav li.active a:before {
        content: "";
        position: absolute;
        width: 10px;
        height: 1px;
        background: white;
        top: 50%;
        left: 0;
        transition: all 0.4s;
    }

    ul.sp-contact-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    ul.sp-contact-nav li a {
        display: block;
        border: 1px solid white;
        padding: 8px 20px;
        color: white;
        text-align: center;
        font-size: 14px;
        letter-spacing: 0.04em;
    }

    p.mv-scroll.serif {
        display: none;
    }

    .page-title {
        width: 100%;
        padding: 0;
        padding-bottom: 40px;
        padding-top: 140px;
    }

    .page-title h2 {
        font-size: 42px;
		letter-spacing: 0.04em;
    }

    .biography-header__image {
        width: 90%;
    }

    .biography-name {
        position: static;
        padding-top: 20px;
        padding-left: 60px;
        padding-right: 40px;
    }

    .biography-name p:first-of-type {
        font-size: 28px;
    }

    section.biography-header:before {
        content: "";
        position: absolute;
        width: 95%;
        height: 195px;
        right: -10px;
        bottom: -30px;
        background: var(--main-color);
        z-index: -1;
    }

    .biography-button a {
        padding: 10px 30px 10px 15px;
    }

    section.biography-header {
        margin-bottom: 100px;
    }

    .gallery-inner {
        display: flex;
        gap: 20px;
        padding-top: 0px;
    }

    section.lesson-header {
        flex-direction: column;
        gap: 24px;
    }

    .lesson-header__image {
        width: 100%;
    }

    .lesson-desc {
        width: 100%;
    }

    section.lesson {
        padding: 40px 30px;
    }

    .lesson h4 {
        font-size: 20px;
    }

    .reccomend {
        flex-direction: column;
    }

    .reccomend-inner {
        width: 100%;
    }

    .reccomend-inner {
        padding: 30px 20px;
    }

    .reccomend-inner h5 {
        font-size: 16px;
    }

    .reccomend-inner p {
        border: 1px solid #c5c5c5;
        padding: 14px;
        margin-top: 20px;
        font-size: 14px;
    }

    .reccomend-inner ul li {
        font-size: 14px;
    }

    .price-inner {
        flex-direction: column;
    }

    .price-item {
        width: 100%;
    }

    .price-desc {
        padding: 20px 24px;
    }

    .contact-button a {
        font-size: 20px;
    }

    .information-item {
        width: 100%;
    }

    body.page .sns-nav img {
        filter: inherit;
    }

    .single-title h2 {
        font-size: 20px;
		line-height: 1.4em;
    }
	br.sp-block{
	display:block;
}
}








/*--------------------------------------------*/
/*お問合せ*/
/*--------------------------------------------*/
.contact__intro {
    margin: auto;
    font-weight: 500;
    text-align: center;
}

section.contact .contact__privacy {
    max-width: 950px;
    margin: auto;
    height: 250px;
    overflow-y: scroll;
    border: 2px solid var(--main);
    padding: 50px 40px;
    background: white;
}

section.contact .contact__privacy h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--main);
}

section.contact .contact__privacy p:last-of-type {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

section.contact .contact__privacy p span {
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.form-container.form-container--thanks p {
    margin-bottom: 50px;
    padding: 0px;
}

.form-container.form-container--thanks h2 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--main);
}

@media screen and (max-width:520px) {
    section.contact .contact__privacy {
        padding: 30px 20px;
        height: 150px;
    }

    section.contact .contact__privacy h2 {
        font-size: 18px;
    }

    .form-step ul li {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        padding: 10px 10px;
    }

    .form-container.form-container--thanks h2 {
        font-size: 20px;
    }
}

/*--------------------------------------------*/
/*フォーム*/
/*--------------------------------------------*/
.form-step ul {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    gap: 10px;
}

.form-step ul li {
    color: white;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    max-width: 220px;
    background: #7891b0;
}

.form-step ul li.active {
    background: var(--main);
}

input[type=text],
input[type=email],
dd.form__input.form-input.form-input--tel input,
dd.form__input.form-input.form-input--pt3 input {
    border: 0;
    border-radius: 5px;
    font-size: 15px;
    line-height: 2em;
    background: #F2F2F2;
    width: 100%;
    line-height: 2.4em;
    padding: 7px 16px;
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

select.wpcf7-form-control.wpcf7-select {
    border: 0;
    border-radius: 5px;
    font-size: 15px;
    line-height: 2em;
    background: #F2F2F2;
    width: 100%;
    line-height: 2.4em;
    padding: 7px 16px;
    max-width: 340px;
    font-weight: 500;
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
    appearance: none;
}

dd.form__input.form-input.form-select span {
    position: relative;
}

dd.form__input.form-input.form-select span:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    background: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: 20px;
    top: 8px;
}

textarea {
    border: 0;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.6em;
    background: #F2F2F2;
    width: 100%;
    padding: 16px 16px;
    height: 200px;
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

.form-button button {
    background: #6B0000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    color: white;
    width: 100%;
    max-width: 210px;
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
    margin: auto;
    padding: 14px 30px;
}

/* 全フォーム共通 */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #c9c9c9;
    /* グレー */
    opacity: 1;
    /* Firefoxのデフォルト薄さを無効化 */
}

input[type=submit] {
    padding: 15px;
    background: #C20000;
    min-width: 250px;
    color: white;
}

.form__submit {
    margin-top: 50px;
    text-align: center;
}

label {
    line-height: 0;
}

dt,
dd {
    font-weight: 500;
}

.form {
    margin: auto;
    max-width: 800px;
}

dl.form__item {
    display: flex;
    align-items: center;
    padding: 28px 10px;
    margin: 0;
}

dl.form__item dt {
    width: 230px;
}

dl.form__item dt p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

dl.form__item dd {
    width: calc(100% - 230px);
    margin: 0;
}

dt.form__label span {
    background: #6B0000;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    margin-left: 10px;
    font-weight: normal;
    border-radius: 4px;
    line-height: 1.5em;
}

.form-radio label {
    display: inline-block;
}

.form-radio label:not(:first-of-type) {
    margin-left: 15px;
}

.form-radio input+span {
    position: relative;
    display: block;
    font-size: 0.9375rem;
    line-height: 1;
    cursor: pointer;
    padding: 0px 0px 0px 1.5em;
}

.form-radio input+span::before {
    content: "";
    width: 0.9375rem;
    height: 0.9375rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    -o-border-image: initial;
    border-image: initial;
    border-radius: 50%;
}

.form-radio input+span::after {
    content: "";
    width: 0.4375rem;
    height: 0.4375rem;
    position: absolute;
    top: 50%;
    left: 0.25rem;
    transform: translateY(-50%);
    opacity: 0;
    padding: 0.125rem;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    -o-border-image: initial;
    border-image: initial;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    transition: all 0.3s ease 0s;
}

.form-radio input:checked+span:after {
    opacity: 1;
}

dd.form__input.form-input.form-input--pt2 p {
    display: flex;
    gap: 6px;
    max-width: 340px;
    justify-content: flex-start;
}

dd.form__input.form-input p,
dd.form__textarea.form-textarea p {
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

dd.form__input.form-input.form-input--pt3 {
    max-width: 200px;
}

.form-container {
    max-width: 800px;
    margin: auto;
}



.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    max-width: 800px;
    margin: auto;
    margin-top: 30px;
    border-color: var(--sub) !important;
}

.contact-desc {
    border: 1px solid var(--main-color);
    max-width: 800px;
    margin: auto;
    padding: 30px 60px;
    margin-bottom: 40px;
}

.thanks-inner h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
}

.thanks-inner p {
    border: 1px solid;
    max-width: 800px;
    margin: auto;
    padding: 40px 80px;
    text-align: center;
}

.form-button a {
    background: #6B0000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    color: white;
    width: 100%;
    max-width: 210px;
    font-family: "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
    margin: auto;
    padding: 14px 30px;
}

/*  フォーム用ボタン　*/
.confirm .form__submit.form-submit {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.more-btn button {
    max-width: 280px;
    display: flex;
    background: var(--main);
    position: relative;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: white;
    letter-spacing: 0.1em;
    transition: .3s;
    border-radius: 4px;
    margin: auto;
    border: 0;
    width: 250px;
}

.more-btn button img {
    position: absolute;
    right: 20px;
    width: 18px;
}

.more-btn button:hover {
    background: var(--hoverColor);
}

.more-btn.more-btn--confirm button {
    margin: 0;
}

.more-btn.more-btn--confirm {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button.back-btn {
    background: #9c9c9c;
    max-width: 150px;
}


@media screen and (max-width:520px) {
    dl.form__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    dl.form__item dt {
        width: 100%;
    }

    dl.form__item dd {
        width: 100%;
        margin: 0;
    }

    dd.form__input.form-input.form-input--pt3 {
        max-width: none;
    }

    .contact-desc {
        padding: 30px 20px;
    }

    dl.form__item dt p {
        justify-content: flex-start;
    }

    dl.form__item {
        border-bottom: 1px solid #d4d4d4;
    }
    .thanks-inner p {
    padding: 30px 30px;
    text-align: left;
}
	
}