@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 {
    max-width: 100%;
    height: auto;
}

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

a:hover,
a:link,
a:active,
a:focus {
    color: #000;
}

a:hover {
    opacity: 0.6;
}

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

.pc_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

@media only screen and (max-width: 700px) {
    .pc_header {
        display: none;
    }
}

.pc_header .logo img {
    width: auto;
    height: 40px;
}

.pc_header nav ul {
    display: flex;
    align-items: center;
    gap: 1em;
}

.pc_header nav ul li a {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.pc_header nav ul li a img {
    display: block;
    width: 2em;
}

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

@media only screen and (min-width: 700px) {
    .sp_header {
        display: none;
    }
}

@media(min-width:751px) {
    .sp {
        display: none !important;
    }
}

@media(max-width:750px) {
    .pc {
        display: none !important;
    }
}

.sp_header .logo {
    height: 25px;
    padding-left: 10px;
}

.sp_header .logo img {
    height: 100%;
}

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

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

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

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

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

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

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

.drawer_content {
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 100px 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 li a {
    font-size: 22px;
    text-align: center;
    display: block;
    color: #000;
    padding: 0.5em;
}

.drawer_content ul.sns {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.drawer_content ul.sns li a {
    padding: 0.2em;
}

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

.page_top .campaign {
    font-size: clamp(22px, 3vw, 35px);
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0.3em;
}

.page_top .mainvisual {
    width: 100vw;
    height: 100vh;
    position: relative;
}

@media only screen and (max-width: 500px) {
    .page_top .mainvisual {
        height: 60vh;
    }
}

.page_top .mainvisual::before {
    content: "";
    display: block;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: solid 3px #fff;
    animation: mv_line 1s;
    z-index: 1;
}


@media only screen and (max-width: 500px) {
    .page_top .mainvisual::before {
        width: calc(110vw - 60px);
    }
}



@media only screen and (max-width: 500px) {
    .page_top .mainvisual::before {
        height: calc(65vh - 60px);
    }
}

@keyframes mv_line {
    0% {
        transform: scale(1.02);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.page_top .mainvisual .bg_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page_top .mainvisual .bg_img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    animation: bg_img 2s;
}

@keyframes bg_img {
    0% {
        transform: scale(1.05);
        filter: blur(5px);
    }

    100% {
        transform: scale(1);
        filter: blur(0);
    }
}

.page_top .mainvisual .mv_txt {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 10vw;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.page_top .mainvisual .mv_txt img {
    display: block;
    width: 100%;
    max-width: 600px;
    animation: mv_txt 1s;
}

@media only screen and (min-width: 1500px) {
    .page_top .mainvisual .mv_txt img {
        max-width: 800px;
    }
}

@media only screen and (max-width: 500px) {
    .page_top .mainvisual .mv_txt img {
        width: 80%;
        margin: 0 auto;
    }
}

@keyframes mv_txt {
    0% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.page_top .mainvisual nav {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media only screen and (max-width: 750px) {
    .page_top .mainvisual nav {
        display: none;
    }
}

.page_top .mainvisual nav .logo img {
    width: 140px;
}

.page_top .mainvisual nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page_top .mainvisual nav ul li a {
    display: block;
    font-size: 16px;
    color: #fff;
    padding-bottom: 0.4em;
    text-shadow: 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.2);
    font-weight: 500;
    border-bottom: solid 3px rgba(255, 255, 255, 0);
    transition: 0.5s;
}

.page_top .mainvisual nav ul li a img {
    display: block;
    height: 2.2em;
    filter: drop-shadow(0.1em 0.1em 0.1em rgba(0, 0, 0, 0.2));
}

.page_top .mainvisual nav ul li a:hover {
    opacity: 1;
    border-bottom: solid 3px white;
}

.page_top .cta {
    background: #083e58;
    color: #fff;
    padding: clamp(40px, 5vw, 60px) 20px;
}

.page_top .cta h2 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 1em;
}

.page_top .cta h2 img {
    display: block;
    height: 1.5em;
}

.page_top .cta h2 img:last-child {
    transform: scale(-1, 1);
}

.page_top .cta h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffea00;
    font-size: 1.5em;
}

@media only screen and (max-width: 750px) {
    .page_top .cta h3 {
        font-size: 1.2em;
    }
}


.page_top .cta .btn {
    text-align: center;
    margin-bottom: 40px;
}

.page_top .cta .btn a {
    background: #fff;
    display: inline-flex;
    font-size: 22px;
    align-items: center;
    padding: 0.2em 2em;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    justify-content: center;
}

.page_top .cta .btn a img {
    display: block;
    height: 2.4em;
}

.page_top .cta .btn a span {
    line-height: 1;
    color: #000;
    font-weight: 500;
}

.page_top .cta ul {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 750px) {
    .page_top .cta ul {
        flex-direction: column;
    }
}

.page_top .cta ul li {
    text-align: center;
    padding: 20px;
    border-left: solid 2px #fff;
}

@media only screen and (max-width: 750px) {
    .page_top .cta ul li {
        border-left: none;
        border-bottom: solid 1px #fff;
    }
}

.page_top .cta ul li:last-child {
    border-right: solid 2px #fff;
    border-bottom: none;
}

@media only screen and (max-width: 750px) {
    .page_top .cta ul li:last-child {
        border-right: none;
    }
}

.page_top .cta ul li span {
    display: block;
}

.page_top .cta ul li span:nth-child(1) {
    font-weight: 500;
    font-size: clamp(20px, 2vw, 22px);
}

.page_top .cta ul li span:nth-child(2) {
    font-weight: 600;
    font-size: clamp(26px, 2.6vw, 28px);
}

.page_top #roselight {
    padding: clamp(40px, 6vw, 100px) 20px;
    background: linear-gradient(90deg, #d0e1e8 0%, #d0e1e8 30%, #fff 30%, #fff 100%);
}

.page_top #roselight h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
}

.page_top #roselight h2 span {
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: clamp(22px, 3vw, 40px);
}

.page_top #roselight h2 span small {
    display: block;
    font-size: clamp(14px, 1.8vw, 20px);
}

.page_top #roselight h2 img {
    display: block;
    width: 1.8em;
}

