@charset "UTF-8";

/* ======================================== foundation ======================================== */
* {-webkit-appearance: none;
    appearance: none;/*webkit系ブラウザのデフォルトスタイル*/}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,　
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
li>ul,
a,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    letter-spacing: 1px;
    vertical-align: bottom;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #202A33;
    font-family: "Yu Mincho", "Noto Serif JP", "serif"
}
a {
    text-decoration: none;
    color: #1A1A1A!important;
}
a:hover{
    opacity: 0.7;
}
li {
    list-style-type: none;
}

.spOnly {
    display: none;
}
.pcOnly {
    display: block;
}

@media screen and (max-width: 520px) {
    .spOnly {
        display: block;
    }
    .pcOnly {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .spOnly {
        display: block;
    }
    .pcOnly {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #1a1a1a;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #1A1A1A;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

p {
    font-weight: 500;
    line-height: 160%;
    color: #1A1A1A;
}

/* ======================================== layout ======================================== */

.l-inner {
    margin: 160px auto;
}
.common_inner {
    max-width: 1080px;
    margin: 0 auto;
}
.top-btn-wrap {
    width: 60%;
    margin: 4rem auto;
}
@media screen and (max-width: 768px){
    .common_inner {
        margin:  0 1rem;
    }
    .top-btn-wrap {
        width: 100%;
        margin: 2rem auto;
    }
}

@media screen and (max-width: 1080px) {
    .common_inner {
        max-width: 100%;
}
}

.l-wrapper {
    overflow: hidden;
}

/* ----flexbox---- */
.flex {
    display: block;
}

.fl,
.col_2,
.col_3,
.col_2_3,
.col_2_4,
.col_3_5 {
    display: flex;
    flex-flow: row wrap;
}

.col_1,
.col_1_2,
.col_1_3,
.col_1_4{
    display: block;
}

.col_1>* {
    display: block;
    width: 100%;
}
.col_1_2>*, .col_1_3>*, .col_1_4>*{
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.col_right>*:last-child {
    flex-basis: calc(75% - .9rem);
}

.col_3>* {
    flex-basis: calc(100% / 3 - .8rem);
}

.col_2_3>*,
.col_2_4>* {
    flex-basis: calc(100% / 2 - .5rem);
    margin-bottom: 1rem;
}

.col_3_5>* {
    flex-basis: calc(100% / 3 - .8rem);
    margin-bottom: 1rem;
}

.cols>* {
    width: 100%;
    min-width: 0;
}

.col-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}


.gap_1 {
    gap: 1.5rem;
}

.gap_2 {
    gap: 2rem;
}

.gap_3 {
    gap: 3rem;
}

.fld-clm {
    flex-direction: column;
}
.fld-row-rever{
    flex-direction:row-reverse;
}

@media screen and (min-width: 959px) {
    .col_1_2, .col_1_3, .col_1_4 {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .col_1_2>* {
        flex-basis: calc(100% / 2 - 1.5rem);
    }

    .col_1_3>* {
        flex-basis: calc(100% / 2 - 1.2rem);
        margin-bottom: 0;
    }
    .col_1_4>* {
        flex-basis: calc(100% / 4 - 1.2rem);
        margin-bottom: 0;
    }
}

@media screen and (min-width: 959px) {
    .flex {
        display: flex;
    }

    .col_1_3>* {
        flex-basis: calc(100% / 3 - 1.5rem);
        margin-bottom: 0;
    }

    .col_right>*:last-child {
        flex-basis: calc(80% - .9rem);
    }

    .col_2_3>* {
        flex-basis: calc(100% / 3 - 2rem);
        margin-bottom: 0;
    }

    .col_2_4>* {
        flex-basis: calc(100% / 4 - 1.5rem);
        margin-bottom: 0;
    }

    .col_3_5>* {
        flex-basis: calc(100% / 5 - .5rem);
        margin-bottom: 0;
    }
}

.jf_fs {
    justify-content: flex-start;
}

.jf_sb {
    justify-content: space-between;
}

.jf_c {
    justify-content: center;
}

.jf_e {
    justify-content: space-evenly;
}

.jf_fe {
    justify-content: flex-end;
}

.item-c {
    align-items: center;
}

/* ----grid-layout---- */
.grid,
.grid_1_2,
.grid_1_3,
.grid_3,
.grid_4,
.grid_1_4,
.grid_2_4,
.grid_2_3 {
    display: grid;
}

.grid_1_2 {
    grid-template-columns: 1fr;
    gap:16px;
}

.grid_2_4, .grid_2_3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 1rem;
}

.grid_3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.grid_4 {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width:959px) {
    .grid_1_2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .grid_1_3, .grid_2_3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid_1_4, .grid_2_4 {
        grid-template-columns: repeat(4, 1fr);
    }
}
.js-fadeinBottom {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1.3s;
    transition: all 1.3s;
}

.js-fadeinBottom.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.js-load-fadeinBottom {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 1.3s;
    transition: all 1.3s;
}

.js-load-fadeinBottom.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/* ======================================== object / project ======================================== */

.info-btn {
    display: flex;
    width: 144px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--main-accent, #E35460);
    color: #fff!important;
}
.p-article_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 70px 40px;
    padding-top: 80px;
    padding-bottom: 200px;
}

.p-article_item {
    width: calc((100% / 2) - 20px);
}

@media screen and (max-width: 767px) {
    .p-article_item {
        width: 100%;
    }
}
@media screen and (max-width: 520px) {
    .p-article_list {
        padding: 40px 0;
        margin-bottom: 40px;
    }
}

.p-article_item .photo {
    padding-top: 62%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
}

.p-article_item .title {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.p-article_item .excerpt {
    font-size: 16px;
    line-height: 2.2;
}

/* ======================================== header ======================================== */

.p-header-nav {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: space-evenly;
    padding: 0 10%;
}

.p-header-nav ul .header-nav-link {
    border-right: solid 1px #C8A064;
    padding-right: 24px;
    height: 16px;
    display: flex;
    align-items: center;
}
.p-header-nav ul li:nth-child(3) {
    padding-right: 0;
}
.p-header-nav ul li:nth-child(4) {
    border-right: none;
}

@media screen and (max-width: 960px) {
    .p-header-nav {
        height: 70px;
        padding-right: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0 16px;
    }
}

.p-header-nav>div {
    width: 100%;
    margin: 0 auto;
    gap: 64px;
}
.header-nav-logo {
    width: 10%;
}

.p-header-nav_drower .drower-btn {
    display: none;
    z-index: 3;
    width: 42px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
    .p-header-nav_drower .drower-btn {
        display: block;
        height: 42px;
        margin-right: 0;
        border: solid 2px #E35460;
        border-radius: 50px;
    }
    .drower-btn.active {
        border: solid 0px #E35460;
    }
    .header-nav-logo {
        display: inline-block;
        width: 70%;
    }
}

.p-header-nav_drower .drower-btn span {
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: #E35460 !important;
}

@media screen and (max-width: 960px) {
    .p-header-nav_drower .drower-btn span {
        width: 16px;
    }
}

.p-header-nav_drower .drower-btn span:nth-child(1) {
    top: 12px;
    left: 11px;
}

.p-header-nav_drower .drower-btn span:nth-child(2) {
    top: 22px;
    left: 11px;
}

@media screen and (max-width: 960px) {
    .p-header-nav_drower .drower-btn span:nth-child(2) {
        top: 18px;
    }
}

.p-header-nav_drower .drower-btn span:nth-child(3) {
    top: 32px;
    left: 11px;
}

@media screen and (max-width: 960px) {
    .p-header-nav_drower .drower-btn span:nth-child(3) {
        top: 24px;
    }
}

.p-header-nav_drower .drower-btn.active span:nth-child(1) {
    top: 18px;
    left: 11px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 3;
}

.p-header-nav_drower .drower-btn.active span:nth-child(2),
.p-header-nav_drower .drower-btn.active span:nth-child(3) {
    top: 18px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 3;
}

.p-header-nav_drower nav.drower-menu {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: #E0E9F1;
    text-align: center;
    padding-top: 48px;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .6s ease, visibility .6s ease;
    transition: opacity .6s ease, visibility .6s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
}

.p-header-nav_drower nav.drower-menu ul {
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 400px;
}

.p-header-nav_drower nav.drower-menu ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    -webkit-transition: .4s all;
    transition: .4s all;
    border-bottom: solid 1px #E35460;
}

.p-header-nav_drower nav.drower-menu ul li:last-child {
    padding-bottom: 0;
}

.p-header-nav_drower nav.drower-menu ul li a {
    display: block;
    color: #202A33;
    padding: 8px;
    text-decoration: none;
    text-align: left;
    position: relative;
}

.p-header-nav_drower nav.drower-menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.p-header-nav_drower nav.drower-menu ul li a::after {
    content: "";
    display: block;
    width: 30px;
    height: 6px;
    border-bottom: 1px solid #E35460;
    border-right: 1px solid #E35460;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: skew(45deg) translateY(-50%);
    transform: skew(45deg) translateY(-50%);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.p-header-nav_drower nav.drower-menu.active {
    opacity: 100;
    visibility: visible;
}
.p-header-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media screen and (max-width: 960px) {
    .hrader-pc {
        display: none;
    }
    .p-header-nav ul {
        flex-direction: column;
        gap: 24px;
    }
    .p-header-nav_drower nav.drower-menu {
        padding-top: 80px;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
    }
    .info-btn {
        margin-top: 40px;
    }
}

/* ======================================== footer ======================================== */

.p-footer {
    background: #FFF5C9;
}

.p-footer_inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
/* -Logo- */
.p-footer_logo {
    max-width: 120px;
    margin: 0 auto;
}
/* -Navi- */
.p-footer_nav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;/* ナビ一時的調整 */
    line-height: 160%;
    gap: 24px;
}
.p-footer_navlist {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 2.5rem 0;
    gap: 24px;
}
.p-footer_navlist li {
    border-right: solid 1px #C8A064;
    padding-right: 1.5rem;
    height: 20px;
}
.p-footer_navlist li:last-child{
    border: none;
}
.p-footer_navlist-service {
    font-size: 1rem;
    font-weight: 600;
    line-height: 140%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 0;
}
.p-footer_detail {
    width: 860px;
    border-radius: 8px;
    background: #fff;
    padding: 1.5rem 3rem;
}
.p-footer_detail li:nth-child(1),.p-footer_detail li:nth-child(3) {
    border-right: solid 1px #C8A064;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    height: 20px;
}
.p-footer_inner .p-top-mv_btn {
    width: 60%;
    margin-top: 2.5rem;
}
/* -copyright- */
.p-footer .copyright {
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 1rem 0;
    text-align: center;
}

@media screen and (max-width: 520px) {
    .p-footer_inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 3rem 0;
        margin: 0 1rem;
        gap: 2rem;
    }
    .p-footer_logo {
        max-width: 80px;
    }
    .p-footer_navlist {
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    .p-footer_navlist li {
        padding-right: 1rem;
    }
    .p-footer_navlist li:last-child {
        padding: 0;
    }
    .p-footer_detail {
        width: 100%;
        padding: 1.5rem 1rem;
    }
    .p-footer_detail li:nth-child(1), .p-footer_detail li:nth-child(3) {
        border: none;
        margin: 0;
        padding: 0;
        height: auto;
    }
    .p-footer_navlist-service {
        justify-content: flex-start;
    }
    .p-footer_inner .p-top-mv_btn {
        width: 100%;
        margin: 0;
        font-size: 18px;
    }
}

@media screen and (max-width: 520px) {
    .p-footer .copyright {
        font-size: 12px;
        padding: 20px 0;
    }
}

/* 必須 */
.accordion {
    position: relative;
}
.accordion::after{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 13px;
    right: 14px;
    border: 2px solid #E35460;
    border-radius: 50px;
    z-index: 10;
}
.accordion-content {
    display: none;
}
.accordion-header {
    background-color: #ffffff00;
    padding: 12px 48px 12px 0;
    transition: background .3s ease;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.accordion-header::before,
.accordion-header::after{
    position:absolute;
    content:'';
    top:0;
    right:20px;
    bottom:0;
    width:12px;
    height:2px;
    margin:auto;
    background:#E35460;
}
.accordion-header::after{
    transform:rotate(-90deg);
    transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
    width: 1080px;
    background-color: #FFF;
    padding: 24px 32px;
    position: absolute;
    top: 72px;
    left: 0%;
    transform: translateX(-50%);
    border-radius: 16px;
    box-shadow: 0px 2px 12px 0px rgba(49, 98, 119, 0.25);
}
.accordion-inner {
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.accordion-inner h3{
    font-size: 2rem;
    font-weight: 700;
}
.accordion-inner h3 span{
    color: #202A33!important;
    font-size: 16px;
    font-weight: 500;
}
.accordion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16.5px!important;
}
.accordion-list li{
        position: relative;
}
.accordion-list li::after{
    position: absolute;
    display: inline-block;
    background-image: url(../img/header-btn.png);
    background-size: contain;
    vertical-align: middle;
    content: '';
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
}
.accordion-list img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    object-position: 0% 50%;
    border-radius: 16px;
    margin-bottom: 8px;
}
.accordion-list p{
    font-size: 13.5px;
    font-weight: 700;
}

/* hover */
.accordion-header:hover {
    color: #E35460;
}

@media screen and (max-width: 600px) {
    .accordion-header {
        background-color: #fff0;
        text-align: left;
        padding: 12px 48px 12px 8px;
        
    }
    .accordion-header:hover {
        color: #202A33;
    }
    .accordion-content {
        width: 100%;
        background-color: #fff0;
        padding: 0;
        position: relative;
        top: 0;
        left: 16px;
        margin: 0;
        transform: translateX(0%);
        box-shadow: 0px 0px 0px 0px rgba(49, 98, 119, 0.25);
    }
    .accordion-list li::after{
        background-image: none;
    }
    .accordion-header::before,
    .accordion-header::after{
        top:-16px;
    }
}

/* ======================================== サブタイトル ======================================== */

.common-sub-title-bule {
    color: #314D2F;
    font-size: 2.5rem;
    position: relative;
    text-align: center;
    margin-bottom: 4.5rem;
}
.common-sub-title-bule::after {
    content: "";
    position: absolute;
    background-image: url(../img/sub-title-bottom.webp);
    background-size:cover;
    width: 138px;
    height: 20px;
    bottom: -13px;
    left: 43.5%;
}

@media screen and (max-width: 520px){
    .common-sub-title-bule {
        font-size: 2rem;
        margin-bottom: 3.5rem;
    }
    .common-sub-title-bule::after {
        left: 30%;
    }
}

/* ============================================================================================ */
/*                                                                                              */
/*                                              TOP                                             */
/*                                                                                              */
/* ============================================================================================ */

/* ======================================== MV ======================================== */

.p-top-mv {
    border-bottom: solid 2rem #e35460;
}

.p-top-mv_inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 80px auto 0;
}
.p-top-mv_box {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    position: relative;
    top: 24px;
}
.p-top-mv_bg {
    background-image: url(../img/mv-main-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    height: 720px;
}
.p-top-mv_text {
    width: 50%;
    white-space: nowrap;
}
.p-top-mv_text h1 {
    margin: 0;
}
.p-top-mv_text h2 {
    color: #314D2F;
    font-size: 1.5rem;
    text-align: center;
    line-height: 160%;
    margin-top: 1.5rem;
}
.p-top-mv_btn {
    color: #fff !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
    height: 64px;
    border-radius: 4px;
    background: #E35460;
}

@media screen and (max-width: 520px) {
    .p-top-mv {
        border-bottom: solid 1.5rem #e35460;
    }
    .p-top-mv_bg {
        background-image: url(../img/mv-main-bg_sp.webp);
        height: 100vh;
        background-size: cover;
    }
    .p-top-mv_text {
        width: 100%;
        padding-top: 16px;
    }
    .p-top-mv_text h1 {
        margin-top: 14rem;
    }
    .p-top-mv_text h2 {
        font-size: 1rem;
    }
    .p-top-mv_btn {
        margin: 1.5rem 0 5rem;
    }
}

/* ======================================== お店について ======================================== */

.p-top-catchcopy {
    padding: 120px 0;
    background-image: url(../img/mv-about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.p-top-catchcopy h5 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 180%;
}
.p-top-catchcopy .col_1_2 {
    padding: 2.5rem 0 4rem;
}

@media screen and (max-width: 960px) {
    .p-top-catchcopy_inner {
        padding-bottom: 80px;
    }
}
@media screen and (max-width: 520px){
    .p-top-catchcopy {
        padding: 4rem 0;
    }
    .p-top-catchcopy_inner {
        padding-bottom: 0;
        margin-bottom: 40px;
    }
    .p-top-catchcopy h5 {
        font-size: 1.3rem;
    }
    .top-catchcopy-img {
        bottom: 0;
    }
}

/* ======================================== TOP 特徴 ======================================== */


.p-features {
    background: var(--light_orange_gradation, linear-gradient(168deg, #FFF3EE 6.55%, #FFF 54.76%, #FFF3EE 102.04%));
    padding: 120px 0;
}
.p-features h4 {
    position: relative;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 2.3px;
}
.p-features h4 span {
    color: #2DA195;
    font-size: 2rem;
    letter-spacing: 3px;
}
.p-features h4::after,.p-features h4::before {
    content: "";
    position: absolute;
    background-size:cover;
    width: 56px;
    height: 120px;
    top: -20%;
}
.p-features h4::after {
    background-image: url(../img/features-left.webp);
    left: 120px;
}
.p-features h4::before {
    background-image: url(../img/features-right.webp);
    right: 120px;
}
.p-features-list {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    gap: 5rem;
}
.p-features-box {
    width: 900px;
    display: flex;
    flex-direction: row;
    height: fit-content;
    box-shadow: 0 4px 10px 0 rgba(243, 102, 114, 0.15);
}
.p-features-img {
    width: 40%;
}
.p-features-img img {
    border-radius: 20px 0 0 20px;
}
.p-features-text {
    position: relative;
    width: 60%;
    background: #fff;
    padding: 5rem 1.5rem 2rem;
    border-radius: 0 20px 20px 0;
}
.p-features-text::before,.p-features-text::after{
    content: '';
    position: absolute;
    background-size:cover;
    background-repeat: no-repeat;
}
.p-features-text::before {
    width: 168px;
    height: 104px;
    top: -16px;
    right: -16px;
}
.p-features-text::after{
    height: 40px;
    top: 16px;
    left: 0;
}
.p-f-point01::before{
    background-image: url(../img/point-icon01.webp);
    
}
.p-f-point01::after{
    background-image: url(../img/point-tag01.webp);
    width: 176px;
}
.p-f-point02::before{
    background-image: url(../img/point-icon02.webp);
    
}
.p-f-point02::after{
    background-image: url(../img/point-tag02.webp);
    width: 243px;
}
.p-f-point03::before{
    background-image: url(../img/point-icon03.webp);
    
}
.p-f-point03::after{
    background-image: url(../img/point-tag03.webp);
    width: 203px;
}
.p-features-text h5 {
    color: var(--red, #E35460);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.p-features-text p{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}
.p-features-text p span{
    font-family: "Noto Sans JP", sans-serif;
    background: linear-gradient(transparent 30%, #F8FFAE 30%);
    font-weight: bold;
}
.p-f-right {
    margin-left: auto;
}
@media screen and (max-width: 520px) {
    .p-features {
        padding: 4rem 0;
    }
    .p-features h4 {
        font-size: 1rem;
        letter-spacing: 1.3px;
        margin-top: 3.5rem;
    }
    .p-features h4 span {
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .p-features h4::after, .p-features h4::before {
        width: 44px;
        height: 96px;
        top: 0;
    }
    .p-features h4::before {
        right: 0;
    }
    .p-features h4::after {
        left: 0;
    }
    .p-features-list {
        margin-top: 3rem;
        gap: 3rem;
    }
    .p-features-box {
        width: 100%;
        flex-direction: column;
    }
    .p-features-img {
        width: 100%;
    }
    .p-features-img img {
        border-radius: 16px 16px 0 0;
        height: 220px;
        object-fit: cover;
        object-position: 0% 50%;
    }
    .p-features-text {
        width: 100%;
        padding: 5rem 1rem 2rem;
    }
    .p-features-text::before {
        width: 148px;
        height: 84px;
        top: -240px;
    }
    .p-features-text h5{
        font-size: 1.39rem;
    }
}

/* ======================================== 店舗一覧 ======================================== */

.p-group {
    margin: 120px 0;
}
/*---- ナビ切り替え ----*/
.p-problem-tab{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.p-problem-tab-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.p-problem-tab li{
    width: 25%;
}
.p-problem-tab li a{
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    border-radius: 10px 10px 0 0;
    background: #E7A68B;
}
.p-problem-tab li a.selected{
    background: #FFF3EE;
}
.p-problem-tab-contents {
    background: #FFF3EE;
    width: 100%;
    padding: 2.5rem;
    border-radius: 0 0 10px 10px;
}
.p-problem-tab-contents h4 {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    border-bottom: solid 3px #2DA195;
    margin-bottom: 2.5rem;
}
.p-problem-tab-contents .tab-list {
    gap: 24px;
    align-items: flex-start;
}
.p-problem-tab-contents .tab-list p {
    margin: 16px 0;
    line-height: 160%;
}
.p-problem-tab-contents .tab-list .tab-box {
    flex-basis: calc(100% / 2 - 0.5rem);
    margin: 0;
}
.p-problem-tab-contents .tab-list .tab-box table th {
    font-family: "Noto Sans JP", sans-serif;
    background: #2DA195;
    width: 96px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    padding: 4px 0;
    border-radius: 8px;
}
.p-problem-tab-contents .tab-list .tab-box table td {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    line-height: 170%;
    padding-bottom: 1rem;
    letter-spacing: 0.5px;
}
.p-problem-tab-contents .tab-list .tab-box .p-top-mv_btn {
    margin-top: 0.5rem;
}
.p-problem-tab div article{
    display: none;
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    position: relative;
}
.p-problem-tab div article p{
    margin: 0px 0px 20px 0px;
}
.p-top-group_btn{
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    color: #fff!important;
    font-size: 1.5rem;
    border-radius: 4px 20px 4px 4px;
    background: var(--red_gradation, linear-gradient(74deg, #E2595E 39.26%, #FF7B7B 84.61%));
    height: 80px;
    padding: 10px 40px;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

@media screen and (max-width: 520px){
    .p-group {
        margin: 4rem 0;
    }
    .p-problem-tab{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .p-problem-tab li {
        width: 24.1%;
    }
    .p-problem-tab li::after {
        top: 9px;
        transform: rotate(90deg);
    }
    .p-problem-tab li a {
        padding: 8px;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        display: flex;
        align-items: center;
        height: -webkit-fill-available;
        border-radius: 8px 8px 0 0;
        margin-bottom: 0;
        padding: 0;
    }
    .p-problem-tab div article {
        padding: 4rem 1rem 1rem;
    }
    .p-problem-tab-nav {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        height: 48px;
    }
    .p-problem-tab-contents {
        padding: 1rem;
    }
    .p-problem-tab-contents h4 {
        display: block;
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    .p-problem-tab-contents .tab-list .tab-box {
        margin-bottom: 24px;
    }
    .p-problem-tab-contents .tab-list .tab-box table th {
        width: 40px;
        font-size: 14px;
        padding: 4px 0 6px;
        line-height: 120%;
    }
    .p-problem-tab-contents .tab-list .tab-box .p-top-mv_btn {
        margin: 1.5rem 0;
    }
    .p-top-group_btn {
        font-size: 1rem;
        height: 48px;
        padding: 10px 24px;
    }
}

/* ============================================================================================ */
/*                                                                                              */
/*                                         下層ページ                                             */
/*                                                                                              */
/* ============================================================================================ */

/* ======================================== MV ======================================== */

section.mv{
    width: 100%;
    height: auto;;
    margin-top: 80px;
    background-image: url(../img/ebestu_mv.webp);
    background-size: cover;
}
.mv-tomakomai {
    background-image: url(../img/tomakomai_mv.webp)!important;
}
.mv-iwamizawa {
    background-image: url(../img/iwamizawa_mv.webp)!important;
}
.mv-iwamizawa-honoka {
    background-image: url(../img/iwamizawa-honoka_mv.webp)!important;
}
.mv-inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 7.5rem 0;
}
.mv-title{
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 520px) {
    .mv-inner{
        width: 100%;
        padding: 2.5rem 1rem;
    }
    .mv-title{
        font-size: 18px;
        line-height: 140%;
    }
}

/* ======================================== 店舗情報 ======================================== */

.store-info {
    padding: 7.5rem 0;
}
.store-info article {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
}
.reservation-system {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 30%;
    margin-top: 1.5rem;
}
.eservation-three {
    width: 80%;
}

@media screen and (max-width: 520px) {
    .store-info{
        padding: 4rem 0;
    }
    .store-info .p-problem-tab-contents{
        padding: 1.5rem 1rem;
    }
    .store-info article {
        padding: 1rem;
    }
    .store-info iframe {
        width: 100%;
    }
    .reservation-system {
        width: 40%;
    }
}

/* ======================================== メニュー ======================================== */
.menu {
    margin-bottom: 7.5rem;
}
.menu_list {
    display: flex;
    flex-direction: row; 
    gap: 2rem;
}
.menu_box {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.menu_title {
    background: var(--red_gradation, linear-gradient(74deg, #E2595E 39.26%, #FF7B7B 84.61%));
    padding: 8px 0;
    text-align: center;
    position: relative;
}
.menu_title h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0;
}
.menu_title::before,
.menu_title::after {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: 18px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.menu_title::before {
    left: 20px;
    background-image: url(../img/menu_title_left.webp);
}
.menu_title::after {
    right: 20px;
    background-image: url(../img/menu_title_right.webp);
}
.menu_detail {
    padding-top: 2rem;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}
.menu_detail dl {
    flex-grow: 1;
}
.menu_item {
    display: flex;
    align-items: baseline; /* 文字の下端を揃える */
    margin-bottom: 8px;
    font-size: 16px;
}
.menu_item dt {
    padding-right: 1rem; 
}
.menu_item dd {
    margin-left: auto;
    padding-left: 1rem; 
    font-weight: bold;
}
.menu_item dt,
.menu_item dd {
    font-family: "Noto Sans JP", sans-serif;
    flex-shrink: 0; 
}
.menu_item_caption {
    font-family: "Noto Sans JP", sans-serif;
    margin: -4px 0 1rem 0;
}
.menu_item_red {
    font-family: "Noto Sans JP", sans-serif;
    color: #E35460;
    font-weight: bold;
    margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
    .menu {
        margin-bottom: 4rem;
    }
    .menu_list {
        flex-direction: column; /* 縦並びにする */
    }
    .menu_box {
        width: 100%; /* 横幅を100%に */
    }
    .menu_title h3 {
        font-size: 20px;
    }
    .menu_item {
        font-size: 15px;
    }
}

/* ======================================== CTA LINEで簡単予約する ======================================== */
.cta {
    position: relative;
    background: var(--blue_green, #2DA195);
    padding: 4.5rem 0;
}
.cta::before,.cta::after{
    position: absolute;
    content: "";
    background: url(../img/grid_line.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 18px;
    top: 0;
}
.cta::after {
    bottom: 0;
    top: auto;
}
.cta-btn {
    position: relative;
    width: 30%;
    color: #314D2F;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 4px;
    background: #F5E534;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    margin: auto;
}
.cta h3::before,.cta h3::after{
    content: "";
    position: absolute;
}
.cta h3::before {
    background: url(../img/cta_deco_01.webp);
    background-size: cover;
    width: 48px;
    height: 130px;
    bottom: -20%;
    left: -8%;
}
.cta h3::after {
    background: url(../img/cta_deco_02.webp);
    background-size: cover;
    width: 80px;
    height: 150px;
    bottom: -40%;
    right: -8%;
}
@media screen and (max-width: 768px) {
    .cta-btn {
        width: 90%;
        font-size: 1.5rem;
    }
    .cta h3::before {
        left: -4%;
        bottom: -40%;
    }
    .cta h3::after {
        right: -4%;
        bottom: -50%;
    }
}

/* ======================================== スタイリスト ======================================== */

.stylist{
    background: var(--light_orange_gradation, linear-gradient(168deg, #FFF3EE 6.55%, #FFF 54.76%, #FFF3EE 102.04%));
    padding: 7.5rem 0;
}
.target_list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.target_top {
    background: #fff;
    padding: 2rem 3rem 3rem;
    border: 1px solid #B5B0B0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
.target_box p {
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    margin-top: 1.5rem;
}

@media screen and (max-width:600px) {
    .stylist{
        padding: 4rem 0;
    }
    .target_box {
        margin-bottom: 2.5rem;
    }
    .target_top {
        width: 80%;
        margin: auto;
    }
}

/* ======================================== 施術の流れ ======================================== */

.flow {
    margin: 120px auto;
}
.flow_box{
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}
.flow_img {
    width: 50%;
    border-right: solid 3px #C8A064;
    padding: 0 4rem 3.5rem 0;
}
.border-no {
    border: none;
}
.flow_text {
    width: 50%;
}
.flow_text h3 {
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    padding: 1.5rem 0;
}
.flow_text h3::before {
    content: '';
    position: absolute;
    background-size: cover;
    display: block;
    width: 5rem;
    height: 5rem;
    top: 0;
    left: -21%;
}
.flow_01::before  {
    background-image: url(../img/flow_number_01.webp);
}
.flow_02::before  {
    background-image: url(../img/flow_number_02.webp);
}
.flow_03::before  {
    background-image: url(../img/flow_number_03.webp);
}
.flow_04::before  {
    background-image: url(../img/flow_number_04.webp);
}
.flow_05::before  {
    background-image: url(../img/flow_number_05.webp);
}
.flow_text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    line-height: 170%;
}

@media screen and (max-width:600px) {
    .flow {
        margin: 4rem 0;
    }
    .flow_box {
        flex-direction: column;
        gap: 0;
    }
    .flow_img {
        width: 90%;
        border-left: solid 3px #C8A064;
        border-right: none;
        padding: 0 0 1.5rem 2rem;
        margin-left: 1rem;
    }
    .flow_text {
        width: 94%;
        border-left: solid 3px #C8A064;
        padding: 0 0 1.5rem 2rem;
        margin-left: 1rem;
    }
    .flow_text h3 {
        padding: 0 0 1.5rem;
    }
    .flow_text h3::before {
        width: 3rem;
        height: 3rem;
        left: -20%;
    }
    .flow_text p {
        margin-top: 1.5rem;
    }
    .border-no-sp {
        border: none;
    }
}