@charset "utf-8";

html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
}

.br_sp {
    display: none;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

a:hover {
    opacity: 0.6;
    transition: 0.3s;
}

@media (max-width: 1025px) {
    .br_sp {
        display: block;
    }

    .d-sp-none {
        display: none;
    }

    .d-sp-block {
        display: block;
    }
}

body,
p,
a,
a:link,
a:visited,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #532121;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0;
}

.font_ja_serif {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
}

.font_ja_sans_serif {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.font_en {
    font-family: "Josefin Slab", serif;
    font-weight: 700;
    letter-spacing: 0;
}

body {
    background: url(../img/bg_pattern.png) center center repeat;
    background-size: 200px;
    /* background-color: #c0DCD0; */
}

/* ------------------------------------------ */

/* accordion */

/* ------------------------------------------ */

.accordion {
    overflow: hidden;
}

.accordion-header {
    cursor: pointer;
    position: relative;
}

.accordion-content {
    display: none;
}

.accordion-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    position: absolute;
    transition: transform 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

/* プラス記号 */
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #F04923;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::before {
    width: 2px;
    height: 100%;
}

.accordion-icon::after {
    width: 100%;
    height: 2px;
}

/* 開いてるとき（マイナス表示） */
.accordion.open .accordion-icon::before {
    opacity: 0;
}

/* 回転アニメーション */
.accordion.open .accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 1025px) {
    .accordion-icon {
        width: 3vw;
        height: 3vw;
    }
}

/* ------------------------------------------ */

/* header */

/* ------------------------------------------ */

#header {
    padding-top: 50px;
    text-align: center;
}

#header nav {
    display: inline-block;
}

#header nav ul {
    display: flex;
    text-align: center;
    gap: 90px;
}

#header nav ul li {
    position: relative;
}

#header nav ul li:not(:first-of-type):before {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    background: url(../img/icon_header.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translate(-50%, -50%);
}

#header nav ul li a {
    display: flex;
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

#header nav ul li a span {
    display: block;
    font-size: 15px;
    font-family: "Josefin Slab", serif;
    font-weight: 700;
}

@media (max-width: 1025px) {
    #header nav {
        display: none;
    }

    #header {
        padding-top: 26.5vw;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header {
        padding-top: 100px;
    }
}

/* ------------------------------------------ */

/* sp_nav */

/* ------------------------------------------ */


/*　---背景をスクロールさせないための記述---　*/
body.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.menu-box {
    display: none;
}

@media (max-width: 1025px) {
    .menu-box {
        display: block;
    }
}

.hamburger {
    display: block;
    z-index: 107;
    width: 22.5vw;
    height: 22.5vw;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100000;
}