.page_top #roselight h2 img:last-child {
    transform: scale(-1, 1);
}

.page_top #roselight .inner {
    max-width: 850px;
    margin: 0 auto;
}

.page_top #roselight .inner .clm {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.page_top #roselight .inner .clm .img_box {
    max-width: 320px;
}

.page_top #roselight .inner .clm .txt_box {
    flex: 1;
}

.page_top #roselight .inner .clm .txt_box h3 {
    margin-bottom: 1em;
}

.page_top #roselight .inner .clm .txt_box h3 img {
    display: block;
    width: 100%;
}

.page_top #roselight .inner .clm .txt_box h4 {
    font-weight: 400;
    padding: 1.8em 0 0.4em;
    font-size: clamp(18px, 2.2vw, 26px);
}

.page_top #roselight .inner .clm .txt_box p {
    margin-bottom: 1em;
    line-height: 2;
}

.page_top #roselight .inner .txt {
    line-height: 2.2;
}

.page_top .roselight_point {
    padding: clamp(40px, 6vw, 100px) 20px;
}

.page_top .roselight_point h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
}

.page_top .roselight_point h2 span {
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: clamp(22px, 3vw, 40px);
}

.page_top .roselight_point h2 span small {
    display: block;
    font-size: clamp(14px, 1.8vw, 20px);
}

.page_top .roselight_point h2 img {
    display: block;
    width: 1.8em;
}

.page_top .roselight_point h2 img:last-child {
    transform: scale(-1, 1);
}

