@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.6;
}

p {
    line-height: 1.8;
}

p a {
    text-decoration: underline;
}

body {
    font-family: "Noto Serif JP", serif;
}

.heading_1 {
    display: inline-block;
    border-bottom: solid 3px #fe3456;
    font-size: clamp(20px, 2.2vw, 28px);
    padding-bottom: 0.2em;
    margin-bottom: 1em;
}

.heading_1 span {
    display: block;
    font-size: 16px;
}

.heading_2 {
    text-align: center;
    position: relative;
    font-size: clamp(20px, 2.2vw, 28px);
    padding-bottom: 0.2em;
    margin-bottom: 2em;
}

.heading_2::before {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #fe3456;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.heading_2.long::before {
    width: 120px;
}

.link_btn {
    text-align: center;
    padding: 3em 0 2em;
    font-size: 15px;
}

.link_btn a {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1em 2em;
}

.link_btn a:hover {
    opacity: 1;
    background: #fe3456;
}

.random_img img {
    width: 100%;
    height: auto;
}

.page_top {
    overflow: hidden;
}

.page_top .mainvisual.pc {
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 500px) {
    .page_top .mainvisual.pc {
        display: none;
    }
}

.page_top .mainvisual.pc video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.page_top .mainvisual.sp {
    width: 100vw;
    display: none;
}

@media screen and (max-width: 500px) {
    .page_top .mainvisual.sp {
        display: block;
    }
}

.page_top .mainvisual.sp video {
    width: 100%;
}

.page_top .concept {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.page_top .concept img.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
}

.page_top .concept .inner {
    position: relative;
}

.page_top .concept .inner .txt_box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.page_top .concept .inner .txt_box .title {
    text-align: center;
}

.page_top .concept .inner .txt_box p {
    line-height: 2.4;
}

.page_top .concept .inner .img_box {
    width: 400px;
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 500px) {
    .page_top .concept .inner .img_box {
        width: 60%;
        top: auto;
        bottom: 60px;
    }
}

.page_top .menu {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 20px;
}

.page_top .menu img.ribbon_1 {
    width: 300px;
    position: absolute;
    top: -100px;
    left: -100px;
    z-index: -1;
}

.page_top .menu img.ribbon_2 {
    width: 300px;
    position: absolute;
    bottom: 0px;
    right: -10px;
    z-index: -1;
}

.page_top .menu .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page_top .menu .inner ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media screen and (max-width: 600px) {
    .page_top .menu .inner ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page_top .menu .inner ul li {
    flex: 1;
}

.page_top .menu .inner ul li a {
    display: block;
    position: relative;
    line-height: 0;
}

.page_top .menu .inner ul li a:hover {
    opacity: 1;
}

.page_top .menu .inner ul li a:hover h3 {
    opacity: 1;
}

.page_top .menu .inner ul li a img {
    width: 100%;
    border-radius: 100vh;

}

.page_top .menu .inner ul li a h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
    border-radius: 100vh;
}

@media screen and (max-width: 600px) {
    .page_top .menu .inner ul li a h3 {
        opacity: 1;
    }
}

.page_top #staff {
    padding: clamp(60px, 8vw, 100px) 20px;
}

.page_top #staff .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page_top #staff .inner ul li {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
    .page_top #staff .inner ul li {
        flex-direction: column;
    }
}

.page_top #staff .inner ul li:last-child {
    margin-bottom: 0;
}

.page_top #staff .inner ul li .img_box {
    flex: 1;
}

.page_top #staff .inner ul li .txt_box {
    flex: 1;
}

.page_top #staff .inner ul li .txt_box h3 {
    margin-bottom: 1em;
}

.page_top #staff .inner ul li .txt_box p {
    line-height: 2.2;
}

.page_top #staff .inner ul li .txt_box .link_btn {
    text-align: right;
}

.page_top #information {
    padding: clamp(60px, 8vw, 100px) 20px;
    position: relative;
}

.page_top #information img.ribbon {
    width: 400px;
    position: absolute;
    top: -200px;
    left: -10px;
    z-index: -1;
}

.page_top #information .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media screen and (max-width: 800px) {
    .page_top #information .inner {
        flex-direction: column;
    }
}

.page_top #information .inner .txt_box {
    flex: 1;
    width: 100%;
}

.page_top #information .inner .txt_box ul li {
    border-bottom: solid 1px #000;
    padding: 20px 0 5px;
}

.page_top #information .inner .txt_box ul li h3 {
    font-size: 14px;
}

.page_top #information .inner .txt_box ul li p {
    font-size: 16px;
}

.page_top #information .inner .txt_box ul li p a {
    font-size: 14px;
}

.page_top #information .inner .img_box {
    width: 500px;
}

@media screen and (max-width: 800px) {
    .page_top #information .inner .img_box {
        width: 100%;
    }
}