.hamburger:after {
    content: 'MENU';
    position: absolute;
    bottom: 3.75vw;
    font-size: 2.25vw;
    color: #E34927;
    font-family: "Josefin Slab", serif;
    font-weight: 700;
    letter-spacing: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger span {
    display: block;
    position: absolute;
    width: 40%;
    height: 0.75vw;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E34927;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 36%;
    transform: translateX(-50%);
}

.hamburger span:nth-child(2) {
    top: 48%;
    transform: translateX(-50%);
}

.hamburger span:nth-child(3) {
    top: 60%;
    transform: translateX(-50%);
}

/* -----ナビ開いてる時のボタン----- */

.hamburger.active {
    position: fixed;
    right: 0;
    top: 0;
    background: transparent;
}

.hamburger.active span {
    background-color: #fff;
}

.hamburger.active:after {
    color: #fff;
}

.hamburger.active span:nth-child(1) {
    top: 46%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 46%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hamburger {
        width: 100px;
        height: 90px;
    }

    .hamburger:after {
        font-size: 12px;
        bottom: 10px;
    }

    .hamburger span {
        height: 3px;
    }

    .hamburger span:nth-child(1) {
        top: 33%;
        transform: translateX(-50%);
    }

    .hamburger span:nth-child(2) {
        top: 45%;
        transform: translateX(-50%);
    }

    .hamburger span:nth-child(3) {
        top: 57%;
        transform: translateX(-50%);
    }
}

/* ----------------------------------------

メニュー中身

-------------------------------------------*/

.globalMenuSp {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #532121;
    padding: 26.5vw 5vw 0;
    overflow-y: scroll;
    z-index: 106;
    top: 0;
    right: -120%;
    transition: 0.4s ease;
    opacity: 0;
    visibility: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.globalMenuSp::-webkit-scrollbar {
    display: none;
}

.globalMenuSp.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}

.globalMenuSp.active .inner {
    animation-name: fadeIn;
    animation-delay: 0.4s;
    /* 遅らせる */
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.globalMenuSp ul li a {
    width: 100%;
    margin: 0 auto;
    font-size: 3.75vw;
    display: block;
    text-align: center;
    color: #fff;
    padding: 1.5em 1em;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.globalMenuSp ul li a:after {
    content: '';
    width: 0.8em;
    height: 0.8em;
    background: url(../img/icon_arrow_02.svg) center center no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .globalMenuSp {
        padding: 100px 30px 0;
    }

    .globalMenuSp ul li a {
        font-size: 16px;
    }
}


/* ------------------------------------------ */

/* h1 */

/* ------------------------------------------ */

#h1_wrapper h1 img {
    width: 100%;
}

#h1_wrapper h1 .pc {
    width: 220px;
    margin: 100px auto 150px;
}

#h1_wrapper h1 .sp {
    display: none;
}


@media (max-width: 1025px) {
    #h1_wrapper h1 .pc {
        display: none;
    }

    #h1_wrapper h1 {
        position: absolute;
        top: 5vw;
        left: 3.75vw;
    }

    #h1_wrapper h1 .sp {
        display: block;
        width: 42.5vw;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    #h1_wrapper h1 {
        top: 20px;
        left: 30px;
    }

    #h1_wrapper h1 .sp {
        width: 200px;
    }
}


/* ------------------------------------------ */

/* footer */

/* ------------------------------------------ */

#footer {
    background-color: #53958D;
    margin-top: 100px;
}

#footer>.inner {
    max-width: 1355px;
    margin: 0 auto;
    padding: 100px 40px 150px;
}

#footer>.flex {
    display: flex;
    gap: 100px;
}

#footer>.flex #left {
    min-width: 400px;
    width: 400px;
}

#footer>.flex #right {
    width: 100%;
}

.footer_logo {
    width: 280px;
    margin-bottom: 60px;
}

.footer_logo img {
    width: 100%;
}

.footer_table {
    display: flex;
    flex-wrap: wrap;
    padding-left: 30px;
    border-left: 3px solid #FFFFFF;
}

.footer_table dt,
.footer_table dd {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.75;
}

.footer_table dt:not(:last-of-type),
.footer_table dd:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer_table dt {
    width: 85px;
}

.footer_table dd {
    width: calc(100% - 85px);
}

#footer .access_ttl {
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #fff;
    display: inline-block;
    color: #fff;
    padding: 0.25em;
    margin-bottom: 1em;
    margin-top: 2em;
}

#footer .access_text {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
}

#footer iframe {
    width: 100%;
}

.copyright {
    color: #fff;
    text-align: center;
    font-size: 12px;
    background-color: #467C75;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1025px) {
    #footer {
        margin-top: 0;
    }

    #footer>.inner {
        padding: 67.5vw 7.5vw 0;
    }

    #footer>.flex {
        flex-direction: column-reverse;
        gap: 25vw;
    }

    #footer iframe {
        height: 62.5vw;
    }

    #footer .access_text {
        font-size: 3vw;
        line-height: 1.75;
    }

    #footer .access_ttl {
        font-size: 3vw;
        margin: 2em 0 1em;
    }

    #footer>.flex #left {
        text-align: center;
        width: 100%;
        min-width: initial;
    }

    .footer_logo {
        width: 62.5vw;
        margin-bottom: 12.5vw;
        display: inline-block;
    }

    .footer_table {
        display: none;
    }

    .copyright {
        font-size: 2vw;
        padding: 2em;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #footer>.flex {
        gap: 100px;
    }

    #footer>.inner {
        padding: 480px 60px 100px;
    }

    #footer iframe {
        height: 400px;
    }

    #footer .access_ttl {
        font-size: 15px;
    }

    #footer .access_text {
        font-size: 14px;
    }

    .footer_logo {
        width: 360px;
        margin-bottom: 0;
    }

    .copyright {
        font-size: 12px;
    }
}