.page_top .roselight_point ul {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 500px) {
    .page_top .roselight_point ul {
        flex-direction: column;
    }
}

.page_top .roselight_point ul li {
    flex: 1;
    background: #eaeaea;
    padding: clamp(20px, 3vw, 40px);
}

.page_top .roselight_point ul li:nth-child(odd) {
    background: #003f5a;
    color: #fff;
}

.page_top .roselight_point ul li h3 {
    text-align: center;
    font-weight: 400;
    font-size: clamp(18px, 1.9vw, 20px);
}

.page_top .roselight_point ul li h3::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 10px auto 20px;
    background: #d0c49e;
}

.page_top .roselight_point ul li p {
    line-height: 2;
    font-weight: 14px;
}

.page_top #concept {
    padding: clamp(40px, 6vw, 100px) 30px;
    background-image: url("../img/page/top/concept/bg.png");
    background-size: cover;
    position: relative;
    color: #fff;
}

.page_top #concept img.line {
    position: absolute;
    font-size: clamp(10px, 2vw, 40px);
    width: clamp(60px, 10vw, 150px);
}

.page_top #concept img.line.top_left {
    top: 1em;
    left: 1em;
}

.page_top #concept img.line.top_right {
    top: 1em;
    right: 1em;
    transform: scale(-1, 1);
}

.page_top #concept img.line.bottom_left {
    bottom: 1em;
    left: 1em;
    transform: scale(1, -1);
}

.page_top #concept img.line.bottom_right {
    bottom: 1em;
    right: 1em;
    transform: scale(-1, -1);
}

.page_top #concept h2 {
    text-align: center;
    font-size: clamp(22px, 3vw, 65px);
    font-weight: 500;
    margin-bottom: 1em;
}

.page_top #concept .inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.page_top #concept .inner .img_box {
    max-width: clamp(300px, 30vw, 400px);
}

.page_top #concept .inner .txt_box {
    flex: 1;
    min-width: 300px;
}

.page_top #concept .inner .txt_box h3 {
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 500;
    margin-bottom: 1em;
}

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

.page_top .feature {
    padding: clamp(40px, 6vw, 100px) 20px;
}

.page_top .feature h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
    font-size: clamp(18px, 3vw, 40px);
}

.page_top .feature h2 span {
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
}

.page_top .feature h2 span small {
    display: block;
    font-size: clamp(14px, 1.8vw, 20px);
}

.page_top .feature h2 img {
    display: block;
    width: 1.6em;
}

.page_top .feature h2 img:last-child {
    transform: scale(-1, 1);
}

.page_top .feature .inner {
    max-width: 1000px;
    margin: 0 auto;
}

.page_top .feature .inner .item {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page_top .feature .inner .item:nth-child(even) {
    flex-direction: row-reverse;
}

.page_top .feature .inner .item .img_box {
    max-width: clamp(300px, 35vw, 400px);
}

.page_top .feature .inner .item .txt_box {
    flex: 1;
    min-width: 300px;
}

.page_top .feature .inner .item .txt_box h3 {
    font-size: clamp(18px, 2.2vw, 28px);
    margin-bottom: 1em;
}

.page_top .feature .inner .item .txt_box p {
    margin-bottom: 1em;
    line-height: 2;
}

.page_top .menu {
    padding: clamp(40px, 6vw, 100px) 20px;
}

.page_top .menu h2 {
    text-align: center;
    font-size: clamp(20px, 3vw, 40px);
    margin-bottom: 1em;
}

.page_top .menu .inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

@media only screen and (max-width: 750px) {
    .page_top .menu .inner {
        flex-direction: column;
    }
}

.page_top .menu .inner .item {
    flex: 1;
    max-width: 500px;
}

.page_top .menu .inner .item h3 {
    text-align: center;
    margin-bottom: 1em;
}

.page_top .menu .inner .item ul li {
    display: flex;
    border-bottom: solid 1px #000;
    padding: 10px 10px;
}

.page_top .menu .inner .item ul li:first-child {
    border-top: solid 1px #000;
}

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

.page_top .menu .inner .item ul li .txt h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.5em;
}