.page_top .accordion {
    padding: clamp(60px, 8vw, 100px) 20px;
    position: relative;
}

.page_top .accordion img.ribbon {
    width: 400px;
    position: absolute;
    top: -200px;
    right: -20px;
    z-index: -1;
}

.page_top .accordion .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page_top .accordion .inner ul li {
    padding: 20px 20px;
    background: #eee;
    margin-bottom: 20px;
}

.page_top .accordion .inner ul li .Q {
    padding-right: 1.5em;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
    cursor: pointer;
}

.page_top .accordion .inner ul li .Q:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-right: solid 2px #444;
    border-bottom: solid 2px #444;
    position: absolute;
    top: 35%;
    right: 0;
    transform: rotate(45deg);
    transition: 0.3s;
}

.page_top .accordion .inner ul li .Q.open:after {
    top: 40%;
    transform: rotate(-135deg);
}

.page_top .accordion .inner ul li .A {
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    transition: 0.3s;
}

.page_top .accordion .inner ul li .A.open .txt {
    opacity: 1;
    transform: translateY(0);
}

.page_top .accordion .inner ul li .A .txt {
    padding-top: 15px;
    opacity: 0;
    transition: 0.5s 0.2s;
    transform: translateY(5px);
}

.page_top .accordion .inner ul li .A .txt p {
    margin-bottom: 1em;
}

.page_top .accordion .inner ul li .A .txt p:last-child {
    margin-bottom: 0;
}

.page_top .top-img {
    max-width: 1200px;
    margin: 0 auto 120px;
}

.page_top .top-img ul {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .page_top .top-img ul {
        flex-direction: column;
    }
}

.page_top .top-img ul li {
    width: 30%;
}

@media screen and (max-width: 600px) {
    .page_top .top-img ul li {
        width: 90%;
        margin: 0 auto 25px;
    }
}

.page_menu section .mainvisual img {
    width: 100%;
}

.page_menu section .introduction {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 60px) 20px;
}

.page_menu section .introduction p {
    font-size: clamp(12px, 1.4vw, 15px);
}

.page_menu section .price_clm {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    margin-bottom: 100px;
}

@media screen and (max-width: 1000px) {
    .page_menu section .price_clm {
        flex-direction: column;
    }
}

.page_menu section .price_clm .img_box {
    width: 30vw;
}

@media screen and (max-width: 1000px) {
    .page_menu section .price_clm .img_box {
        width: 80vw;
        margin: 0 auto 60px;
    }
}

.page_menu section .price_clm .txt_box {
    flex: 1;
    padding: 0 3vw;
}

.page_menu section .price_clm .txt_box .genre {
    border-left: solid 5px #000;
    padding-left: 0.5em;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2em;
}

.page_menu section .price_clm .txt_box ul {
    margin-bottom: 60px;
}

.page_menu section .price_clm .txt_box ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: solid 1px #000;
    padding: 20px 0 10px;
}

.page_menu section .price_clm .txt_box ul li .title {
    flex: 1;
}

.page_menu section .price_clm .txt_box ul li .title h4 {
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 16px);
}

.page_menu section .price_clm .txt_box ul li .title p {
    font-size: clamp(12px, 1.2vw, 13px);
    line-height: 1.6;
}

.page_menu section .price_clm .txt_box ul li .price {
    display: flex;
    gap: 5px 20px;
}

@media screen and (max-width: 600px) {
    .page_menu section .price_clm .txt_box ul li .price {
        flex-direction: column;
        align-items: flex-end;
    }
}

.page_menu section .price_clm .txt_box ul li .price div {
    font-size: clamp(14px, 1.5vw, 16px);
}

.page_recruit .recruit_content {
    padding: clamp(60px, 8vw, 100px) 20px;
}

.page_recruit .recruit_content .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page_recruit .recruit_content .inner table {
    width: 100%;
    margin-bottom: 60px;
}

.page_recruit .recruit_content .inner table tr {
    display: block;
    border-bottom: solid 1px #707070;
    padding: 1em 0.5em;
}