/* ------------------------------------------ */

/* Top common */

/* ------------------------------------------ */

#main {
    padding: 0 15px;
    position: relative;
    top: 50px;
    margin-top: -50px;
    z-index: 10000;
}

#main_inner {
    background-color: #FEFDFA;
    border-radius: 10px;
    max-width: 1355px;
    margin: 0 auto;
}

.section {
    padding: 100px 120px;
}

.section:not(:last-of-type) {
    border-bottom: 1px solid #C0DCCE;
}

.h2 {
    font-family: "Josefin Slab", serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #F04923;
    font-size: 60px;
}

.h2 span {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 18px;
    display: block;
}

p.sec_text {
    line-height: 2.25;
    font-weight: 600;
}


/* ボタン */
a.button {
    color: #fff !important;
    background-color: #F04923;
    font-family: "Josefin Slab", serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
    border-radius: 4em;
    letter-spacing: 0.05em;
    position: relative;
}

a.button:after {
    content: '';
    width: 1em;
    height: 1em;
    display: block;
    background: url(../img/icon_arrow.svg) center center no-repeat;
    background-size: contain;
    position: relative;
    top: -3px;
    transition: 0.3s;
}

.button.primary {
    font-size: 22px;
    width: 260px;
    margin: 0 auto;
    padding: 1em;
}

.button.small {
    font-size: 16px;
    width: 150px;
    margin-right: 0;
    margin-left: auto;
    padding: 0.5em;
}

.button:hover {
    opacity: 0.9;
    transition: 0.3s;
}

.button:hover:after {
    transform: translateX(0.4em);
}

@media (max-width: 1025px) {
    #main {
        padding: 0 3.75vw;
        top: 50vw;
        margin-top: -50vw;
    }

    .section {
        padding: 12.5vw 7.5vw 15vw;
    }

    p.sec_text {
        font-size: 3.5vw;
        line-height: 1.75;
        font-weight: 500;
    }

    .h2 {
        font-size: 11.25vw;
        margin-bottom: 1em;
        position: relative;
        left: -10px;
    }

    .h2 span {
        font-size: 3.75vw;
        margin-top: 0.25em;
    }

    a.button {
        gap: 5vw;
    }

    .button.primary {
        font-size: 5vw;
        width: 50vw;
        padding: 0.75em;
    }

    .button.small {
        font-size: 4vw;
        width: 37.5vw;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #main {
        padding: 0 30px;
        top: 385px;
        margin-top: -385px;
    }

    .section {
        padding: 60px 50px 70px;
    }

    .h2 {
        font-size: 50px;
        left: -15px;
    }

    .h2 span {
        font-size: 18px;
    }

    p.sec_text {
        font-size: 15px;
    }

    .button.primary {
        font-size: 22px;
        width: 12em;
        padding: 0.875em 0;
    }

    .button.small {
        font-size: 18px;
        width: 10em;
    }
}

/* ------------------------------------------ */

/* Main Visual */

/* ------------------------------------------ */

.main_img {
    display: none;
}

@media (max-width: 1025px) {
    .main_img {
        display: block;
        width: 100%;
        height: 70vw;
        margin-bottom: 7.5vw;
    }

    .main_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .main_img {
        height: 450px;
        margin-bottom: 50px;
    }
}