.page_top .menu .inner .item ul li .txt p {
    font-size: 13px;
}

.page_top .menu .inner .item ul li .price {
    width: 120px;
    text-align: right;
    font-size: 16px;
}

.page_top .menu .btn {
    text-align: center;
    padding-top: 60px;
}

.page_top .menu .btn a {
    background: #000;
    color: #fff;
    display: inline-block;
    border-radius: 10em;
    font-size: clamp(14px, 1.5vw, 16px);
    padding: 0.5em 2em;
}

.page_top #information {
    padding: clamp(40px, 6vw, 100px) 20px;
}

.page_top #information h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
}

.page_top #information h2 span {
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: clamp(22px, 3vw, 40px);
}

.page_top #information h2 span small {
    display: block;
    font-size: clamp(14px, 1.8vw, 20px);
}

.page_top #information h2 img {
    display: block;
    width: 1.8em;
}

.page_top #information h2 img:last-child {
    transform: scale(-1, 1);
}

.page_top #information .inner {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page_top #information .inner .img_box {
    max-width: clamp(300px, 35vw, 400px);
}

.page_top #information .inner .txt_box {
    flex: 1;
    min-width: 200px;
}

.page_top #information .inner .txt_box h3 {
    padding: 1em 0 0.5em;
    font-size: 17px;
}

.page_top #information .inner .txt_box p {
    font-size: 15px;
}

.page_top #information .inner .txt_box p a {
    color: #0076ff;
    text-decoration: underline;
}

footer {
    background: #083e58;
    padding: 40px;
}

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

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

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

footer .inner nav ul li a {
    color: #fff;
    display: block;
    text-align: center;
    line-height: 2;
}

.cta_bottom {
    width: clamp(90px, 10vw, 120px);
    height: clamp(90px, 10vw, 120px);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.page_menu section h1 {
    background: #083e58;
    color: #fff;
    font-size: clamp(22px, 3vw, 60px);
    text-align: center;
    padding: 1em;
    position: relative;
    margin-bottom: 2em;
}

.page_menu section h1::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: #083e58;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}

.page_menu section h2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 30px);
    font-size: clamp(18px, 2vw, 24px);
    text-align: center;
}

.page_menu section .menu_list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 100px;
}

.page_menu section .menu_list .item {
    padding: 30px;
    padding: clamp(20px, 3vw, 30px);
    width: 50%;
}

@media only screen and (max-width: 750px) {
    .page_menu section .menu_list .item {
        width: 100%;
    }
}

.page_menu section .menu_list .item h3 {
    margin-bottom: 1em;
    font-size: 16px;
}

.page_menu section .menu_list .item h3 span {
    font-weight: normal;
    padding-top: 0.2em;
    display: block;
    font-size: 14px;
}

.page_menu section .menu_list .item ul li {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #707070;
    padding: 15px 0;
}

.page_menu section .menu_list .item ul li:first-child {
    border-top: solid 1px #707070;
}

.page_menu section .menu_list .item ul li .txt {
    width: 60%;
}

.page_menu section .menu_list .item ul li .txt h4 {
    font-size: 16px;
    font-weight: 500;
}

.page_menu section .menu_list .item ul li .txt p {
    font-size: 13px;
    padding-top: 0.3em;
}

.page_menu section .menu_list .item ul li .price {
    flex: 1;
    text-align: right;
}

.page_menu section .menu_list .item ul li .price span {
    display: block;
}

.page_menu section .menu_list .item ul li .price span:nth-child(1) {
    font-size: 16px;
    font-weight: 500;
}

.page_menu section .menu_list .item ul li .price span:nth-child(2) {
    font-size: 13px;
    padding-top: 0.3em;
}

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