.page_recruit .recruit_content .inner table tr th,
.page_recruit .recruit_content .inner table tr td {
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

@media screen and (max-width: 600px) {

    .page_recruit .recruit_content .inner table tr th,
    .page_recruit .recruit_content .inner table tr td {
        display: block;
    }
}

.page_recruit .recruit_content .inner table tr th {
    width: 200px;
    margin-bottom: 0.2em;
}

.page_recruit .recruit_content .inner table tr td a {
    text-decoration: underline;
}

.page_recruit .recruit_content .inner form {
    width: 100%;
    padding: 40px 0;
}

.page_recruit .recruit_content .inner form ul li {
    margin-bottom: 20px;
}

.page_recruit .recruit_content .inner form ul li .txt {
    margin-bottom: 0.2em;
    font-size: 15px;
}

.page_recruit .recruit_content .inner form ul li input,
.page_recruit .recruit_content .inner form ul li button,
.page_recruit .recruit_content .inner form ul li select,
.page_recruit .recruit_content .inner form ul li textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

.page_recruit .recruit_content .inner form ul li input {
    width: 100%;
    font-size: 16px;
    padding: 0.7em;
    background: #ededed;
}

.page_recruit .recruit_content .inner form ul li textarea {
    width: 100%;
    height: 300px;
    padding: 0.7em;
    outline: none;
    background: #ededed;
    resize: vertical;
    outline: none;
}

.page_recruit .recruit_content .inner form .btn {
    text-align: center;
    padding-top: 40px;
}

.page_recruit .recruit_content .inner form .btn input {
    background: #000;
    color: #fff;
    font-size: 15px;
    padding: 1em 0;
    width: 250px;
}

.page_staff .inner {
    padding: clamp(60px, 8vw, 100px) 20px;
}

.page_staff .inner .staff_list {
    max-width: 700px;
    margin: 0 auto;
}

.page_staff .inner .staff_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.page_staff .inner .staff_list ul li .img_box {
    margin-bottom: 10px;
}

.page_staff .inner .staff_list ul li .img_box img {
    width: 100%;
}

.page_staff .inner .staff_list ul li .txt_box .name {
    font-size: 18px;
    margin-bottom: 0.5em;
}

.page_staff .inner .staff_list ul li .txt_box .txt {
    line-height: 1.8;
    font-size: clamp(14px, 1.5vw, 16px);
}

header.pc {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 40px);
}

@media screen and (max-width: 800px) {
    header.pc {
        display: none;
    }
}

header.pc.top {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

header.pc .logo a img {
    width: 180px;
}

header.pc ul {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

header.pc ul li a {
    display: block;
    color: #fff;
    position: relative;
    padding: 0.4em 0;
}

header.pc ul li a img {
    display: block;
    width: 1.6em;
}

header.pc ul li a::before {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}

header.pc ul li a:hover::before {
    width: 100%;
}

header.sp {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 101;
}

@media screen and (min-width: 800px) {
    header.sp {
        display: none;
    }
}

header.sp .logo {
    line-height: 0;
    padding-left: 15px;
}

header.sp .logo img {
    height: 20px;
}

header.sp .drawer_btn {
    font-size: 45px;
    width: 1em;
    height: 1em;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

header.sp .drawer_btn span,
header.sp .drawer_btn span:after,
header.sp .drawer_btn span:before {
    content: "";
    display: block;
    width: 0.6em;
    height: 3px;
    background: #fff;
    position: absolute;
    transition: 0.3s;
}

header.sp .drawer_btn span:before {
    bottom: 0.2em;
    transition: 0.3s 0.3s, transform 0.3s;
}

header.sp .drawer_btn span:after {
    top: 0.2em;
    transition: 0.3s 0.3s, transform 0.3s;
}

header.sp .drawer_btn span.active {
    background: rgba(255, 255, 255, 0);
}

header.sp .drawer_btn span.active:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: 0.3s, transform 0.3s 0.3s;
}

header.sp .drawer_btn span.active:after {
    top: 0;
    transform: rotate(45deg);
    transition: 0.3s, transform 0.3s 0.3s;
}

footer {
    background: #000;
    padding: 60px clamp(20px, 4vw, 60px) 20px;
}

footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 500px) {
    footer .inner {
        flex-direction: column;
    }
}

footer .inner .logo {
    margin-bottom: 40px;
}

footer .inner .logo img {
    width: 200px;
}

footer .inner nav {
    display: flex;
    gap: 0 40px;
}

@media screen and (max-width: 500px) {
    footer .inner nav {
        flex-direction: column;
        text-align: center;
    }
}

footer .inner nav ul li a {
    display: block;
    padding: 0.4em 0;
    color: #fff;
    font-size: 14px;
}

footer .inner nav ul li a img {
    width: 1.6em;
}

footer .copyright {
    text-align: center;
    color: #fff;
    padding-top: 100px;
    font-size: 12px;
}

.drawer_content {
    width: 100vw;
    height: 100vh;
    background: #000;
    padding: 60px 20px;
    overflow: scroll;
    position: fixed;
    top: 0;
    right: -100%;
    opacity: 0;
    z-index: 100;
    transition: 0.3s;
}

.drawer_content.active {
    opacity: 1;
    top: 0;
    right: 0;
}

.drawer_content ul {
    padding-top: 60px;
}

.drawer_content ul li a {
    text-align: center;
    display: block;
    font-size: 22px;
    padding: 0.2em;
    color: #fff;
}

.drawer_content ul li a img {
    width: 2em;
}

/*# sourceMappingURL=style.css.map */