/* ------------------------------------------ */

/* About */

/* ------------------------------------------ */

#about p.sec_text,
#menu p.sec_text,
#voice p.sec_text {
    padding-left: 28%;
    position: relative;
    top: -25px;
    margin-bottom: -25px;
}


@media (max-width: 1280px) {

    #about p.sec_text,
    #menu p.sec_text,
    #voice p.sec_text {
        padding-left: 0;
        top: initial;
        margin-bottom: initial;
        margin-top: 60px;
    }
}

@media (max-width: 1025px) {

    #about p.sec_text,
    #menu p.sec_text,
    #voice p.sec_text {
        padding-left: 0;
        position: static;
        margin-bottom: 0;
        margin-top: 0;
    }
}


/* ------------------------------------------ */

/* Menu */

/* ------------------------------------------ */

.menu_block {
    max-width: 680px;
}

.menu_block h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    background-color: #F04923;
    font-size: 18px;
    padding: 1em;
    border-radius: 3em;
    margin-bottom: 1em;
}

.menu_block p {
    font-size: 14px;
    margin: 2em 0 1em;
    line-height: 1.75;
    padding: 1em;
    background-color: #fff4d7;
}

.menu_table {
    display: flex;
    flex-wrap: wrap;
}

.menu_table dt,
.menu_table dd {
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F04923;
}

.menu_table dt {
    width: calc(100% - 150px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 50px;
    position: relative;
}

.menu_table dt:before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    left: 1em;
    width: 1em;
    height: 1em;
    background: url(../img/icon_header.svg) center center no-repeat;
    background-size: contain;
}

.menu_table dd {
    width: 150px;
    justify-content: end;
    padding-right: 25px;
    font-size: 22px;
    letter-spacing: 0.05em;
    font-family: "Roboto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

@media (max-width: 1025px) {
    .menu_block {
        max-width: 77.5vw;
    }

    .menu_block h3 {
        font-size: 3.5vw;
        line-height: 1.4;
        padding: 0.5em 0;
        margin-bottom: 1.25em;
    }

    .menu_block p {
        font-size: 3vw;
        margin-top: 1em;
        line-height: 1.5;
    }

    .menu_table dt,
    .menu_table dd {
        height: 14vw;
    }

    .menu_table dt {
        padding-left: 0;
        font-size: 3.5vw;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        line-height: 1.75;
        width: 75%;
    }

    .menu_table dt span {
        display: block;
        font-size: 0.78em;
    }

    .menu_table dt:before {
        content: none;
    }

    .menu_table dd {
        width: 25%;
        padding-right: 0;
        font-size: 4vw;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .menu_block h3 {
        font-size: 16px;
    }

    .menu_table dt {
        font-size: 16px;
    }

    .menu_table dd {
        font-size: 18px;
    }

    .menu_table dt,
    .menu_table dd {
        height: 70px;
    }

    .menu_block p {
        font-size: 14px;
    }
}


/* ------------------------------------------ */

/* Menu slide */

/* ------------------------------------------ */

.menu-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 680px;
    margin: 90px auto 0;
}

.menu-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 400%;
    /* アイテム数に応じて調整 */
}

.menu-item {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.menu-controls {
    text-align: center;
}

.menu-controls button {
    width: 60px;
    height: 60px;
    background: url(../img/icon_arrow_03.svg) center center no-repeat;
    background-size: contain;
}

.menu-controls button:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.menu-controls button.next {
    transform: rotate(180deg);
}

.menu-controls button:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

@media (max-width: 1025px) {
    .menu-slider {
        margin: 12.5vw 0 0 0;
        max-width: initial;
    }

    .menu-controls button {
        width: 10vw;
        height: 10vw;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .menu-slider {
        margin-top: 50px;
    }

    .menu-controls button {
        width: 60px;
        height: 60px;
    }


}


/* ------------------------------------------ */

/* Schedule */

/* ------------------------------------------ */

.schedule_block {
    max-width: 680px;
    margin: 50px auto 0;
}

.schedule_block h3 {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 1.75em;
}

.schedule_block h3+span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: right;
    display: block;
}

.schedule_table {
    width: 100%;
    border-collapse: collapse;
}

.schedule_table thead tr th {
    border-top: 1px solid #532121;
    border-bottom: 1px solid #532121;
    padding: 12px 10px;
    background-color: #F6F6F6;
    text-align: center;
    font-weight: 500;
}

.schedule_table thead tr th:first-of-type {
    width: 200px;
    min-width: 200px;
}

.schedule_table tbody tr th {
    padding: 16px 15px;
    border-bottom: 1px solid #532121;
    background-color: #fff;
    text-align: center;
    position: relative;
    font-weight: 400;
    letter-spacing: 0;
}

.schedule_table tbody tr th.kuromaru:before {
    content: '●';
    font-size: 15px;
}

.schedule_table tbody tr th.akamaru:before {
    content: '●';
    color: #FF0000;
    font-size: 15px;
}

.schedule_table tbody tr th.slash:before {
    content: '';
    width: 25px;
    height: 1px;
    background-color: #532121;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.schedule_txt {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    margin-top: 40px;
}

.icon.normal {
    color: #532121;
}

.icon.special {
    color: #FF0000;
}


@media (max-width: 1025px) {

    #schedule.section {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .schedule_block h3 {
        font-size: 4vw;
        margin-bottom: 1.6em;
    }

    .schedule_block h3+span {
        font-size: 3vw;
        text-align: center;
        margin-bottom: 4.5vw;
    }

    .schedule_block {
        margin: 12.5vw 0 0 0;
        max-width: initial;
    }

    .schedule_table thead tr th:first-of-type {
        width: 30vw;
        min-width: 30vw;
    }

    .schedule_table thead tr th {
        font-size: 3vw;
        padding: 2vw 1vw;
    }

    .schedule_table tbody tr th {
        font-size: 3vw;
        padding: 4.5vw 1vw;
    }

    .schedule_table tbody tr th:first-of-type {
        text-align: left;
    }

    .schedule_txt {
        font-size: 3.25vw;
        margin-top: 3em;
    }

    .schedule_table tbody tr th.kuromaru:before {
        font-size: 3.75vw;
    }

    .schedule_table tbody tr th.akamaru:before {
        font-size: 3.75vw;
    }

    .schedule_table tbody tr th.slash:before {
        content: '';
        width: 4vw;
        height: 2px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .schedule_block h3 {
        font-size: 16px;
    }

    .schedule_block h3+span {
        font-size: 14px;
        margin-bottom: 3em;
    }

    .schedule_table thead tr th {
        font-size: 14px;
        padding: 1em 0.5em;
    }

    .schedule_table thead tr th:first-of-type {
        width: 13em;
        min-width: 13em;
    }

    .schedule_table tbody tr th {
        font-size: 14px;
        padding: 1em 0.5em;
    }

    .schedule_txt {
        font-size: 14px;
        margin-top: 3em;
    }
}


/* ------------------------------------------ */

/* How to use */

/* ------------------------------------------ */

.howToUse_block {
    max-width: 680px;
    margin: 40px auto 0;
}

.howToUse_block .item:not(:last-of-type) {
    margin-bottom: 15px;
}

.howToUse_block h3 {
    background-color: #fff;
    border-bottom: 1px solid #532121;
    padding: 16px 25px;
    padding-left: 50px;
    font-weight: 500;
    position: relative;
}

.howToUse_block h3:before {
    content: '';
    width: 1em;
    height: 1em;
    background: url(../img/icon_header.svg) center center no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.howToUse_block .item .txt_block {
    padding-bottom: 75px;
    margin-top: 1.25em;
}

.howToUse_block .item .txt_block p {
    font-size: 15px;
    font-weight: 300;
    padding-left: 25px;
    line-height: 2;
}

.howToUse_block .item .txt_block p span {
    display: block;
}

.howToUse_block .item .txt_block p span:before {
    content: '・';
}

@media (max-width: 1025px) {
    .howToUse_block {
        max-width: initial;
        margin: 0;
    }

    .howToUse_block h3 {
        font-size: 3.5vw;
        line-height: 1.5;
        border-top: 1px solid #532121;
        padding: 2vw 0 2vw 8vw;
        height: 16vw;
        display: flex;
        align-items: center;
    }

    .howToUse_block h3:before {
        left: 0.8em;
    }

    .howToUse_block .item:not(:last-of-type) {
        margin-bottom: 3.75vw;
    }

    .howToUse_block .item .txt_block {
        padding-bottom: 8vw;
    }

    .howToUse_block .item .txt_block p {
        font-size: 3.25vw;
        padding: 0 1em;
        line-height: 2;
    }

    #howToUse .button.primary {
        margin-top: 7.5vw;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .howToUse_block .item:not(:last-of-type) {
        margin-bottom: 20px;
    }

    .howToUse_block h3 {
        font-size: 16px;
        height: 80px;
        padding: 10px;
        padding-left: 50px;
    }

    .accordion-icon {
        width: 16px;
        height: 16px;
    }

    .howToUse_block .item .txt_block {
        padding-bottom: 40px;
    }

    .howToUse_block .item .txt_block p {
        font-size: 14px;
    }

    #howToUse .button.primary {
        margin-top: 1.5em;
    }



}


/* ------------------------------------------ */

/* Voice */

/* ------------------------------------------ */

.voice_block {
    padding: 90px 0 30px;
}

.voice_inner {
    max-width: 900px;
    margin: 0 auto;
}

.voice_block .item:not(:last-of-type) {
    margin-bottom: 40px;
}

.voice_block .item .flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.voice_block .item .img_block {
    background-color: #FFF4D7;
    min-width: 120px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice_block .item .img_block img {
    width: 50%;
}

.voice_block .item .txt_block {
    background-color: #fff;
    border: 1px solid #F04923;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.voice_block .item .txt_block:before {
    content: '';
    width: 28px;
    height: 36px;
    background: url(../img/sankaku.png) center center no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    top: 50%;
    left: -21px;
    transform: translateY(-50%);
}

.voice_block .item .txt_block h3 {
    font-weight: 500;
    margin-bottom: 10px;
}

p.voice_text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

p.voice_detail {
    font-size: 14px;
    color: #C8B7B7;
    font-weight: 500;
    text-align: right;
    margin-top: 10px;
}

@media (max-width: 1025px) {
    .voice_block {
        padding: 10vw 0 0;
    }

    .voice_block .item:not(:last-of-type) {
        margin-bottom: 5vw;
    }

    .voice_block .item .flex {
        gap: 7.5vw;
        flex-direction: column-reverse;
    }

    .voice_block .item .txt_block {
        padding: 3.75vw;
        border-radius: 1em;
    }

    .voice_block .item .txt_block h3 {
        font-size: 3.5vw;
        margin-bottom: 0.75em;
    }

    p.voice_text {
        font-size: 3.25vw;
        line-height: 1.4;
    }

    p.voice_detail {
        font-size: 3.25vw;
        margin-top: 2.5vw;
        line-height: 1.6;
    }

    .voice_block .item .img_block {
        width: 25vw;
        height: 25vw;
        min-width: initial;
    }

    .voice_block .item:nth-of-type(2n-1) .img_block {
        margin-right: 0;
        margin-left: auto;
    }

    .voice_block .item:nth-of-type(2n) .img_block {
        margin-right: auto;
        margin-left: 0;
    }

    .voice_block .item .txt_block:before {
        transform: rotate(-90deg);
        width: 9vw;
        height: 7vw;
        top: initial;
        bottom: -4.5vw;
    }

    .voice_block .item:nth-of-type(2n-1) .txt_block:before {
        left: initial;
        right: 8vw;
    }

    .voice_block .item:nth-of-type(2n) .txt_block:before {
        left: 8vw;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .voice_block {
        padding: 50px 0 0;
    }

    .voice_block .item .flex {
        gap: 50px;
    }

    .voice_block .item:not(:last-of-type) {
        margin-bottom: 40px;
    }

    .voice_block .item .txt_block {
        padding: 25px 30px;
    }

    .voice_block .item .txt_block h3 {
        font-size: 15px;
        margin-bottom: 1em;
    }

    p.voice_text {
        font-size: 14px;
    }

    p.voice_detail {
        font-size: 14px;
        margin-top: 1em;
    }

    .voice_block .item .img_block {
        width: 100px;
        height: 100px;
    }

    .voice_block .item:nth-of-type(2n-1) .img_block {
        margin-right: 50px;
    }

    .voice_block .item:nth-of-type(2n) .img_block {
        margin-left: 50px;
    }


    .voice_block .item .txt_block:before {
        width: 30px;
        height: 30px;
        bottom: -20px;
    }

    .voice_block .item:nth-of-type(2n) .txt_block:before {
        left: 85px;
    }

    .voice_block .item:nth-of-type(2n-1) .txt_block:before {
        right: 85px;
    }


}

/* ------------------------------------------ */

/* News */

/* ------------------------------------------ */

#news>.flex {
    display: flex;
    gap: 160px;
}

#news .right {
    width: 100%;
    max-width: 700px;
}

.news_table {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.news_table dt,
.news_table dd {
    border-bottom: 1px dashed #532121;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 0;
    line-height: 1.75;
}

.news_table dt {
    min-width: 150px;
    letter-spacing: 0;
    font-family: "Roboto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
}

.news_table dt:not(:last-of-type),
.news_table dd:not(:last-of-type) {
    margin-bottom: 10px;
}

.news_table dd {
    width: calc(100% - 150px);
}

.news_table dd a {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    display: block;
    width: 100%;
    line-height: 1.5;
}

@media (max-width: 1025px) {
    #news>.flex {
        flex-direction: column;
        gap: 0;
    }

    #news .right {
        max-width: initial;
    }

    .news_table {
        margin-bottom: 7.5vw;
    }

    .news_table dt:not(:last-of-type) {
        margin-bottom: 1.25vw;
    }

    .news_table dt,
    .news_table dd {
        height: initial;
        padding: 2vw 0;
    }

    .news_table dt {
        min-width: 28%;
        font-size: 3vw;
    }

    .news_table dd {
        width: 72%;
    }

    .news_table dd a {
        font-size: 3.25vw;
        line-height: 1.5;
    }

    .news_table dt:not(:last-of-type),
    .news_table dd:not(:last-of-type) {
        margin-bottom: 1vw;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .news_table {
        margin-bottom: 50px;
    }

    .news_table dt,
    .news_table dd {
        padding: 10px 0;
    }

    .news_table dt {
        font-size: 15px;
    }

    .news_table dt:not(:last-of-type),
    .news_table dd:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .news_table dd a {
        font-size: 15px;
    }
}

/* ------------------------------------------ */

/* Contact */

/* ------------------------------------------ */

#contact .sec_text {
    text-align: center;
    position: relative;
    top: -20px;
    margin-bottom: -20px;
    padding-bottom: 40px;
}

@media (max-width: 1280px) {
    #contact .sec_text {
        margin-top: 50px;
    }
}

@media (max-width: 1025px) {
    #contact .sec_text {
        text-align: left;
        position: initial;
        padding-bottom: 12.5vw;
        margin-top: 0;
    }
}

/* ------------------------------------------ */

/* studio_photo */

/* ------------------------------------------ */

#studio_photo {
    position: sticky;
    top: 0;
    left: 0;
    z-index: -1;
}

#studio_photo img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#footer {
    position: relative;
    z-index: 100;
}

@media (max-width: 1025px) {
    #studio_photo {
        display: none;
    }
}